More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,233 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 11535362 | 1517 days ago | IN | 0 ETH | 0.00343299 | ||||
Withdraw | 11535288 | 1517 days ago | IN | 0 ETH | 0.00544642 | ||||
Set Reward Rate | 11535253 | 1517 days ago | IN | 0 ETH | 0.00087926 | ||||
Deposit | 11535237 | 1517 days ago | IN | 0 ETH | 0.00526891 | ||||
Set | 11535156 | 1517 days ago | IN | 0 ETH | 0.00122254 | ||||
Set | 11535156 | 1517 days ago | IN | 0 ETH | 0.00122254 | ||||
Set | 11535148 | 1517 days ago | IN | 0 ETH | 0.00225266 | ||||
Set | 11385267 | 1540 days ago | IN | 0 ETH | 0.00099513 | ||||
Get Reward | 11385259 | 1540 days ago | IN | 0 ETH | 0.00399114 | ||||
Set Reward Rate | 11385253 | 1540 days ago | IN | 0 ETH | 0.00123592 | ||||
Set | 11385236 | 1540 days ago | IN | 0 ETH | 0.00240625 | ||||
Set Reward Rate | 11385233 | 1540 days ago | IN | 0 ETH | 0.00205163 | ||||
Deposit | 11370652 | 1542 days ago | IN | 0 ETH | 0.00428367 | ||||
Withdraw | 11286604 | 1555 days ago | IN | 0 ETH | 0.01565422 | ||||
Deposit | 11286595 | 1555 days ago | IN | 0 ETH | 0.02726031 | ||||
Registration Ext | 11286594 | 1555 days ago | IN | 0 ETH | 0.01528557 | ||||
Set | 11286569 | 1555 days ago | IN | 0 ETH | 0.00055049 | ||||
Set | 11286569 | 1555 days ago | IN | 0 ETH | 0.00055081 | ||||
Set | 11286569 | 1555 days ago | IN | 0 ETH | 0.00055081 | ||||
Set Reward Rate | 11286569 | 1555 days ago | IN | 0 ETH | 0.00035595 | ||||
Withdraw | 11282461 | 1556 days ago | IN | 0 ETH | 0.00903172 | ||||
Withdraw | 11282417 | 1556 days ago | IN | 0 ETH | 0.00984108 | ||||
Withdraw | 11282371 | 1556 days ago | IN | 0 ETH | 0.00718016 | ||||
Set Reward Rate | 11282367 | 1556 days ago | IN | 0 ETH | 0.00153468 | ||||
Withdraw | 11282366 | 1556 days ago | IN | 0 ETH | 0.00933684 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
MasterChef
Compiler Version
v0.6.3+commit.8dda9521
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-10-17 */ /** *Submitted for verification at Etherscan.io on 2020-10-04 */ /** *Submitted for verification at Etherscan.io on 2020-10-04 */ /** *Submitted for verification at Etherscan.io on 2020-10-01 */ pragma solidity 0.6.3; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.3._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.3._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // MasterChef is the master of Lef. He can make Lef and he is a fair guy. // // Note that it's ownable and the owner wields tremendous power. The ownership // will be transferred to a governance smart contract once Lef is sufficiently // distributed and the community can show to govern itself. // // Have fun reading it. Hopefully it's bug-free. God bless. contract MasterChef is Ownable { using SafeMath for uint256; using SafeERC20 for IERC20; // Info of each user. struct UserInfo { uint256 pid; uint256 amount; // How many LP tokens the user has provided. uint256 reward; uint256 rewardPaid; uint256 updateTime; uint256 userRewardPerTokenPaid; } // Info of each user that stakes LP tokens. mapping (uint256 => mapping (address => UserInfo)) public userInfo; // Info of each pool. struct PoolInfo { IERC20 lpToken; // Address of LP token contract. uint256 allocPoint; // How many allocation points assigned to this pool. Lefs to distribute per block. uint256 lastRewardTime; // Last block number that Lefs distribution occurs. uint256 accLefPerShare; // Accumulated Lefs per share, times 1e18. See below. uint256 totalPool; } // Info of each pool. PoolInfo[] public poolInfo; struct VipPoolInfo { uint256 allocPoint; // How many allocation points assigned to this pool. Lefs to distribute per block. uint256 lastTime; // Last block number that Lefs distribution occurs. uint256 rewardPerTokenStored; // Accumulated Lefs per share, times 1e18. See below. uint256 vipNumber; } mapping(uint256 => VipPoolInfo) public vipPoolInfo; struct User { uint id; address referrer; uint256[] referAmount; uint256 referReward; uint256 totalReward; uint256 referRewardPerTokenPaid; uint256 vip; } mapping(address => User) public users; uint public lastUserId = 2; mapping(uint256 => address) public regisUser; uint256[] DURATIONS =[3 days, 10 days, 22 days]; bool initialized = false; //uint256 public initreward = 1250*1e18; uint256 public starttime = 1599829200;//秒 uint256 public periodFinish = 0; uint256 public rewardRate = 0; uint256 public totalMinted = 0; uint256 public drawPending_threshold = 2000 * 10e18; mapping(uint => uint256) public vipLevel; uint32 vipLevalLength = 0; //The Lef TOKEN! // IERC20 public lef = IERC20(0x54CF703014A82B4FF7E9a95DD45e453e1Ba13eb1); IERC20 public lef ; address public defaultReferAddr = address(0xCfCe2a772ae87c5Fae474b2dE0324ee19C2c145f); // Total allocation poitns. Must be the sum of all allocation points in all pools.总权重 uint256 public totalAllocPoint = 0; // Bonus muliplier for early lef makers.早期挖矿的额外奖励 uint256 public constant BONUS_MULTIPLIER = 3; event RewardPaid(address indexed user, uint256 reward); event Deposit(address indexed user, uint256 indexed pid, uint256 amount); event Withdraw(address indexed user, uint256 indexed pid, uint256 amount); event Registration(address indexed user, address indexed referrer, uint indexed userId, uint referrerId); function initContract (IERC20 _lef,uint256 _rewardRate,uint256 _starttime,uint256 _periodFinish,address _defaultReferAddr) public onlyOwner{ require(initialized == false,"has initialized"); lef = _lef; rewardRate = _rewardRate; starttime = _starttime; periodFinish = _periodFinish; defaultReferAddr = _defaultReferAddr; User memory user = User({ id: 1, referrer: address(0), referAmount:new uint256[](2), referReward:0, totalReward:0, referRewardPerTokenPaid:0, vip:0 }); users[defaultReferAddr] = user; regisUser[1] = defaultReferAddr; initialized = true; } function setVipLevel(uint level,uint256 amount) public onlyOwner { if(vipLevalLength < 3){ vipLevalLength++; // uint256 vip1 = 0; // uint256 vip2 = 0; // uint256 vip3 = 0; // // for(uint i = 1;i < vipLevalLength;i++){ // address regAddr = regisUser[i]; // uint256 vip = getVipLeval(regAddr); // if(vip == 1){ // vip1 ++; // }else if(vip == 2){ // vip2 ++; // }else if(vip == 3){ // vip3 ++; // } // // } // vipPoolInfo[1].vipNumber = vip1; // vipPoolInfo[2].vipNumber = vip2; // vipPoolInfo[3].vipNumber = vip3; // for(uint i = 1;i < vipLevalLength;i++){ // updateVipPool(regisUser[i]); // } } vipLevel[level] = amount; } function poolLength() external view returns (uint256) { return poolInfo.length; } function isUserExists(address user) public view returns (bool) { return (users[user].id != 0); } function registrationExt(address referrerAddress) external { registration(msg.sender, referrerAddress); } function registration(address userAddress, address referrerAddress) private { //require(msg.value == 0.05 ether, "registration cost 0.05"); require(!isUserExists(userAddress), "user exists"); require(isUserExists(referrerAddress), "referrer not exists"); uint32 size; assembly { size := extcodesize(userAddress) } require(size == 0, "cannot be a contract"); User memory user = User({ id: lastUserId, referrer: referrerAddress, referAmount:new uint256[](2), totalReward:0, referReward:0, referRewardPerTokenPaid:0, vip:0 }); regisUser[lastUserId] = userAddress; users[userAddress] = user; lastUserId++; emit Registration(userAddress, referrerAddress, users[userAddress].id, users[referrerAddress].id); } function setDrawReferThreshold(uint256 _threshold) public onlyOwner{ drawPending_threshold = _threshold; } function drawReferPending() public{ require(isUserExists(msg.sender), "user exists"); require(getAllDeposit(msg.sender) > drawPending_threshold,"must mt 2000 * 1e18"); uint256 pengdingReward = 0; uint256 vip = getVipLevel(msg.sender); if(vip >0){ VipPoolInfo storage vipPool = vipPoolInfo[vip]; User storage user = users[msg.sender]; uint256 rewardPerTokenStored = vipPool.rewardPerTokenStored; uint256 lpSupply = vipPool.vipNumber; if (block.timestamp > vipPool.lastTime && lpSupply != 0) { uint256 multiplier = getMultiplier(vipPool.lastTime, block.timestamp); uint256 lefReward = multiplier.mul(rewardRate).mul(vipPool.allocPoint).div(totalAllocPoint); rewardPerTokenStored = rewardPerTokenStored.add(lefReward.div(lpSupply)); } pengdingReward = rewardPerTokenStored.sub(user.referRewardPerTokenPaid).add(users[msg.sender].referReward); safeLefTransfer(msg.sender, pengdingReward); users[msg.sender].referReward = 0; users[msg.sender].totalReward += pengdingReward; user.referRewardPerTokenPaid = rewardPerTokenStored; } } // function getReferReward(address _referrer) public view returns(uint256){ // require(isUserExists(_referrer), "user exists"); uint256 pengdingReward = 0; if(!isUserExists(_referrer)){ return pengdingReward; } uint256 vip = getVipLevel(_referrer); pengdingReward = users[_referrer].referReward; if(vip >0){ VipPoolInfo storage vipPool = vipPoolInfo[vip]; User storage user = users[_referrer]; uint256 rewardPerTokenStored = vipPool.rewardPerTokenStored; uint256 lpSupply = vipPool.vipNumber; if (block.timestamp > vipPool.lastTime && lpSupply != 0) { uint256 multiplier = getMultiplier(vipPool.lastTime, block.timestamp); uint256 lefReward = multiplier.mul(rewardRate).mul(vipPool.allocPoint).div(totalAllocPoint); rewardPerTokenStored = rewardPerTokenStored.add(lefReward.div(lpSupply)); } return rewardPerTokenStored.sub(user.referRewardPerTokenPaid).add(pengdingReward); } return pengdingReward; } // Add a new lp to the pool. Can only be called by the owner. // XXX DO NOT add the same LP token more than once. Rewards will be messed up if you do. function addLp(uint256 _allocPoint, IERC20 _lpToken) public onlyOwner { uint256 lastRewardTime = block.timestamp > starttime ? block.timestamp : starttime; //totalAllocPoint = totalAllocPoint.add(_allocPoint); poolInfo.push(PoolInfo({ lpToken: _lpToken, allocPoint: _allocPoint, lastRewardTime: lastRewardTime, accLefPerShare: 0, totalPool:0 })); } function addVipPoolPoint(uint256 _vipIndex,uint256 _allocPoint) public onlyOwner { uint256 lastTime = block.timestamp > starttime ? block.timestamp : starttime; vipPoolInfo[_vipIndex].allocPoint = _allocPoint; if(vipPoolInfo[_vipIndex].lastTime == 0){ vipPoolInfo[_vipIndex].lastTime = lastTime; } // vipPoolInfo[_vipIndex] =VipPoolInfo({ // allocPoint: _allocPoint, // lastTime:lastTime, // rewardPerTokenStored:0, // vipNumber:0 // }); } // Update the given pool's Lef allocation point. Can only be called by the owner. function set(uint256 _pid, uint256 _allocPoint) public onlyOwner { totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid].allocPoint).add(_allocPoint); poolInfo[_pid].allocPoint = _allocPoint; } function setTotalAllocPoint(uint256 _totalAllocPoint) public onlyOwner{ totalAllocPoint = _totalAllocPoint; } function setRewardRate(uint256 _rewardRate) public onlyOwner { rewardRate = _rewardRate; } // Return reward multiplier over the given _from to _to block. function getMultiplier(uint256 _from, uint256 _to) public view returns (uint256) { if (_to <= periodFinish) { return _to.sub(_from).mul(BONUS_MULTIPLIER); } else if (_from >= periodFinish) { return _to.sub(_from); } else { return periodFinish.sub(_from).mul(BONUS_MULTIPLIER).add( _to.sub(periodFinish) ); } } function pendingLef(uint256 _pid, address _user) public view returns (uint256) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accLefPerShare = pool.accLefPerShare; uint256 lpSupply = pool.totalPool; if (block.timestamp > pool.lastRewardTime && lpSupply != 0) { uint256 multiplier = getMultiplier(pool.lastRewardTime, block.timestamp); uint256 lefReward = multiplier.mul(rewardRate).mul(pool.allocPoint).div(totalAllocPoint); accLefPerShare = pool.accLefPerShare.add(lefReward.mul(1e18).div(lpSupply)); } return user.amount.mul((accLefPerShare).sub(user.userRewardPerTokenPaid)).div(1e18).add(user.reward); } function pendingAllLef(address _user) public view returns (uint256) { uint256 result = 0; for(uint256 i = 0;i< poolInfo.length;i++ ){ result = result.add(pendingLef(i,_user)); } return result; } function allLefAmount(address _user) public view returns (uint256) { uint256 result = 0; for(uint256 i = 0;i< poolInfo.length;i++ ){ UserInfo storage user = userInfo[i][_user]; result = result.add(pendingLef(i,_user).add(user.rewardPaid)); } return result; } function getAllDeposit(address _user) public view returns (uint256) { uint256 result = 0; for(uint256 i = 0;i< poolInfo.length;i++ ){ UserInfo storage user = userInfo[i][_user]; result = result.add(user.amount); } return result; } function updateVipPool(address _user) internal { address _referrer = users[_user].referrer; for(uint i = 1;i < 3;i++){ if(isUserExists(_referrer) && _referrer != address(0)){ uint256 vip = getVipLevel(_referrer); uint256 _vip = users[_referrer].vip; uint256 skip_num ; if(vip > _vip){ skip_num = vip.sub(_vip); }else if(vip < _vip){ skip_num = _vip.sub(vip); } if(skip_num != 0){ bool gloryBonus = false; if(i == 2 && users[_user].vip >= 2 && vip >= 2){ gloryBonus == true; } if(_vip != 0){ VipPoolInfo storage _vpInfo = vipPoolInfo[_vip]; if(vipPoolInfo[_vip].vipNumber != 0){ uint256 _multiplier = getMultiplier(_vpInfo.lastTime, block.timestamp); uint256 _lefReward; if(gloryBonus){ _lefReward = _multiplier.mul(rewardRate).mul((_vpInfo.allocPoint).add(totalAllocPoint.mul(3).div(100))).div(totalAllocPoint); }else{ _lefReward = _multiplier.mul(rewardRate).mul(_vpInfo.allocPoint).div(totalAllocPoint); } totalMinted = totalMinted.add(_lefReward); //lef.mint(address(this), _lefReward); _vpInfo.rewardPerTokenStored = _vpInfo.rewardPerTokenStored.add(_lefReward.div(_vpInfo.vipNumber)); users[_referrer].referReward = ((_vpInfo.rewardPerTokenStored).sub(users[_referrer].referRewardPerTokenPaid)).add(users[_referrer].referReward); _vpInfo.vipNumber -= 1; users[_referrer].referRewardPerTokenPaid = _vpInfo.rewardPerTokenStored; _vpInfo.lastTime = block.timestamp; } } if(vip != 0){ VipPoolInfo storage vpInfo = vipPoolInfo[vip]; if(vpInfo.vipNumber != 0){ uint256 multiplier = getMultiplier(vpInfo.lastTime, block.timestamp); uint256 lefReward; if(gloryBonus){ lefReward = multiplier.mul(rewardRate).mul((vpInfo.allocPoint).add(totalAllocPoint.mul(3).div(100))).div(totalAllocPoint); }else{ lefReward = multiplier.mul(rewardRate).mul(vpInfo.allocPoint).div(totalAllocPoint); } totalMinted = totalMinted.add(lefReward); //lef.mint(address(this), lefReward); vpInfo.rewardPerTokenStored = vpInfo.rewardPerTokenStored.add(lefReward.div(vpInfo.vipNumber)); } //if(vpInfo.rewardPerTokenStored != 0){ // users[_referrer].referReward = ((vpInfo.rewardPerTokenStored).sub(users[_referrer].referRewardPerTokenPaid)).add(users[_referrer].referReward); //} vpInfo.vipNumber += 1; users[_referrer].referRewardPerTokenPaid = vpInfo.rewardPerTokenStored; vpInfo.lastTime = block.timestamp; } } users[_referrer].vip= vip; _referrer = users[_referrer].referrer; } } } function getVipLevel(address _user) public view returns(uint256){ uint256 vip = 0; if(isUserExists(_user)){ uint256 directReferAmount = users[_user].referAmount[0]; // uint256 indirectReferAmount = users[_user].referAmount[1]; for(uint256 i = 1;i<=3;i++){ if(directReferAmount < vipLevel[i]){ return vip; } else { vip = i; } } } return vip; } function getReferAmount(address _user,uint256 _index) public view returns(uint256){ if(isUserExists(_user)){ return users[_user].referAmount[_index]; } return 0; } // Update reward variables of the given pool to be up-to-date. function updatePool(uint256 _pid,address _user) internal { PoolInfo storage pool = poolInfo[_pid]; if (block.timestamp <= pool.lastRewardTime) { return; } uint256 lpSupply = pool.totalPool; if (lpSupply == 0) { pool.lastRewardTime = block.timestamp; return; } UserInfo storage user = userInfo[_pid][_user]; uint256 multiplier = getMultiplier(pool.lastRewardTime, block.timestamp); uint256 lefReward = multiplier.mul(rewardRate).mul(pool.allocPoint).div(totalAllocPoint); totalMinted = totalMinted.add(lefReward); //lef.mint(address(this), lefReward); pool.accLefPerShare = pool.accLefPerShare.add(lefReward.mul(1e18).div(lpSupply)); user.reward = user.amount.mul((pool.accLefPerShare).sub(user.userRewardPerTokenPaid)).div(1e18).add(user.reward); user.userRewardPerTokenPaid = pool.accLefPerShare; pool.lastRewardTime = block.timestamp; } // Deposit LP tokens to MasterChef for lef allocation. function deposit(uint256 _pid, uint256 _amount) public checkStart checkhalve{ require(isUserExists(msg.sender), "user don't exists"); PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; updatePool(_pid,msg.sender); if(_amount > 0) { pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount); user.amount = user.amount.add(_amount); user.updateTime = block.timestamp; user.pid = _pid; pool.totalPool = pool.totalPool.add(_amount); address _referrer = users[msg.sender].referrer; for(uint256 i = 0;i<2;i++){ if(_referrer!= address(0) && isUserExists(_referrer)){ users[_referrer].referAmount[i] += _amount; _referrer = users[_referrer].referrer; } } } // updateVipPool(msg.sender); emit Deposit(msg.sender, _pid, _amount); } function getReward(uint256 _pid) public { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; uint256 accLefPerShare = pool.accLefPerShare; uint256 lpSupply = pool.totalPool; if (block.timestamp > pool.lastRewardTime && lpSupply != 0) { uint256 multiplier = getMultiplier(pool.lastRewardTime, block.timestamp); uint256 lefReward = multiplier.mul(rewardRate).mul(pool.allocPoint).div(totalAllocPoint); accLefPerShare = pool.accLefPerShare.add(lefReward.mul(10e18).div(lpSupply)); } uint256 reward = user.amount.mul((accLefPerShare).sub(user.userRewardPerTokenPaid)).div(1e18).add(user.reward); if (reward > 0) { safeLefTransfer(msg.sender, reward); user.rewardPaid = user.rewardPaid.add(reward); user.reward = 0; emit RewardPaid(msg.sender, reward); } user.userRewardPerTokenPaid = accLefPerShare; } // Withdraw LP tokens from MasterChef. function withdraw(uint256 _pid, uint256 _amount) public checkhalve{ UserInfo storage user = userInfo[_pid][msg.sender]; if(_pid != 0 && _pid < 3){ require(block.timestamp > DURATIONS[_pid].add(user.updateTime),""); } PoolInfo storage pool = poolInfo[_pid]; require(user.amount >= _amount, "withdraw: not good"); updatePool(_pid,msg.sender); safeLefTransfer(msg.sender, user.reward); user.reward = 0; user.rewardPaid = user.rewardPaid.add(user.reward); emit RewardPaid(msg.sender, user.rewardPaid); if(_amount > 0) { user.amount = user.amount.sub(_amount); pool.lpToken.safeTransfer(address(msg.sender), _amount); pool.totalPool -= _amount; address _referrer = users[msg.sender].referrer; for(uint256 i = 0;i<2;i++){ if(_referrer!= address(0) && isUserExists(_referrer)){ users[_referrer].referAmount[i] -= _amount; _referrer = users[_referrer].referrer; } } } updateVipPool(msg.sender); emit Withdraw(msg.sender, _pid, _amount); } // Withdraw without caring about rewards. EMERGENCY ONLY. // function emergencyWithdraw(uint256 _pid) public { // PoolInfo storage pool = poolInfo[_pid]; // UserInfo storage user = userInfo[_pid][msg.sender]; // pool.lpToken.safeTransfer(address(msg.sender), user.amount); // emit EmergencyWithdraw(msg.sender, _pid, user.amount); // user.amount = 0; // } // Safe lef transfer function, just in case if rounding error causes pool to not have enough lefs. function safeLefTransfer(address _to, uint256 _amount) internal { uint256 lefBal = lef.balanceOf(address(this)); if (_amount > lefBal) { lef.transfer(_to, lefBal); } else { lef.transfer(_to, _amount); } } modifier checkhalve(){ if (totalMinted >= 500000 *1e18) { // initreward = initreward.mul(50).div(100); rewardRate = rewardRate.mul(90).div(100); totalMinted = 0; // periodFinish = periodFinish.add(DURATION); } _; } modifier checkStart(){ require(block.timestamp > starttime,"not start"); _; } // Update dev address by the previous dev. }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"Deposit","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":"address","name":"referrer","type":"address"},{"indexed":true,"internalType":"uint256","name":"userId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"referrerId","type":"uint256"}],"name":"Registration","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","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":"Withdraw","type":"event"},{"inputs":[],"name":"BONUS_MULTIPLIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_lpToken","type":"address"}],"name":"addLp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_vipIndex","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"}],"name":"addVipPoolPoint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"allLefAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultReferAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"drawPending_threshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"drawReferPending","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getAllDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"getMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getReferAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_referrer","type":"address"}],"name":"getReferReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getVipLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_lef","type":"address"},{"internalType":"uint256","name":"_rewardRate","type":"uint256"},{"internalType":"uint256","name":"_starttime","type":"uint256"},{"internalType":"uint256","name":"_periodFinish","type":"uint256"},{"internalType":"address","name":"_defaultReferAddr","type":"address"}],"name":"initContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"isUserExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastUserId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lef","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"pendingAllLef","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingLef","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IERC20","name":"lpToken","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardTime","type":"uint256"},{"internalType":"uint256","name":"accLefPerShare","type":"uint256"},{"internalType":"uint256","name":"totalPool","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"regisUser","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"referrerAddress","type":"address"}],"name":"registrationExt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_threshold","type":"uint256"}],"name":"setDrawReferThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardRate","type":"uint256"}],"name":"setRewardRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalAllocPoint","type":"uint256"}],"name":"setTotalAllocPoint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"level","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setVipLevel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"starttime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"pid","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"reward","type":"uint256"},{"internalType":"uint256","name":"rewardPaid","type":"uint256"},{"internalType":"uint256","name":"updateTime","type":"uint256"},{"internalType":"uint256","name":"userRewardPerTokenPaid","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"users","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"referrer","type":"address"},{"internalType":"uint256","name":"referReward","type":"uint256"},{"internalType":"uint256","name":"totalReward","type":"uint256"},{"internalType":"uint256","name":"referRewardPerTokenPaid","type":"uint256"},{"internalType":"uint256","name":"vip","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"vipLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"vipPoolInfo","outputs":[{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastTime","type":"uint256"},{"internalType":"uint256","name":"rewardPerTokenStored","type":"uint256"},{"internalType":"uint256","name":"vipNumber","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600260055560e06040526203f4806080908152620d2f0060a052621d010060c0526200003090600790600362000102565b506008805460ff19169055635f5b74d06009556000600a819055600b819055600c81905569043c33c1937564800000600d55600f805463ffffffff19169055601080546001600160a01b03191673cfce2a772ae87c5fae474b2de0324ee19c2c145f1790556011819055620000ad6001600160e01b03620000fd16565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000176565b335b90565b82805482825590600052602060002090810192821562000147579160200282015b8281111562000147578251829062ffffff1690559160200191906001019062000123565b506200015592915062000159565b5090565b620000ff91905b8082111562000155576000815560010162000160565b612ed980620001866000396000f3fe608060405234801561001057600080fd5b506004361061025e5760003560e01c8063768599c711610146578063a2309ff8116100c3578063cb41eda811610087578063cb41eda814610737578063cc1fc7f11461073f578063e2bbb15814610765578063ebe2b12b14610788578063f2fde38b14610790578063f7184aed146107b65761025e565b8063a2309ff81461068c578063a3ec3d7b14610694578063a449a7131461069c578063a87430ba146106b9578063ca8e6c031461071a5761025e565b80638da588971161010a5780638da58897146105dd5780638da5cb5b146105e55780638dbb1e3a146105ed57806393f1a40b146106105780639e447fc61461066f5761025e565b8063768599c71461054257806378609c5e14610565578063797eee24146105a75780637b0a47ee146105cd5780638aa28550146105d55761025e565b8063348d4487116101df57806358eb8d88116101a357806358eb8d881461049757806359948f44146104ba5780635cc61bbc146104e05780636b6854b11461050c57806370b895c714610532578063715018a61461053a5761025e565b8063348d4487146104045780633df5ef101461040c578063441a3e70146104325780634fe1777314610455578063509222cd1461045d5761025e565b806317caf6f11161022657806317caf6f1146103775780631ab06ee51461037f5780631c4b774b146103a45780632cb8b90e146103c157806332854c13146103de5761025e565b8063081e3eda1461026357806311b1d8281461027d578063151b03c1146102c05780631526fe27146102ec578063155298a51461033e575b600080fd5b61026b6107e2565b60408051918252519081900360200190f35b61029a6004803603602081101561029357600080fd5b50356107e9565b604080519485526020850193909352838301919091526060830152519081900360800190f35b61026b600480360360408110156102d657600080fd5b506001600160a01b038135169060200135610812565b6103096004803603602081101561030257600080fd5b5035610865565b604080516001600160a01b03909616865260208601949094528484019290925260608401526080830152519081900360a00190f35b61035b6004803603602081101561035457600080fd5b50356108ad565b604080516001600160a01b039092168252519081900360200190f35b61026b6108c8565b6103a26004803603604081101561039557600080fd5b50803590602001356108ce565b005b6103a2600480360360208110156103ba57600080fd5b5035610996565b6103a2600480360360208110156103d757600080fd5b5035610b2f565b61026b600480360360208110156103f457600080fd5b50356001600160a01b0316610b8c565b61026b610c12565b61026b6004803603602081101561042257600080fd5b50356001600160a01b0316610c18565b6103a26004803603604081101561044857600080fd5b5080359060200135610c7f565b61026b610f5d565b6104836004803603602081101561047357600080fd5b50356001600160a01b0316610f63565b604080519115158252519081900360200190f35b6103a2600480360360408110156104ad57600080fd5b5080359060200135610f80565b61026b600480360360208110156104d057600080fd5b50356001600160a01b0316611023565b6103a2600480360360408110156104f657600080fd5b50803590602001356001600160a01b0316611075565b61026b6004803603602081101561052257600080fd5b50356001600160a01b03166111fc565b61035b611312565b6103a2611329565b6103a26004803603604081101561055857600080fd5b50803590602001356113cb565b6103a2600480360360a081101561057b57600080fd5b506001600160a01b03813581169160208101359160408201359160608101359160809091013516611465565b6103a2600480360360208110156105bd57600080fd5b50356001600160a01b03166116a1565b61026b6116ae565b61026b6116b4565b61026b6116b9565b61035b6116bf565b61026b6004803603604081101561060357600080fd5b50803590602001356116ce565b61063c6004803603604081101561062657600080fd5b50803590602001356001600160a01b0316611740565b604080519687526020870195909552858501939093526060850191909152608084015260a0830152519081900360c00190f35b6103a26004803603602081101561068557600080fd5b503561177e565b61026b6117db565b6103a26117e1565b61026b600480360360208110156106b257600080fd5b5035611988565b6106df600480360360208110156106cf57600080fd5b50356001600160a01b031661199a565b604080519687526001600160a01b039095166020870152858501939093526060850191909152608084015260a0830152519081900360c00190f35b6103a26004803603602081101561073057600080fd5b50356119dc565b61035b611a39565b61026b6004803603602081101561075557600080fd5b50356001600160a01b0316611a48565b6103a26004803603604081101561077b57600080fd5b5080359060200135611a7b565b61026b611ce4565b6103a2600480360360208110156107a657600080fd5b50356001600160a01b0316611cea565b61026b600480360360408110156107cc57600080fd5b50803590602001356001600160a01b0316611de2565b6002545b90565b600360208190526000918252604090912080546001820154600283015492909301549092919084565b600061081d83610f63565b1561085b576001600160a01b038316600090815260046020526040902060020180548390811061084957fe5b9060005260206000200154905061085f565b5060005b92915050565b6002818154811061087257fe5b6000918252602090912060059091020180546001820154600283015460038401546004909401546001600160a01b0390931694509092909185565b6006602052600090815260409020546001600160a01b031681565b60115481565b6108d6611eef565b6000546001600160a01b03908116911614610926576040805162461bcd60e51b81526020600482018190526024820152600080516020612e5a833981519152604482015290519081900360640190fd5b6109698161095d6002858154811061093a57fe5b906000526020600020906005020160010154601154611ef390919063ffffffff16565b9063ffffffff611f3c16565b601181905550806002838154811061097d57fe5b9060005260206000209060050201600101819055505050565b6000600282815481106109a557fe5b6000918252602080832085845260018252604080852033865290925292206003600590920290920190810154600482015460028301549294509091421180156109ed57508015155b15610a78576000610a028560020154426116ce565b90506000610a41601154610a358860010154610a29600b5487611f9690919063ffffffff16565b9063ffffffff611f9616565b9063ffffffff611fef16565b9050610a73610a6284610a3584678ac7230489e8000063ffffffff611f9616565b60038801549063ffffffff611f3c16565b935050505b6000610ab9846002015461095d670de0b6b3a7640000610a35610aa8896005015489611ef390919063ffffffff16565b60018a01549063ffffffff611f9616565b90508015610b2357610acb3382612031565b6003840154610ae0908263ffffffff611f3c16565b60038501556000600285015560408051828152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b50506005909101555050565b610b37611eef565b6000546001600160a01b03908116911614610b87576040805162461bcd60e51b81526020600482018190526024820152600080516020612e5a833981519152604482015290519081900360640190fd5b600d55565b600080610b9883610f63565b15610c0a576001600160a01b038316600090815260046020526040812060020180548290610bc257fe5b600091825260209091200154905060015b60038111610c07576000818152600e6020526040902054821015610bfc57829350505050610c0d565b809250600101610bd3565b50505b90505b919050565b60055481565b600080805b600254811015610c785760008181526001602090815260408083206001600160a01b038816845290915290206003810154610c6d90610c609061095d8589611de2565b849063ffffffff611f3c16565b925050600101610c1d565b5092915050565b6969e10de76676d0800000600c5410610cb657610cad6064610a35605a600b54611f9690919063ffffffff16565b600b556000600c555b600082815260016020908152604080832033845290915290208215801590610cde5750600383105b15610d3e57610d11816004015460078581548110610cf857fe5b9060005260206000200154611f3c90919063ffffffff16565b4211610d3e576040805162461bcd60e51b8152602060048201526000602482015290519081900360640190fd5b600060028481548110610d4d57fe5b906000526020600020906005020190508282600101541015610dab576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b610db584336121db565b610dc3338360020154612031565b6000600283018190556003830154610de09163ffffffff611f3c16565b60038301819055604080519182525133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a28215610f17576001820154610e37908463ffffffff611ef316565b60018301558054610e58906001600160a01b0316338563ffffffff61232216565b60048082018054859003905533600090815260209190915260408120600101546001600160a01b0316905b6002811015610f14576001600160a01b03821615801590610ea85750610ea882610f63565b15610f0c576001600160a01b0382166000908152600460205260409020600201805486919083908110610ed757fe5b600091825260208083209091018054939093039092556001600160a01b03938416815260049091526040902060010154909116905b600101610e83565b50505b610f2033612374565b604080518481529051859133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a350505050565b600d5481565b6001600160a01b0316600090815260046020526040902054151590565b610f88611eef565b6000546001600160a01b03908116911614610fd8576040805162461bcd60e51b81526020600482018190526024820152600080516020612e5a833981519152604482015290519081900360640190fd5b60006009544211610feb57600954610fed565b425b60008481526003602052604090208381556001015490915061101e5760008381526003602052604090206001018190555b505050565b600080805b600254811015610c785760008181526001602081815260408084206001600160a01b03891685529091529091209081015461106a90849063ffffffff611f3c16565b925050600101611028565b61107d611eef565b6000546001600160a01b039081169116146110cd576040805162461bcd60e51b81526020600482018190526024820152600080516020612e5a833981519152604482015290519081900360640190fd5b600060095442116110e0576009546110e2565b425b6040805160a0810182526001600160a01b039485168152602081019586529081019182526000606082018181526080830182815260028054600181018255935292517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace600590930292830180546001600160a01b031916919097161790955594517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acf86015590517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad085015591517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad184015550517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad290910155565b60008061120883610f63565b611213579050610c0d565b600061121e84610b8c565b6001600160a01b038516600090815260046020526040902060030154925090508015610c785760008181526003602081815260408084206001600160a01b0389168552600490925290922060028301549183015460018401549192914211801561128757508015155b156112ea57600061129c8560010154426116ce565b905060006112c3601154610a358860000154610a29600b5487611f9690919063ffffffff16565b90506112e56112d8828563ffffffff611fef16565b859063ffffffff611f3c16565b935050505b6113058661095d856005015485611ef390919063ffffffff16565b9650505050505050610c0d565b600f5464010000000090046001600160a01b031681565b611331611eef565b6000546001600160a01b03908116911614611381576040805162461bcd60e51b81526020600482018190526024820152600080516020612e5a833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6113d3611eef565b6000546001600160a01b03908116911614611423576040805162461bcd60e51b81526020600482018190526024820152600080516020612e5a833981519152604482015290519081900360640190fd5b600f54600363ffffffff909116101561145357600f805463ffffffff8082166001011663ffffffff199091161790555b6000918252600e602052604090912055565b61146d611eef565b6000546001600160a01b039081169116146114bd576040805162461bcd60e51b81526020600482018190526024820152600080516020612e5a833981519152604482015290519081900360640190fd5b60085460ff1615611507576040805162461bcd60e51b815260206004820152600f60248201526e1a185cc81a5b9a5d1a585b1a5e9959608a1b604482015290519081900360640190fd5b600f8054640100000000600160c01b0319166401000000006001600160a01b038881169190910291909117909155600b8590556009849055600a839055601080546001600160a01b031916918316919091179055611563612d41565b6040805160e081018252600181526000602082015281516002808252606082018452919283019181602001602082028036833750505081526000602080830182905260408084018390526060840183905260809093018290526010546001600160a01b039081168352600482529183902084518155848201516001820180546001600160a01b03191691909416179092559183015180519394508493919261161392600285019290910190612d87565b50606082015160038201556080820151600482015560a0820151600582015560c090910151600691820155601054600160008190526020929092527f3e5fec24aa4dc4e5aee2e025e51e1392c72a2500577559fae9665c6d52bd6a3180546001600160a01b0319166001600160a01b039092169190911790556008805460ff19169091179055505050505050565b6116ab33826126fd565b50565b600b5481565b600381565b60095481565b6000546001600160a01b031690565b6000600a5482116116f5576116ee6003610a29848663ffffffff611ef316565b905061085f565b600a54831061170e576116ee828463ffffffff611ef316565b6116ee611726600a5484611ef390919063ffffffff16565b61095d6003610a2987600a54611ef390919063ffffffff16565b600160208181526000938452604080852090915291835291208054918101546002820154600383015460048401546005909401549293919290919086565b611786611eef565b6000546001600160a01b039081169116146117d6576040805162461bcd60e51b81526020600482018190526024820152600080516020612e5a833981519152604482015290519081900360640190fd5b600b55565b600c5481565b6117ea33610f63565b611829576040805162461bcd60e51b815260206004820152600b60248201526a757365722065786973747360a81b604482015290519081900360640190fd5b600d5461183533611023565b1161187d576040805162461bcd60e51b81526020600482015260136024820152720daeae6e840dae8406460606040544062ca627606b1b604482015290519081900360640190fd5b60008061188933610b8c565b9050801561198457600081815260036020818152604080842033855260049092529092206002830154918301546001840154919291421180156118cb57508015155b156119215760006118e08560010154426116ce565b90506000611907601154610a358860000154610a29600b5487611f9690919063ffffffff16565b905061191c6112d8828563ffffffff611fef16565b935050505b33600090815260046020526040902060030154600584015461194f919061095d90859063ffffffff611ef316565b955061195b3387612031565b503360009081526004602081905260408220600381019290925501805486019055600590910155505b5050565b600e6020526000908152604090205481565b600460208190526000918252604090912080546001820154600383015493830154600584015460069094015492946001600160a01b0390921693919290919086565b6119e4611eef565b6000546001600160a01b03908116911614611a34576040805162461bcd60e51b81526020600482018190526024820152600080516020612e5a833981519152604482015290519081900360640190fd5b601155565b6010546001600160a01b031681565b600080805b600254811015610c7857611a71611a648286611de2565b839063ffffffff611f3c16565b9150600101611a4d565b6009544211611abd576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6969e10de76676d0800000600c5410611af457611aeb6064610a35605a600b54611f9690919063ffffffff16565b600b556000600c555b611afd33610f63565b611b42576040805162461bcd60e51b81526020600482015260116024820152707573657220646f6e27742065786973747360781b604482015290519081900360640190fd5b600060028381548110611b5157fe5b600091825260208083208684526001825260408085203380875293529093206005909202909201925090611b869085906121db565b8215611c9e578154611ba9906001600160a01b031633308663ffffffff61296016565b6001810154611bbe908463ffffffff611f3c16565b600182015542600480830191909155848255820154611be3908463ffffffff611f3c16565b60048084019190915533600090815260209190915260408120600101546001600160a01b0316905b6002811015611c9b576001600160a01b03821615801590611c305750611c3082610f63565b15611c93576001600160a01b0382166000908152600460205260409020600201805486919083908110611c5f57fe5b6000918252602080832090910180549093019092556001600160a01b03938416815260049091526040902060010154909116905b600101611c0b565b50505b611ca733612374565b604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a350505050565b600a5481565b611cf2611eef565b6000546001600160a01b03908116911614611d42576040805162461bcd60e51b81526020600482018190526024820152600080516020612e5a833981519152604482015290519081900360640190fd5b6001600160a01b038116611d875760405162461bcd60e51b8152600401808060200182810382526026815260200180612ded6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60008060028481548110611df257fe5b600091825260208083208784526001825260408085206001600160a01b03891686529092529220600360059092029092019081015460048201546002830154929450909142118015611e4357508015155b15611ea5576000611e588560020154426116ce565b90506000611e7f601154610a358860010154610a29600b5487611f9690919063ffffffff16565b9050611ea0610a6284610a3584670de0b6b3a764000063ffffffff611f9616565b935050505b611ee4836002015461095d670de0b6b3a7640000610a35611ed3886005015488611ef390919063ffffffff16565b60018901549063ffffffff611f9616565b979650505050505050565b3390565b6000611f3583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506129c0565b9392505050565b600082820183811015611f35576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082611fa55750600061085f565b82820282848281611fb257fe5b0414611f355760405162461bcd60e51b8152600401808060200182810382526021815260200180612e396021913960400191505060405180910390fd5b6000611f3583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612a57565b600f54604080516370a0823160e01b8152306004820152905160009264010000000090046001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561208457600080fd5b505afa158015612098573d6000803e3d6000fd5b505050506040513d60208110156120ae57600080fd5b505190508082111561214b57600f546040805163a9059cbb60e01b81526001600160a01b0386811660048301526024820185905291516401000000009093049091169163a9059cbb916044808201926020929091908290030181600087803b15801561211957600080fd5b505af115801561212d573d6000803e3d6000fd5b505050506040513d602081101561214357600080fd5b5061101e9050565b600f546040805163a9059cbb60e01b81526001600160a01b0386811660048301526024820186905291516401000000009093049091169163a9059cbb916044808201926020929091908290030181600087803b1580156121aa57600080fd5b505af11580156121be573d6000803e3d6000fd5b505050506040513d60208110156121d457600080fd5b5050505050565b6000600283815481106121ea57fe5b906000526020600020906005020190508060020154421161220b5750611984565b600481015480612222575042600290910155611984565b60008481526001602090815260408083206001600160a01b03871684529091528120600284015490919061225690426116ce565b9050600061227d601154610a358760010154610a29600b5487611f9690919063ffffffff16565b600c54909150612293908263ffffffff611f3c16565b600c556122c66122b585610a3584670de0b6b3a764000063ffffffff611f9616565b60038701549063ffffffff611f3c16565b60038601819055600284015460058501546122fd9261095d91670de0b6b3a764000091610a3591611ed3919063ffffffff611ef316565b6002808501919091556003860154600590940193909355505042920191909155505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261101e908490612abc565b6001600160a01b038082166000908152600460205260409020600190810154909116905b600381101561101e576123aa82610f63565b80156123be57506001600160a01b03821615155b156126f55760006123ce83610b8c565b6001600160a01b0384166000908152600460205260408120600601549192508183111561240c57612405838363ffffffff611ef316565b9050612427565b8183101561242757612424828463ffffffff611ef316565b90505b80156126c957600060028514801561245b57506001600160a01b038716600090815260046020526040902060060154600211155b8015612468575060028410155b5082156125d357600083815260036020819052604090912090810154156125d15760006124998260010154426116ce565b9050600083156124ed576011546124e690610a356124d26124c460648385600363ffffffff611f9616565b87549063ffffffff611f3c16565b600b54610a2990879063ffffffff611f9616565b9050612513565b612510601154610a358560000154610a29600b5487611f9690919063ffffffff16565b90505b600c54612526908263ffffffff611f3c16565b600c5560038301546125549061254390839063ffffffff611fef16565b60028501549063ffffffff611f3c16565b600284018190556001600160a01b038a16600090815260046020526040902060038101546005909101546125919261095d9163ffffffff611ef316565b6001600160a01b038a1660009081526004602052604090206003808201929092559084018054600019019055600284015460059091015550504260018201555b505b83156126c757600084815260036020819052604090912090810154156126935760006126038260010154426116ce565b9050600083156126355760115461262e90610a356124d26124c460648385600363ffffffff611f9616565b905061265b565b612658601154610a358560000154610a29600b5487611f9690919063ffffffff16565b90505b600c5461266e908263ffffffff611f3c16565b600c55600383015461268b9061254390839063ffffffff611fef16565b600284015550505b600381018054600190810190915560028201546001600160a01b038916600090815260046020526040902060050155429101555b505b50506001600160a01b039283166000908152600460205260409020600681019190915560010154909116905b600101612398565b61270682610f63565b15612746576040805162461bcd60e51b815260206004820152600b60248201526a757365722065786973747360a81b604482015290519081900360640190fd5b61274f81610f63565b612796576040805162461bcd60e51b81526020600482015260136024820152727265666572726572206e6f742065786973747360681b604482015290519081900360640190fd5b813b63ffffffff8116156127e8576040805162461bcd60e51b815260206004820152601460248201527318d85b9b9bdd08189948184818dbdb9d1c9858dd60621b604482015290519081900360640190fd5b6127f0612d41565b6040805160e08101825260055481526001600160a01b0385166020820152815160028082526060820184529192830191816020016020820280368337505050815260006020808301829052604080840183905260608401839052608090930182905260055482526006815282822080546001600160a01b03199081166001600160a01b038b8116918217909355845260048352928490208551815585830151600182018054909516921691909117909255918301518051939450849391926128c092600285019290910190612d87565b5060608201516003820155608082015160048083019190915560a083015160058084019190915560c09093015160069092019190915581546001019091556001600160a01b0380861660008181526020938452604080822054938816808352918190205481519081529051939491937f309bb360e8b69c23937ccc5fb01f9aeeead1c95a99604e175113ff82f2b1723a929181900390910190a450505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526129ba908590612abc565b50505050565b60008184841115612a4f5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612a145781810151838201526020016129fc565b50505050905090810190601f168015612a415780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183612aa65760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612a145781810151838201526020016129fc565b506000838581612ab257fe5b0495945050505050565b6060612b11826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612b6d9092919063ffffffff16565b80519091501561101e57808060200190516020811015612b3057600080fd5b505161101e5760405162461bcd60e51b815260040180806020018281038252602a815260200180612e7a602a913960400191505060405180910390fd5b6060612b7c8484600085612b84565b949350505050565b606082471015612bc55760405162461bcd60e51b8152600401808060200182810382526026815260200180612e136026913960400191505060405180910390fd5b612bce85612cd5565b612c1f576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310612c5e5780518252601f199092019160209182019101612c3f565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612cc0576040519150601f19603f3d011682016040523d82523d6000602084013e612cc5565b606091505b5091509150611ee4828286612cdb565b3b151590565b60608315612cea575081611f35565b825115612cfa5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315612a145781810151838201526020016129fc565b6040518060e001604052806000815260200160006001600160a01b0316815260200160608152602001600081526020016000815260200160008152602001600081525090565b828054828255906000526020600020908101928215612dc2579160200282015b82811115612dc2578251825591602001919060010190612da7565b50612dce929150612dd2565b5090565b6107e691905b80821115612dce5760008155600101612dd856fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220a625adb445bfc3d979eb2e71be4b162b61f4b9cafff71a163adfffbd54a4316364736f6c63430006030033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061025e5760003560e01c8063768599c711610146578063a2309ff8116100c3578063cb41eda811610087578063cb41eda814610737578063cc1fc7f11461073f578063e2bbb15814610765578063ebe2b12b14610788578063f2fde38b14610790578063f7184aed146107b65761025e565b8063a2309ff81461068c578063a3ec3d7b14610694578063a449a7131461069c578063a87430ba146106b9578063ca8e6c031461071a5761025e565b80638da588971161010a5780638da58897146105dd5780638da5cb5b146105e55780638dbb1e3a146105ed57806393f1a40b146106105780639e447fc61461066f5761025e565b8063768599c71461054257806378609c5e14610565578063797eee24146105a75780637b0a47ee146105cd5780638aa28550146105d55761025e565b8063348d4487116101df57806358eb8d88116101a357806358eb8d881461049757806359948f44146104ba5780635cc61bbc146104e05780636b6854b11461050c57806370b895c714610532578063715018a61461053a5761025e565b8063348d4487146104045780633df5ef101461040c578063441a3e70146104325780634fe1777314610455578063509222cd1461045d5761025e565b806317caf6f11161022657806317caf6f1146103775780631ab06ee51461037f5780631c4b774b146103a45780632cb8b90e146103c157806332854c13146103de5761025e565b8063081e3eda1461026357806311b1d8281461027d578063151b03c1146102c05780631526fe27146102ec578063155298a51461033e575b600080fd5b61026b6107e2565b60408051918252519081900360200190f35b61029a6004803603602081101561029357600080fd5b50356107e9565b604080519485526020850193909352838301919091526060830152519081900360800190f35b61026b600480360360408110156102d657600080fd5b506001600160a01b038135169060200135610812565b6103096004803603602081101561030257600080fd5b5035610865565b604080516001600160a01b03909616865260208601949094528484019290925260608401526080830152519081900360a00190f35b61035b6004803603602081101561035457600080fd5b50356108ad565b604080516001600160a01b039092168252519081900360200190f35b61026b6108c8565b6103a26004803603604081101561039557600080fd5b50803590602001356108ce565b005b6103a2600480360360208110156103ba57600080fd5b5035610996565b6103a2600480360360208110156103d757600080fd5b5035610b2f565b61026b600480360360208110156103f457600080fd5b50356001600160a01b0316610b8c565b61026b610c12565b61026b6004803603602081101561042257600080fd5b50356001600160a01b0316610c18565b6103a26004803603604081101561044857600080fd5b5080359060200135610c7f565b61026b610f5d565b6104836004803603602081101561047357600080fd5b50356001600160a01b0316610f63565b604080519115158252519081900360200190f35b6103a2600480360360408110156104ad57600080fd5b5080359060200135610f80565b61026b600480360360208110156104d057600080fd5b50356001600160a01b0316611023565b6103a2600480360360408110156104f657600080fd5b50803590602001356001600160a01b0316611075565b61026b6004803603602081101561052257600080fd5b50356001600160a01b03166111fc565b61035b611312565b6103a2611329565b6103a26004803603604081101561055857600080fd5b50803590602001356113cb565b6103a2600480360360a081101561057b57600080fd5b506001600160a01b03813581169160208101359160408201359160608101359160809091013516611465565b6103a2600480360360208110156105bd57600080fd5b50356001600160a01b03166116a1565b61026b6116ae565b61026b6116b4565b61026b6116b9565b61035b6116bf565b61026b6004803603604081101561060357600080fd5b50803590602001356116ce565b61063c6004803603604081101561062657600080fd5b50803590602001356001600160a01b0316611740565b604080519687526020870195909552858501939093526060850191909152608084015260a0830152519081900360c00190f35b6103a26004803603602081101561068557600080fd5b503561177e565b61026b6117db565b6103a26117e1565b61026b600480360360208110156106b257600080fd5b5035611988565b6106df600480360360208110156106cf57600080fd5b50356001600160a01b031661199a565b604080519687526001600160a01b039095166020870152858501939093526060850191909152608084015260a0830152519081900360c00190f35b6103a26004803603602081101561073057600080fd5b50356119dc565b61035b611a39565b61026b6004803603602081101561075557600080fd5b50356001600160a01b0316611a48565b6103a26004803603604081101561077b57600080fd5b5080359060200135611a7b565b61026b611ce4565b6103a2600480360360208110156107a657600080fd5b50356001600160a01b0316611cea565b61026b600480360360408110156107cc57600080fd5b50803590602001356001600160a01b0316611de2565b6002545b90565b600360208190526000918252604090912080546001820154600283015492909301549092919084565b600061081d83610f63565b1561085b576001600160a01b038316600090815260046020526040902060020180548390811061084957fe5b9060005260206000200154905061085f565b5060005b92915050565b6002818154811061087257fe5b6000918252602090912060059091020180546001820154600283015460038401546004909401546001600160a01b0390931694509092909185565b6006602052600090815260409020546001600160a01b031681565b60115481565b6108d6611eef565b6000546001600160a01b03908116911614610926576040805162461bcd60e51b81526020600482018190526024820152600080516020612e5a833981519152604482015290519081900360640190fd5b6109698161095d6002858154811061093a57fe5b906000526020600020906005020160010154601154611ef390919063ffffffff16565b9063ffffffff611f3c16565b601181905550806002838154811061097d57fe5b9060005260206000209060050201600101819055505050565b6000600282815481106109a557fe5b6000918252602080832085845260018252604080852033865290925292206003600590920290920190810154600482015460028301549294509091421180156109ed57508015155b15610a78576000610a028560020154426116ce565b90506000610a41601154610a358860010154610a29600b5487611f9690919063ffffffff16565b9063ffffffff611f9616565b9063ffffffff611fef16565b9050610a73610a6284610a3584678ac7230489e8000063ffffffff611f9616565b60038801549063ffffffff611f3c16565b935050505b6000610ab9846002015461095d670de0b6b3a7640000610a35610aa8896005015489611ef390919063ffffffff16565b60018a01549063ffffffff611f9616565b90508015610b2357610acb3382612031565b6003840154610ae0908263ffffffff611f3c16565b60038501556000600285015560408051828152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b50506005909101555050565b610b37611eef565b6000546001600160a01b03908116911614610b87576040805162461bcd60e51b81526020600482018190526024820152600080516020612e5a833981519152604482015290519081900360640190fd5b600d55565b600080610b9883610f63565b15610c0a576001600160a01b038316600090815260046020526040812060020180548290610bc257fe5b600091825260209091200154905060015b60038111610c07576000818152600e6020526040902054821015610bfc57829350505050610c0d565b809250600101610bd3565b50505b90505b919050565b60055481565b600080805b600254811015610c785760008181526001602090815260408083206001600160a01b038816845290915290206003810154610c6d90610c609061095d8589611de2565b849063ffffffff611f3c16565b925050600101610c1d565b5092915050565b6969e10de76676d0800000600c5410610cb657610cad6064610a35605a600b54611f9690919063ffffffff16565b600b556000600c555b600082815260016020908152604080832033845290915290208215801590610cde5750600383105b15610d3e57610d11816004015460078581548110610cf857fe5b9060005260206000200154611f3c90919063ffffffff16565b4211610d3e576040805162461bcd60e51b8152602060048201526000602482015290519081900360640190fd5b600060028481548110610d4d57fe5b906000526020600020906005020190508282600101541015610dab576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b610db584336121db565b610dc3338360020154612031565b6000600283018190556003830154610de09163ffffffff611f3c16565b60038301819055604080519182525133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a28215610f17576001820154610e37908463ffffffff611ef316565b60018301558054610e58906001600160a01b0316338563ffffffff61232216565b60048082018054859003905533600090815260209190915260408120600101546001600160a01b0316905b6002811015610f14576001600160a01b03821615801590610ea85750610ea882610f63565b15610f0c576001600160a01b0382166000908152600460205260409020600201805486919083908110610ed757fe5b600091825260208083209091018054939093039092556001600160a01b03938416815260049091526040902060010154909116905b600101610e83565b50505b610f2033612374565b604080518481529051859133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a350505050565b600d5481565b6001600160a01b0316600090815260046020526040902054151590565b610f88611eef565b6000546001600160a01b03908116911614610fd8576040805162461bcd60e51b81526020600482018190526024820152600080516020612e5a833981519152604482015290519081900360640190fd5b60006009544211610feb57600954610fed565b425b60008481526003602052604090208381556001015490915061101e5760008381526003602052604090206001018190555b505050565b600080805b600254811015610c785760008181526001602081815260408084206001600160a01b03891685529091529091209081015461106a90849063ffffffff611f3c16565b925050600101611028565b61107d611eef565b6000546001600160a01b039081169116146110cd576040805162461bcd60e51b81526020600482018190526024820152600080516020612e5a833981519152604482015290519081900360640190fd5b600060095442116110e0576009546110e2565b425b6040805160a0810182526001600160a01b039485168152602081019586529081019182526000606082018181526080830182815260028054600181018255935292517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace600590930292830180546001600160a01b031916919097161790955594517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acf86015590517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad085015591517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad184015550517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad290910155565b60008061120883610f63565b611213579050610c0d565b600061121e84610b8c565b6001600160a01b038516600090815260046020526040902060030154925090508015610c785760008181526003602081815260408084206001600160a01b0389168552600490925290922060028301549183015460018401549192914211801561128757508015155b156112ea57600061129c8560010154426116ce565b905060006112c3601154610a358860000154610a29600b5487611f9690919063ffffffff16565b90506112e56112d8828563ffffffff611fef16565b859063ffffffff611f3c16565b935050505b6113058661095d856005015485611ef390919063ffffffff16565b9650505050505050610c0d565b600f5464010000000090046001600160a01b031681565b611331611eef565b6000546001600160a01b03908116911614611381576040805162461bcd60e51b81526020600482018190526024820152600080516020612e5a833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6113d3611eef565b6000546001600160a01b03908116911614611423576040805162461bcd60e51b81526020600482018190526024820152600080516020612e5a833981519152604482015290519081900360640190fd5b600f54600363ffffffff909116101561145357600f805463ffffffff8082166001011663ffffffff199091161790555b6000918252600e602052604090912055565b61146d611eef565b6000546001600160a01b039081169116146114bd576040805162461bcd60e51b81526020600482018190526024820152600080516020612e5a833981519152604482015290519081900360640190fd5b60085460ff1615611507576040805162461bcd60e51b815260206004820152600f60248201526e1a185cc81a5b9a5d1a585b1a5e9959608a1b604482015290519081900360640190fd5b600f8054640100000000600160c01b0319166401000000006001600160a01b038881169190910291909117909155600b8590556009849055600a839055601080546001600160a01b031916918316919091179055611563612d41565b6040805160e081018252600181526000602082015281516002808252606082018452919283019181602001602082028036833750505081526000602080830182905260408084018390526060840183905260809093018290526010546001600160a01b039081168352600482529183902084518155848201516001820180546001600160a01b03191691909416179092559183015180519394508493919261161392600285019290910190612d87565b50606082015160038201556080820151600482015560a0820151600582015560c090910151600691820155601054600160008190526020929092527f3e5fec24aa4dc4e5aee2e025e51e1392c72a2500577559fae9665c6d52bd6a3180546001600160a01b0319166001600160a01b039092169190911790556008805460ff19169091179055505050505050565b6116ab33826126fd565b50565b600b5481565b600381565b60095481565b6000546001600160a01b031690565b6000600a5482116116f5576116ee6003610a29848663ffffffff611ef316565b905061085f565b600a54831061170e576116ee828463ffffffff611ef316565b6116ee611726600a5484611ef390919063ffffffff16565b61095d6003610a2987600a54611ef390919063ffffffff16565b600160208181526000938452604080852090915291835291208054918101546002820154600383015460048401546005909401549293919290919086565b611786611eef565b6000546001600160a01b039081169116146117d6576040805162461bcd60e51b81526020600482018190526024820152600080516020612e5a833981519152604482015290519081900360640190fd5b600b55565b600c5481565b6117ea33610f63565b611829576040805162461bcd60e51b815260206004820152600b60248201526a757365722065786973747360a81b604482015290519081900360640190fd5b600d5461183533611023565b1161187d576040805162461bcd60e51b81526020600482015260136024820152720daeae6e840dae8406460606040544062ca627606b1b604482015290519081900360640190fd5b60008061188933610b8c565b9050801561198457600081815260036020818152604080842033855260049092529092206002830154918301546001840154919291421180156118cb57508015155b156119215760006118e08560010154426116ce565b90506000611907601154610a358860000154610a29600b5487611f9690919063ffffffff16565b905061191c6112d8828563ffffffff611fef16565b935050505b33600090815260046020526040902060030154600584015461194f919061095d90859063ffffffff611ef316565b955061195b3387612031565b503360009081526004602081905260408220600381019290925501805486019055600590910155505b5050565b600e6020526000908152604090205481565b600460208190526000918252604090912080546001820154600383015493830154600584015460069094015492946001600160a01b0390921693919290919086565b6119e4611eef565b6000546001600160a01b03908116911614611a34576040805162461bcd60e51b81526020600482018190526024820152600080516020612e5a833981519152604482015290519081900360640190fd5b601155565b6010546001600160a01b031681565b600080805b600254811015610c7857611a71611a648286611de2565b839063ffffffff611f3c16565b9150600101611a4d565b6009544211611abd576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6969e10de76676d0800000600c5410611af457611aeb6064610a35605a600b54611f9690919063ffffffff16565b600b556000600c555b611afd33610f63565b611b42576040805162461bcd60e51b81526020600482015260116024820152707573657220646f6e27742065786973747360781b604482015290519081900360640190fd5b600060028381548110611b5157fe5b600091825260208083208684526001825260408085203380875293529093206005909202909201925090611b869085906121db565b8215611c9e578154611ba9906001600160a01b031633308663ffffffff61296016565b6001810154611bbe908463ffffffff611f3c16565b600182015542600480830191909155848255820154611be3908463ffffffff611f3c16565b60048084019190915533600090815260209190915260408120600101546001600160a01b0316905b6002811015611c9b576001600160a01b03821615801590611c305750611c3082610f63565b15611c93576001600160a01b0382166000908152600460205260409020600201805486919083908110611c5f57fe5b6000918252602080832090910180549093019092556001600160a01b03938416815260049091526040902060010154909116905b600101611c0b565b50505b611ca733612374565b604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a350505050565b600a5481565b611cf2611eef565b6000546001600160a01b03908116911614611d42576040805162461bcd60e51b81526020600482018190526024820152600080516020612e5a833981519152604482015290519081900360640190fd5b6001600160a01b038116611d875760405162461bcd60e51b8152600401808060200182810382526026815260200180612ded6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60008060028481548110611df257fe5b600091825260208083208784526001825260408085206001600160a01b03891686529092529220600360059092029092019081015460048201546002830154929450909142118015611e4357508015155b15611ea5576000611e588560020154426116ce565b90506000611e7f601154610a358860010154610a29600b5487611f9690919063ffffffff16565b9050611ea0610a6284610a3584670de0b6b3a764000063ffffffff611f9616565b935050505b611ee4836002015461095d670de0b6b3a7640000610a35611ed3886005015488611ef390919063ffffffff16565b60018901549063ffffffff611f9616565b979650505050505050565b3390565b6000611f3583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506129c0565b9392505050565b600082820183811015611f35576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082611fa55750600061085f565b82820282848281611fb257fe5b0414611f355760405162461bcd60e51b8152600401808060200182810382526021815260200180612e396021913960400191505060405180910390fd5b6000611f3583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612a57565b600f54604080516370a0823160e01b8152306004820152905160009264010000000090046001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561208457600080fd5b505afa158015612098573d6000803e3d6000fd5b505050506040513d60208110156120ae57600080fd5b505190508082111561214b57600f546040805163a9059cbb60e01b81526001600160a01b0386811660048301526024820185905291516401000000009093049091169163a9059cbb916044808201926020929091908290030181600087803b15801561211957600080fd5b505af115801561212d573d6000803e3d6000fd5b505050506040513d602081101561214357600080fd5b5061101e9050565b600f546040805163a9059cbb60e01b81526001600160a01b0386811660048301526024820186905291516401000000009093049091169163a9059cbb916044808201926020929091908290030181600087803b1580156121aa57600080fd5b505af11580156121be573d6000803e3d6000fd5b505050506040513d60208110156121d457600080fd5b5050505050565b6000600283815481106121ea57fe5b906000526020600020906005020190508060020154421161220b5750611984565b600481015480612222575042600290910155611984565b60008481526001602090815260408083206001600160a01b03871684529091528120600284015490919061225690426116ce565b9050600061227d601154610a358760010154610a29600b5487611f9690919063ffffffff16565b600c54909150612293908263ffffffff611f3c16565b600c556122c66122b585610a3584670de0b6b3a764000063ffffffff611f9616565b60038701549063ffffffff611f3c16565b60038601819055600284015460058501546122fd9261095d91670de0b6b3a764000091610a3591611ed3919063ffffffff611ef316565b6002808501919091556003860154600590940193909355505042920191909155505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261101e908490612abc565b6001600160a01b038082166000908152600460205260409020600190810154909116905b600381101561101e576123aa82610f63565b80156123be57506001600160a01b03821615155b156126f55760006123ce83610b8c565b6001600160a01b0384166000908152600460205260408120600601549192508183111561240c57612405838363ffffffff611ef316565b9050612427565b8183101561242757612424828463ffffffff611ef316565b90505b80156126c957600060028514801561245b57506001600160a01b038716600090815260046020526040902060060154600211155b8015612468575060028410155b5082156125d357600083815260036020819052604090912090810154156125d15760006124998260010154426116ce565b9050600083156124ed576011546124e690610a356124d26124c460648385600363ffffffff611f9616565b87549063ffffffff611f3c16565b600b54610a2990879063ffffffff611f9616565b9050612513565b612510601154610a358560000154610a29600b5487611f9690919063ffffffff16565b90505b600c54612526908263ffffffff611f3c16565b600c5560038301546125549061254390839063ffffffff611fef16565b60028501549063ffffffff611f3c16565b600284018190556001600160a01b038a16600090815260046020526040902060038101546005909101546125919261095d9163ffffffff611ef316565b6001600160a01b038a1660009081526004602052604090206003808201929092559084018054600019019055600284015460059091015550504260018201555b505b83156126c757600084815260036020819052604090912090810154156126935760006126038260010154426116ce565b9050600083156126355760115461262e90610a356124d26124c460648385600363ffffffff611f9616565b905061265b565b612658601154610a358560000154610a29600b5487611f9690919063ffffffff16565b90505b600c5461266e908263ffffffff611f3c16565b600c55600383015461268b9061254390839063ffffffff611fef16565b600284015550505b600381018054600190810190915560028201546001600160a01b038916600090815260046020526040902060050155429101555b505b50506001600160a01b039283166000908152600460205260409020600681019190915560010154909116905b600101612398565b61270682610f63565b15612746576040805162461bcd60e51b815260206004820152600b60248201526a757365722065786973747360a81b604482015290519081900360640190fd5b61274f81610f63565b612796576040805162461bcd60e51b81526020600482015260136024820152727265666572726572206e6f742065786973747360681b604482015290519081900360640190fd5b813b63ffffffff8116156127e8576040805162461bcd60e51b815260206004820152601460248201527318d85b9b9bdd08189948184818dbdb9d1c9858dd60621b604482015290519081900360640190fd5b6127f0612d41565b6040805160e08101825260055481526001600160a01b0385166020820152815160028082526060820184529192830191816020016020820280368337505050815260006020808301829052604080840183905260608401839052608090930182905260055482526006815282822080546001600160a01b03199081166001600160a01b038b8116918217909355845260048352928490208551815585830151600182018054909516921691909117909255918301518051939450849391926128c092600285019290910190612d87565b5060608201516003820155608082015160048083019190915560a083015160058084019190915560c09093015160069092019190915581546001019091556001600160a01b0380861660008181526020938452604080822054938816808352918190205481519081529051939491937f309bb360e8b69c23937ccc5fb01f9aeeead1c95a99604e175113ff82f2b1723a929181900390910190a450505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526129ba908590612abc565b50505050565b60008184841115612a4f5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612a145781810151838201526020016129fc565b50505050905090810190601f168015612a415780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183612aa65760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612a145781810151838201526020016129fc565b506000838581612ab257fe5b0495945050505050565b6060612b11826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612b6d9092919063ffffffff16565b80519091501561101e57808060200190516020811015612b3057600080fd5b505161101e5760405162461bcd60e51b815260040180806020018281038252602a815260200180612e7a602a913960400191505060405180910390fd5b6060612b7c8484600085612b84565b949350505050565b606082471015612bc55760405162461bcd60e51b8152600401808060200182810382526026815260200180612e136026913960400191505060405180910390fd5b612bce85612cd5565b612c1f576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310612c5e5780518252601f199092019160209182019101612c3f565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612cc0576040519150601f19603f3d011682016040523d82523d6000602084013e612cc5565b606091505b5091509150611ee4828286612cdb565b3b151590565b60608315612cea575081611f35565b825115612cfa5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315612a145781810151838201526020016129fc565b6040518060e001604052806000815260200160006001600160a01b0316815260200160608152602001600081526020016000815260200160008152602001600081525090565b828054828255906000526020600020908101928215612dc2579160200282015b82811115612dc2578251825591602001919060010190612da7565b50612dce929150612dd2565b5090565b6107e691905b80821115612dce5760008155600101612dd856fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220a625adb445bfc3d979eb2e71be4b162b61f4b9cafff71a163adfffbd54a4316364736f6c63430006030033
Deployed Bytecode Sourcemap
21585:20852:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21585:20852:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;26053:95:0;;;:::i;:::-;;;;;;;;;;;;;;;;22918:50;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;22918:50:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36682:178;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;36682:178:0;;;;;;;;:::i;22538:26::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;22538:26:0;;:::i;:::-;;;;-1:-1:-1;;;;;22538:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23274:44;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;23274:44:0;;:::i;:::-;;;;-1:-1:-1;;;;;23274:44:0;;;;;;;;;;;;;;24099:34;;;:::i;30835:217::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;30835:217:0;;;;;;;:::i;:::-;;38979:994;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;38979:994:0;;:::i;27331:111::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;27331:111:0;;:::i;36275:402::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;36275:402:0;-1:-1:-1;;;;;36275:402:0;;:::i;23244:26::-;;;:::i;32792:289::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;32792:289:0;-1:-1:-1;;;;;32792:289:0;;:::i;40030:1152::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;40030:1152:0;;;;;;;:::i;23633:51::-;;;:::i;26159:104::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;26159:104:0;-1:-1:-1;;;;;26159:104:0;;:::i;:::-;;;;;;;;;;;;;;;;;;30209:531;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;30209:531:0;;;;;;;:::i;33089:263::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;33089:263:0;-1:-1:-1;;;;;33089:263:0;;:::i;29750:450::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;29750:450:0;;;;;;-1:-1:-1;;;;;29750:450:0;;:::i;28592:986::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;28592:986:0;-1:-1:-1;;;;;28592:986:0;;:::i;23877:17::-;;;:::i;9141:148::-;;;:::i;25295:750::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;25295:750:0;;;;;;;:::i;24608:677::-;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;;24608:677:0;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;26274:119::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;26274:119:0;-1:-1:-1;;;;;26274:119:0;;:::i;23559:29::-;;;:::i;24213:44::-;;;:::i;23468:37::-;;;:::i;8499:79::-;;;:::i;31360:419::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;31360:419:0;;;;;;;:::i;21991:66::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21991:66:0;;;;;;-1:-1:-1;;;;;21991:66:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31178:96;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;31178:96:0;;:::i;23597:30::-;;;:::i;27447:1133::-;;;:::i;23699:40::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;23699:40:0;;:::i;23198:37::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;23198:37:0;-1:-1:-1;;;;;23198:37:0;;:::i;:::-;;;;;;;-1:-1:-1;;;;;23198:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31058:114;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;31058:114:0;;:::i;23905:85::-;;;:::i;32562:222::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;32562:222:0;-1:-1:-1;;;;;32562:222:0;;:::i;38020:948::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;38020:948:0;;;;;;;:::i;23519:31::-;;;:::i;9444:244::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;9444:244:0;-1:-1:-1;;;;;9444:244:0;;:::i;31789:765::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;31789:765:0;;;;;;-1:-1:-1;;;;;31789:765:0;;:::i;26053:95::-;26125:8;:15;26053:95;;:::o;22918:50::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36682:178::-;36756:7;36772:19;36785:5;36772:12;:19::i;:::-;36769:74;;;-1:-1:-1;;;;;36805:12:0;;;;;;:5;:12;;;;;:24;;:32;;36830:6;;36805:32;;;;;;;;;;;;;;36798:39;;;;36769:74;-1:-1:-1;36854:1:0;36682:178;;;;;:::o;22538:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22538:26:0;;;;-1:-1:-1;22538:26:0;;;;;:::o;23274:44::-;;;;;;;;;;;;-1:-1:-1;;;;;23274:44:0;;:::o;24099:34::-;;;;:::o;30835:217::-;8721:12;:10;:12::i;:::-;8711:6;;-1:-1:-1;;;;;8711:6:0;;;:22;;;8703:67;;;;;-1:-1:-1;;;8703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8703:67:0;;;;;;;;;;;;;;;30931:63:::1;30982:11;30931:46;30951:8;30960:4;30951:14;;;;;;;;;;;;;;;;;;:25;;;30931:15;;:19;;:46;;;;:::i;:::-;:50:::0;:63:::1;:50;:63;:::i;:::-;30913:15;:81;;;;31033:11;31005:8;31014:4;31005:14;;;;;;;;;;;;;;;;;;:25;;:39;;;;30835:217:::0;;:::o;38979:994::-;39027:21;39051:8;39060:4;39051:14;;;;;;;;;;;;;;;;39100;;;:8;:14;;;;;;39115:10;39100:26;;;;;;;39162:19;39051:14;;;;;;;39162:19;;;;39211:14;;;;39258:19;;;;39051:14;;-1:-1:-1;39162:19:0;;39240:15;:37;:54;;;;-1:-1:-1;39281:13:0;;;39240:54;39236:354;;;39311:18;39333:51;39347:4;:19;;;39368:15;39333:13;:51::i;:::-;39311:73;;39399:17;39419:68;39471:15;;39419:47;39450:4;:15;;;39419:26;39434:10;;39419;:14;;:26;;;;:::i;:::-;:30;:47;:30;:47;:::i;:::-;:51;:68;:51;:68;:::i;:::-;39399:88;-1:-1:-1;39519:59:0;39543:34;39568:8;39543:20;39399:88;39557:5;39543:20;:13;:20;:::i;:34::-;39519:19;;;;;:59;:23;:59;:::i;:::-;39502:76;;39236:354;;;39600:14;39617:93;39698:4;:11;;;39617:76;39688:4;39617:66;39633:49;39654:4;:27;;;39634:14;39633:20;;:49;;;;:::i;:::-;39617:11;;;;;:66;:15;:66;:::i;:93::-;39600:110;-1:-1:-1;39728:10:0;;39724:191;;39746:35;39762:10;39774:6;39746:15;:35::i;:::-;39805:15;;;;:27;;39825:6;39805:27;:19;:27;:::i;:::-;39787:15;;;:45;39852:1;39838:11;;;:15;39873:30;;;;;;;;39884:10;;39873:30;;;;;;;;;;39724:191;-1:-1:-1;;39921:27:0;;;;:44;-1:-1:-1;;38979:994:0:o;27331:111::-;8721:12;:10;:12::i;:::-;8711:6;;-1:-1:-1;;;;;8711:6:0;;;:22;;;8703:67;;;;;-1:-1:-1;;;8703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8703:67:0;;;;;;;;;;;;;;;27403:21:::1;:34:::0;27331:111::o;36275:402::-;36331:7;;36367:19;36380:5;36367:12;:19::i;:::-;36364:294;;;-1:-1:-1;;;;;36421:12:0;;36393:25;36421:12;;;:5;:12;;;;;:24;;:27;;36393:25;;36421:27;;;;;;;;;;;;;;;-1:-1:-1;36535:1:0;36519:134;36540:1;36537;:4;36519:134;;36576:11;;;;:8;:11;;;;;;36556:31;;36553:90;;;36603:3;36596:10;;;;;;;36553:90;36634:1;36628:7;;36542:3;;36519:134;;;;36364:294;;36669:3;-1:-1:-1;36275:402:0;;;;:::o;23244:26::-;;;;:::o;32792:289::-;32850:7;;;32887:163;32908:8;:15;32905:18;;32887:163;;;32935:21;32959:11;;;:8;:11;;;;;;;;-1:-1:-1;;;;;32959:18:0;;;;;;;;;33027:15;;;;32992:52;;33003:40;;:19;32968:1;32971:5;33003:10;:19::i;:40::-;32992:6;;:52;:10;:52;:::i;:::-;32983:61;-1:-1:-1;;32924:3:0;;32887:163;;;-1:-1:-1;33067:6:0;32792:289;-1:-1:-1;;32792:289:0:o;40030:1152::-;42033:12;42018:11;;:27;42014:246;;42127:27;42150:3;42127:18;42142:2;42127:10;;:14;;:18;;;;:::i;:27::-;42114:10;:40;42176:1;42162:11;:15;42014:246;40109:21:::1;40133:14:::0;;;:8:::1;:14;::::0;;;;;;;40148:10:::1;40133:26:::0;;;;;;;40167:9;;;::::1;::::0;:21:::1;;;40187:1;40180:4;:8;40167:21;40164:104;;;40221:36;40241:4;:15;;;40221:9;40231:4;40221:15;;;;;;;;;;;;;;;;:19;;:36;;;;:::i;:::-;40203:15;:54;40195:66;;;::::0;;-1:-1:-1;;;40195:66:0;;::::1;;::::0;::::1;::::0;;;;;;;;;;;;;;;::::1;;40282:21;40306:8;40315:4;40306:14;;;;;;;;;;;;;;;;;;40282:38;;40364:7;40349:4;:11;;;:22;;40341:53;;;::::0;;-1:-1:-1;;;40341:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;40341:53:0;;;;;;;;;;;;;::::1;;40405:27;40416:4;40421:10;40405;:27::i;:::-;40456:40;40472:10;40484:4;:11;;;40456:15;:40::i;:::-;40515:1;40501:11;::::0;::::1;:15:::0;;;40539::::1;::::0;::::1;::::0;:32:::1;::::0;::::1;:19;:32;:::i;:::-;40521:15;::::0;::::1;:50:::0;;;40581:39:::1;::::0;;;;;;40592:10:::1;::::0;40581:39:::1;::::0;;;;;::::1;::::0;;::::1;40634:11:::0;;40631:463:::1;;40676:11;::::0;::::1;::::0;:24:::1;::::0;40692:7;40676:24:::1;:15;:24;:::i;:::-;40662:11;::::0;::::1;:38:::0;40717:12;;:55:::1;::::0;-1:-1:-1;;;;;40717:12:0::1;40751:10;40764:7:::0;40717:55:::1;:25;:55;:::i;:::-;40788:14;::::0;;::::1;:25:::0;;;;::::1;::::0;;40856:10:::1;40788:14;40850:17:::0;;;::::1;::::0;;;;;;;-1:-1:-1;40850:26:0::1;::::0;-1:-1:-1;;;;;40850:26:0::1;::::0;40882:200:::1;40902:1;40900;:3;40882:200;;;-1:-1:-1::0;;;;;40918:22:0;::::1;::::0;;::::1;::::0;:49:::1;;;40944:23;40957:9;40944:12;:23::i;:::-;40915:161;;;-1:-1:-1::0;;;;;40976:16:0;::::1;;::::0;;;:5:::1;:16;::::0;;;;:28:::1;;:31:::0;;41011:7;;40976:28;41005:1;;40976:31;::::1;;;;;;::::0;;;::::1;::::0;;;;;::::1;:42:::0;;;;;::::1;::::0;;;-1:-1:-1;;;;;41043:16:0;;::::1;::::0;;:5:::1;:16:::0;;;;;;-1:-1:-1;41043:25:0::1;::::0;;;::::1;::::0;40915:161:::1;40904:3;;40882:200;;;;40631:463;;41098:25;41112:10;41098:13;:25::i;:::-;41139:35;::::0;;;;;;;41160:4;;41148:10:::1;::::0;41139:35:::1;::::0;;;;::::1;::::0;;::::1;42269:1;;40030:1152:::0;;:::o;23633:51::-;;;;:::o;26159:104::-;-1:-1:-1;;;;;26235:11:0;26216:4;26235:11;;;:5;:11;;;;;:14;:19;;;26159:104::o;30209:531::-;8721:12;:10;:12::i;:::-;8711:6;;-1:-1:-1;;;;;8711:6:0;;;:22;;;8703:67;;;;;-1:-1:-1;;;8703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8703:67:0;;;;;;;;;;;;;;;30301:16:::1;30338:9;;30320:15;:27;:57;;30368:9;;30320:57;;;30350:15;30320:57;30382:22;::::0;;;:11:::1;:22;::::0;;;;:47;;;30437:31:::1;;::::0;30301:76;;-1:-1:-1;30434:94:0::1;;30480:22;::::0;;;:11:::1;:22;::::0;;;;:31:::1;;:42:::0;;;30434:94:::1;8781:1;30209:531:::0;;:::o;33089:263::-;33148:7;;;33185:136;33206:8;:15;33203:18;;33185:136;;;33233:21;33257:11;;;:8;:11;;;;;;;;-1:-1:-1;;;;;33257:18:0;;;;;;;;;;33303:11;;;;33292:23;;:6;;:23;:10;:23;:::i;:::-;33283:32;-1:-1:-1;;33222:3:0;;33185:136;;29750:450;8721:12;:10;:12::i;:::-;8711:6;;-1:-1:-1;;;;;8711:6:0;;;:22;;;8703:67;;;;;-1:-1:-1;;;8703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8703:67:0;;;;;;;;;;;;;;;29834:22:::1;29877:9;;29859:15;:27;:57;;29907:9;;29859:57;;;29889:15;29859:57;30004:185;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;30004:185:0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;-1:-1:-1;30004:185:0;;;;;;;;;;;;29990:8:::1;27:10:-1::0;;39:1:::1;23:18:::0;::::1;45:23:::0;;29990:200:0;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;;29990:200:0::1;::::0;;;::::1;;::::0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29990:200:0;;;;;;29750:450::o;28592:986::-;28655:7;;28757:23;28770:9;28757:12;:23::i;:::-;28753:62;;28795:14;-1:-1:-1;28788:21:0;;28753:62;28819:11;28833:22;28845:9;28833:11;:22::i;:::-;-1:-1:-1;;;;;28877:16:0;;;;;;:5;:16;;;;;:28;;;;-1:-1:-1;28819:36:0;-1:-1:-1;28913:6:0;;28910:638;;28930:27;28960:16;;;:11;:16;;;;;;;;-1:-1:-1;;;;;29002:16:0;;;;:5;:16;;;;;;29055:28;;;;29108:17;;;;29153:16;;;;29002;;29055:28;29135:15;:34;:51;;;;-1:-1:-1;29173:13:0;;;29135:51;29131:321;;;29195:18;29216:48;29230:7;:16;;;29248:15;29216:13;:48::i;:::-;29195:69;;29271:17;29291:71;29346:15;;29291:50;29322:7;:18;;;29291:26;29306:10;;29291;:14;;:26;;;;:::i;:71::-;29271:91;-1:-1:-1;29396:49:0;29421:23;29271:91;29435:8;29421:23;:13;:23;:::i;:::-;29396:20;;:49;:24;:49;:::i;:::-;29373:72;;29131:321;;;29468:74;29527:14;29468:54;29493:4;:28;;;29468:20;:24;;:54;;;;:::i;:74::-;29461:81;;;;;;;;;;23877:17;;;;;;-1:-1:-1;;;;;23877:17:0;;:::o;9141:148::-;8721:12;:10;:12::i;:::-;8711:6;;-1:-1:-1;;;;;8711:6:0;;;:22;;;8703:67;;;;;-1:-1:-1;;;8703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8703:67:0;;;;;;;;;;;;;;;9248:1:::1;9232:6:::0;;9211:40:::1;::::0;-1:-1:-1;;;;;9232:6:0;;::::1;::::0;9211:40:::1;::::0;9248:1;;9211:40:::1;9279:1;9262:19:::0;;-1:-1:-1;;;;;;9262:19:0::1;::::0;;9141:148::o;25295:750::-;8721:12;:10;:12::i;:::-;8711:6;;-1:-1:-1;;;;;8711:6:0;;;:22;;;8703:67;;;;;-1:-1:-1;;;8703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8703:67:0;;;;;;;;;;;;;;;25370:14:::1;::::0;25387:1:::1;25370:14;::::0;;::::1;:18;25367:641;;;25399:14;:16:::0;;::::1;::::0;;::::1;::::0;::::1;;-1:-1:-1::0;;25399:16:0;;::::1;;::::0;;25367:641:::1;26012:15;::::0;;;:8:::1;:15;::::0;;;;;:24;25295:750::o;24608:677::-;8721:12;:10;:12::i;:::-;8711:6;;-1:-1:-1;;;;;8711:6:0;;;:22;;;8703:67;;;;;-1:-1:-1;;;8703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8703:67:0;;;;;;;;;;;;;;;24761:11:::1;::::0;::::1;;:20;24753:47;;;::::0;;-1:-1:-1;;;24753:47:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;24753:47:0;;;;;;;;;;;;;::::1;;24811:3;:10:::0;;-1:-1:-1;;;;;;24811:10:0::1;::::0;-1:-1:-1;;;;;24811:10:0;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;24826::::1;:24:::0;;;24855:9:::1;:22:::0;;;24882:12:::1;:28:::0;;;24915:16:::1;:37:::0;;-1:-1:-1;;;;;;24915:37:0::1;::::0;;::::1;::::0;;;::::1;::::0;;24960:16:::1;;:::i;:::-;24979:195;::::0;;::::1;::::0;::::1;::::0;;25003:1:::1;24979:195:::0;;-1:-1:-1;24979:195:0::1;::::0;::::1;::::0;25066:16;;25080:1:::1;25066:16:::0;;;;;::::1;::::0;;24979:195;;;;;25066:16:::1;;;29:2:-1;21:6;17:15;125:4;109:14;101:6;88:42;-1:-1:::0;;;24979:195:0;;25100:1:::1;24979:195;::::0;;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;;25187:16:::1;::::0;-1:-1:-1;;;;;25187:16:0;;::::1;25181:23:::0;;:5:::1;:23:::0;;;;;;:30;;;;;;::::1;::::0;25187:16;25181:30;::::1;::::0;;-1:-1:-1;;;;;;25181:30:0::1;::::0;;;::::1;;::::0;;;;;::::1;::::0;;;;;-1:-1:-1;25181:30:0;;:23;;:30:::1;::::0;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;25181:30: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;25237:16:::1;::::0;;-1:-1:-1;25221:12:0;;;::::1;::::0;;;;;:32;;-1:-1:-1;;;;;;25221:32:0::1;-1:-1:-1::0;;;;;25237:16:0;;::::1;25221:32:::0;;;::::1;::::0;;25258:11:::1;:18:::0;;-1:-1:-1;;25258:18:0::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;;24608:677:0:o;26274:119::-;26344:41;26357:10;26369:15;26344:12;:41::i;:::-;26274:119;:::o;23559:29::-;;;;:::o;24213:44::-;24256:1;24213:44;:::o;23468:37::-;;;;:::o;8499:79::-;8537:7;8564:6;-1:-1:-1;;;;;8564:6:0;8499:79;:::o;31360:419::-;31432:7;31463:12;;31456:3;:19;31452:320;;31499:36;24256:1;31499:14;:3;31507:5;31499:14;:7;:14;:::i;:36::-;31492:43;;;;31452:320;31566:12;;31557:5;:21;31553:219;;31602:14;:3;31610:5;31602:14;:7;:14;:::i;31553:219::-;31656:104;31724:21;31732:12;;31724:3;:7;;:21;;;;:::i;:::-;31656:45;24256:1;31656:23;31673:5;31656:12;;:16;;:23;;;;:::i;21991:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31178:96::-;8721:12;:10;:12::i;:::-;8711:6;;-1:-1:-1;;;;;8711:6:0;;;:22;;;8703:67;;;;;-1:-1:-1;;;8703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8703:67:0;;;;;;;;;;;;;;;31244:10:::1;:24:::0;31178:96::o;23597:30::-;;;;:::o;27447:1133::-;27494:24;27507:10;27494:12;:24::i;:::-;27486:48;;;;;-1:-1:-1;;;27486:48:0;;;;;;;;;;;;-1:-1:-1;;;27486:48:0;;;;;;;;;;;;;;;27581:21;;27553:25;27567:10;27553:13;:25::i;:::-;:49;27545:80;;;;;-1:-1:-1;;;27545:80:0;;;;;;;;;;;;-1:-1:-1;;;27545:80:0;;;;;;;;;;;;;;;27634:22;;27681:23;27693:10;27681:11;:23::i;:::-;27667:37;-1:-1:-1;27714:6:0;;27711:865;;27729:27;27759:16;;;:11;:16;;;;;;;;27807:10;27801:17;;:5;:17;;;;;;27855:28;;;;27908:17;;;;27953:16;;;;27801:17;;27855:28;27935:15;:34;:51;;;;-1:-1:-1;27973:13:0;;;27935:51;27931:321;;;27995:18;28016:48;28030:7;:16;;;28048:15;28016:13;:48::i;:::-;27995:69;;28071:17;28091:71;28146:15;;28091:50;28122:7;:18;;;28091:26;28106:10;;28091;:14;;:26;;;;:::i;:71::-;28071:91;-1:-1:-1;28196:49:0;28221:23;28071:91;28235:8;28221:23;:13;:23;:::i;28196:49::-;28173:72;;27931:321;;;28344:10;28338:17;;;;:5;:17;;;;;:29;;;28304:28;;;;28279:89;;28338:29;28279:54;;:20;;:54;:24;:54;:::i;:89::-;28262:106;;28375:43;28391:10;28403:14;28375:15;:43::i;:::-;-1:-1:-1;28431:10:0;28457:1;28425:17;;;:5;:17;;;;;;;:29;;;:33;;;;28465:29;:47;;;;;;28519:28;;;;:51;-1:-1:-1;27711:865:0;27447:1133;;:::o;23699:40::-;;;;;;;;;;;;;:::o;23198:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23198:37:0;;;;;;;;;;:::o;31058:114::-;8721:12;:10;:12::i;:::-;8711:6;;-1:-1:-1;;;;;8711:6:0;;;:22;;;8703:67;;;;;-1:-1:-1;;;8703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8703:67:0;;;;;;;;;;;;;;;31133:15:::1;:34:::0;31058:114::o;23905:85::-;;;-1:-1:-1;;;;;23905:85:0;;:::o;32562:222::-;32621:7;;;32659:94;32680:8;:15;32677:18;;32659:94;;;32716:31;32727:19;32738:1;32740:5;32727:10;:19::i;:::-;32716:6;;:31;:10;:31;:::i;:::-;32707:40;-1:-1:-1;32696:3:0;;32659:94;;38020:948;42341:9;;42322:15;:28;42314:49;;;;;-1:-1:-1;;;42314:49:0;;;;;;;;;;;;-1:-1:-1;;;42314:49:0;;;;;;;;;;;;;;;42033:12:::1;42018:11;;:27;42014:246;;42127:27;42150:3;42127:18;42142:2;42127:10;;:14;;:18;;;;:::i;:27::-;42114:10;:40:::0;42176:1:::1;42162:11;:15:::0;42014:246:::1;38111:24:::2;38124:10;38111:12;:24::i;:::-;38103:54;;;::::0;;-1:-1:-1;;;38103:54:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;38103:54:0;;;;;;;;;;;;;::::2;;38170:21;38194:8;38203:4;38194:14;;;;;;;;;::::0;;;::::2;::::0;;;38243;;;:8:::2;:14:::0;;;;;;38258:10:::2;38243:26:::0;;;;;;;;38194:14:::2;::::0;;::::2;::::0;;::::2;::::0;-1:-1:-1;38243:26:0;38280:27:::2;::::0;38252:4;;38280:10:::2;:27::i;:::-;38326:11:::0;;38323:552:::2;;38353:12:::0;;:74:::2;::::0;-1:-1:-1;;;;;38353:12:0::2;38391:10;38412:4;38419:7:::0;38353:74:::2;:29;:74;:::i;:::-;38456:11;::::0;::::2;::::0;:24:::2;::::0;38472:7;38456:24:::2;:15;:24;:::i;:::-;38442:11;::::0;::::2;:38:::0;38504:15:::2;38486;::::0;;::::2;:33:::0;;;;38525:15;;;38563:14;::::2;::::0;:27:::2;::::0;38582:7;38563:27:::2;:18;:27;:::i;:::-;38546:14;::::0;;::::2;:44:::0;;;;38630:10:::2;38604:17;38624::::0;;;::::2;::::0;;;;;;;:26:::2;;::::0;-1:-1:-1;;;;;38624:26:0::2;::::0;38656:204:::2;38676:1;38674;:3;38656:204;;;-1:-1:-1::0;;;;;38696:22:0;::::2;::::0;;::::2;::::0;:49:::2;;;38722:23;38735:9;38722:12;:23::i;:::-;38693:161;;;-1:-1:-1::0;;;;;38754:16:0;::::2;;::::0;;;:5:::2;:16;::::0;;;;:28:::2;;:31:::0;;38789:7;;38754:28;38783:1;;38754:31;::::2;;;;;;::::0;;;::::2;::::0;;;;;::::2;:42:::0;;;;::::2;::::0;;;-1:-1:-1;;;;;38821:16:0;;::::2;::::0;;:5:::2;:16:::0;;;;;;-1:-1:-1;38821:25:0::2;::::0;;;::::2;::::0;38693:161:::2;38678:3;;38656:204;;;;38323:552;;38885:25;38899:10;38885:13;:25::i;:::-;38926:34;::::0;;;;;;;38946:4;;38934:10:::2;::::0;38926:34:::2;::::0;;;;::::2;::::0;;::::2;42269:1;;38020:948:::0;;:::o;23519:31::-;;;;:::o;9444:244::-;8721:12;:10;:12::i;:::-;8711:6;;-1:-1:-1;;;;;8711:6:0;;;:22;;;8703:67;;;;;-1:-1:-1;;;8703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8703:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;9533:22:0;::::1;9525:73;;;;-1:-1:-1::0;;;9525:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9635:6;::::0;;9614:38:::1;::::0;-1:-1:-1;;;;;9614:38:0;;::::1;::::0;9635:6;::::1;::::0;9614:38:::1;::::0;::::1;9663:6;:17:::0;;-1:-1:-1;;;;;;9663:17:0::1;-1:-1:-1::0;;;;;9663:17:0;;;::::1;::::0;;;::::1;::::0;;9444:244::o;31789:765::-;31859:7;31879:21;31903:8;31912:4;31903:14;;;;;;;;;;;;;;;;31952;;;:8;:14;;;;;;-1:-1:-1;;;;;31952:21:0;;;;;;;;;32009:19;31903:14;;;;;;;32009:19;;;;32058:14;;;;32105:19;;;;31903:14;;-1:-1:-1;32009:19:0;;32087:15;:37;:54;;;;-1:-1:-1;32128:13:0;;;32087:54;32083:353;;;32158:18;32180:51;32194:4;:19;;;32215:15;32180:13;:51::i;:::-;32158:73;;32246:17;32266:68;32318:15;;32266:47;32297:4;:15;;;32266:26;32281:10;;32266;:14;;:26;;;;:::i;:68::-;32246:88;-1:-1:-1;32366:58:0;32390:33;32414:8;32390:19;32246:88;32404:4;32390:19;:13;:19;:::i;32366:58::-;32349:75;;32083:353;;;32453:93;32534:4;:11;;;32453:76;32524:4;32453:66;32469:49;32490:4;:27;;;32470:14;32469:20;;:49;;;;:::i;:::-;32453:11;;;;;:66;:15;:66;:::i;:93::-;32446:100;31789:765;-1:-1:-1;;;;;;;31789:765:0:o;276:106::-;364:10;276:106;:::o;3996:136::-;4054:7;4081:43;4085:1;4088;4081:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4074:50;3996:136;-1:-1:-1;;;3996:136:0:o;3532:181::-;3590:7;3622:5;;;3646:6;;;;3638:46;;;;;-1:-1:-1;;;3638:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;4886:471;4944:7;5189:6;5185:47;;-1:-1:-1;5219:1:0;5212:8;;5185:47;5256:5;;;5260:1;5256;:5;:1;5280:5;;;;;:10;5272:56;;;;-1:-1:-1;;;5272:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5833:132;5891:7;5918:39;5922:1;5925;5918:39;;;;;;;;;;;;;;;;;:3;:39::i;41705:271::-;41797:3;;:28;;;-1:-1:-1;;;41797:28:0;;41819:4;41797:3;:28;;;;;-1:-1:-1;;41797:3:0;;;-1:-1:-1;;;;;41797:3:0;;:13;;:28;;;;;;;;;;;;;;:3;:28;;;2:2:-1;;;;27:1;24;17:12;2:2;41797:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41797:28:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;41797:28:0;;-1:-1:-1;41840:16:0;;;41836:133;;;41873:3;;:25;;;-1:-1:-1;;;41873:25:0;;-1:-1:-1;;;;;41873:25:0;;;:3;:25;;;;;;;;;;;:3;;;;;;;;:12;;:25;;;;;;;;;;;;;;;-1:-1:-1;41873:3:0;:25;;;2:2:-1;;;;27:1;24;17:12;2:2;41873:25:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41873:25:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;41836:133:0;;-1:-1:-1;41836:133:0;;41931:3;;:26;;;-1:-1:-1;;;41931:26:0;;-1:-1:-1;;;;;41931:26:0;;;:3;:26;;;;;;;;;;;:3;;;;;;;;:12;;:26;;;;;;;;;;;;;;;-1:-1:-1;41931:3:0;:26;;;2:2:-1;;;;27:1;24;17:12;2:2;41931:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41931:26:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;41705:271:0;;;:::o;36937:1013::-;37005:21;37029:8;37038:4;37029:14;;;;;;;;;;;;;;;;;;37005:38;;37077:4;:19;;;37058:15;:38;37054:77;;37113:7;;;37054:77;37160:14;;;;37189:13;37185:104;;-1:-1:-1;37241:15:0;37219:19;;;;:37;37271:7;;37185:104;37293:21;37317:14;;;:8;:14;;;;;;;;-1:-1:-1;;;;;37317:21:0;;;;;;;;;37388:19;;;;37317:21;;37293;37374:51;;37409:15;37374:13;:51::i;:::-;37353:72;;37436:17;37456:68;37508:15;;37456:47;37487:4;:15;;;37456:26;37471:10;;37456;:14;;:26;;;;:::i;:68::-;37549:11;;37436:88;;-1:-1:-1;37549:26:0;;37436:88;37549:26;:15;:26;:::i;:::-;37535:11;:40;37653:58;37677:33;37701:8;37677:19;:9;37691:4;37677:19;:13;:19;:::i;:33::-;37653:19;;;;;:58;:23;:58;:::i;:::-;37631:19;;;:80;;;37820:11;;;;37776:27;;;;37734:98;;:81;;37810:4;;37734:71;;37750:54;;37631:80;37750:54;:25;:54;:::i;37734:98::-;37720:11;;;;:112;;;;37875:19;;;;37845:27;;;;:49;;;;-1:-1:-1;;37927:15:0;37905:19;;:37;;;;-1:-1:-1;36937:1013:0;;:::o;18141:177::-;18251:58;;;-1:-1:-1;;;;;18251:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;18251:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;18224:86:0;;18244:5;;18224:19;:86::i;33359:2908::-;-1:-1:-1;;;;;33431:12:0;;;33411:17;33431:12;;;:5;:12;;;;;:21;;;;;;;;;33457:2804;33476:1;33472;:5;33457:2804;;;33491:23;33504:9;33491:12;:23::i;:::-;:50;;;;-1:-1:-1;;;;;;33518:23:0;;;;33491:50;33488:2761;;;33549:11;33563:22;33575:9;33563:11;:22::i;:::-;-1:-1:-1;;;;;33607:16:0;;33592:12;33607:16;;;:5;:16;;;;;:20;;;33549:36;;-1:-1:-1;33661:10:0;;;33658:115;;;33692:13;:3;33700:4;33692:13;:7;:13;:::i;:::-;33680:25;;33658:115;;;33727:4;33721:3;:10;33718:55;;;33752:13;:4;33761:3;33752:13;:8;:13;:::i;:::-;33740:25;;33718:55;33788:13;;33785:2380;;33811:15;33851:1;33846:6;;:31;;;;-1:-1:-1;;;;;;33856:12:0;;;;;;:5;:12;;;;;:16;;;33876:1;-1:-1:-1;33856:21:0;33846:31;:43;;;;;33888:1;33881:3;:8;;33846:43;33843:83;33936:9;;33933:1066;;33955:27;33986:17;;;:11;:17;;;;;;;;34015:27;;;;:32;34012:976;;34058:19;34080:48;34094:7;:16;;;34112:15;34080:13;:48::i;:::-;34058:70;;34138:18;34169:10;34166:271;;;34299:15;;34204:111;;:90;34236:57;34261:31;34288:3;34204:90;34299:15;34281:1;34261:22;:19;:22;:::i;:31::-;34237:18;;;34236:57;:24;:57;:::i;:::-;34220:10;;34204:27;;:11;;:27;:15;:27;:::i;:111::-;34191:124;;34166:271;;;34354:72;34410:15;;34354:51;34386:7;:18;;;34354:27;34370:10;;34354:11;:15;;:27;;;;:::i;:72::-;34341:85;;34166:271;34469:11;;:27;;34485:10;34469:27;:15;:27;:::i;:::-;34455:11;:41;34632:17;;;;34584:67;;34617:33;;:10;;:33;:14;:33;:::i;:::-;34584:28;;;;;:67;:32;:67;:::i;:::-;34553:28;;;:98;;;-1:-1:-1;;;;;34775:16:0;;;;;;:5;:16;;;;;:28;;;;34728:40;;;;;34692:112;;34693:76;;;:34;:76;:::i;34692:112::-;-1:-1:-1;;;;;34661:16:0;;;;;;:5;:16;;;;;:28;;;;:143;;;;34823:17;;;:22;;-1:-1:-1;;34823:22:0;;;34899:28;;;;34856:40;;;;:71;-1:-1:-1;;34956:15:0;34844:1;34937:16;;:34;34012:976;33933:1066;;35009:8;;35006:1140;;35034:26;35064:16;;;:11;:16;;;;;;;;35092;;;;:21;35089:675;;35148:18;35169:47;35183:6;:15;;;35200;35169:13;:47::i;:::-;35148:68;;35240:17;35270:10;35267:265;;;35397:15;;35304:109;;:88;35335:56;35359:31;35386:3;35304:88;35397:15;35379:1;35359:22;:19;:22;:::i;35304:109::-;35292:121;;35267:265;;;35451:70;35505:15;;35451:49;35482:6;:17;;;35451:26;35466:10;;35451;:14;;:26;;;;:::i;:70::-;35439:82;;35267:265;35571:11;;:26;;35587:9;35571:26;:15;:26;:::i;:::-;35557:11;:40;35728:16;;;;35682:64;;35714:31;;:9;;:31;:13;:31;:::i;35682:64::-;35652:27;;;:94;-1:-1:-1;;35089:675:0;35992:16;;;:21;;36012:1;35992:21;;;;;;36067:27;;;;-1:-1:-1;;;;;36024:16:0;;35992;36024;;;:5;:16;;;;;:40;;:70;36121:15;36103;;:33;35006:1140;33785:2380;;-1:-1:-1;;;;;;;36172:16:0;;;;;;;:5;:16;;;;;:20;;;:25;;;;36217;;;;;;;33488:2761;33478:3;;33457:2804;;26401:924;26567:25;26580:11;26567:12;:25::i;:::-;26566:26;26558:50;;;;;-1:-1:-1;;;26558:50:0;;;;;;;;;;;;-1:-1:-1;;;26558:50:0;;;;;;;;;;;;;;;26627:29;26640:15;26627:12;:29::i;:::-;26619:61;;;;;-1:-1:-1;;;26619:61:0;;;;;;;;;;;;-1:-1:-1;;;26619:61:0;;;;;;;;;;;;;;;26755:24;;26802:9;;;;26794:42;;;;;-1:-1:-1;;;26794:42:0;;;;;;;;;;;;-1:-1:-1;;;26794:42:0;;;;;;;;;;;;;;;26862:16;;:::i;:::-;26881:200;;;;;;;;26905:10;;26881:200;;-1:-1:-1;;;;;26881:200:0;;;;;;26973:16;;26987:1;26973:16;;;;;;;;26881:200;;;;;26973:16;;;29:2:-1;21:6;17:15;125:4;109:14;101:6;88:42;-1:-1;;;26881:200:0;;27026:1;26881:200;;;;;;;;;;;;;;;;;;;;;;;;;;;27100:10;;27090:21;;:9;:21;;;;;:35;;-1:-1:-1;;;;;;27090:35:0;;;-1:-1:-1;;;;;27090:35:0;;;;;;;;;27146:18;;:5;:18;;;;;;:25;;;;;;;;-1:-1:-1;27146:25:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27146:25:0;;:18;;:25;;;;;;;;;;;:::i;:::-;-1:-1:-1;27146:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27186:12;;;;;;;-1:-1:-1;;;;;27268:18:0;;;-1:-1:-1;27268:18:0;;;;;;;;;;;:21;27225:92;;;27291:22;;;;;;;:25;27225:92;;;;;;;27268:21;;27225:92;;;;;;;;;;;;;26401:924;;;;:::o;18326:205::-;18454:68;;;-1:-1:-1;;;;;18454:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;18454:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;18427:96:0;;18447:5;;18427:19;:96::i;:::-;18326:205;;;;:::o;4435:192::-;4521:7;4557:12;4549:6;;;;4541:29;;;;-1:-1:-1;;;4541:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;4541:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4593:5:0;;;4435:192::o;6461:278::-;6547:7;6582:12;6575:5;6567:28;;;;-1:-1:-1;;;6567:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;6567:28:0;;6606:9;6622:1;6618;:5;;;;;;;6461:278;-1:-1:-1;;;;;6461:278:0:o;20446:761::-;20870:23;20896:69;20924:4;20896:69;;;;;;;;;;;;;;;;;20904:5;-1:-1:-1;;;;;20896:27:0;;;:69;;;;;:::i;:::-;20980:17;;20870:95;;-1:-1:-1;20980:21:0;20976:224;;21122:10;21111:30;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21111:30:0;21103:85;;;;-1:-1:-1;;;21103:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13239:195;13342:12;13374:52;13396:6;13404:4;13410:1;13413:12;13374:21;:52::i;:::-;13367:59;13239:195;-1:-1:-1;;;;13239:195:0:o;14291:530::-;14418:12;14476:5;14451:21;:30;;14443:81;;;;-1:-1:-1;;;14443:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14543:18;14554:6;14543:10;:18::i;:::-;14535:60;;;;;-1:-1:-1;;;14535:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14669:12;14683:23;14710:6;-1:-1:-1;;;;;14710:11:0;14730:5;14738:4;14710:33;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;14710:33:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;14668:75:0;;;;14761:52;14779:7;14788:10;14800:12;14761:17;:52::i;10321:422::-;10688:20;10727:8;;;10321:422::o;16831:742::-;16946:12;16975:7;16971:595;;;-1:-1:-1;17006:10:0;16999:17;;16971:595;17120:17;;:21;17116:439;;17383:10;17377:17;17444:15;17431:10;17427:2;17423:19;17416:44;17331:148;17519:20;;-1:-1:-1;;;17519:20:0;;;;;;;;;;;;;;;;;17526:12;;17519:20;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;21585:20852:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;21585:20852:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21585:20852:0;;;-1:-1:-1;21585:20852:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://a625adb445bfc3d979eb2e71be4b162b61f4b9cafff71a163adfffbd54a43163
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.