More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 18,001 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Dev Address | 68678176 | 15 days ago | IN | 0 POL | 0.00329984 | ||||
Set Fee Address | 68678169 | 15 days ago | IN | 0 POL | 0.00355989 | ||||
Withdraw | 37134373 | 819 days ago | IN | 0 POL | 0.00964545 | ||||
Deposit | 37059354 | 821 days ago | IN | 0 POL | 0.01702264 | ||||
Deposit | 36220186 | 841 days ago | IN | 0 POL | 0.00748189 | ||||
Withdraw | 35743661 | 853 days ago | IN | 0 POL | 0.00295534 | ||||
Deposit | 35710803 | 854 days ago | IN | 0 POL | 0.00548853 | ||||
Withdraw | 35638571 | 856 days ago | IN | 0 POL | 0.00602917 | ||||
Withdraw | 35431944 | 861 days ago | IN | 0 POL | 0.01251997 | ||||
Withdraw | 35431928 | 861 days ago | IN | 0 POL | 0.00892752 | ||||
Deposit | 35399092 | 862 days ago | IN | 0 POL | 0.01294413 | ||||
Deposit | 35370569 | 862 days ago | IN | 0 POL | 0.04840837 | ||||
Withdraw | 35370049 | 862 days ago | IN | 0 POL | 0.02850681 | ||||
Deposit | 35369488 | 862 days ago | IN | 0 POL | 0.04461883 | ||||
Withdraw | 32397448 | 935 days ago | IN | 0 POL | 0.00371216 | ||||
Deposit | 32386088 | 935 days ago | IN | 0 POL | 0.00763752 | ||||
Withdraw | 32381115 | 936 days ago | IN | 0 POL | 0.00278409 | ||||
Withdraw | 31731105 | 953 days ago | IN | 0 POL | 0.00359317 | ||||
Deposit | 31730988 | 953 days ago | IN | 0 POL | 0.0182298 | ||||
Withdraw | 31044316 | 971 days ago | IN | 0 POL | 0.0061332 | ||||
Withdraw | 30102418 | 995 days ago | IN | 0 POL | 0.00477907 | ||||
Deposit | 30102339 | 996 days ago | IN | 0 POL | 0.01108265 | ||||
Withdraw | 29490766 | 1011 days ago | IN | 0 POL | 0.00381939 | ||||
Withdraw | 29365329 | 1014 days ago | IN | 0 POL | 0.00283637 | ||||
Deposit | 29284505 | 1016 days ago | IN | 0 POL | 0.00466089 |
Loading...
Loading
Contract Name:
MasterChef
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-11-10 */ /** *Submitted for verification at polygonscan.com on 2021-11-08 */ /** *Submitted for verification at polygonscan.com on 2021-11-08 */ /** *Submitted for verification at polygonscan.com on 2021-09-23 */ // SPDX-License-Identifier: MIT pragma solidity 0.6.12; /* * @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; } } /** * @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. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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); } /** * @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,Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; uint256 private MAXCAP; uint256 constant MAXCAPSUPPLY=6400*10**18; 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } function minted() public view returns (uint256) { return MAXCAP; } function maxSupply() public pure returns (uint256) { return MAXCAPSUPPLY; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view 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 is 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 { _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 { } } /** * @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"); } } } /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } contract LIME is ERC20('PolyLime', 'LIME') { // @notice Creates `_amount` token to `_to`. Must only be called by the owner (MasterChef). function mint(address _to, uint256 _amount) public onlyOwner { _mint(_to, _amount); _moveDelegates(address(0), _delegates[_to], _amount); } // Copied and modified from YAM code: // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol // Which is copied and modified from COMPOUND: // https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol // @notice A record of each accounts delegate mapping (address => address) internal _delegates; // @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint256 votes; } // @notice A record of votes checkpoints for each account, by index mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; // @notice The number of checkpoints for each account mapping (address => uint32) public numCheckpoints; // @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); // @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); /// @notice A record of states for signing / validating signatures mapping (address => uint) public nonces; // @notice An event thats emitted when an account changes its delegate event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); // @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance); /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegator The address to get delegatee for */ function delegates(address delegator) external view returns (address) { return _delegates[delegator]; } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) external { return _delegate(msg.sender, delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig( address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s ) external { bytes32 domainSeparator = keccak256( abi.encode( DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this) ) ); bytes32 structHash = keccak256( abi.encode( DELEGATION_TYPEHASH, delegatee, nonce, expiry ) ); bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", domainSeparator, structHash ) ); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), "TOKEN::delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "TOKEN::delegateBySig: invalid nonce"); require(now <= expiry, "TOKEN::delegateBySig: signature expired"); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint256) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint blockNumber) external view returns (uint256) { require(blockNumber < block.number, "TOKEN::getPriorVotes: not yet determined"); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } function _delegate(address delegator, address delegatee) internal { address currentDelegate = _delegates[delegator]; uint256 delegatorBalance = balanceOf(delegator); // balance of underlying TOKENs (not scaled); _delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveDelegates(currentDelegate, delegatee, delegatorBalance); } function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { // decrease old representative uint32 srcRepNum = numCheckpoints[srcRep]; uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint256 srcRepNew = srcRepOld.sub(amount); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { // increase new representative uint32 dstRepNum = numCheckpoints[dstRep]; uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint256 dstRepNew = dstRepOld.add(amount); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint( address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes ) internal { uint32 blockNumber = safe32(block.number, "TOKEN::_writeCheckpoint: block number exceeds 32 bits"); if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function safe32(uint n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function getChainId() internal pure returns (uint) { uint256 chainId; assembly { chainId := chainid() } return chainId; } } interface IReferral { /** * @dev Record referral. */ function recordReferral(address user, address referrer) external; /** * @dev Get the referrer address that referred the user. */ function getReferrer(address user) external view returns (address); } // MasterChef is the master of Lime. He can make Lime 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 Lime 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, ReentrancyGuard { 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 Limees // entitled to a user but is pending to be distributed is: // // pending reward = (user.amount * pool.accLimePerShare) - user.rewardDebt // // Whenever a user deposits or withdraws LP tokens to a pool. Here's what happens: // 1. The pool's `accLimePerShare` (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. Limees to distribute per block. uint256 lastRewardBlock; // Last block number that Limees distribution occurs. uint256 accLimePerShare; // Accumulated Limees per share, times 1e18. See below. uint16 depositFeeBP; // Deposit fee in basis points uint256 lpSupply; } // The Lime TOKEN! LIME public immutable Lime; address public devAddress; address public feeAddress; // address public vaultAddress; // Lime tokens created per block. uint256 public LimePerBlock = 0.005 ether; uint256 constant MAX_LIME_PERBLOCK= 0.02 ether; // 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 Lime mining starts. uint256 public startBlock; // Lime referral contract address. IReferral public immutable referral; // Referral commission rate in basis points. uint16 public referralCommissionRate = 200; // Max referral commission rate: 5%. uint16 public constant MAXIMUM_REFERRAL_COMMISSION_RATE = 500; event Add(uint256 indexed allocPoint, IERC20 indexed lpToken, uint256 depositFeeBP); event Set(uint256 indexed pid, uint256 indexed allocPoint, uint256 depositFeeBP); event SetReferralCommissionRate( uint256 indexed referralCommissionRate); event UpdateStartBlock( uint256 indexed 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 SetFeeAddress(address indexed user, address indexed newAddress); event SetDevAddress(address indexed user, address indexed newAddress); event UpdateEmissionRate(address indexed user, uint256 LimePerBlock); event ReferralCommissionPaid(address indexed user, address indexed referrer, uint256 commissionAmount); constructor( LIME _Lime, uint256 _startBlock, address _devAddress, address _feeAddress, IReferral _referral ) public { Lime = _Lime; startBlock = _startBlock; devAddress = _devAddress; feeAddress = _feeAddress; referral=_referral; } function poolLength() external view returns (uint256) { return poolInfo.length; } mapping(IERC20 => bool) public poolExistence; modifier nonDuplicated(IERC20 _lpToken) { require(poolExistence[_lpToken] == false, "nonDuplicated: duplicated"); _; } // Add a new lp to the pool. Can only be called by the owner. function add(uint256 _allocPoint, IERC20 _lpToken, uint16 _depositFeeBP) external onlyOwner nonDuplicated(_lpToken) { require(_depositFeeBP <= 400, "add: invalid deposit fee basis points"); _lpToken.balanceOf(address(this)); uint256 lastRewardBlock = block.number > startBlock ? block.number : startBlock; totalAllocPoint = totalAllocPoint.add(_allocPoint); poolExistence[_lpToken] = true; poolInfo.push(PoolInfo({ lpToken: _lpToken, allocPoint: _allocPoint, lastRewardBlock: lastRewardBlock, accLimePerShare: 0, depositFeeBP: _depositFeeBP, lpSupply:0 })); emit Add(_allocPoint,_lpToken,_depositFeeBP); } // Update the given pool's Lime allocation point and deposit fee. Can only be called by the owner. function set(uint256 _pid, uint256 _allocPoint, uint16 _depositFeeBP) external onlyOwner { require(_depositFeeBP <= 400, "set: invalid deposit fee basis points"); totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid].allocPoint).add(_allocPoint); poolInfo[_pid].allocPoint = _allocPoint; poolInfo[_pid].depositFeeBP = _depositFeeBP; emit Set(_pid,_allocPoint,_depositFeeBP); } // Return reward multiplier over the given _from to _to block. function getMultiplier(uint256 _from, uint256 _to) public pure returns (uint256) { return _to.sub(_from); } // View function to see pending Limees on frontend. function pendingLime(uint256 _pid, address _user) external view returns (uint256) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accLimePerShare = pool.accLimePerShare; if (block.number > pool.lastRewardBlock && pool.lpSupply != 0 && totalAllocPoint>0) { uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); uint256 LimeReward = multiplier.mul(LimePerBlock).mul(pool.allocPoint).div(totalAllocPoint); if (Lime.minted().add(LimeReward) > Lime.maxSupply()) { LimeReward = Lime.maxSupply().sub(Lime.minted()); } accLimePerShare = accLimePerShare.add(LimeReward.mul(1e18).div(pool.lpSupply)); } return user.amount.mul(accLimePerShare).div(1e18).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; } if (pool.lpSupply == 0 || pool.allocPoint == 0) { pool.lastRewardBlock = block.number; return; } uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); uint256 LimeReward = multiplier.mul(LimePerBlock).mul(pool.allocPoint).div(totalAllocPoint); uint256 devReward = LimeReward.div(10); uint256 currentSupply = Lime.minted(); uint256 maxSupply = Lime.maxSupply(); uint256 totalRewards = currentSupply.add(devReward).add(LimeReward); if (totalRewards <= maxSupply) { // mint devReward normal as not at maxSupply Lime.mint(devAddress, devReward); } else { // mint the difference only to MC, update LimeReward LimeReward= maxSupply.sub(currentSupply); } if (LimeReward != 0) { // only mint, calculate and update if LimeReward is non 0 Lime.mint(address(this), LimeReward); pool.accLimePerShare = pool.accLimePerShare.add(LimeReward.mul(1e18).div(pool.lpSupply)); } pool.lastRewardBlock = block.number; } // Deposit LP tokens to MasterChef for Lime allocation. function deposit(uint256 _pid, uint256 _amount, address _referrer) public nonReentrant { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; updatePool(_pid); if (_amount > 0 && address(referral) != address(0) && _referrer != address(0) && _referrer != msg.sender) { referral.recordReferral(msg.sender, _referrer); } if (user.amount > 0) { uint256 pending = user.amount.mul(pool.accLimePerShare).div(1e18).sub(user.rewardDebt); if (pending > 0) { safeLimeTransfer(msg.sender, pending); payReferralCommission(msg.sender, pending); } } if (_amount > 0) { uint256 balancebefore=pool.lpToken.balanceOf(address(this)); pool.lpToken.safeTransferFrom(msg.sender, address(this), _amount); uint256 final_amount=pool.lpToken.balanceOf(address(this)).sub(balancebefore); if (pool.depositFeeBP > 0) { uint256 depositFee = final_amount.mul(pool.depositFeeBP).div(10000); pool.lpToken.safeTransfer(feeAddress, depositFee); user.amount = user.amount.add(final_amount).sub(depositFee); pool.lpSupply=pool.lpSupply.add(final_amount).sub(depositFee); } else { user.amount = user.amount.add(final_amount); pool.lpSupply=pool.lpSupply.add(final_amount); } } user.rewardDebt = user.amount.mul(pool.accLimePerShare).div(1e18); emit Deposit(msg.sender, _pid, _amount); } // Withdraw LP tokens from MasterChef. function withdraw(uint256 _pid, uint256 _amount) public nonReentrant { 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.accLimePerShare).div(1e18).sub(user.rewardDebt); if (pending > 0) { safeLimeTransfer(msg.sender, pending); payReferralCommission(msg.sender, pending); } if (_amount > 0) { user.amount = user.amount.sub(_amount); pool.lpToken.safeTransfer(msg.sender, _amount); pool.lpSupply=pool.lpSupply.sub(_amount); } user.rewardDebt = user.amount.mul(pool.accLimePerShare).div(1e18); emit Withdraw(msg.sender, _pid, _amount); } // Withdraw without caring about rewards. EMERGENCY ONLY. function emergencyWithdraw(uint256 _pid) public nonReentrant { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; uint256 amount = user.amount; user.amount = 0; user.rewardDebt = 0; if (pool.lpSupply >= amount) { pool.lpSupply = pool.lpSupply.sub(amount); } else { pool.lpSupply = 0; } pool.lpToken.safeTransfer(msg.sender, amount); emit EmergencyWithdraw(msg.sender, _pid, amount); } // Safe Lime transfer function, just in case if rounding error causes pool to not have enough FOXs. function safeLimeTransfer(address _to, uint256 _amount) internal { uint256 LimeBal = Lime.balanceOf(address(this)); bool transferSuccess = false; if (_amount > LimeBal) { transferSuccess = Lime.transfer(_to, LimeBal); } else { transferSuccess = Lime.transfer(_to, _amount); } require(transferSuccess, "safeLimeTransfer: Transfer failed"); } // Update dev address by the previous dev. function setDevAddress(address _devAddress) external onlyOwner { require(_devAddress != address(0),"non-zero"); devAddress = _devAddress; emit SetDevAddress(msg.sender, _devAddress); } function setFeeAddress(address _feeAddress) external onlyOwner { require(_feeAddress != address(0),"non-zero"); feeAddress = _feeAddress; emit SetFeeAddress(msg.sender, _feeAddress); } function updateEmissionRate(uint256 _LimePerBlock) external onlyOwner { require(_LimePerBlock<=MAX_LIME_PERBLOCK,"Too high"); massUpdatePools(); LimePerBlock = _LimePerBlock; emit UpdateEmissionRate(msg.sender, _LimePerBlock); } // Update referral commission rate by the owner function setReferralCommissionRate(uint16 _referralCommissionRate) external onlyOwner { require(_referralCommissionRate <= MAXIMUM_REFERRAL_COMMISSION_RATE, "setReferralCommissionRate: invalid referral commission rate basis points"); referralCommissionRate = _referralCommissionRate; emit SetReferralCommissionRate(_referralCommissionRate); } // Pay referral commission to the referrer who referred this user. function payReferralCommission(address _user, uint256 _pending) internal { if (address(referral) != address(0) && referralCommissionRate > 0) { address referrer = referral.getReferrer(_user); uint256 commissionAmount = _pending.mul(referralCommissionRate).div(10000); if (referrer != address(0) && commissionAmount > 0) { uint256 maxSupply = Lime.maxSupply(); uint256 currentSupply = Lime.minted(); if (currentSupply >= maxSupply) { // don't mint return; } uint256 totalRewards = currentSupply.add(commissionAmount); if (totalRewards > maxSupply) { // update commissionAmount to be difference commissionAmount = maxSupply.sub(currentSupply); } Lime.mint(referrer, commissionAmount); emit ReferralCommissionPaid(_user, referrer, commissionAmount); } } } // Only update before start of farm function updateStartBlock(uint256 _newStartBlock) external onlyOwner { require(block.number < startBlock, "cannot change start block if farm has already started"); require(block.number < _newStartBlock, "cannot set start block in the past"); uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { PoolInfo storage pool = poolInfo[pid]; pool.lastRewardBlock = _newStartBlock; } startBlock = _newStartBlock; emit UpdateStartBlock(startBlock); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract LIME","name":"_Lime","type":"address"},{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"address","name":"_devAddress","type":"address"},{"internalType":"address","name":"_feeAddress","type":"address"},{"internalType":"contract IReferral","name":"_referral","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"allocPoint","type":"uint256"},{"indexed":true,"internalType":"contract IERC20","name":"lpToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"depositFeeBP","type":"uint256"}],"name":"Add","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":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"referrer","type":"address"},{"indexed":false,"internalType":"uint256","name":"commissionAmount","type":"uint256"}],"name":"ReferralCommissionPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"allocPoint","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"depositFeeBP","type":"uint256"}],"name":"Set","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"SetDevAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"SetFeeAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"referralCommissionRate","type":"uint256"}],"name":"SetReferralCommissionRate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"LimePerBlock","type":"uint256"}],"name":"UpdateEmissionRate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"startBlock","type":"uint256"}],"name":"UpdateStartBlock","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":"Lime","outputs":[{"internalType":"contract LIME","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LimePerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXIMUM_REFERRAL_COMMISSION_RATE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_lpToken","type":"address"},{"internalType":"uint16","name":"_depositFeeBP","type":"uint16"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_referrer","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"getMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"pendingLime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"name":"poolExistence","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"accLimePerShare","type":"uint256"},{"internalType":"uint16","name":"depositFeeBP","type":"uint16"},{"internalType":"uint256","name":"lpSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"referral","outputs":[{"internalType":"contract IReferral","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"referralCommissionRate","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"uint16","name":"_depositFeeBP","type":"uint16"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_devAddress","type":"address"}],"name":"setDevAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeAddress","type":"address"}],"name":"setFeeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_referralCommissionRate","type":"uint16"}],"name":"setReferralCommissionRate","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":"_LimePerBlock","type":"uint256"}],"name":"updateEmissionRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newStartBlock","type":"uint256"}],"name":"updateStartBlock","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
60c06040526611c37937e0800060045560006007556009805461ffff191660c81790553480156200002f57600080fd5b5060405162002dff38038062002dff833981810160405260a08110156200005557600080fd5b5080516020820151604083015160608401516080909401519293919290919060006200008062000124565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180556001600160601b0319606095861b8116608052600894909455600280546001600160a01b039485166001600160a01b031991821617909155600380549390941692169190911790915590911b1660a05262000128565b3390565b60805160601c60a05160601c612c53620001ac600039806109c752806118e0528061193b52806123255280612369525080610e6f5280610f125280610fcb528061106c5280611487528061152a52806115ad528061164a5280611d4e52806120ee5280612193528061223d528061244352806124e6528061258f5250612c536000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806355dbc826116101045780638dbdbe6d116100a2578063d30ef61b11610071578063d30ef61b14610526578063f13b70ff1461052e578063f2fde38b14610536578063fac2b9ba1461055c576101da565b80638dbdbe6d1461044f57806393f1a40b14610481578063cbd258b5146104c6578063d0d41fe114610500576101da565b806384f239d7116100de57806384f239d7146103d25780638705fcd4146103fe5780638da5cb5b146104245780638dbb1e3a1461042c576101da565b806355dbc826146103a1578063630b5ba1146103c2578063715018a6146103ca576101da565b806324bcb38c1161017c57806348b22bfb1161014b57806348b22bfb1461034057806348cd4cb11461035f57806351eb05a6146103675780635312ea8e14610384576101da565b806324bcb38c146102e05780633ad10ef61461030d5780634127535814610315578063441a3e701461031d576101da565b80630ba84cd2116101b85780630ba84cd2146102395780631441a5a9146102565780631526fe271461027a57806317caf6f1146102d8576101da565b806306539275146101df578063081e3eda146102175780630afdf4f214610231575b600080fd5b610215600480360360608110156101f557600080fd5b5080359060208101356001600160a01b0316906040013561ffff16610579565b005b61021f6108d4565b60408051918252519081900360200190f35b61021f6108da565b6102156004803603602081101561024f57600080fd5b50356108e0565b61025e6109c5565b604080516001600160a01b039092168252519081900360200190f35b6102976004803603602081101561029057600080fd5b50356109e9565b604080516001600160a01b039097168752602087019590955285850193909352606085019190915261ffff16608084015260a0830152519081900360c00190f35b61021f610a3d565b610215600480360360608110156102f657600080fd5b508035906020810135906040013561ffff16610a43565b61025e610bb5565b61025e610bc4565b6102156004803603604081101561033357600080fd5b5080359060200135610bd3565b610348610dbd565b6040805161ffff9092168252519081900360200190f35b61021f610dc3565b6102156004803603602081101561037d57600080fd5b5035610dc9565b6102156004803603602081101561039a57600080fd5b503561110f565b610215600480360360208110156103b757600080fd5b503561ffff16611239565b610215611316565b610215611339565b61021f600480360360408110156103e857600080fd5b50803590602001356001600160a01b03166113db565b6102156004803603602081101561041457600080fd5b50356001600160a01b0316611727565b61025e611811565b61021f6004803603604081101561044257600080fd5b5080359060200135611820565b6102156004803603606081101561046557600080fd5b50803590602081013590604001356001600160a01b0316611833565b6104ad6004803603604081101561049757600080fd5b50803590602001356001600160a01b0316611c1f565b6040805192835260208301919091528051918290030190f35b6104ec600480360360208110156104dc57600080fd5b50356001600160a01b0316611c43565b604080519115158252519081900360200190f35b6102156004803603602081101561051657600080fd5b50356001600160a01b0316611c58565b610348611d42565b61025e611d4c565b6102156004803603602081101561054c57600080fd5b50356001600160a01b0316611d70565b6102156004803603602081101561057257600080fd5b5035611e68565b610581611faf565b6000546001600160a01b039081169116146105d1576040805162461bcd60e51b81526020600482018190526024820152600080516020612b9f833981519152604482015290519081900360640190fd5b6001600160a01b0382166000908152600a6020526040902054829060ff1615610641576040805162461bcd60e51b815260206004820152601960248201527f6e6f6e4475706c6963617465643a206475706c69636174656400000000000000604482015290519081900360640190fd5b6101908261ffff1611156106865760405162461bcd60e51b8152600401808060200182810382526025815260200180612aa56025913960400191505060405180910390fd5b604080516370a0823160e01b815230600482015290516001600160a01b038516916370a08231916024808301926020929190829003018186803b1580156106cc57600080fd5b505afa1580156106e0573d6000803e3d6000fd5b505050506040513d60208110156106f657600080fd5b5050600854600090431161070c5760085461070e565b435b60075490915061071e9086611fb3565b6007556001600160a01b038481166000818152600a602090815260408083208054600160ff199091168117909155815160c0810183528581528084018c81528184018981526060830187815261ffff8d81166080860181815260a087018b815260058054998a018155909b5295517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0600690980297880180546001600160a01b03191691909d1617909b5592517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db186015590517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db2850155517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db384015590517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db48301805461ffff19169190921617905592517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db59093019290925581519384529051919288927fe5b6779c4a18cbf7e4bce3a6c308b215c678f316648b832318a03841664fc2e9929181900390910190a35050505050565b60055490565b60045481565b6108e8611faf565b6000546001600160a01b03908116911614610938576040805162461bcd60e51b81526020600482018190526024820152600080516020612b9f833981519152604482015290519081900360640190fd5b66470de4df82000081111561097f576040805162461bcd60e51b81526020600482015260086024820152670a8dede40d0d2ced60c31b604482015290519081900360640190fd5b610987611316565b600481905560408051828152905133917fe2492e003bbe8afa53088b406f0c1cb5d9e280370fc72a74cf116ffd343c4053919081900360200190a250565b7f000000000000000000000000000000000000000000000000000000000000000081565b600581815481106109f657fe5b60009182526020909120600690910201805460018201546002830154600384015460048501546005909501546001600160a01b0390941695509193909261ffff9091169086565b60075481565b610a4b611faf565b6000546001600160a01b03908116911614610a9b576040805162461bcd60e51b81526020600482018190526024820152600080516020612b9f833981519152604482015290519081900360640190fd5b6101908161ffff161115610ae05760405162461bcd60e51b8152600401808060200182810382526025815260200180612b7a6025913960400191505060405180910390fd5b610b1d82610b1760058681548110610af457fe5b90600052602060002090600602016001015460075461200d90919063ffffffff16565b90611fb3565b6007819055508160058481548110610b3157fe5b9060005260206000209060060201600101819055508060058481548110610b5457fe5b600091825260209182902060069190910201600401805461ffff191661ffff93841617905560408051928416835251849286927f0b21d5252af0bf3501a80676d626577e67cf86107154a76664b5b7994cc8fd8c92918290030190a3505050565b6002546001600160a01b031681565b6003546001600160a01b031681565b60026001541415610c2b576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600181905550600060058381548110610c4257fe5b6000918252602080832086845260068083526040808620338752909352919093208054929091029092019250831115610cb7576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b610cc084610dc9565b6000610cfd8260010154610cf7670de0b6b3a7640000610cf18760030154876000015461204f90919063ffffffff16565b906120a8565b9061200d565b90508015610d1957610d0f33826120ea565b610d193382612323565b8315610d58578154610d2b908561200d565b82558254610d43906001600160a01b03163386612667565b6005830154610d52908561200d565b60058401555b60038301548254610d7691670de0b6b3a764000091610cf19161204f565b6001830155604080518581529051869133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a3505060018055505050565b6101f481565b60085481565b600060058281548110610dd857fe5b9060005260206000209060060201905080600201544311610df9575061110c565b60058101541580610e0c57506001810154155b15610e1d574360029091015561110c565b6000610e2d826002015443611820565b90506000610e5a600754610cf18560010154610e546004548761204f90919063ffffffff16565b9061204f565b90506000610e6982600a6120a8565b905060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634f02c4206040518163ffffffff1660e01b815260040160206040518083038186803b158015610ec657600080fd5b505afa158015610eda573d6000803e3d6000fd5b505050506040513d6020811015610ef057600080fd5b50516040805163d5abeb0160e01b815290519192506000916001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163d5abeb01916004808301926020929190829003018186803b158015610f5857600080fd5b505afa158015610f6c573d6000803e3d6000fd5b505050506040513d6020811015610f8257600080fd5b505190506000610f9685610b178587611fb3565b905081811161103257600254604080516340c10f1960e01b81526001600160a01b0392831660048201526024810187905290517f0000000000000000000000000000000000000000000000000000000000000000909216916340c10f199160448082019260009290919082900301818387803b15801561101557600080fd5b505af1158015611029573d6000803e3d6000fd5b5050505061103f565b61103c828461200d565b94505b84156110fb57604080516340c10f1960e01b81523060048201526024810187905290516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016916340c10f1991604480830192600092919082900301818387803b1580156110b357600080fd5b505af11580156110c7573d6000803e3d6000fd5b50505060058801546110f591506110ea90610cf188670de0b6b3a764000061204f565b600389015490611fb3565b60038801555b438760020181905550505050505050505b50565b60026001541415611167576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260018190555060006005828154811061117e57fe5b6000918252602080832085845260068083526040808620338752909352918420805485825560018201959095559290910201600581015490935090919081116111da5760058301546111d0908261200d565b60058401556111e2565b600060058401555b82546111f8906001600160a01b03163383612667565b604080518281529051859133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a35050600180555050565b611241611faf565b6000546001600160a01b03908116911614611291576040805162461bcd60e51b81526020600482018190526024820152600080516020612b9f833981519152604482015290519081900360640190fd5b6101f461ffff821611156112d65760405162461bcd60e51b8152600401808060200182810382526048815260200180612aca6048913960600191505060405180910390fd5b6009805461ffff191661ffff83169081179091556040517fafbef49f2e149ae20a201034ffbdc25c493050d9aaa4b9a80d992cfc5782151290600090a250565b60055460005b818110156113355761132d81610dc9565b60010161131c565b5050565b611341611faf565b6000546001600160a01b03908116911614611391576040805162461bcd60e51b81526020600482018190526024820152600080516020612b9f833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600080600584815481106113eb57fe5b60009182526020808320878452600680835260408086206001600160a01b038a1687529093529190932091029091016003810154600282015491935090431180156114395750600583015415155b801561144757506000600754115b156116f057600061145c846002015443611820565b90506000611483600754610cf18760010154610e546004548761204f90919063ffffffff16565b90507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d5abeb016040518163ffffffff1660e01b815260040160206040518083038186803b1580156114de57600080fd5b505afa1580156114f2573d6000803e3d6000fd5b505050506040513d602081101561150857600080fd5b505160408051630278162160e51b815290516115a29184916001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001691634f02c420916004808301926020929190829003018186803b15801561157057600080fd5b505afa158015611584573d6000803e3d6000fd5b505050506040513d602081101561159a57600080fd5b505190611fb3565b11156116c5576116c27f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634f02c4206040518163ffffffff1660e01b815260040160206040518083038186803b15801561160457600080fd5b505afa158015611618573d6000803e3d6000fd5b505050506040513d602081101561162e57600080fd5b50516040805163d5abeb0160e01b815290516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163d5abeb01916004808301926020929190829003018186803b15801561169057600080fd5b505afa1580156116a4573d6000803e3d6000fd5b505050506040513d60208110156116ba57600080fd5b50519061200d565b90505b60058501546116eb906116e490610cf184670de0b6b3a764000061204f565b8490611fb3565b925050505b61171b8260010154610cf7670de0b6b3a7640000610cf185876000015461204f90919063ffffffff16565b93505050505b92915050565b61172f611faf565b6000546001600160a01b0390811691161461177f576040805162461bcd60e51b81526020600482018190526024820152600080516020612b9f833981519152604482015290519081900360640190fd5b6001600160a01b0381166117c5576040805162461bcd60e51b81526020600482015260086024820152676e6f6e2d7a65726f60c01b604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b03831690811790915560405133907fd44190acf9d04bdb5d3a1aafff7e6dee8b40b93dfb8c5d3f0eea4b9f4539c3f790600090a350565b6000546001600160a01b031690565b600061182c828461200d565b9392505050565b6002600154141561188b576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60026001819055506000600584815481106118a257fe5b600091825260208083208784526006808352604080862033875290935291909320910290910191506118d385610dc9565b60008411801561190b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615155b801561191f57506001600160a01b03831615155b801561193457506001600160a01b0383163314155b156119d2577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316630c7f7b6b33856040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b0316815260200192505050600060405180830381600087803b1580156119b957600080fd5b505af11580156119cd573d6000803e3d6000fd5b505050505b805415611a28576000611a0a8260010154610cf7670de0b6b3a7640000610cf18760030154876000015461204f90919063ffffffff16565b90508015611a2657611a1c33826120ea565b611a263382612323565b505b8315611bba578154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611a7857600080fd5b505afa158015611a8c573d6000803e3d6000fd5b505050506040513d6020811015611aa257600080fd5b50518354909150611abe906001600160a01b03163330886126be565b8254604080516370a0823160e01b81523060048201529051600092611b119285926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561169057600080fd5b600485015490915061ffff1615611b94576004840154600090611b419061271090610cf190859061ffff1661204f565b6003548654919250611b60916001600160a01b03908116911683612667565b8354611b72908290610cf79085611fb3565b84556005850154611b89908290610cf79085611fb3565b600586015550611bb7565b8254611ba09082611fb3565b83556005840154611bb19082611fb3565b60058501555b50505b60038201548154611bd891670de0b6b3a764000091610cf19161204f565b6001820155604080518581529051869133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a3505060018055505050565b60066020908152600092835260408084209091529082529020805460019091015482565b600a6020526000908152604090205460ff1681565b611c60611faf565b6000546001600160a01b03908116911614611cb0576040805162461bcd60e51b81526020600482018190526024820152600080516020612b9f833981519152604482015290519081900360640190fd5b6001600160a01b038116611cf6576040805162461bcd60e51b81526020600482015260086024820152676e6f6e2d7a65726f60c01b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b03831690811790915560405133907f618c54559e94f1499a808aad71ee8729f8e74e8c48e979616328ce493a1a52e790600090a350565b60095461ffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b611d78611faf565b6000546001600160a01b03908116911614611dc8576040805162461bcd60e51b81526020600482018190526024820152600080516020612b9f833981519152604482015290519081900360640190fd5b6001600160a01b038116611e0d5760405162461bcd60e51b8152600401808060200182810382526026815260200180612b126026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611e70611faf565b6000546001600160a01b03908116911614611ec0576040805162461bcd60e51b81526020600482018190526024820152600080516020612b9f833981519152604482015290519081900360640190fd5b6008544310611f005760405162461bcd60e51b8152600401808060200182810382526035815260200180612bbf6035913960400191505060405180910390fd5b804310611f3e5760405162461bcd60e51b8152600401808060200182810382526022815260200180612a836022913960400191505060405180910390fd5b60055460005b81811015611f7a57600060058281548110611f5b57fe5b6000918252602090912060026006909202010184905550600101611f44565b50600882905560405182907f1ff2238e284780b094bb341b41af7e6ce294dee1da3799ae49cd0e29fbe1270990600090a25050565b3390565b60008282018381101561182c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061182c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612718565b60008261205e57506000611721565b8282028284828161206b57fe5b041461182c5760405162461bcd60e51b8152600401808060200182810382526021815260200180612b596021913960400191505060405180910390fd5b600061182c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506127af565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561215957600080fd5b505afa15801561216d573d6000803e3d6000fd5b505050506040513d602081101561218357600080fd5b5051905060008183111561223b577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a9059cbb85846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561220857600080fd5b505af115801561221c573d6000803e3d6000fd5b505050506040513d602081101561223257600080fd5b505190506122e1565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a9059cbb85856040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156122b257600080fd5b505af11580156122c6573d6000803e3d6000fd5b505050506040513d60208110156122dc57600080fd5b505190505b8061231d5760405162461bcd60e51b8152600401808060200182810382526021815260200180612b386021913960400191505060405180910390fd5b50505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615801590612360575060095461ffff1615155b156113355760007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634a9fefc7846040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156123d457600080fd5b505afa1580156123e8573d6000803e3d6000fd5b505050506040513d60208110156123fe57600080fd5b50516009549091506000906124209061271090610cf190869061ffff1661204f565b90506001600160a01b0382161580159061243a5750600081115b1561231d5760007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d5abeb016040518163ffffffff1660e01b815260040160206040518083038186803b15801561249a57600080fd5b505afa1580156124ae573d6000803e3d6000fd5b505050506040513d60208110156124c457600080fd5b505160408051630278162160e51b815290519192506000916001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001691634f02c420916004808301926020929190829003018186803b15801561252c57600080fd5b505afa158015612540573d6000803e3d6000fd5b505050506040513d602081101561255657600080fd5b5051905081811061256a5750505050611335565b60006125768285611fb3565b90508281111561258d5761258a838361200d565b93505b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166340c10f1986866040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561260457600080fd5b505af1158015612618573d6000803e3d6000fd5b50506040805187815290516001600160a01b03808a1694508b1692507f86ddab457291316e0f5496737e5ca67c4037234c32c3be04c48ae96186893a7b9181900360200190a350505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526126b9908490612814565b505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261231d908590612814565b600081848411156127a75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561276c578181015183820152602001612754565b50505050905090810190601f1680156127995780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836127fe5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561276c578181015183820152602001612754565b50600083858161280a57fe5b0495945050505050565b6060612869826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166128c59092919063ffffffff16565b8051909150156126b95780806020019051602081101561288857600080fd5b50516126b95760405162461bcd60e51b815260040180806020018281038252602a815260200180612bf4602a913960400191505060405180910390fd5b60606128d484846000856128dc565b949350505050565b60606128e785612a49565b612938576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106129775780518252601f199092019160209182019101612958565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146129d9576040519150601f19603f3d011682016040523d82523d6000602084013e6129de565b606091505b509150915081156129f25791506128d49050565b805115612a025780518082602001fd5b60405162461bcd60e51b815260206004820181815286516024840152865187939192839260440191908501908083836000831561276c578181015183820152602001612754565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906128d457505015159291505056fe63616e6e6f742073657420737461727420626c6f636b20696e2074686520706173746164643a20696e76616c6964206465706f7369742066656520626173697320706f696e7473736574526566657272616c436f6d6d697373696f6e526174653a20696e76616c696420726566657272616c20636f6d6d697373696f6e207261746520626173697320706f696e74734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373736166654c696d655472616e736665723a205472616e73666572206661696c6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f777365743a20696e76616c6964206465706f7369742066656520626173697320706f696e74734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657263616e6e6f74206368616e676520737461727420626c6f636b206966206661726d2068617320616c726561647920737461727465645361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212202dcbc1480cd1938b5055bb6516fb58ef63544ebdee7c8b9a2d8e3c0844286d2564736f6c634300060c003300000000000000000000000095e0150d37a2b2f0d44ea0a0a0120a3aca69a41e000000000000000000000000000000000000000000000000000000000145eb4c000000000000000000000000bce39f0ae297e655af55923bfdc8d63399c6189300000000000000000000000029cc4c24d0e40b95f8e972f75e120e542c177ae70000000000000000000000004e4b149c226446f2d847a8809e7ec931e1a4dd6d
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806355dbc826116101045780638dbdbe6d116100a2578063d30ef61b11610071578063d30ef61b14610526578063f13b70ff1461052e578063f2fde38b14610536578063fac2b9ba1461055c576101da565b80638dbdbe6d1461044f57806393f1a40b14610481578063cbd258b5146104c6578063d0d41fe114610500576101da565b806384f239d7116100de57806384f239d7146103d25780638705fcd4146103fe5780638da5cb5b146104245780638dbb1e3a1461042c576101da565b806355dbc826146103a1578063630b5ba1146103c2578063715018a6146103ca576101da565b806324bcb38c1161017c57806348b22bfb1161014b57806348b22bfb1461034057806348cd4cb11461035f57806351eb05a6146103675780635312ea8e14610384576101da565b806324bcb38c146102e05780633ad10ef61461030d5780634127535814610315578063441a3e701461031d576101da565b80630ba84cd2116101b85780630ba84cd2146102395780631441a5a9146102565780631526fe271461027a57806317caf6f1146102d8576101da565b806306539275146101df578063081e3eda146102175780630afdf4f214610231575b600080fd5b610215600480360360608110156101f557600080fd5b5080359060208101356001600160a01b0316906040013561ffff16610579565b005b61021f6108d4565b60408051918252519081900360200190f35b61021f6108da565b6102156004803603602081101561024f57600080fd5b50356108e0565b61025e6109c5565b604080516001600160a01b039092168252519081900360200190f35b6102976004803603602081101561029057600080fd5b50356109e9565b604080516001600160a01b039097168752602087019590955285850193909352606085019190915261ffff16608084015260a0830152519081900360c00190f35b61021f610a3d565b610215600480360360608110156102f657600080fd5b508035906020810135906040013561ffff16610a43565b61025e610bb5565b61025e610bc4565b6102156004803603604081101561033357600080fd5b5080359060200135610bd3565b610348610dbd565b6040805161ffff9092168252519081900360200190f35b61021f610dc3565b6102156004803603602081101561037d57600080fd5b5035610dc9565b6102156004803603602081101561039a57600080fd5b503561110f565b610215600480360360208110156103b757600080fd5b503561ffff16611239565b610215611316565b610215611339565b61021f600480360360408110156103e857600080fd5b50803590602001356001600160a01b03166113db565b6102156004803603602081101561041457600080fd5b50356001600160a01b0316611727565b61025e611811565b61021f6004803603604081101561044257600080fd5b5080359060200135611820565b6102156004803603606081101561046557600080fd5b50803590602081013590604001356001600160a01b0316611833565b6104ad6004803603604081101561049757600080fd5b50803590602001356001600160a01b0316611c1f565b6040805192835260208301919091528051918290030190f35b6104ec600480360360208110156104dc57600080fd5b50356001600160a01b0316611c43565b604080519115158252519081900360200190f35b6102156004803603602081101561051657600080fd5b50356001600160a01b0316611c58565b610348611d42565b61025e611d4c565b6102156004803603602081101561054c57600080fd5b50356001600160a01b0316611d70565b6102156004803603602081101561057257600080fd5b5035611e68565b610581611faf565b6000546001600160a01b039081169116146105d1576040805162461bcd60e51b81526020600482018190526024820152600080516020612b9f833981519152604482015290519081900360640190fd5b6001600160a01b0382166000908152600a6020526040902054829060ff1615610641576040805162461bcd60e51b815260206004820152601960248201527f6e6f6e4475706c6963617465643a206475706c69636174656400000000000000604482015290519081900360640190fd5b6101908261ffff1611156106865760405162461bcd60e51b8152600401808060200182810382526025815260200180612aa56025913960400191505060405180910390fd5b604080516370a0823160e01b815230600482015290516001600160a01b038516916370a08231916024808301926020929190829003018186803b1580156106cc57600080fd5b505afa1580156106e0573d6000803e3d6000fd5b505050506040513d60208110156106f657600080fd5b5050600854600090431161070c5760085461070e565b435b60075490915061071e9086611fb3565b6007556001600160a01b038481166000818152600a602090815260408083208054600160ff199091168117909155815160c0810183528581528084018c81528184018981526060830187815261ffff8d81166080860181815260a087018b815260058054998a018155909b5295517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0600690980297880180546001600160a01b03191691909d1617909b5592517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db186015590517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db2850155517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db384015590517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db48301805461ffff19169190921617905592517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db59093019290925581519384529051919288927fe5b6779c4a18cbf7e4bce3a6c308b215c678f316648b832318a03841664fc2e9929181900390910190a35050505050565b60055490565b60045481565b6108e8611faf565b6000546001600160a01b03908116911614610938576040805162461bcd60e51b81526020600482018190526024820152600080516020612b9f833981519152604482015290519081900360640190fd5b66470de4df82000081111561097f576040805162461bcd60e51b81526020600482015260086024820152670a8dede40d0d2ced60c31b604482015290519081900360640190fd5b610987611316565b600481905560408051828152905133917fe2492e003bbe8afa53088b406f0c1cb5d9e280370fc72a74cf116ffd343c4053919081900360200190a250565b7f0000000000000000000000004e4b149c226446f2d847a8809e7ec931e1a4dd6d81565b600581815481106109f657fe5b60009182526020909120600690910201805460018201546002830154600384015460048501546005909501546001600160a01b0390941695509193909261ffff9091169086565b60075481565b610a4b611faf565b6000546001600160a01b03908116911614610a9b576040805162461bcd60e51b81526020600482018190526024820152600080516020612b9f833981519152604482015290519081900360640190fd5b6101908161ffff161115610ae05760405162461bcd60e51b8152600401808060200182810382526025815260200180612b7a6025913960400191505060405180910390fd5b610b1d82610b1760058681548110610af457fe5b90600052602060002090600602016001015460075461200d90919063ffffffff16565b90611fb3565b6007819055508160058481548110610b3157fe5b9060005260206000209060060201600101819055508060058481548110610b5457fe5b600091825260209182902060069190910201600401805461ffff191661ffff93841617905560408051928416835251849286927f0b21d5252af0bf3501a80676d626577e67cf86107154a76664b5b7994cc8fd8c92918290030190a3505050565b6002546001600160a01b031681565b6003546001600160a01b031681565b60026001541415610c2b576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600181905550600060058381548110610c4257fe5b6000918252602080832086845260068083526040808620338752909352919093208054929091029092019250831115610cb7576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b610cc084610dc9565b6000610cfd8260010154610cf7670de0b6b3a7640000610cf18760030154876000015461204f90919063ffffffff16565b906120a8565b9061200d565b90508015610d1957610d0f33826120ea565b610d193382612323565b8315610d58578154610d2b908561200d565b82558254610d43906001600160a01b03163386612667565b6005830154610d52908561200d565b60058401555b60038301548254610d7691670de0b6b3a764000091610cf19161204f565b6001830155604080518581529051869133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a3505060018055505050565b6101f481565b60085481565b600060058281548110610dd857fe5b9060005260206000209060060201905080600201544311610df9575061110c565b60058101541580610e0c57506001810154155b15610e1d574360029091015561110c565b6000610e2d826002015443611820565b90506000610e5a600754610cf18560010154610e546004548761204f90919063ffffffff16565b9061204f565b90506000610e6982600a6120a8565b905060007f00000000000000000000000095e0150d37a2b2f0d44ea0a0a0120a3aca69a41e6001600160a01b0316634f02c4206040518163ffffffff1660e01b815260040160206040518083038186803b158015610ec657600080fd5b505afa158015610eda573d6000803e3d6000fd5b505050506040513d6020811015610ef057600080fd5b50516040805163d5abeb0160e01b815290519192506000916001600160a01b037f00000000000000000000000095e0150d37a2b2f0d44ea0a0a0120a3aca69a41e169163d5abeb01916004808301926020929190829003018186803b158015610f5857600080fd5b505afa158015610f6c573d6000803e3d6000fd5b505050506040513d6020811015610f8257600080fd5b505190506000610f9685610b178587611fb3565b905081811161103257600254604080516340c10f1960e01b81526001600160a01b0392831660048201526024810187905290517f00000000000000000000000095e0150d37a2b2f0d44ea0a0a0120a3aca69a41e909216916340c10f199160448082019260009290919082900301818387803b15801561101557600080fd5b505af1158015611029573d6000803e3d6000fd5b5050505061103f565b61103c828461200d565b94505b84156110fb57604080516340c10f1960e01b81523060048201526024810187905290516001600160a01b037f00000000000000000000000095e0150d37a2b2f0d44ea0a0a0120a3aca69a41e16916340c10f1991604480830192600092919082900301818387803b1580156110b357600080fd5b505af11580156110c7573d6000803e3d6000fd5b50505060058801546110f591506110ea90610cf188670de0b6b3a764000061204f565b600389015490611fb3565b60038801555b438760020181905550505050505050505b50565b60026001541415611167576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260018190555060006005828154811061117e57fe5b6000918252602080832085845260068083526040808620338752909352918420805485825560018201959095559290910201600581015490935090919081116111da5760058301546111d0908261200d565b60058401556111e2565b600060058401555b82546111f8906001600160a01b03163383612667565b604080518281529051859133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a35050600180555050565b611241611faf565b6000546001600160a01b03908116911614611291576040805162461bcd60e51b81526020600482018190526024820152600080516020612b9f833981519152604482015290519081900360640190fd5b6101f461ffff821611156112d65760405162461bcd60e51b8152600401808060200182810382526048815260200180612aca6048913960600191505060405180910390fd5b6009805461ffff191661ffff83169081179091556040517fafbef49f2e149ae20a201034ffbdc25c493050d9aaa4b9a80d992cfc5782151290600090a250565b60055460005b818110156113355761132d81610dc9565b60010161131c565b5050565b611341611faf565b6000546001600160a01b03908116911614611391576040805162461bcd60e51b81526020600482018190526024820152600080516020612b9f833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600080600584815481106113eb57fe5b60009182526020808320878452600680835260408086206001600160a01b038a1687529093529190932091029091016003810154600282015491935090431180156114395750600583015415155b801561144757506000600754115b156116f057600061145c846002015443611820565b90506000611483600754610cf18760010154610e546004548761204f90919063ffffffff16565b90507f00000000000000000000000095e0150d37a2b2f0d44ea0a0a0120a3aca69a41e6001600160a01b031663d5abeb016040518163ffffffff1660e01b815260040160206040518083038186803b1580156114de57600080fd5b505afa1580156114f2573d6000803e3d6000fd5b505050506040513d602081101561150857600080fd5b505160408051630278162160e51b815290516115a29184916001600160a01b037f00000000000000000000000095e0150d37a2b2f0d44ea0a0a0120a3aca69a41e1691634f02c420916004808301926020929190829003018186803b15801561157057600080fd5b505afa158015611584573d6000803e3d6000fd5b505050506040513d602081101561159a57600080fd5b505190611fb3565b11156116c5576116c27f00000000000000000000000095e0150d37a2b2f0d44ea0a0a0120a3aca69a41e6001600160a01b0316634f02c4206040518163ffffffff1660e01b815260040160206040518083038186803b15801561160457600080fd5b505afa158015611618573d6000803e3d6000fd5b505050506040513d602081101561162e57600080fd5b50516040805163d5abeb0160e01b815290516001600160a01b037f00000000000000000000000095e0150d37a2b2f0d44ea0a0a0120a3aca69a41e169163d5abeb01916004808301926020929190829003018186803b15801561169057600080fd5b505afa1580156116a4573d6000803e3d6000fd5b505050506040513d60208110156116ba57600080fd5b50519061200d565b90505b60058501546116eb906116e490610cf184670de0b6b3a764000061204f565b8490611fb3565b925050505b61171b8260010154610cf7670de0b6b3a7640000610cf185876000015461204f90919063ffffffff16565b93505050505b92915050565b61172f611faf565b6000546001600160a01b0390811691161461177f576040805162461bcd60e51b81526020600482018190526024820152600080516020612b9f833981519152604482015290519081900360640190fd5b6001600160a01b0381166117c5576040805162461bcd60e51b81526020600482015260086024820152676e6f6e2d7a65726f60c01b604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b03831690811790915560405133907fd44190acf9d04bdb5d3a1aafff7e6dee8b40b93dfb8c5d3f0eea4b9f4539c3f790600090a350565b6000546001600160a01b031690565b600061182c828461200d565b9392505050565b6002600154141561188b576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60026001819055506000600584815481106118a257fe5b600091825260208083208784526006808352604080862033875290935291909320910290910191506118d385610dc9565b60008411801561190b57507f0000000000000000000000004e4b149c226446f2d847a8809e7ec931e1a4dd6d6001600160a01b031615155b801561191f57506001600160a01b03831615155b801561193457506001600160a01b0383163314155b156119d2577f0000000000000000000000004e4b149c226446f2d847a8809e7ec931e1a4dd6d6001600160a01b0316630c7f7b6b33856040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b0316815260200192505050600060405180830381600087803b1580156119b957600080fd5b505af11580156119cd573d6000803e3d6000fd5b505050505b805415611a28576000611a0a8260010154610cf7670de0b6b3a7640000610cf18760030154876000015461204f90919063ffffffff16565b90508015611a2657611a1c33826120ea565b611a263382612323565b505b8315611bba578154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611a7857600080fd5b505afa158015611a8c573d6000803e3d6000fd5b505050506040513d6020811015611aa257600080fd5b50518354909150611abe906001600160a01b03163330886126be565b8254604080516370a0823160e01b81523060048201529051600092611b119285926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561169057600080fd5b600485015490915061ffff1615611b94576004840154600090611b419061271090610cf190859061ffff1661204f565b6003548654919250611b60916001600160a01b03908116911683612667565b8354611b72908290610cf79085611fb3565b84556005850154611b89908290610cf79085611fb3565b600586015550611bb7565b8254611ba09082611fb3565b83556005840154611bb19082611fb3565b60058501555b50505b60038201548154611bd891670de0b6b3a764000091610cf19161204f565b6001820155604080518581529051869133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a3505060018055505050565b60066020908152600092835260408084209091529082529020805460019091015482565b600a6020526000908152604090205460ff1681565b611c60611faf565b6000546001600160a01b03908116911614611cb0576040805162461bcd60e51b81526020600482018190526024820152600080516020612b9f833981519152604482015290519081900360640190fd5b6001600160a01b038116611cf6576040805162461bcd60e51b81526020600482015260086024820152676e6f6e2d7a65726f60c01b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b03831690811790915560405133907f618c54559e94f1499a808aad71ee8729f8e74e8c48e979616328ce493a1a52e790600090a350565b60095461ffff1681565b7f00000000000000000000000095e0150d37a2b2f0d44ea0a0a0120a3aca69a41e81565b611d78611faf565b6000546001600160a01b03908116911614611dc8576040805162461bcd60e51b81526020600482018190526024820152600080516020612b9f833981519152604482015290519081900360640190fd5b6001600160a01b038116611e0d5760405162461bcd60e51b8152600401808060200182810382526026815260200180612b126026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611e70611faf565b6000546001600160a01b03908116911614611ec0576040805162461bcd60e51b81526020600482018190526024820152600080516020612b9f833981519152604482015290519081900360640190fd5b6008544310611f005760405162461bcd60e51b8152600401808060200182810382526035815260200180612bbf6035913960400191505060405180910390fd5b804310611f3e5760405162461bcd60e51b8152600401808060200182810382526022815260200180612a836022913960400191505060405180910390fd5b60055460005b81811015611f7a57600060058281548110611f5b57fe5b6000918252602090912060026006909202010184905550600101611f44565b50600882905560405182907f1ff2238e284780b094bb341b41af7e6ce294dee1da3799ae49cd0e29fbe1270990600090a25050565b3390565b60008282018381101561182c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061182c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612718565b60008261205e57506000611721565b8282028284828161206b57fe5b041461182c5760405162461bcd60e51b8152600401808060200182810382526021815260200180612b596021913960400191505060405180910390fd5b600061182c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506127af565b60007f00000000000000000000000095e0150d37a2b2f0d44ea0a0a0120a3aca69a41e6001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561215957600080fd5b505afa15801561216d573d6000803e3d6000fd5b505050506040513d602081101561218357600080fd5b5051905060008183111561223b577f00000000000000000000000095e0150d37a2b2f0d44ea0a0a0120a3aca69a41e6001600160a01b031663a9059cbb85846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561220857600080fd5b505af115801561221c573d6000803e3d6000fd5b505050506040513d602081101561223257600080fd5b505190506122e1565b7f00000000000000000000000095e0150d37a2b2f0d44ea0a0a0120a3aca69a41e6001600160a01b031663a9059cbb85856040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156122b257600080fd5b505af11580156122c6573d6000803e3d6000fd5b505050506040513d60208110156122dc57600080fd5b505190505b8061231d5760405162461bcd60e51b8152600401808060200182810382526021815260200180612b386021913960400191505060405180910390fd5b50505050565b7f0000000000000000000000004e4b149c226446f2d847a8809e7ec931e1a4dd6d6001600160a01b031615801590612360575060095461ffff1615155b156113355760007f0000000000000000000000004e4b149c226446f2d847a8809e7ec931e1a4dd6d6001600160a01b0316634a9fefc7846040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156123d457600080fd5b505afa1580156123e8573d6000803e3d6000fd5b505050506040513d60208110156123fe57600080fd5b50516009549091506000906124209061271090610cf190869061ffff1661204f565b90506001600160a01b0382161580159061243a5750600081115b1561231d5760007f00000000000000000000000095e0150d37a2b2f0d44ea0a0a0120a3aca69a41e6001600160a01b031663d5abeb016040518163ffffffff1660e01b815260040160206040518083038186803b15801561249a57600080fd5b505afa1580156124ae573d6000803e3d6000fd5b505050506040513d60208110156124c457600080fd5b505160408051630278162160e51b815290519192506000916001600160a01b037f00000000000000000000000095e0150d37a2b2f0d44ea0a0a0120a3aca69a41e1691634f02c420916004808301926020929190829003018186803b15801561252c57600080fd5b505afa158015612540573d6000803e3d6000fd5b505050506040513d602081101561255657600080fd5b5051905081811061256a5750505050611335565b60006125768285611fb3565b90508281111561258d5761258a838361200d565b93505b7f00000000000000000000000095e0150d37a2b2f0d44ea0a0a0120a3aca69a41e6001600160a01b03166340c10f1986866040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561260457600080fd5b505af1158015612618573d6000803e3d6000fd5b50506040805187815290516001600160a01b03808a1694508b1692507f86ddab457291316e0f5496737e5ca67c4037234c32c3be04c48ae96186893a7b9181900360200190a350505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526126b9908490612814565b505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261231d908590612814565b600081848411156127a75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561276c578181015183820152602001612754565b50505050905090810190601f1680156127995780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836127fe5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561276c578181015183820152602001612754565b50600083858161280a57fe5b0495945050505050565b6060612869826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166128c59092919063ffffffff16565b8051909150156126b95780806020019051602081101561288857600080fd5b50516126b95760405162461bcd60e51b815260040180806020018281038252602a815260200180612bf4602a913960400191505060405180910390fd5b60606128d484846000856128dc565b949350505050565b60606128e785612a49565b612938576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106129775780518252601f199092019160209182019101612958565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146129d9576040519150601f19603f3d011682016040523d82523d6000602084013e6129de565b606091505b509150915081156129f25791506128d49050565b805115612a025780518082602001fd5b60405162461bcd60e51b815260206004820181815286516024840152865187939192839260440191908501908083836000831561276c578181015183820152602001612754565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906128d457505015159291505056fe63616e6e6f742073657420737461727420626c6f636b20696e2074686520706173746164643a20696e76616c6964206465706f7369742066656520626173697320706f696e7473736574526566657272616c436f6d6d697373696f6e526174653a20696e76616c696420726566657272616c20636f6d6d697373696f6e207261746520626173697320706f696e74734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373736166654c696d655472616e736665723a205472616e73666572206661696c6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f777365743a20696e76616c6964206465706f7369742066656520626173697320706f696e74734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657263616e6e6f74206368616e676520737461727420626c6f636b206966206661726d2068617320616c726561647920737461727465645361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212202dcbc1480cd1938b5055bb6516fb58ef63544ebdee7c8b9a2d8e3c0844286d2564736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000095e0150d37a2b2f0d44ea0a0a0120a3aca69a41e000000000000000000000000000000000000000000000000000000000145eb4c000000000000000000000000bce39f0ae297e655af55923bfdc8d63399c6189300000000000000000000000029cc4c24d0e40b95f8e972f75e120e542c177ae70000000000000000000000004e4b149c226446f2d847a8809e7ec931e1a4dd6d
-----Decoded View---------------
Arg [0] : _Lime (address): 0x95E0150D37A2b2F0D44eA0a0A0120a3Aca69a41E
Arg [1] : _startBlock (uint256): 21359436
Arg [2] : _devAddress (address): 0xBCe39f0AE297e655aF55923bfDC8d63399C61893
Arg [3] : _feeAddress (address): 0x29cC4c24d0e40b95f8e972F75e120e542c177aE7
Arg [4] : _referral (address): 0x4E4b149c226446f2d847A8809e7Ec931E1A4Dd6D
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 00000000000000000000000095e0150d37a2b2f0d44ea0a0a0120a3aca69a41e
Arg [1] : 000000000000000000000000000000000000000000000000000000000145eb4c
Arg [2] : 000000000000000000000000bce39f0ae297e655af55923bfdc8d63399c61893
Arg [3] : 00000000000000000000000029cc4c24d0e40b95f8e972f75e120e542c177ae7
Arg [4] : 0000000000000000000000004e4b149c226446f2d847a8809e7ec931e1a4dd6d
Deployed Bytecode Sourcemap
44547:15102:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48655:770;;;;;;;;;;;;;;;;-1:-1:-1;48655:770:0;;;;;;;-1:-1:-1;;;;;48655:770:0;;;;;;;;:::i;:::-;;48285:95;;;:::i;:::-;;;;;;;;;;;;;;;;46229:41;;;:::i;57151:269::-;;;;;;;;;;;;;;;;-1:-1:-1;57151:269:0;;:::i;46771:35::-;;;:::i;:::-;;;;-1:-1:-1;;;;;46771:35:0;;;;;;;;;;;;;;46365:26;;;;;;;;;;;;;;;;-1:-1:-1;46365:26:0;;:::i;:::-;;;;-1:-1:-1;;;;;46365:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46606:34;;;:::i;49537:425::-;;;;;;;;;;;;;;;;-1:-1:-1;49537:425:0;;;;;;;;;;;;;;:::i;46087:25::-;;;:::i;46119:::-;;;:::i;54617:858::-;;;;;;;;;;;;;;;;-1:-1:-1;54617:858:0;;;;;;;:::i;46954:61::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46697:25;;;:::i;51437:1384::-;;;;;;;;;;;;;;;;-1:-1:-1;51437:1384:0;;:::i;55546:561::-;;;;;;;;;;;;;;;;-1:-1:-1;55546:561:0;;:::i;57481:374::-;;;;;;;;;;;;;;;;-1:-1:-1;57481:374:0;;;;:::i;51181:180::-;;;:::i;2831:148::-;;;:::i;50224:874::-;;;;;;;;;;;;;;;;-1:-1:-1;50224:874:0;;;;;;-1:-1:-1;;;;;50224:874:0;;:::i;56925:216::-;;;;;;;;;;;;;;;;-1:-1:-1;56925:216:0;-1:-1:-1;;;;;56925:216:0;;:::i;2189:79::-;;;:::i;50038:121::-;;;;;;;;;;;;;;;;-1:-1:-1;50038:121:0;;;;;;;:::i;52890:1675::-;;;;;;;;;;;;;;;;-1:-1:-1;52890:1675:0;;;;;;;;;;;-1:-1:-1;;;;;52890:1675:0;;:::i;46447:64::-;;;;;;;;;;;;;;;;-1:-1:-1;46447:64:0;;;;;;-1:-1:-1;;;;;46447:64:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;48388:44;;;;;;;;;;;;;;;;-1:-1:-1;48388:44:0;-1:-1:-1;;;;;48388:44:0;;:::i;:::-;;;;;;;;;;;;;;;;;;56701:216;;;;;;;;;;;;;;;;-1:-1:-1;56701:216:0;-1:-1:-1;;;;;56701:216:0;;:::i;46863:42::-;;;:::i;46054:26::-;;;:::i;3134:244::-;;;;;;;;;;;;;;;;-1:-1:-1;3134:244:0;-1:-1:-1;;;;;3134:244:0;;:::i;59072:562::-;;;;;;;;;;;;;;;;-1:-1:-1;59072:562:0;;:::i;48655:770::-;2411:12;:10;:12::i;:::-;2401:6;;-1:-1:-1;;;;;2401:6:0;;;:22;;;2393:67;;;;;-1:-1:-1;;;2393:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2393:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;48498:23:0;::::1;;::::0;;;:13:::1;:23;::::0;;;;;48761:8;;48498:23:::1;;:32;48490:70;;;::::0;;-1:-1:-1;;;48490:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;48807:3:::2;48790:13;:20;;;;48782:70;;;;-1:-1:-1::0;;;48782:70:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48863:33;::::0;;-1:-1:-1;;;48863:33:0;;48890:4:::2;48863:33;::::0;::::2;::::0;;;-1:-1:-1;;;;;48863:18:0;::::2;::::0;::::2;::::0;:33;;;;;::::2;::::0;;;;;;;;:18;:33;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;;48948:10:0::2;::::0;48907:23:::2;::::0;48933:12:::2;:25;:53;;48976:10;;48933:53;;;48961:12;48933:53;49015:15;::::0;48907:79;;-1:-1:-1;49015:32:0::2;::::0;49035:11;49015:19:::2;:32::i;:::-;48997:15;:50:::0;-1:-1:-1;;;;;49058:23:0;;::::2;;::::0;;;:13:::2;:23;::::0;;;;;;;:30;;49084:4:::2;-1:-1:-1::0;;49058:30:0;;::::2;::::0;::::2;::::0;;;49113:238;;::::2;::::0;::::2;::::0;;;;;;;::::2;::::0;;;;;;;;;;;;;;;::::2;::::0;;::::2;::::0;;;;;;;;;;;;49099:8:::2;:253:::0;;;;::::2;::::0;;;;;;;;::::2;::::0;;::::2;::::0;;::::2;::::0;;-1:-1:-1;;;;;;49099:253:0::2;::::0;;;::::2;;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49099:253:0::2;::::0;;;::::2;;::::0;;;;;;;;;;;;49378:39;;;;;;;49058:23;;49113:238;;49378:39:::2;::::0;;;;;;;;;::::2;48571:1;2471::::1;48655:770:::0;;;:::o;48285:95::-;48357:8;:15;48285:95;:::o;46229:41::-;;;;:::o;57151:269::-;2411:12;:10;:12::i;:::-;2401:6;;-1:-1:-1;;;;;2401:6:0;;;:22;;;2393:67;;;;;-1:-1:-1;;;2393:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2393:67:0;;;;;;;;;;;;;;;46319:10:::1;57240:13;:32;;57232:52;;;::::0;;-1:-1:-1;;;57232:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;57232:52:0;;;;;;;;;;;;;::::1;;57295:17;:15;:17::i;:::-;57323:12;:28:::0;;;57367:45:::1;::::0;;;;;;;57386:10:::1;::::0;57367:45:::1;::::0;;;;;::::1;::::0;;::::1;57151:269:::0;:::o;46771:35::-;;;:::o;46365:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46365:26:0;;;;-1:-1:-1;46365:26:0;;;;;;;;;;:::o;46606:34::-;;;;:::o;49537:425::-;2411:12;:10;:12::i;:::-;2401:6;;-1:-1:-1;;;;;2401:6:0;;;:22;;;2393:67;;;;;-1:-1:-1;;;2393:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2393:67:0;;;;;;;;;;;;;;;49662:3:::1;49645:13;:20;;;;49637:70;;;;-1:-1:-1::0;;;49637:70:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49736:63;49787:11;49736:46;49756:8;49765:4;49756:14;;;;;;;;;;;;;;;;;;:25;;;49736:15;;:19;;:46;;;;:::i;:::-;:50:::0;::::1;:63::i;:::-;49718:15;:81;;;;49838:11;49810:8;49819:4;49810:14;;;;;;;;;;;;;;;;;;:25;;:39;;;;49890:13;49860:8;49869:4;49860:14;;;;;;;;;::::0;;;::::1;::::0;;;;::::1;::::0;;;::::1;;:27;;:43:::0;;-1:-1:-1;;49860:43:0::1;;::::0;;::::1;;::::0;;49919:35:::1;::::0;;;;::::1;::::0;;;49928:11;;49923:4;;49919:35:::1;::::0;;;;;;;::::1;49537:425:::0;;;:::o;46087:25::-;;;-1:-1:-1;;;;;46087:25:0;;:::o;46119:::-;;;-1:-1:-1;;;;;46119:25:0;;:::o;54617:858::-;34019:1;34625:7;;:19;;34617:63;;;;;-1:-1:-1;;;34617:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;34019:1;34758:7;:18;;;;54697:21:::1;54721:8;54730:4;54721:14;;;;;;;;;::::0;;;::::1;::::0;;;54770;;;54721::::1;54770::::0;;;;;;;54785:10:::1;54770:26:::0;;;;;;;;;54815:11;;54721:14;;;::::1;::::0;;::::1;::::0;-1:-1:-1;;;54815:22:0::1;54807:53;;;::::0;;-1:-1:-1;;;54807:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;54807:53:0;;;;;;;;;;;;;::::1;;54871:16;54882:4;54871:10;:16::i;:::-;54898:15;54916:68;54968:4;:15;;;54916:47;54958:4;54916:37;54932:4;:20;;;54916:4;:11;;;:15;;:37;;;;:::i;:::-;:41:::0;::::1;:47::i;:::-;:51:::0;::::1;:68::i;:::-;54898:86:::0;-1:-1:-1;54999:11:0;;54995:138:::1;;55027:37;55044:10;55056:7;55027:16;:37::i;:::-;55079:42;55101:10;55113:7;55079:21;:42::i;:::-;55147:11:::0;;55143:198:::1;;55189:11:::0;;:24:::1;::::0;55205:7;55189:15:::1;:24::i;:::-;55175:38:::0;;55228:12;;:46:::1;::::0;-1:-1:-1;;;;;55228:12:0::1;55254:10;55266:7:::0;55228:25:::1;:46::i;:::-;55303:13;::::0;::::1;::::0;:26:::1;::::0;55321:7;55303:17:::1;:26::i;:::-;55289:13;::::0;::::1;:40:::0;55143:198:::1;55385:20;::::0;::::1;::::0;55369:11;;:47:::1;::::0;55411:4:::1;::::0;55369:37:::1;::::0;:15:::1;:37::i;:47::-;55351:15;::::0;::::1;:65:::0;55432:35:::1;::::0;;;;;;;55453:4;;55441:10:::1;::::0;55432:35:::1;::::0;;;;::::1;::::0;;::::1;-1:-1:-1::0;;33975:1:0;34937:22;;-1:-1:-1;;;54617:858:0:o;46954:61::-;47012:3;46954:61;:::o;46697:25::-;;;;:::o;51437:1384::-;51489:21;51513:8;51522:4;51513:14;;;;;;;;;;;;;;;;;;51489:38;;51558:4;:20;;;51542:12;:36;51538:75;;51595:7;;;51538:75;51627:13;;;;:18;;:42;;-1:-1:-1;51649:15:0;;;;:20;51627:42;51623:131;;;51709:12;51686:20;;;;:35;51736:7;;51623:131;51764:18;51785:49;51799:4;:20;;;51821:12;51785:13;:49::i;:::-;51764:70;;51845:18;51866:70;51920:15;;51866:49;51899:4;:15;;;51866:28;51881:12;;51866:10;:14;;:28;;;;:::i;:::-;:32;;:49::i;:70::-;51845:91;-1:-1:-1;51947:17:0;51967:18;51845:91;51982:2;51967:14;:18::i;:::-;51947:38;;52006:21;52030:4;-1:-1:-1;;;;;52030:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52030:13:0;52074:16;;;-1:-1:-1;;;52074:16:0;;;;52030:13;;-1:-1:-1;52054:17:0;;-1:-1:-1;;;;;52074:4:0;:14;;;;:16;;;;;52030:13;;52074:16;;;;;;;:14;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52074:16:0;;-1:-1:-1;52103:20:0;52126:44;52159:10;52126:28;:13;52144:9;52126:17;:28::i;:44::-;52103:67;;52212:9;52195:12;:26;52191:296;;52307:10;;52297:32;;;-1:-1:-1;;;52297:32:0;;-1:-1:-1;;;;;52307:10:0;;;52297:32;;;;;;;;;;;;:4;:9;;;;;;:32;;;;;-1:-1:-1;;52297:32:0;;;;;;;;-1:-1:-1;52297:9:0;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52191:296;;;52447:28;:9;52461:13;52447;:28::i;:::-;52435:40;;52191:296;52511:15;;52507:258;;52614:36;;;-1:-1:-1;;;52614:36:0;;52632:4;52614:36;;;;;;;;;;;;-1:-1:-1;;;;;52614:4:0;:9;;;;:36;;;;;-1:-1:-1;;52614:36:0;;;;;;;-1:-1:-1;52614:9:0;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52738:13:0;;;;52688:65;;-1:-1:-1;52713:39:0;;:20;:10;52728:4;52713:14;:20::i;:39::-;52688:20;;;;;:24;:65::i;:::-;52665:20;;;:88;52507:258;52801:12;52778:4;:20;;:35;;;;51437:1384;;;;;;;;;:::o;55546:561::-;34019:1;34625:7;;:19;;34617:63;;;;;-1:-1:-1;;;34617:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;34019:1;34758:7;:18;;;;55618:21:::1;55642:8;55651:4;55642:14;;;;;;;;;::::0;;;::::1;::::0;;;55691;;;55642::::1;55691::::0;;;;;;;55706:10:::1;55691:26:::0;;;;;;;;55745:11;;55767:15;;;-1:-1:-1;55793:15:0;::::1;:19:::0;;;;55642:14;;;::::1;;55837:13;::::0;::::1;::::0;55642:14;;-1:-1:-1;55691:26:0;;55745:11;-1:-1:-1;;55833:148:0::1;;55893:13;::::0;::::1;::::0;:25:::1;::::0;55911:6;55893:17:::1;:25::i;:::-;55877:13;::::0;::::1;:41:::0;55833:148:::1;;;55967:1;55951:13;::::0;::::1;:17:::0;55833:148:::1;55993:12:::0;;:45:::1;::::0;-1:-1:-1;;;;;55993:12:0::1;56019:10;56031:6:::0;55993:25:::1;:45::i;:::-;56056:43;::::0;;;;;;;56086:4;;56074:10:::1;::::0;56056:43:::1;::::0;;;;::::1;::::0;;::::1;-1:-1:-1::0;;33975:1:0;34937:22;;-1:-1:-1;;55546:561:0:o;57481:374::-;2411:12;:10;:12::i;:::-;2401:6;;-1:-1:-1;;;;;2401:6:0;;;:22;;;2393:67;;;;;-1:-1:-1;;;2393:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2393:67:0;;;;;;;;;;;;;;;47012:3:::1;57586:59;::::0;::::1;;;57578:144;;;;-1:-1:-1::0;;;57578:144:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57733:22;:48:::0;;-1:-1:-1;;57733:48:0::1;;::::0;::::1;::::0;;::::1;::::0;;;57797:50:::1;::::0;::::1;::::0;-1:-1:-1;;57797:50:0::1;57481:374:::0;:::o;51181:180::-;51243:8;:15;51226:14;51269:85;51297:6;51291:3;:12;51269:85;;;51327:15;51338:3;51327:10;:15::i;:::-;51305:5;;51269:85;;;;51181:180;:::o;2831:148::-;2411:12;:10;:12::i;:::-;2401:6;;-1:-1:-1;;;;;2401:6:0;;;:22;;;2393:67;;;;;-1:-1:-1;;;2393:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2393:67:0;;;;;;;;;;;;;;;2938:1:::1;2922:6:::0;;2901:40:::1;::::0;-1:-1:-1;;;;;2922:6:0;;::::1;::::0;2901:40:::1;::::0;2938:1;;2901:40:::1;2969:1;2952:19:::0;;-1:-1:-1;;;;;;2952:19:0::1;::::0;;2831:148::o;50224:874::-;50297:7;50317:21;50341:8;50350:4;50341:14;;;;;;;;;;;;;;;;50390;;;50341;50390;;;;;;;-1:-1:-1;;;;;50390:21:0;;;;;;;;;;;50341:14;;;;;50448:20;;;;50498;;;;50341:14;;-1:-1:-1;50448:20:0;50483:12;:35;:57;;;;-1:-1:-1;50522:13:0;;;;:18;;50483:57;:78;;;;;50560:1;50544:15;;:17;50483:78;50479:531;;;50578:18;50599:49;50613:4;:20;;;50635:12;50599:13;:49::i;:::-;50578:70;;50663:18;50684:70;50738:15;;50684:49;50717:4;:15;;;50684:28;50699:12;;50684:10;:14;;:28;;;;:::i;:70::-;50663:91;;50805:4;-1:-1:-1;;;;;50805:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50805:16:0;50773:13;;;-1:-1:-1;;;50773:13:0;;;;:29;;50791:10;;-1:-1:-1;;;;;50773:4:0;:11;;;;:13;;;;;50805:16;;50773:13;;;;;;;:11;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50773:13:0;;:17;:29::i;:::-;:48;50769:137;;;50855:35;50876:4;-1:-1:-1;;;;;50876:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50876:13:0;50855:16;;;-1:-1:-1;;;50855:16:0;;;;-1:-1:-1;;;;;50855:4:0;:14;;;;:16;;;;;50876:13;;50855:16;;;;;;;:14;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50855:16:0;;:20;:35::i;:::-;50842:48;;50769:137;50983:13;;;;50938:60;;50958:39;;:20;:10;50973:4;50958:14;:20::i;:39::-;50938:15;;:19;:60::i;:::-;50920:78;;50479:531;;;51027:63;51074:4;:15;;;51027:42;51064:4;51027:32;51043:15;51027:4;:11;;;:15;;:32;;;;:::i;:63::-;51020:70;;;;;50224:874;;;;;:::o;56925:216::-;2411:12;:10;:12::i;:::-;2401:6;;-1:-1:-1;;;;;2401:6:0;;;:22;;;2393:67;;;;;-1:-1:-1;;;2393:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2393:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;57007:25:0;::::1;56999:45;;;::::0;;-1:-1:-1;;;56999:45:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;56999:45:0;;;;;;;;;;;;;::::1;;57055:10;:24:::0;;-1:-1:-1;;;;;;57055:24:0::1;-1:-1:-1::0;;;;;57055:24:0;::::1;::::0;;::::1;::::0;;;57095:38:::1;::::0;57109:10:::1;::::0;57095:38:::1;::::0;-1:-1:-1;;57095:38:0::1;56925:216:::0;:::o;2189:79::-;2227:7;2254:6;-1:-1:-1;;;;;2254:6:0;2189:79;:::o;50038:121::-;50110:7;50137:14;:3;50145:5;50137:7;:14::i;:::-;50130:21;50038:121;-1:-1:-1;;;50038:121:0:o;52890:1675::-;34019:1;34625:7;;:19;;34617:63;;;;;-1:-1:-1;;;34617:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;34019:1;34758:7;:18;;;;52988:21:::1;53012:8;53021:4;53012:14;;;;;;;;;::::0;;;::::1;::::0;;;53061;;;53012::::1;53061::::0;;;;;;;53076:10:::1;53061:26:::0;;;;;;;;;53012:14;::::1;::::0;;::::1;::::0;-1:-1:-1;53098:16:0::1;53070:4:::0;53098:10:::1;:16::i;:::-;53139:1;53129:7;:11;:46;;;;-1:-1:-1::0;53152:8:0::1;-1:-1:-1::0;;;;;53144:31:0::1;::::0;::::1;53129:46;:73;;;;-1:-1:-1::0;;;;;;53179:23:0;::::1;::::0;::::1;53129:73;:100;;;;-1:-1:-1::0;;;;;;53206:23:0;::::1;53219:10;53206:23;;53129:100;53125:179;;;53246:8;-1:-1:-1::0;;;;;53246:23:0::1;;53270:10;53282:9;53246:46;;;;;;;;;;;;;-1:-1:-1::0;;;;;53246:46:0::1;;;;;;-1:-1:-1::0;;;;;53246:46:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;53125:179;53318:11:::0;;:15;53314:298:::1;;53350:15;53368:68;53420:4;:15;;;53368:47;53410:4;53368:37;53384:4;:20;;;53368:4;:11;;;:15;;:37;;;;:::i;:68::-;53350:86:::0;-1:-1:-1;53455:11:0;;53451:150:::1;;53487:37;53504:10;53516:7;53487:16;:37::i;:::-;53543:42;53565:10;53577:7;53543:21;:42::i;:::-;53314:298;;53626:11:::0;;53622:810:::1;;53676:12:::0;;:37:::1;::::0;;-1:-1:-1;;;53676:37:0;;53707:4:::1;53676:37;::::0;::::1;::::0;;;53654:21:::1;::::0;-1:-1:-1;;;;;53676:12:0::1;::::0;:22:::1;::::0;:37;;;;;::::1;::::0;;;;;;;;:12;:37;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;53676:37:0;53728:12;;53676:37;;-1:-1:-1;53728:65:0::1;::::0;-1:-1:-1;;;;;53728:12:0::1;53758:10;53778:4;53785:7:::0;53728:29:::1;:65::i;:::-;53829:12:::0;;:37:::1;::::0;;-1:-1:-1;;;53829:37:0;;53860:4:::1;53829:37;::::0;::::1;::::0;;;53808:20:::1;::::0;53829:56:::1;::::0;53871:13;;-1:-1:-1;;;;;53829:12:0;;::::1;::::0;:22:::1;::::0;:37;;;;;::::1;::::0;;;;;;;;;:12;:37;::::1;;::::0;::::1;;;;::::0;::::1;:56;53904:17;::::0;::::1;::::0;53808:77;;-1:-1:-1;53904:17:0::1;;:21:::0;53900:521:::1;;53984:17;::::0;::::1;::::0;53946:18:::1;::::0;53967:46:::1;::::0;54007:5:::1;::::0;53967:35:::1;::::0;:12;;53984:17:::1;;53967:16;:35::i;:46::-;54058:10;::::0;54032:12;;53946:67;;-1:-1:-1;54032:49:0::1;::::0;-1:-1:-1;;;;;54032:12:0;;::::1;::::0;54058:10:::1;53946:67:::0;54032:25:::1;:49::i;:::-;54114:11:::0;;:45:::1;::::0;54148:10;;54114:29:::1;::::0;54130:12;54114:15:::1;:29::i;:45::-;54100:59:::0;;54192:13:::1;::::0;::::1;::::0;:47:::1;::::0;54228:10;;54192:31:::1;::::0;54210:12;54192:17:::1;:31::i;:47::-;54178:13;::::0;::::1;:61:::0;-1:-1:-1;53900:521:0::1;;;54312:11:::0;;:29:::1;::::0;54328:12;54312:15:::1;:29::i;:::-;54298:43:::0;;54374:13:::1;::::0;::::1;::::0;:31:::1;::::0;54392:12;54374:17:::1;:31::i;:::-;54360:13;::::0;::::1;:45:::0;53900:521:::1;53622:810;;;54476:20;::::0;::::1;::::0;54460:11;;:47:::1;::::0;54502:4:::1;::::0;54460:37:::1;::::0;:15:::1;:37::i;:47::-;54442:15;::::0;::::1;:65:::0;54523:34:::1;::::0;;;;;;;54543:4;;54531:10:::1;::::0;54523:34:::1;::::0;;;;::::1;::::0;;::::1;-1:-1:-1::0;;33975:1:0;34937:22;;-1:-1:-1;;;52890:1675:0:o;46447:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48388:44::-;;;;;;;;;;;;;;;:::o;56701:216::-;2411:12;:10;:12::i;:::-;2401:6;;-1:-1:-1;;;;;2401:6:0;;;:22;;;2393:67;;;;;-1:-1:-1;;;2393:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2393:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;56783:25:0;::::1;56775:45;;;::::0;;-1:-1:-1;;;56775:45:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;56775:45:0;;;;;;;;;;;;;::::1;;56831:10;:24:::0;;-1:-1:-1;;;;;;56831:24:0::1;-1:-1:-1::0;;;;;56831:24:0;::::1;::::0;;::::1;::::0;;;56871:38:::1;::::0;56885:10:::1;::::0;56871:38:::1;::::0;-1:-1:-1;;56871:38:0::1;56701:216:::0;:::o;46863:42::-;;;;;;:::o;46054:26::-;;;:::o;3134:244::-;2411:12;:10;:12::i;:::-;2401:6;;-1:-1:-1;;;;;2401:6:0;;;:22;;;2393:67;;;;;-1:-1:-1;;;2393:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2393:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3223:22:0;::::1;3215:73;;;;-1:-1:-1::0;;;3215:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3325:6;::::0;;3304:38:::1;::::0;-1:-1:-1;;;;;3304:38:0;;::::1;::::0;3325:6;::::1;::::0;3304:38:::1;::::0;::::1;3353:6;:17:::0;;-1:-1:-1;;;;;;3353:17:0::1;-1:-1:-1::0;;;;;3353:17:0;;;::::1;::::0;;;::::1;::::0;;3134:244::o;59072:562::-;2411:12;:10;:12::i;:::-;2401:6;;-1:-1:-1;;;;;2401:6:0;;;:22;;;2393:67;;;;;-1:-1:-1;;;2393:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2393:67:0;;;;;;;;;;;;;;;59175:10:::1;;59160:12;:25;59152:91;;;;-1:-1:-1::0;;;59152:91:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59277:14;59262:12;:29;59254:76;;;;-1:-1:-1::0;;;59254:76:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59358:8;:15:::0;59341:14:::1;59384:159;59412:6;59406:3;:12;59384:159;;;59442:21;59466:8;59475:3;59466:13;;;;;;;;;::::0;;;::::1;::::0;;;59494:20:::1;59466:13;::::0;;::::1;;59494:20;:37:::0;;;-1:-1:-1;59420:5:0::1;;59384:159;;;-1:-1:-1::0;59553:10:0::1;:27:::0;;;59598:28:::1;::::0;59566:14;;59598:28:::1;::::0;;;::::1;2471:1;59072:562:::0;:::o;827:106::-;915:10;827:106;:::o;4225:181::-;4283:7;4315:5;;;4339:6;;;;4331:46;;;;;-1:-1:-1;;;4331:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;4689:136;4747:7;4774:43;4778:1;4781;4774:43;;;;;;;;;;;;;;;;;:3;:43::i;5579:471::-;5637:7;5882:6;5878:47;;-1:-1:-1;5912:1:0;5905:8;;5878:47;5949:5;;;5953:1;5949;:5;:1;5973:5;;;;;:10;5965:56;;;;-1:-1:-1;;;5965:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6526:132;6584:7;6611:39;6615:1;6618;6611:39;;;;;;;;;;;;;;;;;:3;:39::i;56220:425::-;56296:15;56314:4;-1:-1:-1;;;;;56314:14:0;;56337:4;56314:29;;;;;;;;;;;;;-1:-1:-1;;;;;56314:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56314:29:0;;-1:-1:-1;56354:20:0;56397:17;;;56393:173;;;56449:4;-1:-1:-1;;;;;56449:13:0;;56463:3;56468:7;56449:27;;;;;;;;;;;;;-1:-1:-1;;;;;56449:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56449:27:0;;-1:-1:-1;56393:173:0;;;56527:4;-1:-1:-1;;;;;56527:13:0;;56541:3;56546:7;56527:27;;;;;;;;;;;;;-1:-1:-1;;;;;56527:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56527:27:0;;-1:-1:-1;56393:173:0;56584:15;56576:61;;;;-1:-1:-1;;;56576:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56220:425;;;;:::o;57935:1088::-;58031:8;-1:-1:-1;;;;;58023:31:0;;;;;:61;;-1:-1:-1;58058:22:0;;;;:26;;58023:61;58019:997;;;58101:16;58120:8;-1:-1:-1;;;;;58120:20:0;;58141:5;58120:27;;;;;;;;;;;;;-1:-1:-1;;;;;58120:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58120:27:0;58202:22;;58120:27;;-1:-1:-1;58162:24:0;;58189:47;;58230:5;;58189:36;;:8;;58202:22;;58189:12;:36::i;:47::-;58162:74;-1:-1:-1;;;;;;58257:22:0;;;;;;:46;;;58302:1;58283:16;:20;58257:46;58253:752;;;58324:17;58344:4;-1:-1:-1;;;;;58344:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58344:16:0;58403:13;;;-1:-1:-1;;;58403:13:0;;;;58344:16;;-1:-1:-1;58379:21:0;;-1:-1:-1;;;;;58403:4:0;:11;;;;:13;;;;;58344:16;;58403:13;;;;;;;:11;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58403:13:0;;-1:-1:-1;58439:26:0;;;58435:116;;58525:7;;;;;;58435:116;58571:20;58594:35;:13;58612:16;58594:17;:35::i;:::-;58571:58;;58667:9;58652:12;:24;58648:185;;;58785:28;:9;58799:13;58785;:28::i;:::-;58766:47;;58648:185;58853:4;-1:-1:-1;;;;;58853:9:0;;58863:8;58873:16;58853:37;;;;;;;;;;;;;-1:-1:-1;;;;;58853:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;58932:57:0;;;;;;;;-1:-1:-1;;;;;58932:57:0;;;;-1:-1:-1;58932:57:0;;;-1:-1:-1;58932:57:0;;;;;;;;;58253:752;;;58019:997;;57935:1088;;:::o;29304:177::-;29414:58;;;-1:-1:-1;;;;;29414:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29414:58:0;-1:-1:-1;;;29414:58:0;;;29387:86;;29407:5;;29387:19;:86::i;:::-;29304:177;;;:::o;29489:205::-;29617:68;;;-1:-1:-1;;;;;29617:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29617:68:0;-1:-1:-1;;;29617:68:0;;;29590:96;;29610:5;;29590:19;:96::i;5128:192::-;5214:7;5250:12;5242:6;;;;5234:29;;;;-1:-1:-1;;;5234:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5286:5:0;;;5128:192::o;7154:278::-;7240:7;7275:12;7268:5;7260:28;;;;-1:-1:-1;;;7260:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7299:9;7315:1;7311;:5;;;;;;;7154:278;-1:-1:-1;;;;;7154:278:0:o;31609:761::-;32033:23;32059:69;32087:4;32059:69;;;;;;;;;;;;;;;;;32067:5;-1:-1:-1;;;;;32059:27:0;;;:69;;;;;:::i;:::-;32143:17;;32033:95;;-1:-1:-1;32143:21:0;32139:224;;32285:10;32274:30;;;;;;;;;;;;;;;-1:-1:-1;32274:30:0;32266:85;;;;-1:-1:-1;;;32266:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12481:196;12584:12;12616:53;12639:6;12647:4;12653:1;12656:12;12616:22;:53::i;:::-;12609:60;12481:196;-1:-1:-1;;;;12481:196:0:o;13858:979::-;13988:12;14021:18;14032:6;14021:10;:18::i;:::-;14013:60;;;;;-1:-1:-1;;;14013:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14147:12;14161:23;14188:6;-1:-1:-1;;;;;14188:11:0;14208:8;14219:4;14188:36;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;14188:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14146:78;;;;14239:7;14235:595;;;14270:10;-1:-1:-1;14263:17:0;;-1:-1:-1;14263:17:0;14235:595;14384:17;;:21;14380:439;;14647:10;14641:17;14708:15;14695:10;14691:2;14687:19;14680:44;14595:148;14783:20;;-1:-1:-1;;;14783:20:0;;;;;;;;;;;;;;;;;14790:12;;14783:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9366:619;9426:4;9894:20;;9737:66;9934:23;;;;;;:42;;-1:-1:-1;;9961:15:0;;;9926:51;-1:-1:-1;;9366:619:0:o
Swarm Source
ipfs://2dcbc1480cd1938b5055bb6516fb58ef63544ebdee7c8b9a2d8e3c0844286d25
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
POL | 64.73% | $0.214402 | 6,223.4106 | $1,334.31 | |
POL | 25.60% | $85,557 | 0.00616696 | $527.63 | |
POL | 5.39% | $0.999869 | 111.069 | $111.05 | |
POL | 2.14% | $0.999631 | 44.2066 | $44.19 | |
POL | 1.07% | $0.999551 | 22.1294 | $22.12 | |
POL | 0.50% | $1,981.72 | 0.00515416 | $10.21 | |
POL | 0.49% | $14.49 | 0.7017 | $10.17 | |
POL | 0.05% | $0.999193 | 1.0708 | $1.07 | |
POL | 0.01% | $18.97 | 0.0118 | $0.2239 | |
POL | <0.01% | $0.674669 | 0.1607 | $0.1084 | |
BSC | <0.01% | $0.213924 | 0.82 | $0.1754 |
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.