Source Code
Latest 25 from a total of 44 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Enter Staking | 23931492 | 84 days ago | IN | 0 ETH | 0.00030422 | ||||
| Leave Staking | 18689021 | 818 days ago | IN | 0 ETH | 0.01225052 | ||||
| Enter Staking | 18519271 | 841 days ago | IN | 0 ETH | 0.00512834 | ||||
| Enter Staking | 18310760 | 870 days ago | IN | 0 ETH | 0.00177376 | ||||
| Leave Staking | 18309986 | 871 days ago | IN | 0 ETH | 0.00184318 | ||||
| Enter Staking | 18134768 | 895 days ago | IN | 0 ETH | 0.00719024 | ||||
| Enter Staking | 18134761 | 895 days ago | IN | 0 ETH | 0.00603515 | ||||
| Enter Staking | 17818640 | 939 days ago | IN | 0 ETH | 0.0060162 | ||||
| Enter Staking | 17818615 | 939 days ago | IN | 0 ETH | 0.00435299 | ||||
| Enter Staking | 17420318 | 995 days ago | IN | 0 ETH | 0.00573868 | ||||
| Enter Staking | 17021976 | 1052 days ago | IN | 0 ETH | 0.00568077 | ||||
| Enter Staking | 16539297 | 1119 days ago | IN | 0 ETH | 0.00521613 | ||||
| Enter Staking | 16366553 | 1144 days ago | IN | 0 ETH | 0.00551593 | ||||
| Enter Staking | 16191221 | 1168 days ago | IN | 0 ETH | 0.00918169 | ||||
| Enter Staking | 15979400 | 1198 days ago | IN | 0 ETH | 0.00453841 | ||||
| Enter Staking | 15416686 | 1279 days ago | IN | 0 ETH | 0.00397048 | ||||
| Enter Staking | 15416683 | 1279 days ago | IN | 0 ETH | 0.01003465 | ||||
| Enter Staking | 15415912 | 1279 days ago | IN | 0 ETH | 0.00693806 | ||||
| Leave Staking | 15387734 | 1284 days ago | IN | 0 ETH | 0.00285066 | ||||
| Enter Staking | 15386665 | 1284 days ago | IN | 0 ETH | 0.0024835 | ||||
| Enter Staking | 15386654 | 1284 days ago | IN | 0 ETH | 0.00305495 | ||||
| Leave Staking | 15140556 | 1322 days ago | IN | 0 ETH | 0.00634504 | ||||
| Enter Staking | 15140545 | 1322 days ago | IN | 0 ETH | 0.00281462 | ||||
| Enter Staking | 15140545 | 1322 days ago | IN | 0 ETH | 0.0040658 | ||||
| Enter Staking | 15140504 | 1322 days ago | IN | 0 ETH | 0.0009913 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers.
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
|||
|---|---|---|---|---|---|---|---|---|
| Mint | 23931492 | 84 days ago | 0 ETH | |||||
| Mint | 23931492 | 84 days ago | 0 ETH | |||||
| Balance Of | 23931492 | 84 days ago | 0 ETH | |||||
| Burn | 18689021 | 818 days ago | 0 ETH | |||||
| Transfer | 18689021 | 818 days ago | 0 ETH | |||||
| Safe Ki Ki Trans... | 18689021 | 818 days ago | 0 ETH | |||||
| Mint | 18689021 | 818 days ago | 0 ETH | |||||
| Balance Of | 18689021 | 818 days ago | 0 ETH | |||||
| Mint | 18519271 | 841 days ago | 0 ETH | |||||
| Safe Ki Ki Trans... | 18519271 | 841 days ago | 0 ETH | |||||
| Mint | 18519271 | 841 days ago | 0 ETH | |||||
| Balance Of | 18519271 | 841 days ago | 0 ETH | |||||
| Mint | 18310760 | 870 days ago | 0 ETH | |||||
| Transfer From | 18310760 | 870 days ago | 0 ETH | |||||
| Mint | 18310760 | 870 days ago | 0 ETH | |||||
| Balance Of | 18310760 | 870 days ago | 0 ETH | |||||
| Burn | 18309986 | 871 days ago | 0 ETH | |||||
| Transfer | 18309986 | 871 days ago | 0 ETH | |||||
| Safe Ki Ki Trans... | 18309986 | 871 days ago | 0 ETH | |||||
| Mint | 18309986 | 871 days ago | 0 ETH | |||||
| Balance Of | 18309986 | 871 days ago | 0 ETH | |||||
| Mint | 18134768 | 895 days ago | 0 ETH | |||||
| Transfer From | 18134768 | 895 days ago | 0 ETH | |||||
| Safe Ki Ki Trans... | 18134768 | 895 days ago | 0 ETH | |||||
| Mint | 18134768 | 895 days ago | 0 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MasterChef
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-06-17
*/
// Sources flattened with hardhat v2.9.9 https://hardhat.org
// File @openzeppelin/contracts/utils/Context.sol@v3.4.2
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.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;
}
}
// File @openzeppelin/contracts/access/Ownable.sol@v3.4.2
pragma solidity >=0.6.0 <0.8.0;
/**
* @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 () internal {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual 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 @openzeppelin/contracts/math/SafeMath.sol@v3.4.2
pragma solidity >=0.6.0 <0.8.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, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b > a) return (false, 0);
return (true, a - b);
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b == 0) return (false, 0);
return (true, a / b);
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b == 0) return (false, 0);
return (true, a % b);
}
/**
* @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) {
require(b <= a, "SafeMath: subtraction overflow");
return a - b;
}
/**
* @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) {
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, reverting 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) {
require(b > 0, "SafeMath: division by zero");
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting 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) {
require(b > 0, "SafeMath: modulo by zero");
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* 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);
return a - b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryDiv}.
*
* 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);
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* 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;
}
}
// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v3.4.2
pragma solidity >=0.6.0 <0.8.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);
}
// File @openzeppelin/contracts/utils/Address.sol@v3.4.2
pragma solidity >=0.6.2 <0.8.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) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
assembly { size := extcodesize(account) }
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain`call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: value }(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File @openzeppelin/contracts/token/ERC20/SafeERC20.sol@v3.4.2
pragma solidity >=0.6.0 <0.8.0;
/**
* @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");
}
}
}
// File contracts/interfaces/IERC20Mintable.sol
pragma solidity 0.6.12;
interface IERC20Mintable is IERC20 {
function mint(address to, uint256 amount) external returns (uint);
}
// File @openzeppelin/contracts/token/ERC20/ERC20.sol@v3.4.2
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for {name} and {symbol}, initializes {decimals} with
* a default value of 18.
*
* To select a different value for {decimals}, use {_setupDecimals}.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name_, string memory symbol_) public {
_name = name_;
_symbol = symbol_;
_decimals = 18;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
* called.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return _decimals;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @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 virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Sets {decimals} to a value other than the default one of 18.
*
* WARNING: This function should only be called from the constructor. Most
* applications that interact with token contracts will not expect
* {decimals} to ever change, and may work incorrectly if it does.
*/
function _setupDecimals(uint8 decimals_) internal virtual {
_decimals = decimals_;
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}
// File contracts/KiKiSeedToken.sol
pragma solidity 0.6.12;
// KiKiSeedToken with Governance.
contract KiKiSeedToken is ERC20("KiKi Seed Token", "KIKISEED"), Ownable {
/// @dev Creates `_amount` token to `_to`. Must only be called by the owner (MasterChef).
function mint(address _to, uint256 _amount) public onlyOwner {
_mint(_to, _amount);
}
function burn(address _from ,uint256 _amount) public onlyOwner {
_burn(_from, _amount);
}
// The KIKI TOKEN!
IERC20Mintable public kiki;
constructor(
IERC20Mintable _kiki
) public {
kiki = _kiki;
}
// Safe kiki transfer function, just in case if rounding error causes pool to not have enough KIKIs.
function safeKiKiTransfer(address _to, uint256 _amount) public onlyOwner {
uint256 kikiBal = kiki.balanceOf(address(this));
if (_amount > kikiBal) {
kiki.transfer(_to, kikiBal);
} else {
kiki.transfer(_to, _amount);
}
}
}
// File contracts/MasterChef.sol
pragma solidity 0.6.12;
// MasterChef is the master of kiki. He can make kiki and he is a fair guy.
//
// Note that it's ownable and the owner wields tremendous power. The ownership
// will be transferred to a governance smart contract once KIKI is sufficiently
// distributed and the community can show to govern itself.
//
// Have fun reading it. Hopefully it's bug-free. God bless.
contract MasterChef is Ownable {
using SafeMath for uint256;
using SafeERC20 for IERC20;
// Info of each user.
struct UserInfo {
uint256 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 KIKIs
// entitled to a user but is pending to be distributed is:
//
// pending reward = (user.amount * pool.accKiKiPerShare) - user.rewardDebt
//
// Whenever a user deposits or withdraws LP tokens to a pool. Here's what happens:
// 1. The pool's `accKiKiPerShare` (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. KIKIs to distribute per block.
uint256 lastRewardBlock; // Last block number that KIKIs distribution occurs.
uint256 accKiKiPerShare; // Accumulated KIKIs per share, times 1e12. See below.
}
// The KIKI TOKEN!
IERC20Mintable public kiki;
// The KIKISEED TOKEN!
KiKiSeedToken public kikiSeed;
// KIKI tokens created per block.
uint256 public kikiPerBlock;
// Bonus muliplier for early kiki makers.
uint256 public BONUS_MULTIPLIER = 1;
// Info of each pool.
PoolInfo[] public poolInfo;
// Info of each user that stakes LP tokens.
mapping(uint256 => mapping(address => UserInfo)) public userInfo;
// Total allocation points. Must be the sum of all allocation points in all pools.
uint256 public totalAllocPoint = 0;
// The block number when KIKI mining starts.
uint256 public startBlock;
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);
event NewKiKiPerBlock(uint oldKiKiPerBlock, uint newKiKiPerBlock);
event NewMultiplier(uint oldMultiplier, uint newMultiplier);
constructor(
IERC20Mintable _kiki,
KiKiSeedToken _kikiSeed,
uint256 _kikiPerBlock,
uint256 _startBlock
) public {
kiki = _kiki;
kikiSeed = _kikiSeed;
kikiPerBlock = _kikiPerBlock;
startBlock = _startBlock;
// staking pool
poolInfo.push(PoolInfo({
lpToken: IERC20(address(_kiki)),
allocPoint: 1000,
lastRewardBlock: startBlock,
accKiKiPerShare: 0
}));
totalAllocPoint = 1000;
}
function updateMultiplier(uint256 multiplierNumber, bool withUpdate) external onlyOwner {
if (withUpdate) {
massUpdatePools();
}
emit NewMultiplier(BONUS_MULTIPLIER, multiplierNumber);
BONUS_MULTIPLIER = multiplierNumber;
}
function updateKiKiPerBlock(uint256 _kikiPerBlock, bool _withUpdate) external onlyOwner {
if (_withUpdate) {
massUpdatePools();
}
emit NewKiKiPerBlock(kikiPerBlock, _kikiPerBlock);
kikiPerBlock = _kikiPerBlock;
}
function poolLength() external view returns (uint256) {
return poolInfo.length;
}
// 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 onlyOwner {
if (_withUpdate) {
massUpdatePools();
}
uint256 lastRewardBlock = block.number > startBlock ? block.number : startBlock;
totalAllocPoint = totalAllocPoint.add(_allocPoint);
poolInfo.push(
PoolInfo({lpToken: _lpToken, allocPoint: _allocPoint, lastRewardBlock: lastRewardBlock, accKiKiPerShare: 0})
);
updateStakingPool();
}
// Update the given pool's KIKI allocation point. Can only be called by the owner.
function set(
uint256 _pid,
uint256 _allocPoint,
bool _withUpdate
) public onlyOwner {
if (_withUpdate) {
massUpdatePools();
}
uint256 prevAllocPoint = poolInfo[_pid].allocPoint;
poolInfo[_pid].allocPoint = _allocPoint;
if (prevAllocPoint != _allocPoint) {
totalAllocPoint = totalAllocPoint.sub(prevAllocPoint).add(_allocPoint);
updateStakingPool();
}
}
function updateStakingPool() internal {
uint256 length = poolInfo.length;
uint256 points = 0;
for (uint256 pid = 1; pid < length; ++pid) {
points = points.add(poolInfo[pid].allocPoint);
}
if (points != 0) {
points = points.div(3);
totalAllocPoint = totalAllocPoint.sub(poolInfo[0].allocPoint).add(points);
poolInfo[0].allocPoint = points;
}
}
// Return reward multiplier over the given _from to _to block.
function getMultiplier(uint256 _from, uint256 _to) public view returns (uint256) {
return _to.sub(_from).mul(BONUS_MULTIPLIER);
}
// View function to see pending KIKIs on frontend.
function pendingKiKi(uint256 _pid, address _user) external view returns (uint256) {
PoolInfo storage pool = poolInfo[_pid];
UserInfo storage user = userInfo[_pid][_user];
uint256 accKiKiPerShare = pool.accKiKiPerShare;
uint256 lpSupply = pool.lpToken.balanceOf(address(this));
if (block.number > pool.lastRewardBlock && lpSupply != 0) {
uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number);
uint256 kikiReward = multiplier.mul(kikiPerBlock).mul(pool.allocPoint).div(totalAllocPoint);
accKiKiPerShare = accKiKiPerShare.add(kikiReward.mul(1e12).div(lpSupply));
}
return user.amount.mul(accKiKiPerShare).div(1e12).sub(user.rewardDebt);
}
// Update reward variables 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 kikiReward = multiplier.mul(kikiPerBlock).mul(pool.allocPoint).div(totalAllocPoint);
kiki.mint(address(kikiSeed), kikiReward);
pool.accKiKiPerShare = pool.accKiKiPerShare.add(kikiReward.mul(1e12).div(lpSupply));
pool.lastRewardBlock = block.number;
}
// Deposit LP tokens to MasterChef for KIKI allocation.
function deposit(uint256 _pid, uint256 _amount) public {
require (_pid != 0, "deposit KIKI by staking");
PoolInfo storage pool = poolInfo[_pid];
UserInfo storage user = userInfo[_pid][msg.sender];
updatePool(_pid);
if (user.amount > 0) {
uint256 pending = user.amount.mul(pool.accKiKiPerShare).div(1e12).sub(user.rewardDebt);
if (pending > 0) {
safeKiKiTransfer(msg.sender, pending);
}
}
if (_amount > 0) {
pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount);
user.amount = user.amount.add(_amount);
}
user.rewardDebt = user.amount.mul(pool.accKiKiPerShare).div(1e12);
emit Deposit(msg.sender, _pid, _amount);
}
// Withdraw LP tokens from MasterChef.
function withdraw(uint256 _pid, uint256 _amount) public {
require(_pid != 0, "withdraw KIKI by unstaking");
PoolInfo storage pool = poolInfo[_pid];
UserInfo storage user = userInfo[_pid][msg.sender];
require(user.amount >= _amount, "withdraw: not good");
updatePool(_pid);
uint256 pending = user.amount.mul(pool.accKiKiPerShare).div(1e12).sub(user.rewardDebt);
if (pending > 0) {
safeKiKiTransfer(msg.sender, pending);
}
if (_amount > 0) {
user.amount = user.amount.sub(_amount);
pool.lpToken.safeTransfer(address(msg.sender), _amount);
}
user.rewardDebt = user.amount.mul(pool.accKiKiPerShare).div(1e12);
emit Withdraw(msg.sender, _pid, _amount);
}
// Stake KIKI tokens to MasterChef
function enterStaking(uint256 _amount) public {
PoolInfo storage pool = poolInfo[0];
UserInfo storage user = userInfo[0][msg.sender];
updatePool(0);
if (user.amount > 0) {
uint256 pending = user.amount.mul(pool.accKiKiPerShare).div(1e12).sub(user.rewardDebt);
if (pending > 0) {
safeKiKiTransfer(msg.sender, pending);
}
}
if (_amount > 0) {
pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount);
user.amount = user.amount.add(_amount);
}
user.rewardDebt = user.amount.mul(pool.accKiKiPerShare).div(1e12);
kikiSeed.mint(msg.sender, _amount);
emit Deposit(msg.sender, 0, _amount);
}
// Withdraw KIKI tokens from STAKING.
function leaveStaking(uint256 _amount) public {
PoolInfo storage pool = poolInfo[0];
UserInfo storage user = userInfo[0][msg.sender];
require(user.amount >= _amount, "withdraw: not good");
updatePool(0);
uint256 pending = user.amount.mul(pool.accKiKiPerShare).div(1e12).sub(user.rewardDebt);
if (pending > 0) {
safeKiKiTransfer(msg.sender, pending);
}
if (_amount > 0) {
user.amount = user.amount.sub(_amount);
pool.lpToken.safeTransfer(address(msg.sender), _amount);
}
user.rewardDebt = user.amount.mul(pool.accKiKiPerShare).div(1e12);
kikiSeed.burn(msg.sender, _amount);
emit Withdraw(msg.sender, 0, _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 kiki transfer function, just in case if rounding error causes pool to not have enough KIKIs.
function safeKiKiTransfer(address _to, uint256 _amount) internal {
kikiSeed.safeKiKiTransfer(_to, _amount);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract IERC20Mintable","name":"_kiki","type":"address"},{"internalType":"contract KiKiSeedToken","name":"_kikiSeed","type":"address"},{"internalType":"uint256","name":"_kikiPerBlock","type":"uint256"},{"internalType":"uint256","name":"_startBlock","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":false,"internalType":"uint256","name":"oldKiKiPerBlock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newKiKiPerBlock","type":"uint256"}],"name":"NewKiKiPerBlock","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldMultiplier","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newMultiplier","type":"uint256"}],"name":"NewMultiplier","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":[{"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":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"enterStaking","outputs":[],"stateMutability":"nonpayable","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":"kiki","outputs":[{"internalType":"contract IERC20Mintable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"kikiPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"kikiSeed","outputs":[{"internalType":"contract KiKiSeedToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"leaveStaking","outputs":[],"stateMutability":"nonpayable","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":"pendingKiKi","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":"accKiKiPerShare","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":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"set","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":"_kikiPerBlock","type":"uint256"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"updateKiKiPerBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"multiplierNumber","type":"uint256"},{"internalType":"bool","name":"withUpdate","type":"bool"}],"name":"updateMultiplier","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
60806040526001600455600060075534801561001a57600080fd5b50604051611e05380380611e058339818101604052608081101561003d57600080fd5b5080516020820151604083015160609093015191929091600061005e6101c8565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180546001600160a01b03199081166001600160a01b039687169081178355600280548316968816969096179095556003939093556008829055604080516080810182529485526103e86020860181815291860193845260006060870181815260058054958601815590915295517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db06004909402938401805490961697169690961790935591517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db1830155517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db282015590517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db3909101556007556101cc565b3390565b611c2a806101db6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806364482f79116100de5780638dbb1e3a11610097578063bf65476811610071578063bf654768146103ec578063d7e114f414610411578063e2bbb15814610419578063f2fde38b1461043c57610173565b80638dbb1e3a1461037c57806393f1a40b1461039f578063b173ade4146103e457610173565b806364482f79146102e8578063715018a6146103135780637710d9001461031b57806384adeb58146103475780638aa285501461036c5780638da5cb5b1461037457610173565b8063441a3e7011610130578063441a3e701461025757806348cd4cb11461027a57806351eb05a6146102825780635312ea8e1461029f5780635d4cbb3c146102bc578063630b5ba1146102e057610173565b8063081e3eda146101785780631058d281146101925780631526fe27146101b157806317caf6f1146101fe5780631eaaa0451461020657806341441d3b1461023a575b600080fd5b610180610462565b60408051918252519081900360200190f35b6101af600480360360208110156101a857600080fd5b5035610468565b005b6101ce600480360360208110156101c757600080fd5b503561064c565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b61018061068d565b6101af6004803603606081101561021c57600080fd5b508035906001600160a01b0360208201351690604001351515610693565b6101af6004803603602081101561025057600080fd5b5035610823565b6101af6004803603604081101561026d57600080fd5b50803590602001356109b7565b610180610b5c565b6101af6004803603602081101561029857600080fd5b5035610b62565b6101af600480360360208110156102b557600080fd5b5035610d18565b6102c4610db3565b604080516001600160a01b039092168252519081900360200190f35b6101af610dc2565b6101af600480360360608110156102fe57600080fd5b50803590602081013590604001351515610de5565b6101af610ecc565b6101806004803603604081101561033157600080fd5b50803590602001356001600160a01b0316610f78565b6101af6004803603604081101561035d57600080fd5b508035906020013515156110dc565b61018061118f565b6102c4611195565b6101806004803603604081101561039257600080fd5b50803590602001356111a4565b6103cb600480360360408110156103b557600080fd5b50803590602001356001600160a01b03166111bf565b6040805192835260208301919091528051918290030190f35b6101806111e3565b6101af6004803603604081101561040257600080fd5b508035906020013515156111e9565b6102c461129c565b6101af6004803603604081101561042f57600080fd5b50803590602001356112ab565b6101af6004803603602081101561045257600080fd5b50356001600160a01b031661140f565b60055490565b6000600560008154811061047857fe5b600091825260208083203384527f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f89091526040909220805460049092029092019250831115610503576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b61050d6000610b62565b6000610547826001015461054164e8d4a5100061053b8760030154876000015461151190919063ffffffff16565b9061156a565b906115d1565b9050801561055957610559338261162e565b831561058357815461056b90856115d1565b82558254610583906001600160a01b0316338661169f565b6003830154825461059e9164e8d4a510009161053b91611511565b600183015560025460408051632770a7eb60e21b81523360048201526024810187905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b1580156105f657600080fd5b505af115801561060a573d6000803e3d6000fd5b5050604080518781529051600093503392507ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a350505050565b6005818154811061065957fe5b600091825260209091206004909102018054600182015460028301546003909301546001600160a01b039092169350919084565b60075481565b61069b6116f6565b6001600160a01b03166106ac611195565b6001600160a01b0316146106f5576040805162461bcd60e51b81526020600482018190526024820152600080516020611bab833981519152604482015290519081900360640190fd5b801561070357610703610dc2565b6000600854431161071657600854610718565b435b60075490915061072890856116fa565b600755604080516080810182526001600160a01b0385811682526020820187815292820184815260006060840181815260058054600181018255925293517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0600490920291820180546001600160a01b031916919094161790925592517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db182015591517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db2830155517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db39091015561081d611754565b50505050565b6000600560008154811061083357fe5b600091825260208083203384527f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f89091526040832060049092020192509061087a90610b62565b8054156108c35760006108af826001015461054164e8d4a5100061053b8760030154876000015461151190919063ffffffff16565b905080156108c1576108c1338261162e565b505b82156108ef5781546108e0906001600160a01b0316333086611819565b80546108ec90846116fa565b81555b6003820154815461090a9164e8d4a510009161053b91611511565b6001820155600254604080516340c10f1960e01b81523360048201526024810186905290516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b15801561096257600080fd5b505af1158015610976573d6000803e3d6000fd5b5050604080518681529051600093503392507f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a3505050565b81610a09576040805162461bcd60e51b815260206004820152601a60248201527f7769746864726177204b494b4920627920756e7374616b696e67000000000000604482015290519081900360640190fd5b600060058381548110610a1857fe5b600091825260208083208684526006825260408085203386529092529220805460049092029092019250831115610a8b576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b610a9484610b62565b6000610ac2826001015461054164e8d4a5100061053b8760030154876000015461151190919063ffffffff16565b90508015610ad457610ad4338261162e565b8315610afe578154610ae690856115d1565b82558254610afe906001600160a01b0316338661169f565b60038301548254610b199164e8d4a510009161053b91611511565b6001830155604080518581529051869133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a35050505050565b60085481565b600060058281548110610b7157fe5b9060005260206000209060040201905080600201544311610b925750610d15565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610bdc57600080fd5b505afa158015610bf0573d6000803e3d6000fd5b505050506040513d6020811015610c0657600080fd5b5051905080610c1c575043600290910155610d15565b6000610c2c8360020154436111a4565b90506000610c5960075461053b8660010154610c536003548761151190919063ffffffff16565b90611511565b600154600254604080516340c10f1960e01b81526001600160a01b0392831660048201526024810185905290519394509116916340c10f19916044808201926020929091908290030181600087803b158015610cb457600080fd5b505af1158015610cc8573d6000803e3d6000fd5b505050506040513d6020811015610cde57600080fd5b50610d029050610cf78461053b8464e8d4a51000611511565b6003860154906116fa565b6003850155505043600290920191909155505b50565b600060058281548110610d2757fe5b60009182526020808320858452600682526040808520338087529352909320805460049093029093018054909450610d6c926001600160a01b0391909116919061169f565b80546040805191825251849133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a360008082556001909101555050565b6001546001600160a01b031681565b60055460005b81811015610de157610dd981610b62565b600101610dc8565b5050565b610ded6116f6565b6001600160a01b0316610dfe611195565b6001600160a01b031614610e47576040805162461bcd60e51b81526020600482018190526024820152600080516020611bab833981519152604482015290519081900360640190fd5b8015610e5557610e55610dc2565b600060058481548110610e6457fe5b90600052602060002090600402016001015490508260058581548110610e8657fe5b90600052602060002090600402016001018190555082811461081d57610ec183610ebb836007546115d190919063ffffffff16565b906116fa565b60075561081d611754565b610ed46116f6565b6001600160a01b0316610ee5611195565b6001600160a01b031614610f2e576040805162461bcd60e51b81526020600482018190526024820152600080516020611bab833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60008060058481548110610f8857fe5b600091825260208083208784526006825260408085206001600160a01b03898116875290845281862060049586029093016003810154815484516370a0823160e01b81523098810198909852935191985093969395939492909116926370a08231926024808301939192829003018186803b15801561100657600080fd5b505afa15801561101a573d6000803e3d6000fd5b505050506040513d602081101561103057600080fd5b505160028501549091504311801561104757508015155b156110a757600061105c8560020154436111a4565b9050600061108360075461053b8860010154610c536003548761151190919063ffffffff16565b90506110a261109b8461053b8464e8d4a51000611511565b85906116fa565b935050505b6110cf836001015461054164e8d4a5100061053b86886000015461151190919063ffffffff16565b9450505050505b92915050565b6110e46116f6565b6001600160a01b03166110f5611195565b6001600160a01b03161461113e576040805162461bcd60e51b81526020600482018190526024820152600080516020611bab833981519152604482015290519081900360640190fd5b801561114c5761114c610dc2565b600354604080519182526020820184905280517f34f475e2a76ecab3078032a810903af0677b4eecbc73cff49b27ef672f581c3a9281900390910190a150600355565b60045481565b6000546001600160a01b031690565b6004546000906111b890610c5384866115d1565b9392505050565b60066020908152600092835260408084209091529082529020805460019091015482565b60035481565b6111f16116f6565b6001600160a01b0316611202611195565b6001600160a01b03161461124b576040805162461bcd60e51b81526020600482018190526024820152600080516020611bab833981519152604482015290519081900360640190fd5b801561125957611259610dc2565b600454604080519182526020820184905280517fbb69b052a57be2126300a5702ad98a79ab8ac71f0d3f61df1fde7e4c681433439281900390910190a150600455565b6002546001600160a01b031681565b816112fd576040805162461bcd60e51b815260206004820152601760248201527f6465706f736974204b494b49206279207374616b696e67000000000000000000604482015290519081900360640190fd5b60006005838154811061130c57fe5b6000918252602080832086845260068252604080852033865290925292206004909102909101915061133d84610b62565b805415611386576000611372826001015461054164e8d4a5100061053b8760030154876000015461151190919063ffffffff16565b9050801561138457611384338261162e565b505b82156113b25781546113a3906001600160a01b0316333086611819565b80546113af90846116fa565b81555b600382015481546113cd9164e8d4a510009161053b91611511565b6001820155604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a350505050565b6114176116f6565b6001600160a01b0316611428611195565b6001600160a01b031614611471576040805162461bcd60e51b81526020600482018190526024820152600080516020611bab833981519152604482015290519081900360640190fd5b6001600160a01b0381166114b65760405162461bcd60e51b8152600401808060200182810382526026815260200180611b3e6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600082611520575060006110d6565b8282028284828161152d57fe5b04146111b85760405162461bcd60e51b8152600401808060200182810382526021815260200180611b8a6021913960400191505060405180910390fd5b60008082116115c0576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816115c957fe5b049392505050565b600082821115611628576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60025460408051631777090b60e21b81526001600160a01b0385811660048301526024820185905291519190921691635ddc242c91604480830192600092919082900301818387803b15801561168357600080fd5b505af1158015611697573d6000803e3d6000fd5b505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526116f190849061186f565b505050565b3390565b6000828201838110156111b8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600554600060015b8281101561179f576117956005828154811061177457fe5b906000526020600020906004020160010154836116fa90919063ffffffff16565b915060010161175c565b508015610de1576117b181600361156a565b90506117eb81610ebb60056000815481106117c857fe5b9060005260206000209060040201600101546007546115d190919063ffffffff16565b60078190555080600560008154811061180057fe5b9060005260206000209060040201600101819055505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261081d9085905b60606118c4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166119209092919063ffffffff16565b8051909150156116f1578080602001905160208110156118e357600080fd5b50516116f15760405162461bcd60e51b815260040180806020018281038252602a815260200180611bcb602a913960400191505060405180910390fd5b606061192f8484600085611937565b949350505050565b6060824710156119785760405162461bcd60e51b8152600401808060200182810382526026815260200180611b646026913960400191505060405180910390fd5b61198185611a93565b6119d2576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310611a115780518252601f1990920191602091820191016119f2565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611a73576040519150601f19603f3d011682016040523d82523d6000602084013e611a78565b606091505b5091509150611a88828286611a99565b979650505050505050565b3b151590565b60608315611aa85750816111b8565b825115611ab85782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b02578181015183820152602001611aea565b50505050905090810190601f168015611b2f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a264697066735822122098af87078c219932bfb4683de39aa0366ffce7195b729496ee75bbe3c8d4982d64736f6c634300060c003300000000000000000000000082ca5fcd9ef2d6ceeb49a057bb11c3e091560979000000000000000000000000afa5be9cec0a2b7a07132834b6e8a90e7f361f15000000000000000000000000000000000000000000000000000877e261c06c000000000000000000000000000000000000000000000000000000000000e4a728
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c806364482f79116100de5780638dbb1e3a11610097578063bf65476811610071578063bf654768146103ec578063d7e114f414610411578063e2bbb15814610419578063f2fde38b1461043c57610173565b80638dbb1e3a1461037c57806393f1a40b1461039f578063b173ade4146103e457610173565b806364482f79146102e8578063715018a6146103135780637710d9001461031b57806384adeb58146103475780638aa285501461036c5780638da5cb5b1461037457610173565b8063441a3e7011610130578063441a3e701461025757806348cd4cb11461027a57806351eb05a6146102825780635312ea8e1461029f5780635d4cbb3c146102bc578063630b5ba1146102e057610173565b8063081e3eda146101785780631058d281146101925780631526fe27146101b157806317caf6f1146101fe5780631eaaa0451461020657806341441d3b1461023a575b600080fd5b610180610462565b60408051918252519081900360200190f35b6101af600480360360208110156101a857600080fd5b5035610468565b005b6101ce600480360360208110156101c757600080fd5b503561064c565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b61018061068d565b6101af6004803603606081101561021c57600080fd5b508035906001600160a01b0360208201351690604001351515610693565b6101af6004803603602081101561025057600080fd5b5035610823565b6101af6004803603604081101561026d57600080fd5b50803590602001356109b7565b610180610b5c565b6101af6004803603602081101561029857600080fd5b5035610b62565b6101af600480360360208110156102b557600080fd5b5035610d18565b6102c4610db3565b604080516001600160a01b039092168252519081900360200190f35b6101af610dc2565b6101af600480360360608110156102fe57600080fd5b50803590602081013590604001351515610de5565b6101af610ecc565b6101806004803603604081101561033157600080fd5b50803590602001356001600160a01b0316610f78565b6101af6004803603604081101561035d57600080fd5b508035906020013515156110dc565b61018061118f565b6102c4611195565b6101806004803603604081101561039257600080fd5b50803590602001356111a4565b6103cb600480360360408110156103b557600080fd5b50803590602001356001600160a01b03166111bf565b6040805192835260208301919091528051918290030190f35b6101806111e3565b6101af6004803603604081101561040257600080fd5b508035906020013515156111e9565b6102c461129c565b6101af6004803603604081101561042f57600080fd5b50803590602001356112ab565b6101af6004803603602081101561045257600080fd5b50356001600160a01b031661140f565b60055490565b6000600560008154811061047857fe5b600091825260208083203384527f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f89091526040909220805460049092029092019250831115610503576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b61050d6000610b62565b6000610547826001015461054164e8d4a5100061053b8760030154876000015461151190919063ffffffff16565b9061156a565b906115d1565b9050801561055957610559338261162e565b831561058357815461056b90856115d1565b82558254610583906001600160a01b0316338661169f565b6003830154825461059e9164e8d4a510009161053b91611511565b600183015560025460408051632770a7eb60e21b81523360048201526024810187905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b1580156105f657600080fd5b505af115801561060a573d6000803e3d6000fd5b5050604080518781529051600093503392507ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a350505050565b6005818154811061065957fe5b600091825260209091206004909102018054600182015460028301546003909301546001600160a01b039092169350919084565b60075481565b61069b6116f6565b6001600160a01b03166106ac611195565b6001600160a01b0316146106f5576040805162461bcd60e51b81526020600482018190526024820152600080516020611bab833981519152604482015290519081900360640190fd5b801561070357610703610dc2565b6000600854431161071657600854610718565b435b60075490915061072890856116fa565b600755604080516080810182526001600160a01b0385811682526020820187815292820184815260006060840181815260058054600181018255925293517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0600490920291820180546001600160a01b031916919094161790925592517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db182015591517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db2830155517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db39091015561081d611754565b50505050565b6000600560008154811061083357fe5b600091825260208083203384527f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f89091526040832060049092020192509061087a90610b62565b8054156108c35760006108af826001015461054164e8d4a5100061053b8760030154876000015461151190919063ffffffff16565b905080156108c1576108c1338261162e565b505b82156108ef5781546108e0906001600160a01b0316333086611819565b80546108ec90846116fa565b81555b6003820154815461090a9164e8d4a510009161053b91611511565b6001820155600254604080516340c10f1960e01b81523360048201526024810186905290516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b15801561096257600080fd5b505af1158015610976573d6000803e3d6000fd5b5050604080518681529051600093503392507f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a3505050565b81610a09576040805162461bcd60e51b815260206004820152601a60248201527f7769746864726177204b494b4920627920756e7374616b696e67000000000000604482015290519081900360640190fd5b600060058381548110610a1857fe5b600091825260208083208684526006825260408085203386529092529220805460049092029092019250831115610a8b576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b610a9484610b62565b6000610ac2826001015461054164e8d4a5100061053b8760030154876000015461151190919063ffffffff16565b90508015610ad457610ad4338261162e565b8315610afe578154610ae690856115d1565b82558254610afe906001600160a01b0316338661169f565b60038301548254610b199164e8d4a510009161053b91611511565b6001830155604080518581529051869133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a35050505050565b60085481565b600060058281548110610b7157fe5b9060005260206000209060040201905080600201544311610b925750610d15565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610bdc57600080fd5b505afa158015610bf0573d6000803e3d6000fd5b505050506040513d6020811015610c0657600080fd5b5051905080610c1c575043600290910155610d15565b6000610c2c8360020154436111a4565b90506000610c5960075461053b8660010154610c536003548761151190919063ffffffff16565b90611511565b600154600254604080516340c10f1960e01b81526001600160a01b0392831660048201526024810185905290519394509116916340c10f19916044808201926020929091908290030181600087803b158015610cb457600080fd5b505af1158015610cc8573d6000803e3d6000fd5b505050506040513d6020811015610cde57600080fd5b50610d029050610cf78461053b8464e8d4a51000611511565b6003860154906116fa565b6003850155505043600290920191909155505b50565b600060058281548110610d2757fe5b60009182526020808320858452600682526040808520338087529352909320805460049093029093018054909450610d6c926001600160a01b0391909116919061169f565b80546040805191825251849133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a360008082556001909101555050565b6001546001600160a01b031681565b60055460005b81811015610de157610dd981610b62565b600101610dc8565b5050565b610ded6116f6565b6001600160a01b0316610dfe611195565b6001600160a01b031614610e47576040805162461bcd60e51b81526020600482018190526024820152600080516020611bab833981519152604482015290519081900360640190fd5b8015610e5557610e55610dc2565b600060058481548110610e6457fe5b90600052602060002090600402016001015490508260058581548110610e8657fe5b90600052602060002090600402016001018190555082811461081d57610ec183610ebb836007546115d190919063ffffffff16565b906116fa565b60075561081d611754565b610ed46116f6565b6001600160a01b0316610ee5611195565b6001600160a01b031614610f2e576040805162461bcd60e51b81526020600482018190526024820152600080516020611bab833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60008060058481548110610f8857fe5b600091825260208083208784526006825260408085206001600160a01b03898116875290845281862060049586029093016003810154815484516370a0823160e01b81523098810198909852935191985093969395939492909116926370a08231926024808301939192829003018186803b15801561100657600080fd5b505afa15801561101a573d6000803e3d6000fd5b505050506040513d602081101561103057600080fd5b505160028501549091504311801561104757508015155b156110a757600061105c8560020154436111a4565b9050600061108360075461053b8860010154610c536003548761151190919063ffffffff16565b90506110a261109b8461053b8464e8d4a51000611511565b85906116fa565b935050505b6110cf836001015461054164e8d4a5100061053b86886000015461151190919063ffffffff16565b9450505050505b92915050565b6110e46116f6565b6001600160a01b03166110f5611195565b6001600160a01b03161461113e576040805162461bcd60e51b81526020600482018190526024820152600080516020611bab833981519152604482015290519081900360640190fd5b801561114c5761114c610dc2565b600354604080519182526020820184905280517f34f475e2a76ecab3078032a810903af0677b4eecbc73cff49b27ef672f581c3a9281900390910190a150600355565b60045481565b6000546001600160a01b031690565b6004546000906111b890610c5384866115d1565b9392505050565b60066020908152600092835260408084209091529082529020805460019091015482565b60035481565b6111f16116f6565b6001600160a01b0316611202611195565b6001600160a01b03161461124b576040805162461bcd60e51b81526020600482018190526024820152600080516020611bab833981519152604482015290519081900360640190fd5b801561125957611259610dc2565b600454604080519182526020820184905280517fbb69b052a57be2126300a5702ad98a79ab8ac71f0d3f61df1fde7e4c681433439281900390910190a150600455565b6002546001600160a01b031681565b816112fd576040805162461bcd60e51b815260206004820152601760248201527f6465706f736974204b494b49206279207374616b696e67000000000000000000604482015290519081900360640190fd5b60006005838154811061130c57fe5b6000918252602080832086845260068252604080852033865290925292206004909102909101915061133d84610b62565b805415611386576000611372826001015461054164e8d4a5100061053b8760030154876000015461151190919063ffffffff16565b9050801561138457611384338261162e565b505b82156113b25781546113a3906001600160a01b0316333086611819565b80546113af90846116fa565b81555b600382015481546113cd9164e8d4a510009161053b91611511565b6001820155604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a350505050565b6114176116f6565b6001600160a01b0316611428611195565b6001600160a01b031614611471576040805162461bcd60e51b81526020600482018190526024820152600080516020611bab833981519152604482015290519081900360640190fd5b6001600160a01b0381166114b65760405162461bcd60e51b8152600401808060200182810382526026815260200180611b3e6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600082611520575060006110d6565b8282028284828161152d57fe5b04146111b85760405162461bcd60e51b8152600401808060200182810382526021815260200180611b8a6021913960400191505060405180910390fd5b60008082116115c0576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816115c957fe5b049392505050565b600082821115611628576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60025460408051631777090b60e21b81526001600160a01b0385811660048301526024820185905291519190921691635ddc242c91604480830192600092919082900301818387803b15801561168357600080fd5b505af1158015611697573d6000803e3d6000fd5b505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526116f190849061186f565b505050565b3390565b6000828201838110156111b8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600554600060015b8281101561179f576117956005828154811061177457fe5b906000526020600020906004020160010154836116fa90919063ffffffff16565b915060010161175c565b508015610de1576117b181600361156a565b90506117eb81610ebb60056000815481106117c857fe5b9060005260206000209060040201600101546007546115d190919063ffffffff16565b60078190555080600560008154811061180057fe5b9060005260206000209060040201600101819055505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261081d9085905b60606118c4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166119209092919063ffffffff16565b8051909150156116f1578080602001905160208110156118e357600080fd5b50516116f15760405162461bcd60e51b815260040180806020018281038252602a815260200180611bcb602a913960400191505060405180910390fd5b606061192f8484600085611937565b949350505050565b6060824710156119785760405162461bcd60e51b8152600401808060200182810382526026815260200180611b646026913960400191505060405180910390fd5b61198185611a93565b6119d2576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310611a115780518252601f1990920191602091820191016119f2565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611a73576040519150601f19603f3d011682016040523d82523d6000602084013e611a78565b606091505b5091509150611a88828286611a99565b979650505050505050565b3b151590565b60608315611aa85750816111b8565b825115611ab85782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b02578181015183820152602001611aea565b50505050905090810190601f168015611b2f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a264697066735822122098af87078c219932bfb4683de39aa0366ffce7195b729496ee75bbe3c8d4982d64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000082ca5fcd9ef2d6ceeb49a057bb11c3e091560979000000000000000000000000afa5be9cec0a2b7a07132834b6e8a90e7f361f15000000000000000000000000000000000000000000000000000877e261c06c000000000000000000000000000000000000000000000000000000000000e4a728
-----Decoded View---------------
Arg [0] : _kiki (address): 0x82ca5FCd9eF2D6cEEb49a057bb11c3E091560979
Arg [1] : _kikiSeed (address): 0xaFa5bE9cEC0a2B7A07132834b6e8a90E7f361F15
Arg [2] : _kikiPerBlock (uint256): 2383614000000000
Arg [3] : _startBlock (uint256): 14985000
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000082ca5fcd9ef2d6ceeb49a057bb11c3e091560979
Arg [1] : 000000000000000000000000afa5be9cec0a2b7a07132834b6e8a90e7f361f15
Arg [2] : 000000000000000000000000000000000000000000000000000877e261c06c00
Arg [3] : 0000000000000000000000000000000000000000000000000000000000e4a728
Deployed Bytecode Sourcemap
38218:11534:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41741:95;;;:::i;:::-;;;;;;;;;;;;;;;;48318:767;;;;;;;;;;;;;;;;-1:-1:-1;48318:767:0;;:::i;:::-;;39868:26;;;;;;;;;;;;;;;;-1:-1:-1;39868:26:0;;:::i;:::-;;;;-1:-1:-1;;;;;39868:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40109:34;;;:::i;42005:540::-;;;;;;;;;;;;;;;;-1:-1:-1;42005:540:0;;;-1:-1:-1;;;;;42005:540:0;;;;;;;;;;;;:::i;47487:780::-;;;;;;;;;;;;;;;;-1:-1:-1;47487:780:0;;:::i;46636:803::-;;;;;;;;;;;;;;;;-1:-1:-1;46636:803:0;;;;;;;:::i;40200:25::-;;;:::i;44966:736::-;;;;;;;;;;;;;;;;-1:-1:-1;44966:736:0;;:::i;49156:356::-;;;;;;;;;;;;;;;;-1:-1:-1;49156:356:0;;:::i;39580:26::-;;;:::i;:::-;;;;-1:-1:-1;;;;;39580:26:0;;;;;;;;;;;;;;44710:180;;;:::i;42641:483::-;;;;;;;;;;;;;;;;-1:-1:-1;42641:483:0;;;;;;;;;;;;;;:::i;2861:148::-;;;:::i;43868:759::-;;;;;;;;;;;;;;;;-1:-1:-1;43868:759:0;;;;;;-1:-1:-1;;;;;43868:759:0;;:::i;41467:266::-;;;;;;;;;;;;;;;;-1:-1:-1;41467:266:0;;;;;;;;;:::i;39797:35::-;;;:::i;2210:87::-;;;:::i;43661:143::-;;;;;;;;;;;;;;;;-1:-1:-1;43661:143:0;;;;;;;:::i;39950:64::-;;;;;;;;;;;;;;;;-1:-1:-1;39950:64:0;;;;;;-1:-1:-1;;;;;39950:64:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;39716:27;;;:::i;41182:277::-;;;;;;;;;;;;;;;;-1:-1:-1;41182:277:0;;;;;;;;;:::i;39641:29::-;;;:::i;45771:813::-;;;;;;;;;;;;;;;;-1:-1:-1;45771:813:0;;;;;;;:::i;3164:244::-;;;;;;;;;;;;;;;;-1:-1:-1;3164:244:0;-1:-1:-1;;;;;3164:244:0;;:::i;41741:95::-;41813:8;:15;41741:95;:::o;48318:767::-;48375:21;48399:8;48408:1;48399:11;;;;;;;;;;;;;;;;48457:10;48445:23;;:11;:23;;;:11;:23;;;48487:11;;48399;;;;;;;;-1:-1:-1;48487:22:0;-1:-1:-1;48487:22:0;48479:53;;;;;-1:-1:-1;;;48479:53:0;;;;;;;;;;;;-1:-1:-1;;;48479:53:0;;;;;;;;;;;;;;;48543:13;48554:1;48543:10;:13::i;:::-;48567:15;48585:68;48637:4;:15;;;48585:47;48627:4;48585:37;48601:4;:20;;;48585:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47::i;:::-;:51;;:68::i;:::-;48567:86;-1:-1:-1;48668:11:0;;48664:81;;48696:37;48713:10;48725:7;48696:16;:37::i;:::-;48759:11;;48755:152;;48801:11;;:24;;48817:7;48801:15;:24::i;:::-;48787:38;;48840:12;;:55;;-1:-1:-1;;;;;48840:12:0;48874:10;48887:7;48840:25;:55::i;:::-;48951:20;;;;48935:11;;:47;;48977:4;;48935:37;;:15;:37::i;:47::-;48917:15;;;:65;48995:8;;:34;;;-1:-1:-1;;;48995:34:0;;49009:10;48995:34;;;;;;;;;;;;-1:-1:-1;;;;;48995:8:0;;;;:13;;:34;;;;;:8;;:34;;;;;;;;:8;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49045:32:0;;;;;;;;49066:1;;-1:-1:-1;49054:10:0;;-1:-1:-1;49045:32:0;;;;;;;;;48318:767;;;;:::o;39868:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39868:26:0;;;;-1:-1:-1;39868:26:0;;;:::o;40109:34::-;;;;:::o;42005:540::-;2441:12;:10;:12::i;:::-;-1:-1:-1;;;;;2430:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2430:23:0;;2422:68;;;;;-1:-1:-1;;;2422:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2422:68:0;;;;;;;;;;;;;;;42140:11:::1;42136:61;;;42168:17;:15;:17::i;:::-;42207:23;42248:10;;42233:12;:25;:53;;42276:10;;42233:53;;;42261:12;42233:53;42315:15;::::0;42207:79;;-1:-1:-1;42315:32:0::1;::::0;42335:11;42315:19:::1;:32::i;:::-;42297:15;:50:::0;42386:108:::1;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;42386:108:0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;-1:-1:-1;42386:108:0;;;;;;42358:8:::1;:147:::0;;::::1;::::0;::::1;::::0;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;;42358:147:0::1;::::0;;;::::1;;::::0;;;;;;;;;;;;;;;;;;;;;42518:19:::1;:17;:19::i;:::-;2501:1;42005:540:::0;;;:::o;47487:780::-;47544:21;47568:8;47577:1;47568:11;;;;;;;;;;;;;;;;47626:10;47614:23;;:11;:23;;;:11;:23;;47568:11;;;;;;-1:-1:-1;47614:23:0;47648:13;;:10;:13::i;:::-;47676:11;;:15;47672:237;;47708:15;47726:68;47778:4;:15;;;47726:47;47768:4;47726:37;47742:4;:20;;;47726:4;:11;;;:15;;:37;;;;:::i;:68::-;47708:86;-1:-1:-1;47813:11:0;;47809:89;;47845:37;47862:10;47874:7;47845:16;:37::i;:::-;47672:237;;47923:11;;47919:171;;47951:12;;:74;;-1:-1:-1;;;;;47951:12:0;47989:10;48010:4;48017:7;47951:29;:74::i;:::-;48054:11;;:24;;48070:7;48054:15;:24::i;:::-;48040:38;;47919:171;48134:20;;;;48118:11;;:47;;48160:4;;48118:37;;:15;:37::i;:47::-;48100:15;;;:65;48178:8;;:34;;;-1:-1:-1;;;48178:34:0;;48192:10;48178:34;;;;;;;;;;;;-1:-1:-1;;;;;48178:8:0;;;;:13;;:34;;;;;:8;;:34;;;;;;;;:8;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48228:31:0;;;;;;;;48248:1;;-1:-1:-1;48236:10:0;;-1:-1:-1;48228:31:0;;;;;;;;;47487:780;;;:::o;46636:803::-;46711:9;46703:48;;;;;-1:-1:-1;;;46703:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;46762:21;46786:8;46795:4;46786:14;;;;;;;;;;;;;;;;46835;;;:8;:14;;;;;;46850:10;46835:26;;;;;;;46880:11;;46786:14;;;;;;;;-1:-1:-1;46880:22:0;-1:-1:-1;46880:22:0;46872:53;;;;;-1:-1:-1;;;46872:53:0;;;;;;;;;;;;-1:-1:-1;;;46872:53:0;;;;;;;;;;;;;;;46938:16;46949:4;46938:10;:16::i;:::-;46965:15;46983:68;47035:4;:15;;;46983:47;47025:4;46983:37;46999:4;:20;;;46983:4;:11;;;:15;;:37;;;;:::i;:68::-;46965:86;-1:-1:-1;47066:11:0;;47062:81;;47094:37;47111:10;47123:7;47094:16;:37::i;:::-;47157:11;;47153:152;;47199:11;;:24;;47215:7;47199:15;:24::i;:::-;47185:38;;47238:12;;:55;;-1:-1:-1;;;;;47238:12:0;47272:10;47285:7;47238:25;:55::i;:::-;47349:20;;;;47333:11;;:47;;47375:4;;47333:37;;:15;:37::i;:47::-;47315:15;;;:65;47396:35;;;;;;;;47417:4;;47405:10;;47396:35;;;;;;;;;46636:803;;;;;:::o;40200:25::-;;;;:::o;44966:736::-;45018:21;45042:8;45051:4;45042:14;;;;;;;;;;;;;;;;;;45018:38;;45087:4;:20;;;45071:12;:36;45067:75;;45124:7;;;45067:75;45171:12;;:37;;;-1:-1:-1;;;45171:37:0;;45202:4;45171:37;;;;;;45152:16;;-1:-1:-1;;;;;45171:12:0;;:22;;:37;;;;;;;;;;;;;;:12;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45171:37:0;;-1:-1:-1;45223:13:0;45219:102;;-1:-1:-1;45276:12:0;45253:20;;;;:35;45303:7;;45219:102;45331:18;45352:49;45366:4;:20;;;45388:12;45352:13;:49::i;:::-;45331:70;;45412:18;45433:70;45487:15;;45433:49;45466:4;:15;;;45433:28;45448:12;;45433:10;:14;;:28;;;;:::i;:::-;:32;;:49::i;:70::-;45514:4;;45532:8;;45514:40;;;-1:-1:-1;;;45514:40:0;;-1:-1:-1;;;;;45532:8:0;;;45514:40;;;;;;;;;;;;45412:91;;-1:-1:-1;45514:4:0;;;:9;;:40;;;;;;;;;;;;;;;:4;;:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45588:60:0;;-1:-1:-1;45613:34:0;45638:8;45613:20;:10;45628:4;45613:14;:20::i;:34::-;45588:20;;;;;:24;:60::i;:::-;45565:20;;;:83;-1:-1:-1;;45682:12:0;45659:20;;;;:35;;;;-1:-1:-1;44966:736:0;;:::o;49156:356::-;49215:21;49239:8;49248:4;49239:14;;;;;;;;;;;;;;;;49288;;;:8;:14;;;;;;49303:10;49288:26;;;;;;;;49372:11;;49239:14;;;;;;;49325:12;;49239:14;;-1:-1:-1;49325:59:0;;-1:-1:-1;;;;;49325:12:0;;;;;49303:10;49325:25;:59::i;:::-;49436:11;;49400:48;;;;;;;49430:4;;49418:10;;49400:48;;;;;;;;;49473:1;49459:15;;;49485;;;;:19;-1:-1:-1;;49156:356:0:o;39580:26::-;;;-1:-1:-1;;;;;39580:26:0;;:::o;44710:180::-;44772:8;:15;44755:14;44798:85;44826:6;44820:3;:12;44798:85;;;44856:15;44867:3;44856:10;:15::i;:::-;44834:5;;44798:85;;;;44710:180;:::o;42641:483::-;2441:12;:10;:12::i;:::-;-1:-1:-1;;;;;2430:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2430:23:0;;2422:68;;;;;-1:-1:-1;;;2422:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2422:68:0;;;;;;;;;;;;;;;42773:11:::1;42769:61;;;42801:17;:15;:17::i;:::-;42840:22;42865:8;42874:4;42865:14;;;;;;;;;;;;;;;;;;:25;;;42840:50;;42929:11;42901:8;42910:4;42901:14;;;;;;;;;;;;;;;;;;:25;;:39;;;;42973:11;42955:14;:29;42951:166;;43019:52;43059:11;43019:35;43039:14;43019:15;;:19;;:35;;;;:::i;:::-;:39:::0;::::1;:52::i;:::-;43001:15;:70:::0;43086:19:::1;:17;:19::i;2861:148::-:0;2441:12;:10;:12::i;:::-;-1:-1:-1;;;;;2430:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2430:23:0;;2422:68;;;;;-1:-1:-1;;;2422:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2422:68:0;;;;;;;;;;;;;;;2968:1:::1;2952:6:::0;;2931:40:::1;::::0;-1:-1:-1;;;;;2952:6:0;;::::1;::::0;2931:40:::1;::::0;2968:1;;2931:40:::1;2999:1;2982:19:::0;;-1:-1:-1;;;;;;2982:19:0::1;::::0;;2861:148::o;43868:759::-;43941:7;43961:21;43985:8;43994:4;43985:14;;;;;;;;;;;;;;;;44034;;;:8;:14;;;;;;-1:-1:-1;;;;;44034:21:0;;;;;;;;;;;43985:14;;;;;;;44092:20;;;;44142:12;;:37;;-1:-1:-1;;;44142:37:0;;44173:4;44142:37;;;;;;;;;43985:14;;-1:-1:-1;44034:21:0;;44092:20;;43985:14;;44142:12;;;;;:22;;:37;;;;;43985:14;;44142:37;;;;;:12;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44142:37:0;44209:20;;;;44142:37;;-1:-1:-1;44194:12:0;:35;:52;;;;-1:-1:-1;44233:13:0;;;44194:52;44190:349;;;44263:18;44284:49;44298:4;:20;;;44320:12;44284:13;:49::i;:::-;44263:70;;44348:18;44369:70;44423:15;;44369:49;44402:4;:15;;;44369:28;44384:12;;44369:10;:14;;:28;;;;:::i;:70::-;44348:91;-1:-1:-1;44472:55:0;44492:34;44517:8;44492:20;44348:91;44507:4;44492:14;:20::i;:34::-;44472:15;;:19;:55::i;:::-;44454:73;;44190:349;;;44556:63;44603:4;:15;;;44556:42;44593:4;44556:32;44572:15;44556:4;:11;;;:15;;:32;;;;:::i;:63::-;44549:70;;;;;;43868:759;;;;;:::o;41467:266::-;2441:12;:10;:12::i;:::-;-1:-1:-1;;;;;2430:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2430:23:0;;2422:68;;;;;-1:-1:-1;;;2422:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2422:68:0;;;;;;;;;;;;;;;41570:11:::1;41566:61;;;41598:17;:15;:17::i;:::-;41658:12;::::0;41642:44:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;::::1;-1:-1:-1::0;41697:12:0::1;:28:::0;41467:266::o;39797:35::-;;;;:::o;2210:87::-;2256:7;2283:6;-1:-1:-1;;;;;2283:6:0;2210:87;:::o;43661:143::-;43779:16;;43733:7;;43760:36;;:14;:3;43768:5;43760:7;:14::i;:36::-;43753:43;43661:143;-1:-1:-1;;;43661:143:0:o;39950:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39716:27::-;;;;:::o;41182:277::-;2441:12;:10;:12::i;:::-;-1:-1:-1;;;;;2430:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2430:23:0;;2422:68;;;;;-1:-1:-1;;;2422:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2422:68:0;;;;;;;;;;;;;;;41285:10:::1;41281:60;;;41312:17;:15;:17::i;:::-;41370:16;::::0;41356:49:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;::::1;-1:-1:-1::0;41416:16:0::1;:35:::0;41182:277::o;39641:29::-;;;-1:-1:-1;;;;;39641:29:0;;:::o;45771:813::-;45846:9;45837:46;;;;;-1:-1:-1;;;45837:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;45896:21;45920:8;45929:4;45920:14;;;;;;;;;;;;;;;;45969;;;:8;:14;;;;;;45984:10;45969:26;;;;;;;45920:14;;;;;;;;-1:-1:-1;46006:16:0;45978:4;46006:10;:16::i;:::-;46037:11;;:15;46033:237;;46069:15;46087:68;46139:4;:15;;;46087:47;46129:4;46087:37;46103:4;:20;;;46087:4;:11;;;:15;;:37;;;;:::i;:68::-;46069:86;-1:-1:-1;46174:11:0;;46170:89;;46206:37;46223:10;46235:7;46206:16;:37::i;:::-;46033:237;;46284:11;;46280:171;;46312:12;;:74;;-1:-1:-1;;;;;46312:12:0;46350:10;46371:4;46378:7;46312:29;:74::i;:::-;46415:11;;:24;;46431:7;46415:15;:24::i;:::-;46401:38;;46280:171;46495:20;;;;46479:11;;:47;;46521:4;;46479:37;;:15;:37::i;:47::-;46461:15;;;:65;46542:34;;;;;;;;46562:4;;46550:10;;46542:34;;;;;;;;;45771:813;;;;:::o;3164:244::-;2441:12;:10;:12::i;:::-;-1:-1:-1;;;;;2430:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2430:23:0;;2422:68;;;;;-1:-1:-1;;;2422:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2422:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3253:22:0;::::1;3245:73;;;;-1:-1:-1::0;;;3245:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3355:6;::::0;;3334:38:::1;::::0;-1:-1:-1;;;;;3334:38:0;;::::1;::::0;3355:6;::::1;::::0;3334:38:::1;::::0;::::1;3383:6;:17:::0;;-1:-1:-1;;;;;;3383:17:0::1;-1:-1:-1::0;;;;;3383:17:0;;;::::1;::::0;;;::::1;::::0;;3164:244::o;7099:220::-;7157:7;7181:6;7177:20;;-1:-1:-1;7196:1:0;7189:8;;7177:20;7220:5;;;7224:1;7220;:5;:1;7244:5;;;;;:10;7236:56;;;;-1:-1:-1;;;7236:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7797:153;7855:7;7887:1;7883;:5;7875:44;;;;;-1:-1:-1;;;7875:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7941:1;7937;:5;;;;;;;7797:153;-1:-1:-1;;;7797:153:0:o;6682:158::-;6740:7;6773:1;6768;:6;;6760:49;;;;;-1:-1:-1;;;6760:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6827:5:0;;;6682:158::o;49626:123::-;49702:8;;:39;;;-1:-1:-1;;;49702:39:0;;-1:-1:-1;;;;;49702:39:0;;;;;;;;;;;;;;;:8;;;;;:25;;:39;;;;;:8;;:39;;;;;;;:8;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49626:123;;:::o;22419:177::-;22529:58;;;-1:-1:-1;;;;;22529:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22529:58:0;-1:-1:-1;;;22529:58:0;;;22502:86;;22522:5;;22502:19;:86::i;:::-;22419:177;;;:::o;737:106::-;825:10;737:106;:::o;6220:179::-;6278:7;6310:5;;;6334:6;;;;6326:46;;;;;-1:-1:-1;;;6326:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;43132:453;43198:8;:15;43181:14;43272:1;43253:115;43281:6;43275:3;:12;43253:115;;;43320:36;43331:8;43340:3;43331:13;;;;;;;;;;;;;;;;;;:24;;;43320:6;:10;;:36;;;;:::i;:::-;43311:45;-1:-1:-1;43289:5:0;;43253:115;;;-1:-1:-1;43382:11:0;;43378:200;;43419:13;:6;43430:1;43419:10;:13::i;:::-;43410:22;;43465:55;43513:6;43465:43;43485:8;43494:1;43485:11;;;;;;;;;;;;;;;;;;:22;;;43465:15;;:19;;:43;;;;:::i;:55::-;43447:15;:73;;;;43560:6;43535:8;43544:1;43535:11;;;;;;;;;;;;;;;;;;:22;;:31;;;;43132:453;;:::o;22604:205::-;22732:68;;;-1:-1:-1;;;;;22732:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22732:68:0;-1:-1:-1;;;22732:68:0;;;22705:96;;22725:5;;24724:761;25148:23;25174:69;25202:4;25174:69;;;;;;;;;;;;;;;;;25182:5;-1:-1:-1;;;;;25174:27:0;;;:69;;;;;:::i;:::-;25258:17;;25148:95;;-1:-1:-1;25258:21:0;25254:224;;25400:10;25389:30;;;;;;;;;;;;;;;-1:-1:-1;25389:30:0;25381:85;;;;-1:-1:-1;;;25381:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17406:195;17509:12;17541:52;17563:6;17571:4;17577:1;17580:12;17541:21;:52::i;:::-;17534:59;17406:195;-1:-1:-1;;;;17406:195:0:o;18458:530::-;18585:12;18643:5;18618:21;:30;;18610:81;;;;-1:-1:-1;;;18610:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18710:18;18721:6;18710:10;:18::i;:::-;18702:60;;;;;-1:-1:-1;;;18702:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18836:12;18850:23;18877:6;-1:-1:-1;;;;;18877:11:0;18897:5;18905:4;18877:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;18877:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18835:75;;;;18928:52;18946:7;18955:10;18967:12;18928:17;:52::i;:::-;18921:59;18458:530;-1:-1:-1;;;;;;;18458:530:0:o;14488:422::-;14855:20;14894:8;;;14488:422::o;20998:742::-;21113:12;21142:7;21138:595;;;-1:-1:-1;21173:10:0;21166:17;;21138:595;21287:17;;:21;21283:439;;21550:10;21544:17;21611:15;21598:10;21594:2;21590:19;21583:44;21498:148;21693:12;21686:20;;-1:-1:-1;;;21686:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://98af87078c219932bfb4683de39aa0366ffce7195b729496ee75bbe3c8d4982d
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.