Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,340 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 21089271 | 34 days ago | IN | 0 ETH | 0.00079237 | ||||
Withdraw Rewards | 21089266 | 34 days ago | IN | 0 ETH | 0.00061167 | ||||
Withdraw | 21051425 | 39 days ago | IN | 0 ETH | 0.00069903 | ||||
Withdraw Rewards | 21051406 | 39 days ago | IN | 0 ETH | 0.00061221 | ||||
Withdraw Rewards | 20667740 | 93 days ago | IN | 0 ETH | 0.00049578 | ||||
Withdraw Rewards | 20452832 | 123 days ago | IN | 0 ETH | 0.00011625 | ||||
Withdraw Rewards | 20394286 | 131 days ago | IN | 0 ETH | 0.00139157 | ||||
Withdraw | 20394286 | 131 days ago | IN | 0 ETH | 0.000776 | ||||
Withdraw | 20394286 | 131 days ago | IN | 0 ETH | 0.00229702 | ||||
Withdraw Rewards | 20394286 | 131 days ago | IN | 0 ETH | 0.00139452 | ||||
Withdraw | 20394286 | 131 days ago | IN | 0 ETH | 0.00009843 | ||||
Withdraw Rewards | 20325962 | 140 days ago | IN | 0 ETH | 0.00103244 | ||||
Withdraw | 20283512 | 146 days ago | IN | 0 ETH | 0.00137298 | ||||
Withdraw Rewards | 20251409 | 151 days ago | IN | 0 ETH | 0.00011925 | ||||
Withdraw Rewards | 20251087 | 151 days ago | IN | 0 ETH | 0.00012788 | ||||
Withdraw | 20200502 | 158 days ago | IN | 0 ETH | 0.00015618 | ||||
Withdraw Rewards | 20194432 | 159 days ago | IN | 0 ETH | 0.0001581 | ||||
Withdraw | 20174011 | 162 days ago | IN | 0 ETH | 0.0001652 | ||||
Withdraw Rewards | 20149892 | 165 days ago | IN | 0 ETH | 0.00005827 | ||||
Withdraw Rewards | 20093124 | 173 days ago | IN | 0 ETH | 0.00049578 | ||||
Withdraw | 20011689 | 184 days ago | IN | 0 ETH | 0.00308687 | ||||
Withdraw Rewards | 20011645 | 184 days ago | IN | 0 ETH | 0.00189614 | ||||
Withdraw | 19926770 | 196 days ago | IN | 0 ETH | 0.00264289 | ||||
Withdraw Rewards | 19629417 | 238 days ago | IN | 0 ETH | 0.00141794 | ||||
Withdraw | 19505898 | 255 days ago | IN | 0 ETH | 0.0022549 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
RewardPool
Compiler Version
v0.7.1+commit.f4a555be
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./KeyfiToken.sol"; import "./Whitelist.sol"; /** * @title RewardPool * @dev Implementation of Reward logic for KEYFI token, based on SushiSwap's MasterChef. */ contract RewardPool is Ownable { using SafeMath for uint256; using SafeERC20 for IERC20; using SafeERC20 for KeyfiToken; // Info of each user. struct UserInfo { uint256 amount; // How many LP tokens the user has provided. uint256 rewardDebt; // Reward debt. See explanation below. // // We do some fancy math here. Basically, any point in time, the amount of reward // entitled to a user but is pending to be distributed is: // // pending reward = (user.amount * pool.accRewardPerShare) - user.rewardDebt // // Whenever a user deposits or withdraws LP tokens to a pool. Here's what happens: // 1. The pool's `accRewardPerShare` (and `lastRewardBlock`) gets updated. // 2. User receives the pending reward sent to his/her address. // 3. User's `amount` gets updated. // 4. User's `rewardDebt` gets updated. } // Info of each staking token struct StakingToken { IERC20 stakingToken; // Contract address of token to be staked uint256 allocPoint; // How many allocation points assigned to this token uint256 lastRewardBlock; // Last block number that reward distribution occurred uint256 accRewardPerShare; // Accumulated reward per share, times 1e12. } struct TokenIndex { uint256 index; bool added; } KeyfiToken public immutable rewardToken; uint256 public immutable bonusEndBlock; // Block number when bonus reward period ends uint256 public immutable bonusMultiplier; // Bonus muliplier for early users uint256 public rewardPerBlock; // reward tokens distributed per block Whitelist public whitelist; StakingToken[] public stakingTokens; // Info of each pool mapping(address => TokenIndex) public stakingTokenIndexes; mapping (uint256 => mapping (address => UserInfo)) public userInfo; // Info of each user that stakes tokens uint256 public totalAllocPoint = 0; // Total allocation points. Must be the sum of all allocation points in all pools uint256 public startBlock; // The block number when rewards start uint256 public launchDate; event TokenAdded(address indexed token, uint256 allocPoints); event TokenRemoved(address indexed token); event Deposit(address indexed user, uint256 indexed pid, uint256 amount); event Withdraw(address indexed user, uint256 indexed pid, uint256 amount); event WithdrawRewards(address indexed user, uint256 amount); event EmergencyWithdraw(address indexed user, uint256 indexed pid, uint256 amount); event RewardPerBlockChanged(uint256 previousRate, uint256 newRate); event SetAllocPoint(address token, uint256 allocPoints); constructor( KeyfiToken _rewardToken, uint256 _rewardPerBlock, uint256 _startBlock, uint256 _bonusEndBlock, uint256 _bonusMultiplier, Whitelist _whitelist, uint256 _launchDate ) { rewardToken = _rewardToken; rewardPerBlock = _rewardPerBlock; bonusEndBlock = _bonusEndBlock; startBlock = _startBlock; bonusMultiplier = _bonusMultiplier; whitelist = _whitelist; launchDate = _launchDate; } function stakingTokensCount() external view returns (uint256) { return stakingTokens.length; } /** * @dev adds a token to the list of allowed staking tokens * @param _allocPoint — The "weight" of this token in relation to other allowed tokens. * @param _stakingToken — The token to be added. */ function addStakingToken(uint256 _allocPoint, IERC20 _stakingToken) public onlyOwner { // since owner is able to arbitrarily withdraw reward tokens from the contract // it doesn't allow using the same reward token as a staking token require(address(_stakingToken) != address(rewardToken), "cannot add reward token as staking token"); require(!stakingTokenIndexes[address(_stakingToken)].added, "staking token already exists in array"); massUpdateTokens(); uint256 lastRewardBlock = block.number > startBlock ? block.number : startBlock; totalAllocPoint = totalAllocPoint.add(_allocPoint); stakingTokens.push(StakingToken({ stakingToken: _stakingToken, allocPoint: _allocPoint, lastRewardBlock: lastRewardBlock, accRewardPerShare: 0 })); stakingTokenIndexes[address(_stakingToken)] = TokenIndex({ index: stakingTokens.length - 1, added: true }); emit TokenAdded(address(_stakingToken), _allocPoint); } // CHECK STAKING TOKEN ADDED function isStakingToken(IERC20 _token) external view returns (bool) { return stakingTokenIndexes[address(_token)].added; } /** * @dev changes the weight allocation for a particular token * @param _token — The token to be configured. * @param _allocPoint — The allocation points set to this token */ function setAllocPoint(IERC20 _token, uint256 _allocPoint) public onlyOwner { require(stakingTokenIndexes[address(_token)].added, "token does not exist in list"); //require(_allocPoint > 0, "allocation points must be greater than zero"); massUpdateTokens(); uint256 index = stakingTokenIndexes[address(_token)].index; totalAllocPoint = totalAllocPoint.sub(stakingTokens[index].allocPoint).add(_allocPoint); stakingTokens[index].allocPoint = _allocPoint; emit SetAllocPoint(address(_token), _allocPoint); } function setRewardPerBlock(uint256 _newRate) external onlyOwner { massUpdateTokens(); emit RewardPerBlockChanged(rewardPerBlock, _newRate); rewardPerBlock = _newRate; } /** * @dev gets multiplier factor for possible bonuses within any given period * @param _from — starting block * @param _to — last block of the period */ function getMultiplier(uint256 _from, uint256 _to) public view returns (uint256) { _from = _from >= startBlock? _from : startBlock; if (_to <= bonusEndBlock) { return _to.sub(_from).mul(bonusMultiplier); } else if (_from >= bonusEndBlock) { return _to.sub(_from); } else { return bonusEndBlock.sub(_from).mul(bonusMultiplier).add( _to.sub(bonusEndBlock) ); } } /** * @dev calculates pending reward for a given staking token and a user * @param _token — The staking token * @param _user — The stakeholder */ function pendingReward(IERC20 _token, address _user) external view returns (uint256) { require(stakingTokenIndexes[address(_token)].added, "invalid token"); uint256 _pid = stakingTokenIndexes[address(_token)].index; StakingToken storage pool = stakingTokens[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accRewardPerShare = pool.accRewardPerShare; uint256 tokenSupply = pool.stakingToken.balanceOf(address(this)); // <----- counting actual deposits. Anyone can send tokens and dilute everyone's share if (block.number > pool.lastRewardBlock && tokenSupply != 0) { uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); uint256 reward = (pool.allocPoint == 0)? 0 : multiplier.mul(rewardPerBlock).mul(pool.allocPoint).div(totalAllocPoint); accRewardPerShare = accRewardPerShare.add(reward.mul(1e12).div(tokenSupply)); } return user.amount.mul(accRewardPerShare).div(1e12).sub(user.rewardDebt); } /** * @dev invokes a checkpoint update on all staking tokens in the list */ function massUpdateTokens() public { uint256 length = stakingTokens.length; for (uint256 pid = 0; pid < length; ++pid) { checkpoint(pid); } } /** * @dev Calculates all reward rates for all staking tokens since last checkpoint. * Should be called before any balance-changing operations (e.g. deposit, withdraw) * @param _pid — The index of the token in the array of staking tokens */ function checkpoint(uint256 _pid) public { require(_pid < stakingTokens.length, "token index out of bounds"); StakingToken storage pool = stakingTokens[_pid]; if (block.number <= pool.lastRewardBlock) { return; } uint256 stakedSupply = pool.stakingToken.balanceOf(address(this)); if (stakedSupply == 0) { pool.lastRewardBlock = block.number; return; } uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); uint256 reward = (pool.allocPoint == 0)? 0 : multiplier.mul(rewardPerBlock).mul(pool.allocPoint).div(totalAllocPoint); //rewardToken.mint(address(this), reward); pool.accRewardPerShare = pool.accRewardPerShare.add(reward.mul(1e12).div(stakedSupply)); pool.lastRewardBlock = block.number; } // GET STAKED TOKEN BALNCE function getBalance(IERC20 _token) external view returns (uint256) { require(stakingTokenIndexes[address(_token)].added, "invalid token"); uint256 _pid = stakingTokenIndexes[address(_token)].index; UserInfo storage user = userInfo[_pid][msg.sender]; return user.amount; } /** * @dev deposit _amount into a given _token pool * @param _token — The staking token to be deposited * @param _amount — The amount of tokens to be staked */ function deposit(IERC20 _token, uint256 _amount) public { require(stakingTokenIndexes[address(_token)].added, "invalid token"); require(whitelist.isWhitelisted(msg.sender), "sender address is not eligible"); require(block.timestamp >= launchDate, "deposits are not enabled yet"); uint256 _pid = stakingTokenIndexes[address(_token)].index; checkpoint(_pid); StakingToken storage pool = stakingTokens[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; uint256 pending = user.amount.mul(pool.accRewardPerShare).div(1e12).sub(user.rewardDebt); user.amount = user.amount.add(_amount); uint256 rewardBal = rewardToken.balanceOf(address(this)); uint256 diff = 0; if (rewardBal < pending) { diff = pending.sub(rewardBal); } user.rewardDebt = (user.amount.mul(pool.accRewardPerShare).div(1e12)).sub(diff); safeRewardTransfer(msg.sender, pending); if (_amount > 0) { pool.stakingToken.safeTransferFrom(address(msg.sender), address(this), _amount); emit Deposit(msg.sender, _pid, _amount); } } /** * @dev withdraw _amount of a given staking token * @param _token — The staking token to be withdrawn * @param _amount — The amount of tokens to withdraw */ function withdraw(IERC20 _token, uint256 _amount) public { require(stakingTokenIndexes[address(_token)].added, "invalid token"); uint256 _pid = stakingTokenIndexes[address(_token)].index; StakingToken storage pool = stakingTokens[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; require(user.amount >= _amount, "invalid amount specified"); checkpoint(_pid); uint256 pending = user.amount.mul(pool.accRewardPerShare).div(1e12).sub(user.rewardDebt); user.amount = user.amount.sub(_amount); uint256 rewardBal = rewardToken.balanceOf(address(this)); uint256 diff = 0; if (rewardBal < pending) { diff = pending.sub(rewardBal); } user.rewardDebt = (user.amount.mul(pool.accRewardPerShare).div(1e12)).sub(diff); if(whitelist.isWhitelisted(msg.sender)) { safeRewardTransfer(msg.sender, pending); } if(_amount > 0) { pool.stakingToken.safeTransfer(address(msg.sender), _amount); emit Withdraw(msg.sender, _pid, _amount); } } // WITHDRAW TOKENS ONLY function withdrawRewards(IERC20 _token) public { require(stakingTokenIndexes[address(_token)].added, "invalid token"); uint256 _pid = stakingTokenIndexes[address(_token)].index; StakingToken storage pool = stakingTokens[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; checkpoint(_pid); uint256 pending = user.amount.mul(pool.accRewardPerShare).div(1e12).sub(user.rewardDebt); uint256 rewardBal = rewardToken.balanceOf(address(this)); uint256 diff = 0; if (rewardBal < pending) { diff = pending.sub(rewardBal); } user.rewardDebt = (user.amount.mul(pool.accRewardPerShare).div(1e12)).sub(diff); if(whitelist.isWhitelisted(msg.sender)) { safeRewardTransfer(msg.sender, pending); emit WithdrawRewards(msg.sender, pending); } } /** * @dev withdraw all staked funds of a given token, regardless of reward logic * To be used in an emergency case if reward logic fails and tokens would get locked otherwise * @param _token — The staking token to withdraw funds from */ function emergencyWithdraw(IERC20 _token) public { require(stakingTokenIndexes[address(_token)].added, "invalid token"); uint256 _pid = stakingTokenIndexes[address(_token)].index; StakingToken storage pool = stakingTokens[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; uint256 _amount = user.amount; user.amount = 0; user.rewardDebt = 0; pool.stakingToken.safeTransfer(address(msg.sender), _amount); emit EmergencyWithdraw(msg.sender, _pid, _amount); } /** * @dev Internal function to send rewards while checking for potential imbalances * Note: if available reward is less than calculated amount, reward will still take place * And pending reward calculations might * @param _to — the target address of the reward * @param _amount — the amount of reward to transfer */ function safeRewardTransfer(address _to, uint256 _amount) internal { uint256 rewardBal = rewardToken.balanceOf(address(this)); if (_amount > 0) { if (_amount > rewardBal) { rewardToken.transfer(_to, rewardBal); } else { rewardToken.transfer(_to, _amount); } } } /** * @dev Calculate remaining blocks left according to current reward supply and rate * Useful for contract owner to either re-supply or migrate to an alternate reward solution */ function rewardBlocksLeft() public view returns (uint256) { uint256 balance = rewardToken.balanceOf(address(this)); return balance.div(rewardPerBlock); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; contract KeyfiToken is IERC20, Ownable { using SafeMath for uint256; string public constant name = "KeyFi Token"; string public constant symbol = "KEYFI"; uint8 public constant decimals = 18; uint256 public override totalSupply = 10000000e18; mapping (address => mapping (address => uint256)) internal allowances; mapping (address => uint256) internal balances; mapping (address => address) public delegates; address public minter; uint256 public mintingAllowedAfter; uint32 public minimumMintGap = 1 days * 365; uint8 public mintCap = 2; struct Checkpoint { uint256 fromBlock; uint256 votes; } mapping (address => mapping (uint256 => Checkpoint)) public checkpoints; mapping (address => uint256) public numCheckpoints; bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); mapping (address => uint) public nonces; event MinterChanged(address minter, address newMinter); event MinimumMintGapChanged(uint32 previousMinimumGap, uint32 newMinimumGap); event MintCapChanged(uint8 previousCap, uint8 newCap); event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance); constructor(address account, address _minter, uint256 _mintingAllowedAfter) { balances[account] = totalSupply; minter = _minter; mintingAllowedAfter = _mintingAllowedAfter; emit Transfer(address(0), account, totalSupply); emit MinterChanged(address(0), minter); } /** * @dev Change the minter address * @param _minter The address of the new minter */ function setMinter(address _minter) external onlyOwner { emit MinterChanged(minter, _minter); minter = _minter; } function setMintCap(uint8 _cap) external onlyOwner { emit MintCapChanged(mintCap, _cap); mintCap = _cap; } function setMinimumMintGap(uint32 _gap) external onlyOwner { emit MinimumMintGapChanged(minimumMintGap, _gap); minimumMintGap = _gap; } function mint(address _to, uint256 _amount) external { require(msg.sender == minter, "KeyfiToken::mint: only the minter can mint"); require(block.timestamp >= mintingAllowedAfter, "KeyfiToken::mint: minting not allowed yet"); require(_to != address(0), "KeyfiToken::mint: cannot transfer to the zero address"); require(_amount <= (totalSupply.mul(mintCap)).div(100), "KeyfiToken::mint: exceeded mint cap"); mintingAllowedAfter = (block.timestamp).add(minimumMintGap); totalSupply = totalSupply.add(_amount); balances[_to] = balances[_to].add(_amount); _moveDelegates(address(0), delegates[_to], _amount); emit Transfer(address(0), _to, _amount); } /** * @notice Get the number of tokens `spender` is approved to spend on behalf of `account` * @param account The address of the account holding the funds * @param spender The address of the account spending the funds * @return The number of tokens approved */ function allowance(address account, address spender) public view override returns (uint256) { return allowances[account][spender]; } /** * @notice Approve `spender` to transfer up to `amount` from `src` * @dev This will overwrite the approval amount for `spender` * and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve) * @param spender The address of the account which may transfer tokens * @param amount The number of tokens that are approved (2^256-1 means infinite) * @return Whether or not the approval succeeded */ function approve(address spender, uint256 amount) public override returns (bool) { require(spender != address(0), "KeyfiToken: cannot approve zero address"); allowances[msg.sender][spender] = amount; emit Approval(msg.sender, spender, amount); return true; } /** * @notice Get the number of tokens held by the `account` * @param account The address of the account to get the balance of * @return The number of tokens held */ function balanceOf(address account) external view override returns (uint256) { return balances[account]; } /** * @notice Transfer `amount` tokens from `msg.sender` to `dst` * @param dst The address of the destination account * @param amount The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transfer(address dst, uint256 amount) external override returns (bool) { _transferTokens(msg.sender, dst, amount); return true; } /** * @notice Transfer `amount` tokens from `src` to `dst` * @param src The address of the source account * @param dst The address of the destination account * @param amount The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transferFrom(address src, address dst, uint256 amount) external override returns (bool) { address spender = msg.sender; uint256 spenderAllowance = allowances[src][spender]; if (spender != src && spenderAllowance != uint256(-1)) { uint256 newAllowance = sub256(spenderAllowance, amount, "KeyfiToken::transferFrom: transfer amount exceeds spender allowance"); allowances[src][spender] = newAllowance; emit Approval(src, spender, newAllowance); } _transferTokens(src, dst, amount); return true; } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) external { return _delegate(msg.sender, delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig(address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s) external { bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this))); bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry)); bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), "KeyfiToken::delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "KeyfiToken::delegateBySig: invalid nonce"); require(block.timestamp <= expiry, "KeyfiToken::delegateBySig: signature expired"); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint256) { uint256 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint256 blockNumber) external view returns (uint256) { require(blockNumber < block.number, "KeyfiToken::getPriorVotes: not yet determined"); uint256 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint256 lower = 0; uint256 upper = nCheckpoints - 1; while (upper > lower) { uint256 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } function _delegate(address delegator, address delegatee) internal { address currentDelegate = delegates[delegator]; uint256 delegatorBalance = balances[delegator]; delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveDelegates(currentDelegate, delegatee, delegatorBalance); } function _transferTokens(address src, address dst, uint256 amount) internal { require(src != address(0), "KeyfiToken::_transferTokens: cannot transfer from the zero address"); require(dst != address(0), "KeyfiToken::_transferTokens: cannot transfer to the zero address"); balances[src] = sub256(balances[src], amount, "KeyfiToken::_transferTokens: transfer amount exceeds balance"); balances[dst] = add256(balances[dst], amount, "KeyfiToken::_transferTokens: transfer amount overflows"); emit Transfer(src, dst, amount); _moveDelegates(delegates[src], delegates[dst], amount); } function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { uint256 srcRepNum = numCheckpoints[srcRep]; uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint256 srcRepNew = sub256(srcRepOld, amount, "KeyfiToken::_moveVotes: vote amount underflows"); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { uint256 dstRepNum = numCheckpoints[dstRep]; uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint256 dstRepNew = add256(dstRepOld, amount, "KeyfiToken::_moveVotes: vote amount overflows"); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint(address delegatee, uint256 nCheckpoints, uint256 oldVotes, uint256 newVotes) internal { if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == block.number) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint(block.number, newVotes); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function add256(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, errorMessage); return c; } function sub256(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } function getChainId() internal pure returns (uint256) { uint256 chainId; assembly { chainId := chainid() } return chainId; } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal { require(account != address(0), "ERC20: burn from the zero address"); balances[account] = balances[account].sub(amount, "ERC20: burn amount exceeds balance"); totalSupply = totalSupply.sub(amount); emit Transfer(account, address(0), amount); _moveDelegates(delegates[account], address(0), amount); } /** * @dev Destroys `amount` tokens from the caller. */ function burn(uint256 amount) external returns (bool) { _burn(msg.sender, amount); return true; } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) external returns (bool) { address spender = msg.sender; uint256 spenderAllowance = allowances[account][spender]; if (spender != account && spenderAllowance != uint256(-1)) { uint256 newAllowance = sub256(spenderAllowance, amount, "KeyfiToken::burnFrom: burn amount exceeds spender allowance"); allowances[account][spender] = newAllowance; emit Approval(account, spender, newAllowance); } _burn(account, amount); return true; } }
// Whitelist.sol // SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "@openzeppelin/contracts/access/AccessControl.sol"; /* * Implements Whitelisting pattern using OpenZeppelin AccessRole */ contract Whitelist is AccessControl { bytes32 public constant WHITELIST_ADMIN = keccak256("WHITELIST_ADMIN"); bytes32 public constant WHITELISTED = keccak256("WHITELISTED"); constructor() { _setRoleAdmin(WHITELIST_ADMIN, WHITELIST_ADMIN); _setRoleAdmin(WHITELISTED, WHITELIST_ADMIN); _setupRole(WHITELIST_ADMIN, msg.sender); } modifier onlyWhitelistAdmin { require(hasRole(WHITELIST_ADMIN, msg.sender), "Caller is not a whitelist admin"); _; } modifier onlyWhitelisted { require(hasRole(WHITELISTED, msg.sender), "Caller is not a whitelisted"); _; } function addWhitelistAdmin(address account) onlyWhitelistAdmin external { grantRole(WHITELIST_ADMIN, account); } function removeWhitelistAdmin(address account) onlyWhitelistAdmin external { revokeRole(WHITELIST_ADMIN, account); } function addWhitelisted(address account) onlyWhitelistAdmin external { grantRole(WHITELISTED, account); } function removeWhitelisted(address account) onlyWhitelistAdmin external { revokeRole(WHITELISTED, account); } function isWhitelisted(address account) external view returns (bool) { return hasRole(WHITELISTED, account); } function isWhitelistAdmin(address account) external view returns (bool) { return hasRole(WHITELIST_ADMIN, account); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "../utils/EnumerableSet.sol"; import "../utils/Address.sol"; import "../GSN/Context.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context { using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view returns (bool) { return _roles[role].members.contains(account); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view returns (uint256) { return _roles[role].members.length(); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view returns (address) { return _roles[role].members.at(index); } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant"); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke"); _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, _roles[role].adminRole, adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "../GSN/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract 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 () { 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; /** * @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"); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256` * (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "istanbul", "libraries": { "": {} }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract KeyfiToken","name":"_rewardToken","type":"address"},{"internalType":"uint256","name":"_rewardPerBlock","type":"uint256"},{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"uint256","name":"_bonusEndBlock","type":"uint256"},{"internalType":"uint256","name":"_bonusMultiplier","type":"uint256"},{"internalType":"contract Whitelist","name":"_whitelist","type":"address"},{"internalType":"uint256","name":"_launchDate","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","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":false,"internalType":"uint256","name":"previousRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"RewardPerBlockChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"allocPoints","type":"uint256"}],"name":"SetAllocPoint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"allocPoints","type":"uint256"}],"name":"TokenAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"}],"name":"TokenRemoved","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawRewards","type":"event"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_stakingToken","type":"address"}],"name":"addStakingToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bonusEndBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bonusMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"checkpoint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"}],"name":"getBalance","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":"contract IERC20","name":"_token","type":"address"}],"name":"isStakingToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"massUpdateTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardBlocksLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"contract KeyfiToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"}],"name":"setAllocPoint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newRate","type":"uint256"}],"name":"setRewardPerBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakingTokenIndexes","outputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"bool","name":"added","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakingTokens","outputs":[{"internalType":"contract IERC20","name":"stakingToken","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accRewardPerShare","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingTokensCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelist","outputs":[{"internalType":"contract Whitelist","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"}],"name":"withdrawRewards","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e060405260006006553480156200001657600080fd5b5060405162003e4138038062003e41833981810160405260e08110156200003c57600080fd5b810190808051906020019092919080519060200190929190805190602001909291908051906020019092919080519060200190929190805190602001909291908051906020019092919050505060006200009b620001e360201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508673ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050856001819055508360a08181525050846007819055508260c0818152505081600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060088190555050505050505050620001eb565b600033905090565b60805160601c60a05160c051613be06200026160003980611a395280611afc5280611f30525080610b2a5280611a0f5280611a825280611ac95280611b21525080610dd752806113d25280611f5752806122465280612c395280612eef5280613232528061330752806133d95250613be06000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638dbb1e3a11610104578063cb4e8424116100a2578063f3fef3a311610071578063f3fef3a314610789578063f7c618c1146107d7578063f8b2cb4f1461080b578063f8eeed6214610863576101cf565b8063cb4e8424146106bf578063e3283c08146106c9578063ed64bab214610717578063f2fde38b14610745576101cf565b80639ced7e76116100de5780639ced7e76146105dd578063a8b973a114610655578063ae7805b914610673578063bb872b4a14610691576101cf565b80638dbb1e3a146104f457806393e59dc11461054057806393f1a40b14610574576101cf565b806348cd4cb1116101715780636ff1c9bc1161014b5780636ff1c9bc14610454578063715018a6146104985780638ae39cac146104a25780638da5cb5b146104c0576101cf565b806348cd4cb1146103b7578063675b6367146103d55780636ac2b693146103f3576101cf565b8063344e5e34116101ad578063344e5e341461025e57806336a8e097146102cb57806342d866931461032557806347e7ef2414610369576101cf565b806302b1720c146101d457806317caf6f1146102225780631aed655314610240575b600080fd5b610220600480360360408110156101ea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610881565b005b61022a610b22565b6040518082815260200191505060405180910390f35b610248610b28565b6040518082815260200191505060405180910390f35b61028a6004803603602081101561027457600080fd5b8101908080359060200190929190505050610b4c565b604051808573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390f35b61030d600480360360208110156102e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ba9565b60405180821515815260200191505060405180910390f35b6103676004803603602081101561033b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c02565b005b6103b56004803603604081101561037f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611030565b005b6103bf6115be565b6040518082815260200191505060405180910390f35b6103dd6115c4565b6040518082815260200191505060405180910390f35b6104356004803603602081101561040957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115d1565b6040518083815260200182151581526020019250505060405180910390f35b6104966004803603602081101561046a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611602565b005b6104a0611840565b005b6104aa6119c6565b6040518082815260200191505060405180910390f35b6104c86119cc565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61052a6004803603604081101561050a57600080fd5b8101908080359060200190929190803590602001909291905050506119f5565b6040518082815260200191505060405180910390f35b610548611b73565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105c06004803603604081101561058a57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b99565b604051808381526020018281526020019250505060405180910390f35b61063f600480360360408110156105f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bca565b6040518082815260200191505060405180910390f35b61065d611f2e565b6040518082815260200191505060405180910390f35b61067b611f52565b6040518082815260200191505060405180910390f35b6106bd600480360360208110156106a757600080fd5b8101908080359060200190929190505050612034565b005b6106c761214f565b005b610715600480360360408110156106df57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061217c565b005b6107436004803603602081101561072d57600080fd5b8101908080359060200190929190505050612572565b005b6107876004803603602081101561075b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127c0565b005b6107d56004803603604081101561079f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506129cb565b005b6107df612eed565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61084d6004803603602081101561082157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f11565b6040518082815260200191505060405180910390f35b61086b61307e565b6040518082815260200191505060405180910390f35b610889613084565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610949576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff16610a0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f746f6b656e20646f6573206e6f7420657869737420696e206c6973740000000081525060200191505060405180910390fd5b610a1361214f565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050610a9f82610a9160038481548110610a6e57fe5b90600052602060002090600402016001015460065461308c90919063ffffffff16565b6130d690919063ffffffff16565b6006819055508160038281548110610ab357fe5b9060005260206000209060040201600101819055507f6b0c0d1e946b4449af118593aaa48b525612782701583e2e35db06d52e16d0348383604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1505050565b60065481565b7f000000000000000000000000000000000000000000000000000000000000000081565b60038181548110610b5957fe5b90600052602060002090600402016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154905084565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff169050919050565b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff16610cc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f696e76616c696420746f6b656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050600060038281548110610d1a57fe5b9060005260206000209060040201905060006005600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050610d8783612572565b6000610dd18260010154610dc364e8d4a51000610db58760030154876000015461315e90919063ffffffff16565b6131e490919063ffffffff16565b61308c90919063ffffffff16565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610e5c57600080fd5b505afa158015610e70573d6000803e3d6000fd5b505050506040513d6020811015610e8657600080fd5b81019080805190602001909291905050509050600082821015610eb957610eb6828461308c90919063ffffffff16565b90505b610efd81610eef64e8d4a51000610ee18960030154896000015461315e90919063ffffffff16565b6131e490919063ffffffff16565b61308c90919063ffffffff16565b8460010181905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633af32abf336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610f8e57600080fd5b505afa158015610fa2573d6000803e3d6000fd5b505050506040513d6020811015610fb857600080fd5b81019080805190602001909291905050501561102757610fd8338461322e565b3373ffffffffffffffffffffffffffffffffffffffff167faa1377f7ec93c239e959efa811f7b8554c036fd7a706c23e58024626a8f3db96846040518082815260200191505060405180910390a25b50505050505050565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff166110f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f696e76616c696420746f6b656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633af32abf336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561117b57600080fd5b505afa15801561118f573d6000803e3d6000fd5b505050506040513d60208110156111a557600080fd5b8101908080519060200190929190505050611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f73656e6465722061646472657373206973206e6f7420656c696769626c65000081525060200191505060405180910390fd5b6008544210156112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f6465706f7369747320617265206e6f7420656e61626c6564207965740000000081525060200191505060405180910390fd5b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015490506112f081612572565b6000600382815481106112ff57fe5b9060005260206000209060040201905060006005600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060006113ad826001015461139f64e8d4a510006113918760030154876000015461315e90919063ffffffff16565b6131e490919063ffffffff16565b61308c90919063ffffffff16565b90506113c68583600001546130d690919063ffffffff16565b826000018190555060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561145757600080fd5b505afa15801561146b573d6000803e3d6000fd5b505050506040513d602081101561148157600080fd5b810190808051906020019092919050505090506000828210156114b4576114b1828461308c90919063ffffffff16565b90505b6114f8816114ea64e8d4a510006114dc8960030154896000015461315e90919063ffffffff16565b6131e490919063ffffffff16565b61308c90919063ffffffff16565b846001018190555061150a338461322e565b60008711156115b4576115643330898860000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166134ab909392919063ffffffff16565b853373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15896040518082815260200191505060405180910390a35b5050505050505050565b60075481565b6000600380549050905090565b60046020528060005260406000206000915090508060000154908060010160009054906101000a900460ff16905082565b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff166116c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f696e76616c696420746f6b656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154905060006003828154811061171a57fe5b9060005260206000209060040201905060006005600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160000154905060008260000181905550600082600101819055506117ea33828560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661356c9092919063ffffffff16565b833373ffffffffffffffffffffffffffffffffffffffff167fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae0595836040518082815260200191505060405180910390a35050505050565b611848613084565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60015481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600754831015611a0957600754611a0b565b825b92507f00000000000000000000000000000000000000000000000000000000000000008211611a8057611a797f0000000000000000000000000000000000000000000000000000000000000000611a6b858561308c90919063ffffffff16565b61315e90919063ffffffff16565b9050611b6d565b7f00000000000000000000000000000000000000000000000000000000000000008310611ac157611aba838361308c90919063ffffffff16565b9050611b6d565b611b6a611af77f00000000000000000000000000000000000000000000000000000000000000008461308c90919063ffffffff16565b611b5c7f0000000000000000000000000000000000000000000000000000000000000000611b4e877f000000000000000000000000000000000000000000000000000000000000000061308c90919063ffffffff16565b61315e90919063ffffffff16565b6130d690919063ffffffff16565b90505b92915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6005602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff16611c8e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f696e76616c696420746f6b656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050600060038281548110611ce457fe5b9060005260206000209060040201905060006005600084815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008260030154905060008360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611dde57600080fd5b505afa158015611df2573d6000803e3d6000fd5b505050506040513d6020811015611e0857600080fd5b81019080805190602001909291905050509050836002015443118015611e2f575060008114155b15611edd576000611e448560020154436119f5565b9050600080866001015414611e9757611e92600654611e848860010154611e766001548761315e90919063ffffffff16565b61315e90919063ffffffff16565b6131e490919063ffffffff16565b611e9a565b60005b9050611ed8611ec984611ebb64e8d4a510008561315e90919063ffffffff16565b6131e490919063ffffffff16565b856130d690919063ffffffff16565b935050505b611f218360010154611f1364e8d4a51000611f0586886000015461315e90919063ffffffff16565b6131e490919063ffffffff16565b61308c90919063ffffffff16565b9550505050505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611fdc57600080fd5b505afa158015611ff0573d6000803e3d6000fd5b505050506040513d602081101561200657600080fd5b8101908080519060200190929190505050905061202e600154826131e490919063ffffffff16565b91505090565b61203c613084565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61210461214f565b7f79a5349732f93288abbb68e251c3dfc325bf3ee6fde7786d919155d39733e0f560015482604051808381526020018281526020019250505060405180910390a18060018190555050565b6000600380549050905060005b818110156121785761216d81612572565b80600101905061215c565b5050565b612184613084565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612244576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122e9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613aed6028913960400191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff161561238f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613b5c6025913960400191505060405180910390fd5b61239761214f565b600060075443116123aa576007546123ac565b435b90506123c3836006546130d690919063ffffffff16565b600681905550600360405180608001604052808473ffffffffffffffffffffffffffffffffffffffff1681526020018581526020018381526020016000815250908060018154018082558091505060019003906000526020600020906004020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155604082015181600201556060820151816003015550506040518060400160405280600160038054905003815260200160011515815250600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820151816000015560208201518160010160006101000a81548160ff0219169083151502179055509050508173ffffffffffffffffffffffffffffffffffffffff167ff4c563a3ea86ff1f4275e8c207df0375a51963f2b831b7bf4da8be938d92876c846040518082815260200191505060405180910390a2505050565b60038054905081106125ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f746f6b656e20696e646578206f7574206f6620626f756e64730000000000000081525060200191505060405180910390fd5b6000600382815481106125fb57fe5b906000526020600020906004020190508060020154431161261c57506127bd565b60008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156126a957600080fd5b505afa1580156126bd573d6000803e3d6000fd5b505050506040513d60208110156126d357600080fd5b8101908080519060200190929190505050905060008114156126ff5743826002018190555050506127bd565b600061270f8360020154436119f5565b90506000808460010154146127625761275d60065461274f86600101546127416001548761315e90919063ffffffff16565b61315e90919063ffffffff16565b6131e490919063ffffffff16565b612765565b60005b90506127a76127948461278664e8d4a510008561315e90919063ffffffff16565b6131e490919063ffffffff16565b85600301546130d690919063ffffffff16565b8460030181905550438460020181905550505050505b50565b6127c8613084565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612888576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561290e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613b156026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff16612a8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f696e76616c696420746f6b656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050600060038281548110612ae357fe5b9060005260206000209060040201905060006005600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508381600001541015612bc1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f696e76616c696420616d6f756e7420737065636966696564000000000000000081525060200191505060405180910390fd5b612bca83612572565b6000612c148260010154612c0664e8d4a51000612bf88760030154876000015461315e90919063ffffffff16565b6131e490919063ffffffff16565b61308c90919063ffffffff16565b9050612c2d85836000015461308c90919063ffffffff16565b826000018190555060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612cbe57600080fd5b505afa158015612cd2573d6000803e3d6000fd5b505050506040513d6020811015612ce857600080fd5b81019080805190602001909291905050509050600082821015612d1b57612d18828461308c90919063ffffffff16565b90505b612d5f81612d5164e8d4a51000612d438960030154896000015461315e90919063ffffffff16565b6131e490919063ffffffff16565b61308c90919063ffffffff16565b8460010181905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633af32abf336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612df057600080fd5b505afa158015612e04573d6000803e3d6000fd5b505050506040513d6020811015612e1a57600080fd5b810190808051906020019092919050505015612e3b57612e3a338461322e565b5b6000871115612ee357612e9333888760000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661356c9092919063ffffffff16565b853373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568896040518082815260200191505060405180910390a35b5050505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff16612fd5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f696e76616c696420746f6b656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154905060006005600083815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050806000015492505050919050565b60085481565b600033905090565b60006130ce83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061360e565b905092915050565b600080828401905083811015613154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008083141561317157600090506131de565b600082840290508284828161318257fe5b04146131d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613b3b6021913960400191505060405180910390fd5b809150505b92915050565b600061322683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506136ce565b905092915050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156132b757600080fd5b505afa1580156132cb573d6000803e3d6000fd5b505050506040513d60208110156132e157600080fd5b8101908080519060200190929190505050905060008211156134a657808211156133d7577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561339657600080fd5b505af11580156133aa573d6000803e3d6000fd5b505050506040513d60208110156133c057600080fd5b8101908080519060200190929190505050506134a5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561346857600080fd5b505af115801561347c573d6000803e3d6000fd5b505050506040513d602081101561349257600080fd5b8101908080519060200190929190505050505b5b505050565b613566846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613794565b50505050565b6136098363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613794565b505050565b60008383111582906136bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613680578082015181840152602081019050613665565b50505050905090810190601f1680156136ad5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000808311829061377a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561373f578082015181840152602081019050613724565b50505050905090810190601f16801561376c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161378657fe5b049050809150509392505050565b60606137f6826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166138839092919063ffffffff16565b905060008151111561387e5780806020019051602081101561381757600080fd5b810190808051906020019092919050505061387d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613b81602a913960400191505060405180910390fd5b5b505050565b6060613892848460008561389b565b90509392505050565b60606138a685613aa1565b613918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106139685780518252602082019150602081019050602083039250613945565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146139ca576040519150601f19603f3d011682016040523d82523d6000602084013e6139cf565b606091505b509150915081156139e4578092505050613a99565b6000815111156139f75780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a5e578082015181840152602081019050613a43565b50505050905090810190601f168015613a8b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f9150808214158015613ae357506000801b8214155b9250505091905056fe63616e6e6f74206164642072657761726420746f6b656e206173207374616b696e6720746f6b656e4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f777374616b696e6720746f6b656e20616c72656164792065786973747320696e2061727261795361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220f1dfa6fbf33d55b7340a719f330b97f9d322f986b8c3e139617b498416d8657f64736f6c63430007010033000000000000000000000000b8647e90c0645152fccf4d9abb6b59eb4aa990520000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b121f20000000000000000000000000000000000000000000000000000000000000003000000000000000000000000c3faa8e87cd7b3678fa10c0f9638eb4ba7da20c5000000000000000000000000000000000000000000000000000000005fcf6ac0
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638dbb1e3a11610104578063cb4e8424116100a2578063f3fef3a311610071578063f3fef3a314610789578063f7c618c1146107d7578063f8b2cb4f1461080b578063f8eeed6214610863576101cf565b8063cb4e8424146106bf578063e3283c08146106c9578063ed64bab214610717578063f2fde38b14610745576101cf565b80639ced7e76116100de5780639ced7e76146105dd578063a8b973a114610655578063ae7805b914610673578063bb872b4a14610691576101cf565b80638dbb1e3a146104f457806393e59dc11461054057806393f1a40b14610574576101cf565b806348cd4cb1116101715780636ff1c9bc1161014b5780636ff1c9bc14610454578063715018a6146104985780638ae39cac146104a25780638da5cb5b146104c0576101cf565b806348cd4cb1146103b7578063675b6367146103d55780636ac2b693146103f3576101cf565b8063344e5e34116101ad578063344e5e341461025e57806336a8e097146102cb57806342d866931461032557806347e7ef2414610369576101cf565b806302b1720c146101d457806317caf6f1146102225780631aed655314610240575b600080fd5b610220600480360360408110156101ea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610881565b005b61022a610b22565b6040518082815260200191505060405180910390f35b610248610b28565b6040518082815260200191505060405180910390f35b61028a6004803603602081101561027457600080fd5b8101908080359060200190929190505050610b4c565b604051808573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390f35b61030d600480360360208110156102e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ba9565b60405180821515815260200191505060405180910390f35b6103676004803603602081101561033b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c02565b005b6103b56004803603604081101561037f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611030565b005b6103bf6115be565b6040518082815260200191505060405180910390f35b6103dd6115c4565b6040518082815260200191505060405180910390f35b6104356004803603602081101561040957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115d1565b6040518083815260200182151581526020019250505060405180910390f35b6104966004803603602081101561046a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611602565b005b6104a0611840565b005b6104aa6119c6565b6040518082815260200191505060405180910390f35b6104c86119cc565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61052a6004803603604081101561050a57600080fd5b8101908080359060200190929190803590602001909291905050506119f5565b6040518082815260200191505060405180910390f35b610548611b73565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105c06004803603604081101561058a57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b99565b604051808381526020018281526020019250505060405180910390f35b61063f600480360360408110156105f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bca565b6040518082815260200191505060405180910390f35b61065d611f2e565b6040518082815260200191505060405180910390f35b61067b611f52565b6040518082815260200191505060405180910390f35b6106bd600480360360208110156106a757600080fd5b8101908080359060200190929190505050612034565b005b6106c761214f565b005b610715600480360360408110156106df57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061217c565b005b6107436004803603602081101561072d57600080fd5b8101908080359060200190929190505050612572565b005b6107876004803603602081101561075b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127c0565b005b6107d56004803603604081101561079f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506129cb565b005b6107df612eed565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61084d6004803603602081101561082157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f11565b6040518082815260200191505060405180910390f35b61086b61307e565b6040518082815260200191505060405180910390f35b610889613084565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610949576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff16610a0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f746f6b656e20646f6573206e6f7420657869737420696e206c6973740000000081525060200191505060405180910390fd5b610a1361214f565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050610a9f82610a9160038481548110610a6e57fe5b90600052602060002090600402016001015460065461308c90919063ffffffff16565b6130d690919063ffffffff16565b6006819055508160038281548110610ab357fe5b9060005260206000209060040201600101819055507f6b0c0d1e946b4449af118593aaa48b525612782701583e2e35db06d52e16d0348383604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1505050565b60065481565b7f0000000000000000000000000000000000000000000000000000000000b121f281565b60038181548110610b5957fe5b90600052602060002090600402016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154905084565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff169050919050565b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff16610cc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f696e76616c696420746f6b656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050600060038281548110610d1a57fe5b9060005260206000209060040201905060006005600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050610d8783612572565b6000610dd18260010154610dc364e8d4a51000610db58760030154876000015461315e90919063ffffffff16565b6131e490919063ffffffff16565b61308c90919063ffffffff16565b905060007f000000000000000000000000b8647e90c0645152fccf4d9abb6b59eb4aa9905273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610e5c57600080fd5b505afa158015610e70573d6000803e3d6000fd5b505050506040513d6020811015610e8657600080fd5b81019080805190602001909291905050509050600082821015610eb957610eb6828461308c90919063ffffffff16565b90505b610efd81610eef64e8d4a51000610ee18960030154896000015461315e90919063ffffffff16565b6131e490919063ffffffff16565b61308c90919063ffffffff16565b8460010181905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633af32abf336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610f8e57600080fd5b505afa158015610fa2573d6000803e3d6000fd5b505050506040513d6020811015610fb857600080fd5b81019080805190602001909291905050501561102757610fd8338461322e565b3373ffffffffffffffffffffffffffffffffffffffff167faa1377f7ec93c239e959efa811f7b8554c036fd7a706c23e58024626a8f3db96846040518082815260200191505060405180910390a25b50505050505050565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff166110f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f696e76616c696420746f6b656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633af32abf336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561117b57600080fd5b505afa15801561118f573d6000803e3d6000fd5b505050506040513d60208110156111a557600080fd5b8101908080519060200190929190505050611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f73656e6465722061646472657373206973206e6f7420656c696769626c65000081525060200191505060405180910390fd5b6008544210156112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f6465706f7369747320617265206e6f7420656e61626c6564207965740000000081525060200191505060405180910390fd5b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015490506112f081612572565b6000600382815481106112ff57fe5b9060005260206000209060040201905060006005600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060006113ad826001015461139f64e8d4a510006113918760030154876000015461315e90919063ffffffff16565b6131e490919063ffffffff16565b61308c90919063ffffffff16565b90506113c68583600001546130d690919063ffffffff16565b826000018190555060007f000000000000000000000000b8647e90c0645152fccf4d9abb6b59eb4aa9905273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561145757600080fd5b505afa15801561146b573d6000803e3d6000fd5b505050506040513d602081101561148157600080fd5b810190808051906020019092919050505090506000828210156114b4576114b1828461308c90919063ffffffff16565b90505b6114f8816114ea64e8d4a510006114dc8960030154896000015461315e90919063ffffffff16565b6131e490919063ffffffff16565b61308c90919063ffffffff16565b846001018190555061150a338461322e565b60008711156115b4576115643330898860000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166134ab909392919063ffffffff16565b853373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15896040518082815260200191505060405180910390a35b5050505050505050565b60075481565b6000600380549050905090565b60046020528060005260406000206000915090508060000154908060010160009054906101000a900460ff16905082565b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff166116c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f696e76616c696420746f6b656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154905060006003828154811061171a57fe5b9060005260206000209060040201905060006005600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160000154905060008260000181905550600082600101819055506117ea33828560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661356c9092919063ffffffff16565b833373ffffffffffffffffffffffffffffffffffffffff167fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae0595836040518082815260200191505060405180910390a35050505050565b611848613084565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60015481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600754831015611a0957600754611a0b565b825b92507f0000000000000000000000000000000000000000000000000000000000b121f28211611a8057611a797f0000000000000000000000000000000000000000000000000000000000000003611a6b858561308c90919063ffffffff16565b61315e90919063ffffffff16565b9050611b6d565b7f0000000000000000000000000000000000000000000000000000000000b121f28310611ac157611aba838361308c90919063ffffffff16565b9050611b6d565b611b6a611af77f0000000000000000000000000000000000000000000000000000000000b121f28461308c90919063ffffffff16565b611b5c7f0000000000000000000000000000000000000000000000000000000000000003611b4e877f0000000000000000000000000000000000000000000000000000000000b121f261308c90919063ffffffff16565b61315e90919063ffffffff16565b6130d690919063ffffffff16565b90505b92915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6005602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff16611c8e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f696e76616c696420746f6b656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050600060038281548110611ce457fe5b9060005260206000209060040201905060006005600084815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008260030154905060008360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611dde57600080fd5b505afa158015611df2573d6000803e3d6000fd5b505050506040513d6020811015611e0857600080fd5b81019080805190602001909291905050509050836002015443118015611e2f575060008114155b15611edd576000611e448560020154436119f5565b9050600080866001015414611e9757611e92600654611e848860010154611e766001548761315e90919063ffffffff16565b61315e90919063ffffffff16565b6131e490919063ffffffff16565b611e9a565b60005b9050611ed8611ec984611ebb64e8d4a510008561315e90919063ffffffff16565b6131e490919063ffffffff16565b856130d690919063ffffffff16565b935050505b611f218360010154611f1364e8d4a51000611f0586886000015461315e90919063ffffffff16565b6131e490919063ffffffff16565b61308c90919063ffffffff16565b9550505050505092915050565b7f000000000000000000000000000000000000000000000000000000000000000381565b6000807f000000000000000000000000b8647e90c0645152fccf4d9abb6b59eb4aa9905273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611fdc57600080fd5b505afa158015611ff0573d6000803e3d6000fd5b505050506040513d602081101561200657600080fd5b8101908080519060200190929190505050905061202e600154826131e490919063ffffffff16565b91505090565b61203c613084565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61210461214f565b7f79a5349732f93288abbb68e251c3dfc325bf3ee6fde7786d919155d39733e0f560015482604051808381526020018281526020019250505060405180910390a18060018190555050565b6000600380549050905060005b818110156121785761216d81612572565b80600101905061215c565b5050565b612184613084565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612244576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b7f000000000000000000000000b8647e90c0645152fccf4d9abb6b59eb4aa9905273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122e9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613aed6028913960400191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff161561238f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613b5c6025913960400191505060405180910390fd5b61239761214f565b600060075443116123aa576007546123ac565b435b90506123c3836006546130d690919063ffffffff16565b600681905550600360405180608001604052808473ffffffffffffffffffffffffffffffffffffffff1681526020018581526020018381526020016000815250908060018154018082558091505060019003906000526020600020906004020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155604082015181600201556060820151816003015550506040518060400160405280600160038054905003815260200160011515815250600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820151816000015560208201518160010160006101000a81548160ff0219169083151502179055509050508173ffffffffffffffffffffffffffffffffffffffff167ff4c563a3ea86ff1f4275e8c207df0375a51963f2b831b7bf4da8be938d92876c846040518082815260200191505060405180910390a2505050565b60038054905081106125ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f746f6b656e20696e646578206f7574206f6620626f756e64730000000000000081525060200191505060405180910390fd5b6000600382815481106125fb57fe5b906000526020600020906004020190508060020154431161261c57506127bd565b60008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156126a957600080fd5b505afa1580156126bd573d6000803e3d6000fd5b505050506040513d60208110156126d357600080fd5b8101908080519060200190929190505050905060008114156126ff5743826002018190555050506127bd565b600061270f8360020154436119f5565b90506000808460010154146127625761275d60065461274f86600101546127416001548761315e90919063ffffffff16565b61315e90919063ffffffff16565b6131e490919063ffffffff16565b612765565b60005b90506127a76127948461278664e8d4a510008561315e90919063ffffffff16565b6131e490919063ffffffff16565b85600301546130d690919063ffffffff16565b8460030181905550438460020181905550505050505b50565b6127c8613084565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612888576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561290e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613b156026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff16612a8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f696e76616c696420746f6b656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050600060038281548110612ae357fe5b9060005260206000209060040201905060006005600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508381600001541015612bc1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f696e76616c696420616d6f756e7420737065636966696564000000000000000081525060200191505060405180910390fd5b612bca83612572565b6000612c148260010154612c0664e8d4a51000612bf88760030154876000015461315e90919063ffffffff16565b6131e490919063ffffffff16565b61308c90919063ffffffff16565b9050612c2d85836000015461308c90919063ffffffff16565b826000018190555060007f000000000000000000000000b8647e90c0645152fccf4d9abb6b59eb4aa9905273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612cbe57600080fd5b505afa158015612cd2573d6000803e3d6000fd5b505050506040513d6020811015612ce857600080fd5b81019080805190602001909291905050509050600082821015612d1b57612d18828461308c90919063ffffffff16565b90505b612d5f81612d5164e8d4a51000612d438960030154896000015461315e90919063ffffffff16565b6131e490919063ffffffff16565b61308c90919063ffffffff16565b8460010181905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633af32abf336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612df057600080fd5b505afa158015612e04573d6000803e3d6000fd5b505050506040513d6020811015612e1a57600080fd5b810190808051906020019092919050505015612e3b57612e3a338461322e565b5b6000871115612ee357612e9333888760000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661356c9092919063ffffffff16565b853373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568896040518082815260200191505060405180910390a35b5050505050505050565b7f000000000000000000000000b8647e90c0645152fccf4d9abb6b59eb4aa9905281565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff16612fd5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f696e76616c696420746f6b656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154905060006005600083815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050806000015492505050919050565b60085481565b600033905090565b60006130ce83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061360e565b905092915050565b600080828401905083811015613154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008083141561317157600090506131de565b600082840290508284828161318257fe5b04146131d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613b3b6021913960400191505060405180910390fd5b809150505b92915050565b600061322683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506136ce565b905092915050565b60007f000000000000000000000000b8647e90c0645152fccf4d9abb6b59eb4aa9905273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156132b757600080fd5b505afa1580156132cb573d6000803e3d6000fd5b505050506040513d60208110156132e157600080fd5b8101908080519060200190929190505050905060008211156134a657808211156133d7577f000000000000000000000000b8647e90c0645152fccf4d9abb6b59eb4aa9905273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561339657600080fd5b505af11580156133aa573d6000803e3d6000fd5b505050506040513d60208110156133c057600080fd5b8101908080519060200190929190505050506134a5565b7f000000000000000000000000b8647e90c0645152fccf4d9abb6b59eb4aa9905273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561346857600080fd5b505af115801561347c573d6000803e3d6000fd5b505050506040513d602081101561349257600080fd5b8101908080519060200190929190505050505b5b505050565b613566846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613794565b50505050565b6136098363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613794565b505050565b60008383111582906136bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613680578082015181840152602081019050613665565b50505050905090810190601f1680156136ad5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000808311829061377a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561373f578082015181840152602081019050613724565b50505050905090810190601f16801561376c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161378657fe5b049050809150509392505050565b60606137f6826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166138839092919063ffffffff16565b905060008151111561387e5780806020019051602081101561381757600080fd5b810190808051906020019092919050505061387d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613b81602a913960400191505060405180910390fd5b5b505050565b6060613892848460008561389b565b90509392505050565b60606138a685613aa1565b613918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106139685780518252602082019150602081019050602083039250613945565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146139ca576040519150601f19603f3d011682016040523d82523d6000602084013e6139cf565b606091505b509150915081156139e4578092505050613a99565b6000815111156139f75780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a5e578082015181840152602081019050613a43565b50505050905090810190601f168015613a8b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f9150808214158015613ae357506000801b8214155b9250505091905056fe63616e6e6f74206164642072657761726420746f6b656e206173207374616b696e6720746f6b656e4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f777374616b696e6720746f6b656e20616c72656164792065786973747320696e2061727261795361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220f1dfa6fbf33d55b7340a719f330b97f9d322f986b8c3e139617b498416d8657f64736f6c63430007010033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b8647e90c0645152fccf4d9abb6b59eb4aa990520000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b121f20000000000000000000000000000000000000000000000000000000000000003000000000000000000000000c3faa8e87cd7b3678fa10c0f9638eb4ba7da20c5000000000000000000000000000000000000000000000000000000005fcf6ac0
-----Decoded View---------------
Arg [0] : _rewardToken (address): 0xB8647e90C0645152Fccf4d9AbB6B59Eb4AA99052
Arg [1] : _rewardPerBlock (uint256): 1000000000000000000
Arg [2] : _startBlock (uint256): 0
Arg [3] : _bonusEndBlock (uint256): 11608562
Arg [4] : _bonusMultiplier (uint256): 3
Arg [5] : _whitelist (address): 0xc3faa8e87cD7b3678FA10C0F9638Eb4BA7DA20C5
Arg [6] : _launchDate (uint256): 1607428800
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000b8647e90c0645152fccf4d9abb6b59eb4aa99052
Arg [1] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000b121f2
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 000000000000000000000000c3faa8e87cd7b3678fa10c0f9638eb4ba7da20c5
Arg [6] : 000000000000000000000000000000000000000000000000000000005fcf6ac0
Loading...
Loading
Loading...
Loading
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.