More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 2,995 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Emergency Withdr... | 18278290 | 485 days ago | IN | 0 ETH | 0.00108509 | ||||
Deposit | 11022622 | 1575 days ago | IN | 0 ETH | 0.00514137 | ||||
Deposit | 11022621 | 1575 days ago | IN | 0 ETH | 0.00593235 | ||||
Deposit | 11022619 | 1575 days ago | IN | 0 ETH | 0.00683654 | ||||
Transfer Ownersh... | 11005276 | 1578 days ago | IN | 0 ETH | 0.0030655 | ||||
Set Governance | 11005262 | 1578 days ago | IN | 0 ETH | 0.001512 | ||||
Emergency Withdr... | 10978306 | 1582 days ago | IN | 0 ETH | 0.00188511 | ||||
Withdraw | 10967291 | 1584 days ago | IN | 0 ETH | 0.001144 | ||||
Transfer Ownersh... | 10965458 | 1584 days ago | IN | 0 ETH | 0.00339713 | ||||
Emergency Withdr... | 10951920 | 1586 days ago | IN | 0 ETH | 0.00585321 | ||||
Withdraw | 10931004 | 1589 days ago | IN | 0 ETH | 0.00644679 | ||||
Emergency Withdr... | 10930652 | 1589 days ago | IN | 0 ETH | 0.00348867 | ||||
Withdraw | 10929807 | 1589 days ago | IN | 0 ETH | 0.0055767 | ||||
Withdraw | 10929784 | 1589 days ago | IN | 0 ETH | 0.00784877 | ||||
Emergency Withdr... | 10929493 | 1589 days ago | IN | 0 ETH | 0.00351148 | ||||
Emergency Withdr... | 10929030 | 1590 days ago | IN | 0 ETH | 0.00284615 | ||||
Emergency Withdr... | 10928968 | 1590 days ago | IN | 0 ETH | 0.00333361 | ||||
Emergency Withdr... | 10928795 | 1590 days ago | IN | 0 ETH | 0.00201708 | ||||
Withdraw | 10928451 | 1590 days ago | IN | 0 ETH | 0.00509403 | ||||
Withdraw | 10928256 | 1590 days ago | IN | 0 ETH | 0.00573152 | ||||
Withdraw | 10928237 | 1590 days ago | IN | 0 ETH | 0.00697078 | ||||
Emergency Withdr... | 10928195 | 1590 days ago | IN | 0 ETH | 0.00196105 | ||||
Withdraw | 10928176 | 1590 days ago | IN | 0 ETH | 0.00548441 | ||||
Withdraw | 10928169 | 1590 days ago | IN | 0 ETH | 0.0054816 | ||||
Withdraw | 10928162 | 1590 days ago | IN | 0 ETH | 0.00571884 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
UniCatFarm
Compiler Version
v0.7.1+commit.f4a555be
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-09-20 */ /* https://www.unicat.farm _ _________ _______ _______ _________ |\ /|( ( /|\__ __/( ____ \( ___ )\__ __/ | ) ( || \ ( | ) ( | ( \/| ( ) | ) ( | | | || \ | | | | | | | (___) | | | | | | || (\ \) | | | | | | ___ | | | | | | || | \ | | | | | | ( ) | | | | (___) || ) \ |___) (___| (____/\| ) ( | | | (_______)|/ )_)\_______/(_______/|/ \| )_( _______ _______ _______ _______ ( ____ \( ___ )( ____ )( ) | ( \/| ( ) || ( )|| () () | | (__ | (___) || (____)|| || || | | __) | ___ || __)| |(_)| | | ( | ( ) || (\ ( | | | | | ) | ) ( || ) \ \__| ) ( | |/ |/ \||/ \__/|/ \| Because we love UNI, we grow MEOW ! Stake your UNI and your favourite UNI Liquidity Pools tokens and earn MEOW. UniCat (MEOW) holders will govern the UniCat Exchange and will earn a percentage of the fees! Visit and follow! * Website: https://www.unicat.farm * Twitter: https://twitter.com/unicatFarm * Telegram: https://t.me/unicatFarm * Medium: https://medium.com/@unicat.farm" UNI Liquidity Pools tokens includes, among others: UniswapV2 (UNI-ETH) MooniswapV1 (ETH-UNI) Sushiswap (ETH-UNI) Balancer Pools 50/50 Forked from SushiSwap project, YAM and UNI */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity 0.7.1; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 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); } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity 0.7.1; /** * @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; } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity 0.7.1; /** * @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 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); } 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); } } } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol pragma solidity 0.7.1; /** * @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 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"); } } } // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity 0.7.1; /* * @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; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity 0.7.1; /** * @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; } } // File: contracts/UniCat.sol pragma solidity 0.7.1; interface UniCat { function mint(address dst, uint rawAmount) external; function transfer(address dst, uint rawAmount) external returns (bool); function balanceOf(address account) external view returns (uint); function totalSupply() external view returns (uint); } // File: contracts/UniCatFarm.sol pragma solidity 0.7.1; // UniCatFarm is the master of MEOW. He can make MEOW and he is a fair cat. // // Note that it's ownable and the owner wields tremendous power. The owner will set // the governance contract and will burn its keys once MEOW is sufficiently // distributed. // // Have fun reading it. Hopefully it's bug-free. God bless. contract UniCatFarm is Ownable { using SafeMath for uint256; using SafeERC20 for IERC20; // 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 MEOWs // entitled to a user but is pending to be distributed is: // // pending reward = (user.amount * pool.accMEOWPerShare) - user.rewardDebt // // Whenever a user deposits or withdraws LP tokens to a pool. Here's what happens: // 1. The pool's `accMEOWPerShare` (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 pool. struct PoolInfo { IERC20 lpToken; // Address of LP token contract. uint256 allocPoint; // How many allocation points assigned to this pool. MEOWs to distribute per block. uint256 lastRewardBlock; // Last block number that MEOWs distribution occurs. uint256 accMEOWPerShare; // Accumulated MEOWs per share, times 1e12. See below. } // The MEOW TOKEN! UniCat public MEOW; // Dev address. address public devaddr; // Block number when bonus MEOW period ends. uint256 public bonusEndBlock; // MEOW tokens created per block. uint256 public MEOWPerBlock; // Bonus muliplier for early MEOW makers. uint256 public constant BONUS_MULTIPLIER = 10; // The governance contract; address public governance; // Info of each pool. PoolInfo[] public poolInfo; // Info of each user that stakes LP tokens. mapping (uint256 => mapping (address => UserInfo)) public userInfo; // Total allocation poitns. Must be the sum of all allocation points in all pools. uint256 public totalAllocPoint = 0; // The block number when MEOW mining starts. uint256 public startBlock; // The block number when MEOW mining ends. uint256 public endBlock; // The block number when dev can receive it's fee (1 year vesting) // Date and time (GMT): Monday, September 20, 2021 12:00:00 PM uint256 public devFeeUnlockTime = 1632139200; // If dev has requested its fee bool public devFeeDelivered; event Deposit(address indexed user, uint256 indexed pid, uint256 amount); event Withdraw(address indexed user, uint256 indexed pid, uint256 amount); event EmergencyWithdraw(address indexed user, uint256 indexed pid, uint256 amount); constructor( UniCat _MEOW, address _devaddr, uint256 _MEOWPerBlock, // 100000000000000000000 uint256 _startBlock, // 10902300 , https://etherscan.io/block/countdown/10902300 uint256 _bonusEndBlock, //10930000, https://etherscan.io/block/countdown/10930000 uint256 _endBlock //11240000 (around 50 days of farming), https://etherscan.io/block/countdown/11240000 ) { MEOW = _MEOW; devaddr = _devaddr; MEOWPerBlock = _MEOWPerBlock; bonusEndBlock = _bonusEndBlock; startBlock = _startBlock; endBlock = _endBlock; } function poolLength() external view returns (uint256) { return poolInfo.length; } modifier onlyOwnerOrGovernance() { require(owner() == _msgSender() || governance == _msgSender(), "Caller is not the owner, neither governance"); _; } // Add a new lp to the pool. Can only be called by the owner. // XXX DO NOT add the same LP token more than once. Rewards will be messed up if you do. function add(uint256 _allocPoint, IERC20 _lpToken, bool _withUpdate) public onlyOwnerOrGovernance { if (_withUpdate) { massUpdatePools(); } uint256 lastRewardBlock = block.number > startBlock ? block.number : startBlock; totalAllocPoint = totalAllocPoint.add(_allocPoint); poolInfo.push(PoolInfo({ lpToken: _lpToken, allocPoint: _allocPoint, lastRewardBlock: lastRewardBlock, accMEOWPerShare: 0 })); } // Update the given pool's MEOW allocation point. Can only be called by the owner or governance contract. function updateAllocPoint(uint256 _pid, uint256 _allocPoint, bool _withUpdate) public onlyOwnerOrGovernance { if (_withUpdate) { massUpdatePools(); } totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid].allocPoint).add(_allocPoint); poolInfo[_pid].allocPoint = _allocPoint; } // Set governance contract. Can only be called by the owner or governance contract. function setGovernance(address _governance, bytes memory _setupData) public onlyOwnerOrGovernance { governance = _governance; (bool success, bytes memory returndata) = governance.call(_setupData); require(success, "setGovernance: failed"); } // Return reward multiplier over the given _from to _to block. function getMultiplier(uint256 _from, uint256 _to) public view returns (uint256) { //MEOW minting ocurrs only until endBLock if(_to > endBlock){ _to = endBlock; } if (_to <= bonusEndBlock) { return _to.sub(_from).mul(BONUS_MULTIPLIER); } else if (_from >= bonusEndBlock) { return _to.sub(_from); } else { return bonusEndBlock.sub(_from).mul(BONUS_MULTIPLIER).add( _to.sub(bonusEndBlock) ); } } // View function to see pending MEOWs on frontend. function pendingMEOW(uint256 _pid, address _user) external view returns (uint256) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accMEOWPerShare = pool.accMEOWPerShare; uint256 lpSupply = pool.lpToken.balanceOf(address(this)); if (block.number > pool.lastRewardBlock && lpSupply != 0) { uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); uint256 MEOWReward = multiplier.mul(MEOWPerBlock).mul(pool.allocPoint).div(totalAllocPoint); accMEOWPerShare = accMEOWPerShare.add(MEOWReward.mul(1e12).div(lpSupply)); } return user.amount.mul(accMEOWPerShare).div(1e12).sub(user.rewardDebt); } // Update reward vairables for all pools. Be careful of gas spending! function massUpdatePools() public { uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { updatePool(pid); } } // Update reward variables of the given pool to be up-to-date. function updatePool(uint256 _pid) public { PoolInfo storage pool = poolInfo[_pid]; if (block.number <= pool.lastRewardBlock) { return; } uint256 lpSupply = pool.lpToken.balanceOf(address(this)); if (lpSupply == 0) { pool.lastRewardBlock = block.number; return; } uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); uint256 MEOWReward = multiplier.mul(MEOWPerBlock).mul(pool.allocPoint).div(totalAllocPoint); // Dev will have it's 0.5% fee after 1 year, this not necessary //MEOW.mint(devaddr, MEOWReward.div(100)); MEOW.mint(address(this), MEOWReward); pool.accMEOWPerShare = pool.accMEOWPerShare.add(MEOWReward.mul(1e12).div(lpSupply)); pool.lastRewardBlock = block.number; } // Deposit LP tokens to UniCatFarm for MEOW allocation. // You can harvest by calling deposit(_pid,0) function deposit(uint256 _pid, uint256 _amount) public { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; updatePool(_pid); if (user.amount > 0) { uint256 pending = user.amount.mul(pool.accMEOWPerShare).div(1e12).sub(user.rewardDebt); safeMEOWTransfer(msg.sender, pending); } pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount); user.amount = user.amount.add(_amount); user.rewardDebt = user.amount.mul(pool.accMEOWPerShare).div(1e12); emit Deposit(msg.sender, _pid, _amount); } // Withdraw LP tokens from UniCatFarm. function withdraw(uint256 _pid, uint256 _amount) public { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; require(user.amount >= _amount, "withdraw: not enough"); updatePool(_pid); uint256 pending = user.amount.mul(pool.accMEOWPerShare).div(1e12).sub(user.rewardDebt); safeMEOWTransfer(msg.sender, pending); user.amount = user.amount.sub(_amount); user.rewardDebt = user.amount.mul(pool.accMEOWPerShare).div(1e12); pool.lpToken.safeTransfer(address(msg.sender), _amount); emit Withdraw(msg.sender, _pid, _amount); } // Withdraw without caring about rewards. EMERGENCY ONLY. function emergencyWithdraw(uint256 _pid) public { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; pool.lpToken.safeTransfer(address(msg.sender), user.amount); emit EmergencyWithdraw(msg.sender, _pid, user.amount); user.amount = 0; user.rewardDebt = 0; } // Safe MEOW transfer function, just in case if rounding error causes pool to not have enough MEOWs. function safeMEOWTransfer(address _to, uint256 _amount) internal { uint256 MEOWBal = MEOW.balanceOf(address(this)); if (_amount > MEOWBal) { MEOW.transfer(_to, MEOWBal); } else { MEOW.transfer(_to, _amount); } } // Update dev address by the previous dev. function dev(address _devaddr) public { require(msg.sender == devaddr, "dev: wut?"); devaddr = _devaddr; } // give dev team its fee. This can ony be called after one year, // it's 0.5% function devFee() public { require(block.timestamp >= devFeeUnlockTime, "devFee: wait until unlock time"); require(!devFeeDelivered, "devFee: can only be called once"); MEOW.mint(devaddr, MEOW.totalSupply().div(200)); devFeeDelivered=true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract UniCat","name":"_MEOW","type":"address"},{"internalType":"address","name":"_devaddr","type":"address"},{"internalType":"uint256","name":"_MEOWPerBlock","type":"uint256"},{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"uint256","name":"_bonusEndBlock","type":"uint256"},{"internalType":"uint256","name":"_endBlock","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":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"BONUS_MULTIPLIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MEOW","outputs":[{"internalType":"contract UniCat","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MEOWPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_lpToken","type":"address"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bonusEndBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_devaddr","type":"address"}],"name":"dev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devFeeDelivered","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFeeUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devaddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endBlock","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":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingMEOW","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IERC20","name":"lpToken","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accMEOWPerShare","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governance","type":"address"},{"internalType":"bytes","name":"_setupData","type":"bytes"}],"name":"setGovernance","outputs":[],"stateMutability":"nonpayable","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":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"updateAllocPoint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","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":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600060085563614877c0600b5534801561001d57600080fd5b50604051611d9d380380611d9d833981810160405260c081101561004057600080fd5b508051602082015160408301516060840151608085015160a0909501519394929391929091600061006f610103565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180546001600160a01b039788166001600160a01b0319918216179091556002805496909716951694909417909455600491909155600392909255600991909155600a55610107565b3390565b611c87806101166000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a611610104578063957e8989116100a2578063d49e77cd11610071578063d49e77cd14610501578063dd29824b14610509578063e2bbb15814610511578063f2fde38b14610534576101cf565b8063957e8989146103ec578063ab9576a8146103f4578063bde4aeca14610420578063c3d1c26c1461044b576101cf565b80638da5cb5b116100de5780638da5cb5b146103605780638dbb1e3a1461036857806393f1a40b1461038b578063950114c6146103d0576101cf565b8063715018a61461032a5780638aa28550146103325780638d88a90e1461033a576101cf565b8063441a3e70116101715780635312ea8e1161014b5780635312ea8e146102d95780635aa6e675146102f6578063630b5ba11461031a5780636827e76414610322576101cf565b8063441a3e701461029157806348cd4cb1146102b457806351eb05a6146102bc576101cf565b806317caf6f1116101ad57806317caf6f1146102435780631aed65531461024b5780631eaaa04514610253578063312b1b1f14610289576101cf565b8063081e3eda146101d4578063083c6323146101ee5780631526fe27146101f6575b600080fd5b6101dc61055a565b60408051918252519081900360200190f35b6101dc610560565b6102136004803603602081101561020c57600080fd5b5035610566565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b6101dc6105a7565b6101dc6105ad565b6102876004803603606081101561026957600080fd5b508035906001600160a01b03602082013516906040013515156105b3565b005b6101dc610754565b610287600480360360408110156102a757600080fd5b508035906020013561075a565b6101dc6108af565b610287600480360360208110156102d257600080fd5b50356108b5565b610287600480360360208110156102ef57600080fd5b5035610a5a565b6102fe610af5565b604080516001600160a01b039092168252519081900360200190f35b610287610b04565b610287610b27565b610287610cce565b6101dc610d82565b6102876004803603602081101561035057600080fd5b50356001600160a01b0316610d87565b6102fe610df4565b6101dc6004803603604081101561037e57600080fd5b5080359060200135610e03565b6103b7600480360360408110156103a157600080fd5b50803590602001356001600160a01b0316610e85565b6040805192835260208301919091528051918290030190f35b6103d8610ea9565b604080519115158252519081900360200190f35b6101dc610eb2565b6101dc6004803603604081101561040a57600080fd5b50803590602001356001600160a01b0316610eb8565b6102876004803603606081101561043657600080fd5b5080359060208101359060400135151561101a565b6102876004803603604081101561046157600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561048c57600080fd5b82018360208201111561049e57600080fd5b803590602001918460018302840111640100000000831117156104c057600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061110b945050505050565b6102fe61129f565b6102fe6112ae565b6102876004803603604081101561052757600080fd5b50803590602001356112bd565b6102876004803603602081101561054a57600080fd5b50356001600160a01b03166113c2565b60065490565b600a5481565b6006818154811061057357fe5b600091825260209091206004909102018054600182015460028301546003909301546001600160a01b039092169350919084565b60085481565b60035481565b6105bb6114cc565b6001600160a01b03166105cc610df4565b6001600160a01b031614806105f657506105e46114cc565b6005546001600160a01b039081169116145b6106315760405162461bcd60e51b815260040180806020018281038252602b815260200180611bfd602b913960400191505060405180910390fd5b801561063f5761063f610b04565b6000600954431161065257600954610654565b435b60085490915061066490856114d0565b600855604080516080810182526001600160a01b0394851681526020810195865290810191825260006060820181815260068054600181018255925291517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f600490920291820180546001600160a01b031916919096161790945593517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d40840155517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d418301555090517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d4290910155565b60045481565b60006006838154811061076957fe5b6000918252602080832086845260078252604080852033865290925292208054600490920290920192508311156107de576040805162461bcd60e51b81526020600482015260146024820152730eed2e8d0c8e4c2ee7440dcdee840cadcdeeaced60631b604482015290519081900360640190fd5b6107e7846108b5565b6000610821826001015461081b64e8d4a510006108158760030154876000015461153190919063ffffffff16565b9061158a565b906115cc565b905061082d338261160e565b815461083990856115cc565b80835560038401546108569164e8d4a51000916108159190611531565b60018301558254610871906001600160a01b0316338661179f565b604080518581529051869133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a35050505050565b60095481565b6000600682815481106108c457fe5b90600052602060002090600402019050806002015443116108e55750610a57565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561092f57600080fd5b505afa158015610943573d6000803e3d6000fd5b505050506040513d602081101561095957600080fd5b505190508061096f575043600290910155610a57565b600061097f836002015443610e03565b905060006109ac60085461081586600101546109a66004548761153190919063ffffffff16565b90611531565b600154604080516340c10f1960e01b81523060048201526024810184905290519293506001600160a01b03909116916340c10f199160448082019260009290919082900301818387803b158015610a0257600080fd5b505af1158015610a16573d6000803e3d6000fd5b50505050610a44610a398461081564e8d4a510008561153190919063ffffffff16565b6003860154906114d0565b6003850155505043600290920191909155505b50565b600060068281548110610a6957fe5b60009182526020808320858452600782526040808520338087529352909320805460049093029093018054909450610aae926001600160a01b0391909116919061179f565b80546040805191825251849133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a360008082556001909101555050565b6005546001600160a01b031681565b60065460005b81811015610b2357610b1b816108b5565b600101610b0a565b5050565b600b54421015610b7e576040805162461bcd60e51b815260206004820152601e60248201527f6465764665653a207761697420756e74696c20756e6c6f636b2074696d650000604482015290519081900360640190fd5b600c5460ff1615610bd6576040805162461bcd60e51b815260206004820152601f60248201527f6465764665653a2063616e206f6e6c792062652063616c6c6564206f6e636500604482015290519081900360640190fd5b600154600254604080516318160ddd60e01b815290516001600160a01b03938416936340c10f19931691610c619160c89186916318160ddd91600480820192602092909190829003018186803b158015610c2f57600080fd5b505afa158015610c43573d6000803e3d6000fd5b505050506040513d6020811015610c5957600080fd5b50519061158a565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015610ca757600080fd5b505af1158015610cbb573d6000803e3d6000fd5b5050600c805460ff191660011790555050565b610cd66114cc565b6000546001600160a01b03908116911614610d38576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600a81565b6002546001600160a01b03163314610dd2576040805162461bcd60e51b81526020600482015260096024820152686465763a207775743f60b81b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031690565b6000600a54821115610e1557600a5491505b6003548211610e3457610e2d600a6109a684866115cc565b9050610e7f565b6003548310610e4757610e2d82846115cc565b610e2d610e5f600354846115cc90919063ffffffff16565b610e79600a6109a6876003546115cc90919063ffffffff16565b906114d0565b92915050565b60076020908152600092835260408084209091529082529020805460019091015482565b600c5460ff1681565b600b5481565b60008060068481548110610ec857fe5b600091825260208083208784526007825260408085206001600160a01b03898116875290845281862060049586029093016003810154815484516370a0823160e01b81523098810198909852935191985093969395939492909116926370a08231926024808301939192829003018186803b158015610f4657600080fd5b505afa158015610f5a573d6000803e3d6000fd5b505050506040513d6020811015610f7057600080fd5b5051600285015490915043118015610f8757508015155b15610fe7576000610f9c856002015443610e03565b90506000610fc360085461081588600101546109a66004548761153190919063ffffffff16565b9050610fe2610fdb846108158464e8d4a51000611531565b85906114d0565b935050505b61100f836001015461081b64e8d4a5100061081586886000015461153190919063ffffffff16565b979650505050505050565b6110226114cc565b6001600160a01b0316611033610df4565b6001600160a01b0316148061105d575061104b6114cc565b6005546001600160a01b039081169116145b6110985760405162461bcd60e51b815260040180806020018281038252602b815260200180611bfd602b913960400191505060405180910390fd5b80156110a6576110a6610b04565b6110dd82610e79600686815481106110ba57fe5b9060005260206000209060040201600101546008546115cc90919063ffffffff16565b60088190555081600684815481106110f157fe5b906000526020600020906004020160010181905550505050565b6111136114cc565b6001600160a01b0316611124610df4565b6001600160a01b0316148061114e575061113c6114cc565b6005546001600160a01b039081169116145b6111895760405162461bcd60e51b815260040180806020018281038252602b815260200180611bfd602b913960400191505060405180910390fd5b600580546001600160a01b0319166001600160a01b038481169190911791829055604051835160009360609316918591819060208401908083835b602083106111e35780518252601f1990920191602091820191016111c4565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611245576040519150601f19603f3d011682016040523d82523d6000602084013e61124a565b606091505b509150915081611299576040805162461bcd60e51b81526020600482015260156024820152741cd95d11dbdd995c9b985b98d94e8819985a5b1959605a1b604482015290519081900360640190fd5b50505050565b6002546001600160a01b031681565b6001546001600160a01b031681565b6000600683815481106112cc57fe5b600091825260208083208684526007825260408085203386529092529220600490910290910191506112fd846108b5565b805415611340576000611332826001015461081b64e8d4a510006108158760030154876000015461153190919063ffffffff16565b905061133e338261160e565b505b8154611357906001600160a01b03163330866117f1565b805461136390846114d0565b80825560038301546113809164e8d4a51000916108159190611531565b6001820155604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a350505050565b6113ca6114cc565b6000546001600160a01b0390811691161461142c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166114715760405162461bcd60e51b8152600401808060200182810382526026815260200180611bb66026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b60008282018381101561152a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60008261154057506000610e7f565b8282028284828161154d57fe5b041461152a5760405162461bcd60e51b8152600401808060200182810382526021815260200180611bdc6021913960400191505060405180910390fd5b600061152a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061184b565b600061152a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506118ed565b600154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561165957600080fd5b505afa15801561166d573d6000803e3d6000fd5b505050506040513d602081101561168357600080fd5b5051905080821115611717576001546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018590529151919092169163a9059cbb9160448083019260209291908290030181600087803b1580156116e557600080fd5b505af11580156116f9573d6000803e3d6000fd5b505050506040513d602081101561170f57600080fd5b5061179a9050565b6001546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018690529151919092169163a9059cbb9160448083019260209291908290030181600087803b15801561176d57600080fd5b505af1158015611781573d6000803e3d6000fd5b505050506040513d602081101561179757600080fd5b50505b505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261179a908490611947565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611299908590611947565b600081836118d75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561189c578181015183820152602001611884565b50505050905090810190601f1680156118c95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816118e357fe5b0495945050505050565b6000818484111561193f5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561189c578181015183820152602001611884565b505050900390565b606061199c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166119f89092919063ffffffff16565b80519091501561179a578080602001905160208110156119bb57600080fd5b505161179a5760405162461bcd60e51b815260040180806020018281038252602a815260200180611c28602a913960400191505060405180910390fd5b6060611a078484600085611a0f565b949350505050565b6060611a1a85611b7c565b611a6b576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310611aaa5780518252601f199092019160209182019101611a8b565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611b0c576040519150601f19603f3d011682016040523d82523d6000602084013e611b11565b606091505b50915091508115611b25579150611a079050565b805115611b355780518082602001fd5b60405162461bcd60e51b815260206004820181815286516024840152865187939192839260440191908501908083836000831561189c578181015183820152602001611884565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611a0757505015159291505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7743616c6c6572206973206e6f7420746865206f776e65722c206e65697468657220676f7665726e616e63655361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212208d442aef9bc5cd685aeeedad8069cb6bc8a4c2f484737002fc83006127d7de9c64736f6c63430007010033000000000000000000000000ec13f3c54feebfb0601934c9ff70a61ba8a8ed8f000000000000000000000000d264fa72cc12690e1cbca5052c803d28574bbf430000000000000000000000000000000000000000000000056bc75e2d631000000000000000000000000000000000000000000000000000000000000000a65b1c0000000000000000000000000000000000000000000000000000000000a6c7500000000000000000000000000000000000000000000000000000000000ab8240
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a611610104578063957e8989116100a2578063d49e77cd11610071578063d49e77cd14610501578063dd29824b14610509578063e2bbb15814610511578063f2fde38b14610534576101cf565b8063957e8989146103ec578063ab9576a8146103f4578063bde4aeca14610420578063c3d1c26c1461044b576101cf565b80638da5cb5b116100de5780638da5cb5b146103605780638dbb1e3a1461036857806393f1a40b1461038b578063950114c6146103d0576101cf565b8063715018a61461032a5780638aa28550146103325780638d88a90e1461033a576101cf565b8063441a3e70116101715780635312ea8e1161014b5780635312ea8e146102d95780635aa6e675146102f6578063630b5ba11461031a5780636827e76414610322576101cf565b8063441a3e701461029157806348cd4cb1146102b457806351eb05a6146102bc576101cf565b806317caf6f1116101ad57806317caf6f1146102435780631aed65531461024b5780631eaaa04514610253578063312b1b1f14610289576101cf565b8063081e3eda146101d4578063083c6323146101ee5780631526fe27146101f6575b600080fd5b6101dc61055a565b60408051918252519081900360200190f35b6101dc610560565b6102136004803603602081101561020c57600080fd5b5035610566565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b6101dc6105a7565b6101dc6105ad565b6102876004803603606081101561026957600080fd5b508035906001600160a01b03602082013516906040013515156105b3565b005b6101dc610754565b610287600480360360408110156102a757600080fd5b508035906020013561075a565b6101dc6108af565b610287600480360360208110156102d257600080fd5b50356108b5565b610287600480360360208110156102ef57600080fd5b5035610a5a565b6102fe610af5565b604080516001600160a01b039092168252519081900360200190f35b610287610b04565b610287610b27565b610287610cce565b6101dc610d82565b6102876004803603602081101561035057600080fd5b50356001600160a01b0316610d87565b6102fe610df4565b6101dc6004803603604081101561037e57600080fd5b5080359060200135610e03565b6103b7600480360360408110156103a157600080fd5b50803590602001356001600160a01b0316610e85565b6040805192835260208301919091528051918290030190f35b6103d8610ea9565b604080519115158252519081900360200190f35b6101dc610eb2565b6101dc6004803603604081101561040a57600080fd5b50803590602001356001600160a01b0316610eb8565b6102876004803603606081101561043657600080fd5b5080359060208101359060400135151561101a565b6102876004803603604081101561046157600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561048c57600080fd5b82018360208201111561049e57600080fd5b803590602001918460018302840111640100000000831117156104c057600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061110b945050505050565b6102fe61129f565b6102fe6112ae565b6102876004803603604081101561052757600080fd5b50803590602001356112bd565b6102876004803603602081101561054a57600080fd5b50356001600160a01b03166113c2565b60065490565b600a5481565b6006818154811061057357fe5b600091825260209091206004909102018054600182015460028301546003909301546001600160a01b039092169350919084565b60085481565b60035481565b6105bb6114cc565b6001600160a01b03166105cc610df4565b6001600160a01b031614806105f657506105e46114cc565b6005546001600160a01b039081169116145b6106315760405162461bcd60e51b815260040180806020018281038252602b815260200180611bfd602b913960400191505060405180910390fd5b801561063f5761063f610b04565b6000600954431161065257600954610654565b435b60085490915061066490856114d0565b600855604080516080810182526001600160a01b0394851681526020810195865290810191825260006060820181815260068054600181018255925291517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f600490920291820180546001600160a01b031916919096161790945593517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d40840155517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d418301555090517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d4290910155565b60045481565b60006006838154811061076957fe5b6000918252602080832086845260078252604080852033865290925292208054600490920290920192508311156107de576040805162461bcd60e51b81526020600482015260146024820152730eed2e8d0c8e4c2ee7440dcdee840cadcdeeaced60631b604482015290519081900360640190fd5b6107e7846108b5565b6000610821826001015461081b64e8d4a510006108158760030154876000015461153190919063ffffffff16565b9061158a565b906115cc565b905061082d338261160e565b815461083990856115cc565b80835560038401546108569164e8d4a51000916108159190611531565b60018301558254610871906001600160a01b0316338661179f565b604080518581529051869133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a35050505050565b60095481565b6000600682815481106108c457fe5b90600052602060002090600402019050806002015443116108e55750610a57565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561092f57600080fd5b505afa158015610943573d6000803e3d6000fd5b505050506040513d602081101561095957600080fd5b505190508061096f575043600290910155610a57565b600061097f836002015443610e03565b905060006109ac60085461081586600101546109a66004548761153190919063ffffffff16565b90611531565b600154604080516340c10f1960e01b81523060048201526024810184905290519293506001600160a01b03909116916340c10f199160448082019260009290919082900301818387803b158015610a0257600080fd5b505af1158015610a16573d6000803e3d6000fd5b50505050610a44610a398461081564e8d4a510008561153190919063ffffffff16565b6003860154906114d0565b6003850155505043600290920191909155505b50565b600060068281548110610a6957fe5b60009182526020808320858452600782526040808520338087529352909320805460049093029093018054909450610aae926001600160a01b0391909116919061179f565b80546040805191825251849133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a360008082556001909101555050565b6005546001600160a01b031681565b60065460005b81811015610b2357610b1b816108b5565b600101610b0a565b5050565b600b54421015610b7e576040805162461bcd60e51b815260206004820152601e60248201527f6465764665653a207761697420756e74696c20756e6c6f636b2074696d650000604482015290519081900360640190fd5b600c5460ff1615610bd6576040805162461bcd60e51b815260206004820152601f60248201527f6465764665653a2063616e206f6e6c792062652063616c6c6564206f6e636500604482015290519081900360640190fd5b600154600254604080516318160ddd60e01b815290516001600160a01b03938416936340c10f19931691610c619160c89186916318160ddd91600480820192602092909190829003018186803b158015610c2f57600080fd5b505afa158015610c43573d6000803e3d6000fd5b505050506040513d6020811015610c5957600080fd5b50519061158a565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015610ca757600080fd5b505af1158015610cbb573d6000803e3d6000fd5b5050600c805460ff191660011790555050565b610cd66114cc565b6000546001600160a01b03908116911614610d38576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600a81565b6002546001600160a01b03163314610dd2576040805162461bcd60e51b81526020600482015260096024820152686465763a207775743f60b81b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031690565b6000600a54821115610e1557600a5491505b6003548211610e3457610e2d600a6109a684866115cc565b9050610e7f565b6003548310610e4757610e2d82846115cc565b610e2d610e5f600354846115cc90919063ffffffff16565b610e79600a6109a6876003546115cc90919063ffffffff16565b906114d0565b92915050565b60076020908152600092835260408084209091529082529020805460019091015482565b600c5460ff1681565b600b5481565b60008060068481548110610ec857fe5b600091825260208083208784526007825260408085206001600160a01b03898116875290845281862060049586029093016003810154815484516370a0823160e01b81523098810198909852935191985093969395939492909116926370a08231926024808301939192829003018186803b158015610f4657600080fd5b505afa158015610f5a573d6000803e3d6000fd5b505050506040513d6020811015610f7057600080fd5b5051600285015490915043118015610f8757508015155b15610fe7576000610f9c856002015443610e03565b90506000610fc360085461081588600101546109a66004548761153190919063ffffffff16565b9050610fe2610fdb846108158464e8d4a51000611531565b85906114d0565b935050505b61100f836001015461081b64e8d4a5100061081586886000015461153190919063ffffffff16565b979650505050505050565b6110226114cc565b6001600160a01b0316611033610df4565b6001600160a01b0316148061105d575061104b6114cc565b6005546001600160a01b039081169116145b6110985760405162461bcd60e51b815260040180806020018281038252602b815260200180611bfd602b913960400191505060405180910390fd5b80156110a6576110a6610b04565b6110dd82610e79600686815481106110ba57fe5b9060005260206000209060040201600101546008546115cc90919063ffffffff16565b60088190555081600684815481106110f157fe5b906000526020600020906004020160010181905550505050565b6111136114cc565b6001600160a01b0316611124610df4565b6001600160a01b0316148061114e575061113c6114cc565b6005546001600160a01b039081169116145b6111895760405162461bcd60e51b815260040180806020018281038252602b815260200180611bfd602b913960400191505060405180910390fd5b600580546001600160a01b0319166001600160a01b038481169190911791829055604051835160009360609316918591819060208401908083835b602083106111e35780518252601f1990920191602091820191016111c4565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611245576040519150601f19603f3d011682016040523d82523d6000602084013e61124a565b606091505b509150915081611299576040805162461bcd60e51b81526020600482015260156024820152741cd95d11dbdd995c9b985b98d94e8819985a5b1959605a1b604482015290519081900360640190fd5b50505050565b6002546001600160a01b031681565b6001546001600160a01b031681565b6000600683815481106112cc57fe5b600091825260208083208684526007825260408085203386529092529220600490910290910191506112fd846108b5565b805415611340576000611332826001015461081b64e8d4a510006108158760030154876000015461153190919063ffffffff16565b905061133e338261160e565b505b8154611357906001600160a01b03163330866117f1565b805461136390846114d0565b80825560038301546113809164e8d4a51000916108159190611531565b6001820155604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a350505050565b6113ca6114cc565b6000546001600160a01b0390811691161461142c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166114715760405162461bcd60e51b8152600401808060200182810382526026815260200180611bb66026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b60008282018381101561152a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60008261154057506000610e7f565b8282028284828161154d57fe5b041461152a5760405162461bcd60e51b8152600401808060200182810382526021815260200180611bdc6021913960400191505060405180910390fd5b600061152a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061184b565b600061152a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506118ed565b600154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561165957600080fd5b505afa15801561166d573d6000803e3d6000fd5b505050506040513d602081101561168357600080fd5b5051905080821115611717576001546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018590529151919092169163a9059cbb9160448083019260209291908290030181600087803b1580156116e557600080fd5b505af11580156116f9573d6000803e3d6000fd5b505050506040513d602081101561170f57600080fd5b5061179a9050565b6001546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018690529151919092169163a9059cbb9160448083019260209291908290030181600087803b15801561176d57600080fd5b505af1158015611781573d6000803e3d6000fd5b505050506040513d602081101561179757600080fd5b50505b505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261179a908490611947565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611299908590611947565b600081836118d75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561189c578181015183820152602001611884565b50505050905090810190601f1680156118c95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816118e357fe5b0495945050505050565b6000818484111561193f5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561189c578181015183820152602001611884565b505050900390565b606061199c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166119f89092919063ffffffff16565b80519091501561179a578080602001905160208110156119bb57600080fd5b505161179a5760405162461bcd60e51b815260040180806020018281038252602a815260200180611c28602a913960400191505060405180910390fd5b6060611a078484600085611a0f565b949350505050565b6060611a1a85611b7c565b611a6b576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310611aaa5780518252601f199092019160209182019101611a8b565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611b0c576040519150601f19603f3d011682016040523d82523d6000602084013e611b11565b606091505b50915091508115611b25579150611a079050565b805115611b355780518082602001fd5b60405162461bcd60e51b815260206004820181815286516024840152865187939192839260440191908501908083836000831561189c578181015183820152602001611884565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611a0757505015159291505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7743616c6c6572206973206e6f7420746865206f776e65722c206e65697468657220676f7665726e616e63655361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212208d442aef9bc5cd685aeeedad8069cb6bc8a4c2f484737002fc83006127d7de9c64736f6c63430007010033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ec13f3c54feebfb0601934c9ff70a61ba8a8ed8f000000000000000000000000d264fa72cc12690e1cbca5052c803d28574bbf430000000000000000000000000000000000000000000000056bc75e2d631000000000000000000000000000000000000000000000000000000000000000a65b1c0000000000000000000000000000000000000000000000000000000000a6c7500000000000000000000000000000000000000000000000000000000000ab8240
-----Decoded View---------------
Arg [0] : _MEOW (address): 0xEc13f3c54Feebfb0601934c9Ff70A61Ba8a8Ed8f
Arg [1] : _devaddr (address): 0xd264FA72cc12690E1CBCA5052c803d28574bBf43
Arg [2] : _MEOWPerBlock (uint256): 100000000000000000000
Arg [3] : _startBlock (uint256): 10902300
Arg [4] : _bonusEndBlock (uint256): 10930000
Arg [5] : _endBlock (uint256): 11240000
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000ec13f3c54feebfb0601934c9ff70a61ba8a8ed8f
Arg [1] : 000000000000000000000000d264fa72cc12690e1cbca5052c803d28574bbf43
Arg [2] : 0000000000000000000000000000000000000000000000056bc75e2d63100000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000a65b1c
Arg [4] : 0000000000000000000000000000000000000000000000000000000000a6c750
Arg [5] : 0000000000000000000000000000000000000000000000000000000000ab8240
Deployed Bytecode Sourcemap
16380:10735:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19788:95;;;:::i;:::-;;;;;;;;;;;;;;;;18603:23;;;:::i;18189:26::-;;;;;;;;;;;;;;;;-1:-1:-1;18189:26:0;;:::i;:::-;;;;-1:-1:-1;;;;;18189:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18432:34;;;:::i;17888:28::-;;;:::i;20235:525::-;;;;;;;;;;;;;;;;-1:-1:-1;20235:525:0;;;-1:-1:-1;;;;;20235:525:0;;;;;;;;;;;;:::i;:::-;;17962:27;;;:::i;25072:654::-;;;;;;;;;;;;;;;;-1:-1:-1;25072:654:0;;;;;;;:::i;18523:25::-;;;:::i;23381:857::-;;;;;;;;;;;;;;;;-1:-1:-1;23381:857:0;;:::i;25797:356::-;;;;;;;;;;;;;;;;-1:-1:-1;25797:356:0;;:::i;18128:25::-;;;:::i;:::-;;;;-1:-1:-1;;;;;18128:25:0;;;;;;;;;;;;;;23125:180;;;:::i;26830:282::-;;;:::i;15076:148::-;;;:::i;18043:45::-;;;:::i;26601:129::-;;;;;;;;;;;;;;;;-1:-1:-1;26601:129:0;-1:-1:-1;;;;;26601:129:0;;:::i;14434:79::-;;;:::i;21656:563::-;;;;;;;;;;;;;;;;-1:-1:-1;21656:563:0;;;;;;;:::i;18271:66::-;;;;;;;;;;;;;;;;-1:-1:-1;18271:66:0;;;;;;-1:-1:-1;;;;;18271:66:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18867:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;18779:44;;;:::i;22283:759::-;;;;;;;;;;;;;;;;-1:-1:-1;22283:759:0;;;;;;-1:-1:-1;;;;;22283:759:0;;:::i;20879:329::-;;;;;;;;;;;;;;;;-1:-1:-1;20879:329:0;;;;;;;;;;;;;;:::i;21305:275::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21305:275:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21305:275:0;;-1:-1:-1;21305:275:0;;-1:-1:-1;;;;;21305:275:0:i;17809:22::-;;;:::i;17763:18::-;;;:::i;24364:656::-;;;;;;;;;;;;;;;;-1:-1:-1;24364:656:0;;;;;;;:::i;15379:244::-;;;;;;;;;;;;;;;;-1:-1:-1;15379:244:0;-1:-1:-1;;;;;15379:244:0;;:::i;19788:95::-;19860:8;:15;19788:95;:::o;18603:23::-;;;;:::o;18189:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18189:26:0;;;;-1:-1:-1;18189:26:0;;;:::o;18432:34::-;;;;:::o;17888:28::-;;;;:::o;20235:525::-;19956:12;:10;:12::i;:::-;-1:-1:-1;;;;;19945:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19945:23:0;;:53;;;;19986:12;:10;:12::i;:::-;19972:10;;-1:-1:-1;;;;;19972:10:0;;;:26;;;19945:53;19937:109;;;;-1:-1:-1;;;19937:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20348:11:::1;20344:61;;;20376:17;:15;:17::i;:::-;20415:23;20456:10;;20441:12;:25;:53;;20484:10;;20441:53;;;20469:12;20441:53;20523:15;::::0;20415:79;;-1:-1:-1;20523:32:0::1;::::0;20543:11;20523:19:::1;:32::i;:::-;20505:15;:50:::0;20580:171:::1;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;20580:171:0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;-1:-1:-1;20580:171:0;;;;;;20566:8:::1;:186:::0;;::::1;::::0;::::1;::::0;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;;20566:186:0::1;::::0;;;::::1;;::::0;;;;;;;;;;;;;;-1:-1:-1;20566:186:0;;;;;;;20235:525::o;17962:27::-;;;;:::o;25072:654::-;25139:21;25163:8;25172:4;25163:14;;;;;;;;;;;;;;;;25212;;;:8;:14;;;;;;25227:10;25212:26;;;;;;;25257:11;;25163:14;;;;;;;;-1:-1:-1;25257:22:0;-1:-1:-1;25257:22:0;25249:55;;;;;-1:-1:-1;;;25249:55:0;;;;;;;;;;;;-1:-1:-1;;;25249:55:0;;;;;;;;;;;;;;;25315:16;25326:4;25315:10;:16::i;:::-;25342:15;25360:68;25412:4;:15;;;25360:47;25402:4;25360:37;25376:4;:20;;;25360:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47::i;:::-;:51;;:68::i;:::-;25342:86;;25439:37;25456:10;25468:7;25439:16;:37::i;:::-;25501:11;;:24;;25517:7;25501:15;:24::i;:::-;25487:38;;;25570:20;;;;25554:47;;25596:4;;25554:37;;25487:38;25554:15;:37::i;:47::-;25536:15;;;:65;25612:12;;:55;;-1:-1:-1;;;;;25612:12:0;25646:10;25659:7;25612:25;:55::i;:::-;25683:35;;;;;;;;25704:4;;25692:10;;25683:35;;;;;;;;;25072:654;;;;;:::o;18523:25::-;;;;:::o;23381:857::-;23433:21;23457:8;23466:4;23457:14;;;;;;;;;;;;;;;;;;23433:38;;23502:4;:20;;;23486:12;:36;23482:75;;23539:7;;;23482:75;23586:12;;:37;;;-1:-1:-1;;;23586:37:0;;23617:4;23586:37;;;;;;23567:16;;-1:-1:-1;;;;;23586:12:0;;:22;;:37;;;;;;;;;;;;;;:12;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23586:37:0;;-1:-1:-1;23638:13:0;23634:102;;-1:-1:-1;23691:12:0;23668:20;;;;:35;23718:7;;23634:102;23746:18;23767:49;23781:4;:20;;;23803:12;23767:13;:49::i;:::-;23746:70;;23827:18;23848:70;23902:15;;23848:49;23881:4;:15;;;23848:28;23863:12;;23848:10;:14;;:28;;;;:::i;:::-;:32;;:49::i;:70::-;24054:4;;:36;;;-1:-1:-1;;;24054:36:0;;24072:4;24054:36;;;;;;;;;;;;23827:91;;-1:-1:-1;;;;;;24054:4:0;;;;:9;;:36;;;;;:4;;:36;;;;;;;;:4;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24124:60;24149:34;24174:8;24149:20;24164:4;24149:10;:14;;:20;;;;:::i;:34::-;24124:20;;;;;:24;:60::i;:::-;24101:20;;;:83;-1:-1:-1;;24218:12:0;24195:20;;;;:35;;;;-1:-1:-1;23381:857:0;;:::o;25797:356::-;25856:21;25880:8;25889:4;25880:14;;;;;;;;;;;;;;;;25929;;;:8;:14;;;;;;25944:10;25929:26;;;;;;;;26013:11;;25880:14;;;;;;;25966:12;;25880:14;;-1:-1:-1;25966:59:0;;-1:-1:-1;;;;;25966:12:0;;;;;25944:10;25966:25;:59::i;:::-;26077:11;;26041:48;;;;;;;26071:4;;26059:10;;26041:48;;;;;;;;;26114:1;26100:15;;;26126;;;;:19;-1:-1:-1;;25797:356:0:o;18128:25::-;;;-1:-1:-1;;;;;18128:25:0;;:::o;23125:180::-;23187:8;:15;23170:14;23213:85;23241:6;23235:3;:12;23213:85;;;23271:15;23282:3;23271:10;:15::i;:::-;23249:5;;23213:85;;;;23125:180;:::o;26830:282::-;26893:16;;26874:15;:35;;26866:78;;;;;-1:-1:-1;;;26866:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26964:15;;;;26963:16;26955:60;;;;;-1:-1:-1;;;26955:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27026:4;;27036:7;;27045:18;;;-1:-1:-1;;;27045:18:0;;;;-1:-1:-1;;;;;27026:4:0;;;;:9;;27036:7;;27045:27;;27068:3;;27026:4;;27045:16;;:18;;;;;;;;;;;;;;;27026:4;27045:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27045:18:0;;:22;:27::i;:::-;27026:47;;;;;;;;;;;;;-1:-1:-1;;;;;27026:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;27084:15:0;:20;;-1:-1:-1;;27084:20:0;27100:4;27084:20;;;-1:-1:-1;;26830:282:0:o;15076:148::-;14656:12;:10;:12::i;:::-;14646:6;;-1:-1:-1;;;;;14646:6:0;;;:22;;;14638:67;;;;;-1:-1:-1;;;14638:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15183:1:::1;15167:6:::0;;15146:40:::1;::::0;-1:-1:-1;;;;;15167:6:0;;::::1;::::0;15146:40:::1;::::0;15183:1;;15146:40:::1;15214:1;15197:19:::0;;-1:-1:-1;;;;;;15197:19:0::1;::::0;;15076:148::o;18043:45::-;18086:2;18043:45;:::o;26601:129::-;26672:7;;-1:-1:-1;;;;;26672:7:0;26658:10;:21;26650:43;;;;;-1:-1:-1;;;26650:43:0;;;;;;;;;;;;-1:-1:-1;;;26650:43:0;;;;;;;;;;;;;;;26704:7;:18;;-1:-1:-1;;;;;;26704:18:0;-1:-1:-1;;;;;26704:18:0;;;;;;;;;;26601:129::o;14434:79::-;14472:7;14499:6;-1:-1:-1;;;;;14499:6:0;14434:79;:::o;21656:563::-;21728:7;21818:8;;21812:3;:14;21809:59;;;21848:8;;21842:14;;21809:59;21899:13;;21892:3;:20;21888:324;;21936:36;18086:2;21936:14;:3;21944:5;21936:7;:14::i;:36::-;21929:43;;;;21888:324;22003:13;;21994:5;:22;21990:222;;22040:14;:3;22048:5;22040:7;:14::i;21990:222::-;22094:106;22163:22;22171:13;;22163:3;:7;;:22;;;;:::i;:::-;22094:46;18086:2;22094:24;22112:5;22094:13;;:17;;:24;;;;:::i;:46::-;:50;;:106::i;21990:222::-;21656:563;;;;:::o;18271:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18867:27::-;;;;;;:::o;18779:44::-;;;;:::o;22283:759::-;22356:7;22376:21;22400:8;22409:4;22400:14;;;;;;;;;;;;;;;;22449;;;:8;:14;;;;;;-1:-1:-1;;;;;22449:21:0;;;;;;;;;;;22400:14;;;;;;;22507:20;;;;22557:12;;:37;;-1:-1:-1;;;22557:37:0;;22588:4;22557:37;;;;;;;;;22400:14;;-1:-1:-1;22449:21:0;;22507:20;;22400:14;;22557:12;;;;;:22;;:37;;;;;22400:14;;22557:37;;;;;:12;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22557:37:0;22624:20;;;;22557:37;;-1:-1:-1;22609:12:0;:35;:52;;;;-1:-1:-1;22648:13:0;;;22609:52;22605:349;;;22678:18;22699:49;22713:4;:20;;;22735:12;22699:13;:49::i;:::-;22678:70;;22763:18;22784:70;22838:15;;22784:49;22817:4;:15;;;22784:28;22799:12;;22784:10;:14;;:28;;;;:::i;:70::-;22763:91;-1:-1:-1;22887:55:0;22907:34;22932:8;22907:20;22763:91;22922:4;22907:14;:20::i;:34::-;22887:15;;:19;:55::i;:::-;22869:73;;22605:349;;;22971:63;23018:4;:15;;;22971:42;23008:4;22971:32;22987:15;22971:4;:11;;;:15;;:32;;;;:::i;:63::-;22964:70;22283:759;-1:-1:-1;;;;;;;22283:759:0:o;20879:329::-;19956:12;:10;:12::i;:::-;-1:-1:-1;;;;;19945:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19945:23:0;;:53;;;;19986:12;:10;:12::i;:::-;19972:10;;-1:-1:-1;;;;;19972:10:0;;;:26;;;19945:53;19937:109;;;;-1:-1:-1;;;19937:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21002:11:::1;20998:61;;;21030:17;:15;:17::i;:::-;21087:63;21138:11;21087:46;21107:8;21116:4;21107:14;;;;;;;;;;;;;;;;;;:25;;;21087:15;;:19;;:46;;;;:::i;:63::-;21069:15;:81;;;;21189:11;21161:8;21170:4;21161:14;;;;;;;;;;;;;;;;;;:25;;:39;;;;20879:329:::0;;;:::o;21305:275::-;19956:12;:10;:12::i;:::-;-1:-1:-1;;;;;19945:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19945:23:0;;:53;;;;19986:12;:10;:12::i;:::-;19972:10;;-1:-1:-1;;;;;19972:10:0;;;:26;;;19945:53;19937:109;;;;-1:-1:-1;;;19937:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21414:10:::1;:24:::0;;-1:-1:-1;;;;;;21414:24:0::1;-1:-1:-1::0;;;;;21414:24:0;;::::1;::::0;;;::::1;::::0;;;;21491:27:::1;::::0;;;-1:-1:-1;;21464:23:0::1;::::0;21491:10:::1;::::0;:27;;;;::::1;::::0;::::1;::::0;;;;::::1;;;;;;::::0;;;;-1:-1:-1;;21491:27:0;;;;::::1;::::0;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21449:69;;;;21537:7;21529:41;;;::::0;;-1:-1:-1;;;21529:41:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;21529:41:0;;;;;;;;;;;;;::::1;;20057:1;;21305:275:::0;;:::o;17809:22::-;;;-1:-1:-1;;;;;17809:22:0;;:::o;17763:18::-;;;-1:-1:-1;;;;;17763:18:0;;:::o;24364:656::-;24430:21;24454:8;24463:4;24454:14;;;;;;;;;;;;;;;;24503;;;:8;:14;;;;;;24518:10;24503:26;;;;;;;24454:14;;;;;;;;-1:-1:-1;24540:16:0;24512:4;24540:10;:16::i;:::-;24571:11;;:15;24567:186;;24603:15;24621:68;24673:4;:15;;;24621:47;24663:4;24621:37;24637:4;:20;;;24621:4;:11;;;:15;;:37;;;;:::i;:68::-;24603:86;;24704:37;24721:10;24733:7;24704:16;:37::i;:::-;24567:186;;24763:12;;:74;;-1:-1:-1;;;;;24763:12:0;24801:10;24822:4;24829:7;24763:29;:74::i;:::-;24862:11;;:24;;24878:7;24862:15;:24::i;:::-;24848:38;;;24931:20;;;;24915:47;;24957:4;;24915:37;;24848:38;24915:15;:37::i;:47::-;24897:15;;;:65;24978:34;;;;;;;;24998:4;;24986:10;;24978:34;;;;;;;;;24364:656;;;;:::o;15379:244::-;14656:12;:10;:12::i;:::-;14646:6;;-1:-1:-1;;;;;14646:6:0;;;:22;;;14638:67;;;;;-1:-1:-1;;;14638:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15468:22:0;::::1;15460:73;;;;-1:-1:-1::0;;;15460:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15570:6;::::0;;15549:38:::1;::::0;-1:-1:-1;;;;;15549:38:0;;::::1;::::0;15570:6;::::1;::::0;15549:38:::1;::::0;::::1;15598:6;:17:::0;;-1:-1:-1;;;;;;15598:17:0::1;-1:-1:-1::0;;;;;15598:17:0;;;::::1;::::0;;;::::1;::::0;;15379:244::o;13230:106::-;13318:10;13230:106;:::o;3457:181::-;3515:7;3547:5;;;3571:6;;;;3563:46;;;;;-1:-1:-1;;;3563:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;3629:1;3457:181;-1:-1:-1;;;3457:181:0:o;4811:471::-;4869:7;5114:6;5110:47;;-1:-1:-1;5144:1:0;5137:8;;5110:47;5181:5;;;5185:1;5181;:5;:1;5205:5;;;;;:10;5197:56;;;;-1:-1:-1;;;5197:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5758:132;5816:7;5843:39;5847:1;5850;5843:39;;;;;;;;;;;;;;;;;:3;:39::i;3921:136::-;3979:7;4006:43;4010:1;4013;4006:43;;;;;;;;;;;;;;;;;:3;:43::i;26267:278::-;26361:4;;:29;;;-1:-1:-1;;;26361:29:0;;26384:4;26361:29;;;;;;26343:15;;-1:-1:-1;;;;;26361:4:0;;:14;;:29;;;;;;;;;;;;;;:4;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26361:29:0;;-1:-1:-1;26405:17:0;;;26401:137;;;26439:4;;:27;;;-1:-1:-1;;;26439:27:0;;-1:-1:-1;;;;;26439:27:0;;;;;;;;;;;;;;;:4;;;;;:13;;:27;;;;;;;;;;;;;;:4;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26401:137:0;;-1:-1:-1;26401:137:0;;26499:4;;:27;;;-1:-1:-1;;;26499:27:0;;-1:-1:-1;;;;;26499:27:0;;;;;;;;;;;;;;;:4;;;;;:13;;:27;;;;;;;;;;;;;;:4;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;26401:137:0;26267:278;;;:::o;11058:177::-;11168:58;;;-1:-1:-1;;;;;11168:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11168:58:0;-1:-1:-1;;;11168:58:0;;;11141:86;;11161:5;;11141:19;:86::i;11243:205::-;11371:68;;;-1:-1:-1;;;;;11371:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11371:68:0;-1:-1:-1;;;11371:68:0;;;11344:96;;11364:5;;11344:19;:96::i;6386:278::-;6472:7;6507:12;6500:5;6492:28;;;;-1:-1:-1;;;6492:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6531:9;6547:1;6543;:5;;;;;;;6386:278;-1:-1:-1;;;;;6386:278:0:o;4360:192::-;4446:7;4482:12;4474:6;;;;4466:29;;;;-1:-1:-1;;;4466:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4518:5:0;;;4360:192::o;11839:761::-;12263:23;12289:69;12317:4;12289:69;;;;;;;;;;;;;;;;;12297:5;-1:-1:-1;;;;;12289:27:0;;;:69;;;;;:::i;:::-;12373:17;;12263:95;;-1:-1:-1;12373:21:0;12369:224;;12515:10;12504:30;;;;;;;;;;;;;;;-1:-1:-1;12504:30:0;12496:85;;;;-1:-1:-1;;;12496:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9221:196;9324:12;9356:53;9379:6;9387:4;9393:1;9396:12;9356:22;:53::i;:::-;9349:60;9221:196;-1:-1:-1;;;;9221:196:0:o;9425:979::-;9555:12;9588:18;9599:6;9588:10;:18::i;:::-;9580:60;;;;;-1:-1:-1;;;9580:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;9714:12;9728:23;9755:6;-1:-1:-1;;;;;9755:11:0;9775:8;9786:4;9755:36;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9755:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9713:78;;;;9806:7;9802:595;;;9837:10;-1:-1:-1;9830:17:0;;-1:-1:-1;9830:17:0;9802:595;9951:17;;:21;9947:439;;10214:10;10208:17;10275:15;10262:10;10258:2;10254:19;10247:44;10162:148;10350:20;;-1:-1:-1;;;10350:20:0;;;;;;;;;;;;;;;;;10357:12;;10350:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7438:619;7498:4;7966:20;;7809:66;8006:23;;;;;;:42;;-1:-1:-1;;8033:15:0;;;7998:51;-1:-1:-1;;7438:619:0:o
Swarm Source
ipfs://8d442aef9bc5cd685aeeedad8069cb6bc8a4c2f484737002fc83006127d7de9c
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.