Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 204 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Emergency Withdr... | 11629077 | 1556 days ago | IN | 0 ETH | 0.0019097 | ||||
Emergency Withdr... | 11536060 | 1570 days ago | IN | 0 ETH | 0.00274996 | ||||
Emergency Withdr... | 11496055 | 1577 days ago | IN | 0 ETH | 0.00301732 | ||||
Emergency Withdr... | 11492257 | 1577 days ago | IN | 0 ETH | 0.00183331 | ||||
Emergency Withdr... | 11487229 | 1578 days ago | IN | 0 ETH | 0.00091677 | ||||
Emergency Withdr... | 11475911 | 1580 days ago | IN | 0 ETH | 0.00168053 | ||||
Emergency Withdr... | 11474515 | 1580 days ago | IN | 0 ETH | 0.00215796 | ||||
Emergency Withdr... | 11472338 | 1580 days ago | IN | 0 ETH | 0.01050335 | ||||
Emergency Withdr... | 11470297 | 1580 days ago | IN | 0 ETH | 0.00347565 | ||||
Emergency Withdr... | 11470045 | 1581 days ago | IN | 0 ETH | 0.0056909 | ||||
Emergency Withdr... | 11469366 | 1581 days ago | IN | 0 ETH | 0.00477425 | ||||
Emergency Withdr... | 11469106 | 1581 days ago | IN | 0 ETH | 0.00385759 | ||||
Emergency Withdr... | 11468086 | 1581 days ago | IN | 0 ETH | 0.00385759 | ||||
Emergency Withdr... | 11467943 | 1581 days ago | IN | 0 ETH | 0.00355204 | ||||
Set | 11466948 | 1581 days ago | IN | 0 ETH | 0.0011141 | ||||
Emergency Withdr... | 11466945 | 1581 days ago | IN | 0 ETH | 0.00232983 | ||||
Emergency Withdr... | 11466942 | 1581 days ago | IN | 0 ETH | 0.00239132 | ||||
Emergency Withdr... | 11466745 | 1581 days ago | IN | 0 ETH | 0.00236802 | ||||
Emergency Withdr... | 11466643 | 1581 days ago | IN | 0 ETH | 0.00134008 | ||||
Emergency Withdr... | 11466618 | 1581 days ago | IN | 0 ETH | 0.00134008 | ||||
Emergency Withdr... | 11466599 | 1581 days ago | IN | 0 ETH | 0.00218035 | ||||
Emergency Withdr... | 11466520 | 1581 days ago | IN | 0 ETH | 0.00160414 | ||||
Emergency Withdr... | 11466470 | 1581 days ago | IN | 0 ETH | 0.00229164 | ||||
Emergency Withdr... | 11466108 | 1581 days ago | IN | 0 ETH | 0.00202428 | ||||
Emergency Withdr... | 11465982 | 1581 days ago | IN | 0 ETH | 0.00229164 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
MasterUniverse
Compiler Version
v0.7.0+commit.9e61f92b
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-12-03 */ // SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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 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 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 Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _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; } /** * @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 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 { } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @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"); } } } contract NovaToken is ERC20("NOVA", "NOVA"), Ownable { /// @notice Creates `_amount` token to `_to`. Must only be called by the owner (MasterUniverse). function mint(address _to, uint256 _amount) public onlyOwner { _mint(_to, _amount); } } // MasterUniverse is the master of Nova. He can make Nova 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 NOVA is sufficiently // distributed and the community can show to govern itself. // // Have fun reading it. Hopefully it's bug-free. God bless. contract MasterUniverse is Ownable { using SafeMath for uint256; using SafeMath for uint8; using SafeERC20 for IERC20; address private constant GUARD = address(0); // Info of each user. struct UserInfo { uint256 lastStakedTime; uint256 amount; // How many LP tokens the user has provided. uint256 rewardDebt; // Reward debt. See explanation below. address next; // // We do some fancy math here. Basically, any point in time, the amount of NOVAs // entitled to a user but is pending to be distributed is: // // pending reward = (user.amount * pool.accNovaPerShare) - user.rewardDebt // // Whenever a user deposits or withdraws LP tokens to a pool. Here's what happens: // 1. The pool's `accNovaPerShare` (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. NOVAs to distribute per block. uint256 lastRewardBlock; // Last block number that NOVAs distribution occurs. uint256 accNovaPerShare; // Accumulated NOVAs per share, times 1e12. See below. uint256 totalLpStaked; // Total Amount of LP Tokens Staked. uint256 startTimestamp; // Timestamp of the pool start uint256 totalPlasma; // cached totalPlasma calcul - too much gas consumption } // The NOVA TOKEN! NovaToken public nova; // Dev address. address public devaddr; // Block number when bonus NOVA period ends. uint256 public bonusEndBlock; // NOVA tokens created per block. uint256 public novaPerBlock; // Bonus muliplier for early nova makers. uint256 public constant BONUS_MULTIPLIER = 2; // 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 NOVA mining starts. uint256 public startBlock; // The timestamp when NOVA mining starts uint256 public startTimestamp; event Deposit(address indexed user, uint256 indexed pid, uint256 amount); event Withdraw(address indexed user, uint256 indexed pid, uint256 amount); event EmergencyWithdraw( address indexed user, uint256 indexed pid, uint256 amount ); constructor( NovaToken _nova, address _devaddr, uint256 _novaPerBlock, uint256 _startBlock, uint256 _bonusEndBlock ) { nova = _nova; devaddr = _devaddr; novaPerBlock = _novaPerBlock; bonusEndBlock = _bonusEndBlock; startBlock = _startBlock; startTimestamp = block.timestamp; } function poolLength() public view returns (uint256) { return poolInfo.length; } // Add a new lp to the pool. Can only be called by the owner. // XXX DO NOT add the same LP token more than once. Rewards will be messed up if you do. function add( uint256 _allocPoint, IERC20 _lpToken, bool _withUpdate ) public onlyOwner { if (_withUpdate) { massUpdatePools(); } uint256 lastRewardBlock = block.number > startBlock ? block.number : startBlock; totalAllocPoint = totalAllocPoint.add(_allocPoint); poolInfo.push( PoolInfo({ lpToken: _lpToken, allocPoint: _allocPoint, lastRewardBlock: lastRewardBlock, accNovaPerShare: 0, totalLpStaked: 0, startTimestamp: block.timestamp, totalPlasma: 0 }) ); } enum Range {Unknown, Tiny, Common} uint256 private constant tinyLimit = 10; uint256 private constant commonLimit = 100; uint256 private constant scaleUp = 10000; function maxBuffRate(uint256 _pid,address _user) public view returns (uint16) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; require(pool.totalLpStaked > 0, "0 div"); uint256 percentage = user.amount.mul(scaleUp).div( pool.totalLpStaked ); if (percentage <= tinyLimit) { return 90; } else if (percentage > tinyLimit && percentage < commonLimit) { return 150; } else if (percentage >= commonLimit) { return 40; } revert("bad"); } // Update the given pool's NOVA allocation point. Can only be called by the owner. function set( uint256 _pid, uint256 _allocPoint, bool _withUpdate ) public onlyOwner { if (_withUpdate) { massUpdatePools(); } totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid].allocPoint).add( _allocPoint ); poolInfo[_pid].allocPoint = _allocPoint; } // Return reward multiplier over the given _from to _to block. function getMultiplier(uint256 _from, uint256 _to) public view returns (uint256) { if (_to <= bonusEndBlock) { return _to.sub(_from).mul(BONUS_MULTIPLIER); } else if (_from >= bonusEndBlock) { return _to.sub(_from); } else { return bonusEndBlock.sub(_from).mul(BONUS_MULTIPLIER).add( _to.sub(bonusEndBlock) ); } } function calculateBuffRate( uint256 _pid, address _user, uint256 _now_ ) public view returns (uint16) { UserInfo storage user = userInfo[_pid][_user]; uint16 buffRate = 10; for ( uint256 d = user.lastStakedTime; d + 1 days <= _now_; d += 1 days ) { buffRate += (buffRate * 50) / 100; } uint16 max = maxBuffRate(_pid, _user); if(buffRate > max){ buffRate = max; } return buffRate; } function calculateNovaPerBlock() public view returns (uint256) { uint currentTimestamp = block.timestamp; uint daysSinceStartStaking = (currentTimestamp - startTimestamp).mul(100).div(60).div(60).div(24); uint8 halvingDiv = 0; if(daysSinceStartStaking >= 15000){ return 0; } if(daysSinceStartStaking >= 7000){ halvingDiv = 8; } else if(daysSinceStartStaking >= 3000){ halvingDiv = 4; } else if(daysSinceStartStaking >= 1000){ halvingDiv = 2; } uint256 novaPerBlockNow = novaPerBlock; if (halvingDiv > 0){ novaPerBlockNow = novaPerBlockNow.div(halvingDiv); } return novaPerBlockNow; } function plasmaPower( uint256 _pid, address _user, uint256 _now_ ) private view returns (uint256) { UserInfo storage user = userInfo[_pid][_user]; uint16 buffRate = calculateBuffRate(_pid, _user, _now_); return user.amount.mul(buffRate); } function totalPlasmaPower(uint256 _pid) public view returns (uint256) { uint256 total; uint256 _now_ = block.timestamp; for ( address iter = userInfo[_pid][GUARD].next; iter != GUARD; iter = userInfo[_pid][iter].next ) { if(userInfo[_pid][iter].amount == 0) continue; total += plasmaPower(_pid, iter, _now_); } return total; } // View function to see pending NOVAs on frontend. function pendingNova(uint256 _pid, address _user) public view returns (uint256) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accNovaPerShare = pool.accNovaPerShare; uint256 plasma = plasmaPower(_pid, _user, block.timestamp); if (block.number > pool.lastRewardBlock && pool.totalPlasma > 0) { uint256 multiplier = getMultiplier( pool.lastRewardBlock, block.number ); uint256 novaReward = multiplier .mul(calculateNovaPerBlock()) .mul(pool.allocPoint) .div(totalAllocPoint); accNovaPerShare = accNovaPerShare.add( novaReward.mul(1e12).div(pool.totalPlasma) ); } return plasma.mul(accNovaPerShare).div(1e12).sub(user.rewardDebt); } // Update reward variables for all pools. Be careful of gas spending! function massUpdatePools() public { uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { updatePool(pid); } } function calculateFeesPercentage(uint256 _pid, address _user) public view returns (uint256) { UserInfo storage user = userInfo[_pid][_user]; uint currentTimestamp = block.timestamp; uint daysSinceStartStaking = (currentTimestamp - user.lastStakedTime).div(60).div(60).div(24); uint feesPercentage = max(30 - daysSinceStartStaking.div(2), 1); // -0.5% by day - start to 30, and min to 1 return feesPercentage; } function max(uint a, uint b) private pure returns (uint) { return a > b ? a : b; } // Update reward variables of the given pool to be up-to-date. function updatePool(uint256 _pid) private { PoolInfo storage pool = poolInfo[_pid]; if (block.number <= pool.lastRewardBlock) { return; } uint256 lpSupply = pool.lpToken.balanceOf(address(this)); if (lpSupply == 0) { pool.lastRewardBlock = block.number; return; } uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); uint256 novaReward = multiplier .mul(calculateNovaPerBlock()) .mul(pool.allocPoint) .div(totalAllocPoint); nova.mint(devaddr, novaReward.div(10)); nova.mint(address(this), novaReward); uint256 totalPlasma = totalPlasmaPower(_pid); pool.totalPlasma = totalPlasma; pool.accNovaPerShare = pool.accNovaPerShare.add( novaReward.mul(1e12).div(totalPlasma) ); pool.lastRewardBlock = block.number; } // Deposit LP tokens to MasterUniverse for NOVA allocation. function deposit(uint256 _pid, uint256 _amount) external { require(_pid < poolLength(), "bad pid"); require(_amount > 0, "amount could'n be 0"); PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; updatePool(_pid); // this is the first time we see this new staker - so we make them // the head of the list if (user.amount == 0) { // actually now should record the time user.lastStakedTime = block.timestamp; user.next = userInfo[_pid][GUARD].next; userInfo[_pid][GUARD].next = msg.sender; } // they already staked so let's harvest if (user.amount > 0 && block.number > bonusEndBlock) { uint256 pending = pendingNova(_pid, msg.sender); if (pending > 0) { uint feesPercentage = calculateFeesPercentage(_pid, msg.sender); uint256 fees = pending.mul(feesPercentage).div(100); uint256 gain = pending.sub(fees); safeNovaTransfer(devaddr, fees); safeNovaTransfer(msg.sender, gain); } } if (_amount > 0) { user.amount = user.amount.add(_amount); pool.lpToken.safeTransferFrom( address(msg.sender), address(this), _amount ); } pool.totalLpStaked = pool.totalLpStaked.add(_amount); uint256 plasma = plasmaPower(_pid, msg.sender, block.timestamp); user.rewardDebt = plasma.mul(pool.accNovaPerShare).div(1e12); emit Deposit(msg.sender, _pid, _amount); } // Withdraw LP tokens from MasterUniverse. function withdraw(uint256 _pid, uint256 _amount) external { require(_pid < poolLength(), "bad pid"); PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; require(block.number > bonusEndBlock, "withdraw: Withdrawals are not available yet, it's lock during 24h after the launch."); require(user.amount >= _amount, "withdraw: not good"); updatePool(_pid); uint256 pending = pendingNova(_pid, msg.sender); if (pending > 0) { uint feesPercentage = calculateFeesPercentage(_pid, msg.sender); uint256 fees = pending.mul(feesPercentage).div(100); uint256 gain = pending.sub(fees); safeNovaTransfer(devaddr, fees); safeNovaTransfer(msg.sender, gain); } if (_amount > 0) { user.amount = user.amount.sub(_amount); pool.totalLpStaked = pool.totalLpStaked.sub(_amount); pool.lpToken.safeTransfer(address(msg.sender), _amount); } uint256 plasma = 0; if(pool.totalLpStaked > 0){ plasma = plasmaPower(_pid, msg.sender, block.timestamp); } user.rewardDebt = plasma.mul(pool.accNovaPerShare).div(1e12); emit Withdraw(msg.sender, _pid, _amount); } // Withdraw without caring about rewards. EMERGENCY ONLY. function emergencyWithdraw(uint256 _pid) public { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; uint256 amount = user.amount; user.amount = 0; user.rewardDebt = 0; pool.lpToken.safeTransfer(address(msg.sender), amount); emit EmergencyWithdraw(msg.sender, _pid, amount); } // Safe nova transfer function, just in case // if rounding error causes pool to not have enough NOVAs. function safeNovaTransfer(address _to, uint256 _amount) private { uint256 novaBal = nova.balanceOf(address(this)); nova.transfer(_to, _amount > novaBal ? novaBal : _amount); } // Update dev address by the previous dev. function dev(address _devaddr) public { require(msg.sender == devaddr, "dev: wut?"); devaddr = _devaddr; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract NovaToken","name":"_nova","type":"address"},{"internalType":"address","name":"_devaddr","type":"address"},{"internalType":"uint256","name":"_novaPerBlock","type":"uint256"},{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"uint256","name":"_bonusEndBlock","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"BONUS_MULTIPLIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_lpToken","type":"address"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bonusEndBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_now_","type":"uint256"}],"name":"calculateBuffRate","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"calculateFeesPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"calculateNovaPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_devaddr","type":"address"}],"name":"dev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devaddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"getMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"maxBuffRate","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nova","outputs":[{"internalType":"contract NovaToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"novaPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"pendingNova","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IERC20","name":"lpToken","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accNovaPerShare","type":"uint256"},{"internalType":"uint256","name":"totalLpStaked","type":"uint256"},{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"totalPlasma","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTimestamp","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":"uint256","name":"_pid","type":"uint256"}],"name":"totalPlasmaPower","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"lastStakedTime","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"},{"internalType":"address","name":"next","type":"address"}],"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
608060405260006007553480156200001657600080fd5b506040516200344c3803806200344c833981810160405260a08110156200003c57600080fd5b810190808051906020019092919080519060200190929190805190602001909291908051906020019092919080519060200190929190505050600062000087620001ce60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35084600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550826004819055508060038190555081600881905550426009819055505050505050620001d6565b600033905090565b61326680620001e66000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80636ba8fd8b116100f957806393f1a40b11610097578063d49e77cd11610071578063d49e77cd14610796578063e2bbb158146107ca578063e6fd48bc14610802578063f2fde38b14610820576101c4565b806393f1a40b14610665578063b674f528146106f2578063c673fa3714610734576101c4565b80638d88a90e116100d35780638d88a90e146105315780638da5cb5b146105755780638dbb1e3a146105a95780638dfc9b50146105f5576101c4565b80636ba8fd8b146104eb578063715018a6146105095780638aa2855014610513576101c4565b80633e841aa011610166578063516e167111610140578063516e1671146104515780635312ea8e1461046f578063630b5ba11461049d57806364482f79146104a7576101c4565b80633e841aa014610399578063441a3e70146103fb57806348cd4cb114610433576101c4565b806317caf6f1116101a257806317caf6f1146102cf5780631aed6553146102ed5780631e5ba66c1461030b5780631eaaa0451461033f576101c4565b8063081e3eda146101c95780631526fe27146101e757806315cc653814610269575b600080fd5b6101d1610864565b6040518082815260200191505060405180910390f35b610213600480360360208110156101fd57600080fd5b8101908080359060200190929190505050610871565b604051808873ffffffffffffffffffffffffffffffffffffffff16815260200187815260200186815260200185815260200184815260200183815260200182815260200197505050505050505060405180910390f35b6102b56004803603604081101561027f57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506108e0565b604051808261ffff16815260200191505060405180910390f35b6102d7610abe565b6040518082815260200191505060405180910390f35b6102f5610ac4565b6040518082815260200191505060405180910390f35b610313610aca565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103976004803603606081101561035557600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050610af0565b005b6103e5600480360360408110156103af57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610cfb565b6040518082815260200191505060405180910390f35b6104316004803603604081101561041157600080fd5b810190808035906020019092919080359060200190929190505050610dcb565b005b61043b611177565b6040518082815260200191505060405180910390f35b61045961117d565b6040518082815260200191505060405180910390f35b61049b6004803603602081101561048557600080fd5b8101908080359060200190929190505050611183565b005b6104a56112b7565b005b6104e9600480360360608110156104bd57600080fd5b8101908080359060200190929190803590602001909291908035151590602001909291905050506112e4565b005b6104f361142e565b6040518082815260200191505060405180910390f35b61051161150b565b005b61051b611691565b6040518082815260200191505060405180910390f35b6105736004803603602081101561054757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611696565b005b61057d61179d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105df600480360360408110156105bf57600080fd5b8101908080359060200190929190803590602001909291905050506117c6565b6040518082815260200191505060405180910390f35b61064b6004803603606081101561060b57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611878565b604051808261ffff16815260200191505060405180910390f35b6106b16004803603604081101561067b57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061193c565b604051808581526020018481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff16815260200194505050505060405180910390f35b61071e6004803603602081101561070857600080fd5b8101908080359060200190929190505050611999565b6040518082815260200191505060405180910390f35b6107806004803603604081101561074a57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b45565b6040518082815260200191505060405180910390f35b61079e611cd8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610800600480360360408110156107e057600080fd5b810190808035906020019092919080359060200190929190505050611cfe565b005b61080a6121bb565b6040518082815260200191505060405180910390f35b6108626004803603602081101561083657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121c1565b005b6000600580549050905090565b6005818154811061087e57fe5b90600052602060002090600702016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154908060040154908060050154908060060154905087565b600080600584815481106108f057fe5b9060005260206000209060070201905060006006600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008260040154116109ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260058152602001807f302064697600000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b60006109ff83600401546109f161271085600101546123cc90919063ffffffff16565b61245290919063ffffffff16565b9050600a8111610a1557605a9350505050610ab8565b600a81118015610a255750606481105b15610a365760969350505050610ab8565b60648110610a4a5760289350505050610ab8565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260038152602001807f626164000000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b92915050565b60075481565b60035481565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610af861249c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bb8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8015610bc757610bc66112b7565b5b60006008544311610bda57600854610bdc565b435b9050610bf3846007546124a490919063ffffffff16565b60078190555060056040518060e001604052808573ffffffffffffffffffffffffffffffffffffffff16815260200186815260200183815260200160008152602001600081526020014281526020016000815250908060018154018082558091505060019003906000526020600020906007020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c08201518160060155505050505050565b6000806006600085815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060004290506000610d976018610d89603c610d7b603c8860000154880361245290919063ffffffff16565b61245290919063ffffffff16565b61245290919063ffffffff16565b90506000610dbc610db260028461245290919063ffffffff16565b601e03600161252c565b90508094505050505092915050565b610dd3610864565b8210610e47576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260078152602001807f626164207069640000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b600060058381548110610e5657fe5b9060005260206000209060070201905060006006600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506003544311610f14576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260538152602001806131b46053913960600191505060405180910390fd5b8281600101541015610f8e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f77697468647261773a206e6f7420676f6f64000000000000000000000000000081525060200191505060405180910390fd5b610f9784612545565b6000610fa38533611b45565b90506000811115611037576000610fba8633610cfb565b90506000610fe46064610fd684866123cc90919063ffffffff16565b61245290919063ffffffff16565b90506000610ffb82856128ad90919063ffffffff16565b9050611029600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836128f7565b61103333826128f7565b5050505b60008411156110ce576110578483600101546128ad90919063ffffffff16565b82600101819055506110768484600401546128ad90919063ffffffff16565b83600401819055506110cd33858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612aa19092919063ffffffff16565b5b600080846004015411156110ea576110e7863342612b43565b90505b61111864e8d4a5100061110a8660030154846123cc90919063ffffffff16565b61245290919063ffffffff16565b8360020181905550853373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568876040518082815260200191505060405180910390a3505050505050565b60085481565b60045481565b60006005828154811061119257fe5b9060005260206000209060070201905060006006600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600081600101549050600082600101819055506000826002018190555061126233828560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612aa19092919063ffffffff16565b833373ffffffffffffffffffffffffffffffffffffffff167fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae0595836040518082815260200191505060405180910390a350505050565b6000600580549050905060005b818110156112e0576112d581612545565b8060010190506112c4565b5050565b6112ec61249c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80156113bb576113ba6112b7565b5b611400826113f2600586815481106113cf57fe5b9060005260206000209060070201600101546007546128ad90919063ffffffff16565b6124a490919063ffffffff16565b600781905550816005848154811061141457fe5b906000526020600020906007020160010181905550505050565b60008042905060006114876018611479603c61146b603c61145d60646009548a036123cc90919063ffffffff16565b61245290919063ffffffff16565b61245290919063ffffffff16565b61245290919063ffffffff16565b90506000613a9882106114a05760009350505050611508565b611b5882106114b257600890506114d4565b610bb882106114c457600490506114d3565b6103e882106114d257600290505b5b5b6000600454905060008260ff161115611500576114fd8260ff168261245290919063ffffffff16565b90505b809450505050505b90565b61151361249c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600281565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611759576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f6465763a207775743f000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600060035482116117fe576117f760026117e985856128ad90919063ffffffff16565b6123cc90919063ffffffff16565b9050611872565b60035483106118215761181a83836128ad90919063ffffffff16565b9050611872565b61186f611839600354846128ad90919063ffffffff16565b6118616002611853876003546128ad90919063ffffffff16565b6123cc90919063ffffffff16565b6124a490919063ffffffff16565b90505b92915050565b6000806006600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000600a90506000826000015490505b846201518082011161190c5760646032830261ffff16816118fa57fe5b048201915062015180810190506118dd565b50600061191987876108e0565b90508061ffff168261ffff16111561192f578091505b8193505050509392505050565b6006602052816000526040600020602052806000526040600020600091509150508060000154908060010154908060020154908060030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905084565b600080600042905060006006600086815260200190815260200160002060008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b3a5760006006600087815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101541415611aaf57611abf565b611aba858284612b43565b830192505b6006600086815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050611a1a565b508192505050919050565b60008060058481548110611b5557fe5b9060005260206000209060070201905060006006600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000826003015490506000611bcf878742612b43565b9050836002015443118015611be8575060008460060154115b15611c8c576000611bfd8560020154436117c6565b90506000611c45600754611c378860010154611c29611c1a61142e565b876123cc90919063ffffffff16565b6123cc90919063ffffffff16565b61245290919063ffffffff16565b9050611c87611c788760060154611c6a64e8d4a51000856123cc90919063ffffffff16565b61245290919063ffffffff16565b856124a490919063ffffffff16565b935050505b611ccc8360020154611cbe64e8d4a51000611cb086866123cc90919063ffffffff16565b61245290919063ffffffff16565b6128ad90919063ffffffff16565b94505050505092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611d06610864565b8210611d7a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260078152602001807f626164207069640000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b60008111611df0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f616d6f756e7420636f756c64276e20626520300000000000000000000000000081525060200191505060405180910390fd5b600060058381548110611dff57fe5b9060005260206000209060070201905060006006600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611e6c84612545565b600081600101541415611fcb574281600001819055506006600085815260200190815260200160002060008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550336006600086815260200190815260200160002060008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b60008160010154118015611fe0575060035443115b15612087576000611ff18533611b45565b905060008111156120855760006120088633610cfb565b90506000612032606461202484866123cc90919063ffffffff16565b61245290919063ffffffff16565b9050600061204982856128ad90919063ffffffff16565b9050612077600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836128f7565b61208133826128f7565b5050505b505b6000831115612101576120a78382600101546124a490919063ffffffff16565b81600101819055506121003330858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612bcd909392919063ffffffff16565b5b6121188383600401546124a490919063ffffffff16565b8260040181905550600061212d853342612b43565b905061215d64e8d4a5100061214f8560030154846123cc90919063ffffffff16565b61245290919063ffffffff16565b8260020181905550843373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15866040518082815260200191505060405180910390a35050505050565b60095481565b6121c961249c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612289576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561230f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061316d6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808314156123df576000905061244c565b60008284029050828482816123f057fe5b0414612447576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806131936021913960400191505060405180910390fd5b809150505b92915050565b600061249483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612c8e565b905092915050565b600033905090565b600080828401905083811015612522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600081831161253b578161253d565b825b905092915050565b60006005828154811061255457fe5b906000526020600020906007020190508060020154431161257557506128aa565b60008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561260257600080fd5b505afa158015612616573d6000803e3d6000fd5b505050506040513d602081101561262c57600080fd5b8101908080519060200190929190505050905060008114156126585743826002018190555050506128aa565b60006126688360020154436117c6565b905060006126b06007546126a2866001015461269461268561142e565b876123cc90919063ffffffff16565b6123cc90919063ffffffff16565b61245290919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612727600a8561245290919063ffffffff16565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561277a57600080fd5b505af115801561278e573d6000803e3d6000fd5b50505050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1930836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561282557600080fd5b505af1158015612839573d6000803e3d6000fd5b50505050600061284886611999565b90508085600601819055506128936128808261287264e8d4a51000866123cc90919063ffffffff16565b61245290919063ffffffff16565b86600301546124a490919063ffffffff16565b856003018190555043856002018190555050505050505b50565b60006128ef83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612d54565b905092915050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561298257600080fd5b505afa158015612996573d6000803e3d6000fd5b505050506040513d60208110156129ac57600080fd5b81019080805190602001909291905050509050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84838511612a0b5784612a0d565b835b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612a6057600080fd5b505af1158015612a74573d6000803e3d6000fd5b505050506040513d6020811015612a8a57600080fd5b810190808051906020019092919050505050505050565b612b3e8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612e14565b505050565b6000806006600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000612ba5868686611878565b9050612bc28161ffff1683600101546123cc90919063ffffffff16565b925050509392505050565b612c88846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612e14565b50505050565b60008083118290612d3a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612cff578082015181840152602081019050612ce4565b50505050905090810190601f168015612d2c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612d4657fe5b049050809150509392505050565b6000838311158290612e01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612dc6578082015181840152602081019050612dab565b50505050905090810190601f168015612df35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6060612e76826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612f039092919063ffffffff16565b9050600081511115612efe57808060200190516020811015612e9757600080fd5b8101908080519060200190929190505050612efd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613207602a913960400191505060405180910390fd5b5b505050565b6060612f128484600085612f1b565b90509392505050565b6060612f2685613121565b612f98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310612fe85780518252602082019150602081019050602083039250612fc5565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461304a576040519150601f19603f3d011682016040523d82523d6000602084013e61304f565b606091505b50915091508115613064578092505050613119565b6000815111156130775780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156130de5780820151818401526020810190506130c3565b50505050905090810190601f16801561310b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561316357506000801b8214155b9250505091905056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7777697468647261773a205769746864726177616c7320617265206e6f7420617661696c61626c65207965742c2069742773206c6f636b20647572696e672032346820616674657220746865206c61756e63682e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212201254e92e764b979296dc89da6f63af43a289f60badb8945846e1ce89ff85abbd64736f6c634300070000330000000000000000000000005d42f35e883df02cab500a1f1942c468f1c046560000000000000000000000008fd7a87088f85b1faf47ded718fd839a065d848200000000000000000000000000000000000000000000000001944c7f3f7080000000000000000000000000000000000000000000000000000000000000ad9a550000000000000000000000000000000000000000000000000000000000adb3b9
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80636ba8fd8b116100f957806393f1a40b11610097578063d49e77cd11610071578063d49e77cd14610796578063e2bbb158146107ca578063e6fd48bc14610802578063f2fde38b14610820576101c4565b806393f1a40b14610665578063b674f528146106f2578063c673fa3714610734576101c4565b80638d88a90e116100d35780638d88a90e146105315780638da5cb5b146105755780638dbb1e3a146105a95780638dfc9b50146105f5576101c4565b80636ba8fd8b146104eb578063715018a6146105095780638aa2855014610513576101c4565b80633e841aa011610166578063516e167111610140578063516e1671146104515780635312ea8e1461046f578063630b5ba11461049d57806364482f79146104a7576101c4565b80633e841aa014610399578063441a3e70146103fb57806348cd4cb114610433576101c4565b806317caf6f1116101a257806317caf6f1146102cf5780631aed6553146102ed5780631e5ba66c1461030b5780631eaaa0451461033f576101c4565b8063081e3eda146101c95780631526fe27146101e757806315cc653814610269575b600080fd5b6101d1610864565b6040518082815260200191505060405180910390f35b610213600480360360208110156101fd57600080fd5b8101908080359060200190929190505050610871565b604051808873ffffffffffffffffffffffffffffffffffffffff16815260200187815260200186815260200185815260200184815260200183815260200182815260200197505050505050505060405180910390f35b6102b56004803603604081101561027f57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506108e0565b604051808261ffff16815260200191505060405180910390f35b6102d7610abe565b6040518082815260200191505060405180910390f35b6102f5610ac4565b6040518082815260200191505060405180910390f35b610313610aca565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103976004803603606081101561035557600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050610af0565b005b6103e5600480360360408110156103af57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610cfb565b6040518082815260200191505060405180910390f35b6104316004803603604081101561041157600080fd5b810190808035906020019092919080359060200190929190505050610dcb565b005b61043b611177565b6040518082815260200191505060405180910390f35b61045961117d565b6040518082815260200191505060405180910390f35b61049b6004803603602081101561048557600080fd5b8101908080359060200190929190505050611183565b005b6104a56112b7565b005b6104e9600480360360608110156104bd57600080fd5b8101908080359060200190929190803590602001909291908035151590602001909291905050506112e4565b005b6104f361142e565b6040518082815260200191505060405180910390f35b61051161150b565b005b61051b611691565b6040518082815260200191505060405180910390f35b6105736004803603602081101561054757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611696565b005b61057d61179d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105df600480360360408110156105bf57600080fd5b8101908080359060200190929190803590602001909291905050506117c6565b6040518082815260200191505060405180910390f35b61064b6004803603606081101561060b57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611878565b604051808261ffff16815260200191505060405180910390f35b6106b16004803603604081101561067b57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061193c565b604051808581526020018481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff16815260200194505050505060405180910390f35b61071e6004803603602081101561070857600080fd5b8101908080359060200190929190505050611999565b6040518082815260200191505060405180910390f35b6107806004803603604081101561074a57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b45565b6040518082815260200191505060405180910390f35b61079e611cd8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610800600480360360408110156107e057600080fd5b810190808035906020019092919080359060200190929190505050611cfe565b005b61080a6121bb565b6040518082815260200191505060405180910390f35b6108626004803603602081101561083657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121c1565b005b6000600580549050905090565b6005818154811061087e57fe5b90600052602060002090600702016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154908060040154908060050154908060060154905087565b600080600584815481106108f057fe5b9060005260206000209060070201905060006006600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008260040154116109ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260058152602001807f302064697600000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b60006109ff83600401546109f161271085600101546123cc90919063ffffffff16565b61245290919063ffffffff16565b9050600a8111610a1557605a9350505050610ab8565b600a81118015610a255750606481105b15610a365760969350505050610ab8565b60648110610a4a5760289350505050610ab8565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260038152602001807f626164000000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b92915050565b60075481565b60035481565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610af861249c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bb8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8015610bc757610bc66112b7565b5b60006008544311610bda57600854610bdc565b435b9050610bf3846007546124a490919063ffffffff16565b60078190555060056040518060e001604052808573ffffffffffffffffffffffffffffffffffffffff16815260200186815260200183815260200160008152602001600081526020014281526020016000815250908060018154018082558091505060019003906000526020600020906007020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c08201518160060155505050505050565b6000806006600085815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060004290506000610d976018610d89603c610d7b603c8860000154880361245290919063ffffffff16565b61245290919063ffffffff16565b61245290919063ffffffff16565b90506000610dbc610db260028461245290919063ffffffff16565b601e03600161252c565b90508094505050505092915050565b610dd3610864565b8210610e47576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260078152602001807f626164207069640000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b600060058381548110610e5657fe5b9060005260206000209060070201905060006006600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506003544311610f14576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260538152602001806131b46053913960600191505060405180910390fd5b8281600101541015610f8e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f77697468647261773a206e6f7420676f6f64000000000000000000000000000081525060200191505060405180910390fd5b610f9784612545565b6000610fa38533611b45565b90506000811115611037576000610fba8633610cfb565b90506000610fe46064610fd684866123cc90919063ffffffff16565b61245290919063ffffffff16565b90506000610ffb82856128ad90919063ffffffff16565b9050611029600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836128f7565b61103333826128f7565b5050505b60008411156110ce576110578483600101546128ad90919063ffffffff16565b82600101819055506110768484600401546128ad90919063ffffffff16565b83600401819055506110cd33858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612aa19092919063ffffffff16565b5b600080846004015411156110ea576110e7863342612b43565b90505b61111864e8d4a5100061110a8660030154846123cc90919063ffffffff16565b61245290919063ffffffff16565b8360020181905550853373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568876040518082815260200191505060405180910390a3505050505050565b60085481565b60045481565b60006005828154811061119257fe5b9060005260206000209060070201905060006006600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600081600101549050600082600101819055506000826002018190555061126233828560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612aa19092919063ffffffff16565b833373ffffffffffffffffffffffffffffffffffffffff167fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae0595836040518082815260200191505060405180910390a350505050565b6000600580549050905060005b818110156112e0576112d581612545565b8060010190506112c4565b5050565b6112ec61249c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80156113bb576113ba6112b7565b5b611400826113f2600586815481106113cf57fe5b9060005260206000209060070201600101546007546128ad90919063ffffffff16565b6124a490919063ffffffff16565b600781905550816005848154811061141457fe5b906000526020600020906007020160010181905550505050565b60008042905060006114876018611479603c61146b603c61145d60646009548a036123cc90919063ffffffff16565b61245290919063ffffffff16565b61245290919063ffffffff16565b61245290919063ffffffff16565b90506000613a9882106114a05760009350505050611508565b611b5882106114b257600890506114d4565b610bb882106114c457600490506114d3565b6103e882106114d257600290505b5b5b6000600454905060008260ff161115611500576114fd8260ff168261245290919063ffffffff16565b90505b809450505050505b90565b61151361249c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600281565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611759576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f6465763a207775743f000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600060035482116117fe576117f760026117e985856128ad90919063ffffffff16565b6123cc90919063ffffffff16565b9050611872565b60035483106118215761181a83836128ad90919063ffffffff16565b9050611872565b61186f611839600354846128ad90919063ffffffff16565b6118616002611853876003546128ad90919063ffffffff16565b6123cc90919063ffffffff16565b6124a490919063ffffffff16565b90505b92915050565b6000806006600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000600a90506000826000015490505b846201518082011161190c5760646032830261ffff16816118fa57fe5b048201915062015180810190506118dd565b50600061191987876108e0565b90508061ffff168261ffff16111561192f578091505b8193505050509392505050565b6006602052816000526040600020602052806000526040600020600091509150508060000154908060010154908060020154908060030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905084565b600080600042905060006006600086815260200190815260200160002060008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b3a5760006006600087815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101541415611aaf57611abf565b611aba858284612b43565b830192505b6006600086815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050611a1a565b508192505050919050565b60008060058481548110611b5557fe5b9060005260206000209060070201905060006006600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000826003015490506000611bcf878742612b43565b9050836002015443118015611be8575060008460060154115b15611c8c576000611bfd8560020154436117c6565b90506000611c45600754611c378860010154611c29611c1a61142e565b876123cc90919063ffffffff16565b6123cc90919063ffffffff16565b61245290919063ffffffff16565b9050611c87611c788760060154611c6a64e8d4a51000856123cc90919063ffffffff16565b61245290919063ffffffff16565b856124a490919063ffffffff16565b935050505b611ccc8360020154611cbe64e8d4a51000611cb086866123cc90919063ffffffff16565b61245290919063ffffffff16565b6128ad90919063ffffffff16565b94505050505092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611d06610864565b8210611d7a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260078152602001807f626164207069640000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b60008111611df0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f616d6f756e7420636f756c64276e20626520300000000000000000000000000081525060200191505060405180910390fd5b600060058381548110611dff57fe5b9060005260206000209060070201905060006006600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611e6c84612545565b600081600101541415611fcb574281600001819055506006600085815260200190815260200160002060008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550336006600086815260200190815260200160002060008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b60008160010154118015611fe0575060035443115b15612087576000611ff18533611b45565b905060008111156120855760006120088633610cfb565b90506000612032606461202484866123cc90919063ffffffff16565b61245290919063ffffffff16565b9050600061204982856128ad90919063ffffffff16565b9050612077600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836128f7565b61208133826128f7565b5050505b505b6000831115612101576120a78382600101546124a490919063ffffffff16565b81600101819055506121003330858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612bcd909392919063ffffffff16565b5b6121188383600401546124a490919063ffffffff16565b8260040181905550600061212d853342612b43565b905061215d64e8d4a5100061214f8560030154846123cc90919063ffffffff16565b61245290919063ffffffff16565b8260020181905550843373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15866040518082815260200191505060405180910390a35050505050565b60095481565b6121c961249c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612289576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561230f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061316d6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808314156123df576000905061244c565b60008284029050828482816123f057fe5b0414612447576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806131936021913960400191505060405180910390fd5b809150505b92915050565b600061249483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612c8e565b905092915050565b600033905090565b600080828401905083811015612522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600081831161253b578161253d565b825b905092915050565b60006005828154811061255457fe5b906000526020600020906007020190508060020154431161257557506128aa565b60008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561260257600080fd5b505afa158015612616573d6000803e3d6000fd5b505050506040513d602081101561262c57600080fd5b8101908080519060200190929190505050905060008114156126585743826002018190555050506128aa565b60006126688360020154436117c6565b905060006126b06007546126a2866001015461269461268561142e565b876123cc90919063ffffffff16565b6123cc90919063ffffffff16565b61245290919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612727600a8561245290919063ffffffff16565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561277a57600080fd5b505af115801561278e573d6000803e3d6000fd5b50505050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1930836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561282557600080fd5b505af1158015612839573d6000803e3d6000fd5b50505050600061284886611999565b90508085600601819055506128936128808261287264e8d4a51000866123cc90919063ffffffff16565b61245290919063ffffffff16565b86600301546124a490919063ffffffff16565b856003018190555043856002018190555050505050505b50565b60006128ef83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612d54565b905092915050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561298257600080fd5b505afa158015612996573d6000803e3d6000fd5b505050506040513d60208110156129ac57600080fd5b81019080805190602001909291905050509050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84838511612a0b5784612a0d565b835b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612a6057600080fd5b505af1158015612a74573d6000803e3d6000fd5b505050506040513d6020811015612a8a57600080fd5b810190808051906020019092919050505050505050565b612b3e8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612e14565b505050565b6000806006600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000612ba5868686611878565b9050612bc28161ffff1683600101546123cc90919063ffffffff16565b925050509392505050565b612c88846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612e14565b50505050565b60008083118290612d3a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612cff578082015181840152602081019050612ce4565b50505050905090810190601f168015612d2c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612d4657fe5b049050809150509392505050565b6000838311158290612e01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612dc6578082015181840152602081019050612dab565b50505050905090810190601f168015612df35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6060612e76826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612f039092919063ffffffff16565b9050600081511115612efe57808060200190516020811015612e9757600080fd5b8101908080519060200190929190505050612efd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613207602a913960400191505060405180910390fd5b5b505050565b6060612f128484600085612f1b565b90509392505050565b6060612f2685613121565b612f98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310612fe85780518252602082019150602081019050602083039250612fc5565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461304a576040519150601f19603f3d011682016040523d82523d6000602084013e61304f565b606091505b50915091508115613064578092505050613119565b6000815111156130775780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156130de5780820151818401526020810190506130c3565b50505050905090810190601f16801561310b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561316357506000801b8214155b9250505091905056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7777697468647261773a205769746864726177616c7320617265206e6f7420617661696c61626c65207965742c2069742773206c6f636b20647572696e672032346820616674657220746865206c61756e63682e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212201254e92e764b979296dc89da6f63af43a289f60badb8945846e1ce89ff85abbd64736f6c63430007000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005d42f35e883df02cab500a1f1942c468f1c046560000000000000000000000008fd7a87088f85b1faf47ded718fd839a065d848200000000000000000000000000000000000000000000000001944c7f3f7080000000000000000000000000000000000000000000000000000000000000ad9a550000000000000000000000000000000000000000000000000000000000adb3b9
-----Decoded View---------------
Arg [0] : _nova (address): 0x5d42f35E883dF02cAb500A1F1942c468f1C04656
Arg [1] : _devaddr (address): 0x8Fd7a87088f85B1fAF47ded718fD839a065D8482
Arg [2] : _novaPerBlock (uint256): 113800000000000000
Arg [3] : _startBlock (uint256): 11377237
Arg [4] : _bonusEndBlock (uint256): 11383737
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000005d42f35e883df02cab500a1f1942c468f1c04656
Arg [1] : 0000000000000000000000008fd7a87088f85b1faf47ded718fd839a065d8482
Arg [2] : 00000000000000000000000000000000000000000000000001944c7f3f708000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000ad9a55
Arg [4] : 0000000000000000000000000000000000000000000000000000000000adb3b9
Deployed Bytecode Sourcemap
32518:15342:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35728:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34603:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36919:653;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34844:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34370:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34242:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35990:735;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42074:493;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45561:1335;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34935:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34444:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46967:385;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41886:180;;;:::i;:::-;;37668:362;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39182:785;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27688:148;;;:::i;:::-;;34525:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47728:129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27046:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38106:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38594:580;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34685:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40300:486;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40850:953;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34291:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;43778:1727;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35013:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27991:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35728:93;35771:7;35798:8;:15;;;;35791:22;;35728:93;:::o;34603:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36919:653::-;37016:6;37040:21;37064:8;37073:4;37064:14;;;;;;;;;;;;;;;;;;37040:38;;37089:21;37113:8;:14;37122:4;37113:14;;;;;;;;;;;:21;37128:5;37113:21;;;;;;;;;;;;;;;37089:45;;37174:1;37153:4;:18;;;:22;37145:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37196:18;37217:72;37260:4;:18;;;37217:24;36905:5;37217:4;:11;;;:15;;:24;;;;:::i;:::-;:28;;:72;;;;:::i;:::-;37196:93;;36812:2;37306:10;:23;37302:237;;37353:2;37346:9;;;;;;;37302:237;36812:2;37377:10;:22;:50;;;;;36860:3;37403:10;:24;37377:50;37373:166;;;37451:3;37444:10;;;;;;;37373:166;36860:3;37476:10;:25;37472:67;;37525:2;37518:9;;;;;;;37472:67;37551:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36919:653;;;;;:::o;34844:34::-;;;;:::o;34370:28::-;;;;:::o;34242:21::-;;;;;;;;;;;;;:::o;35990:735::-;27268:12;:10;:12::i;:::-;27258:22;;:6;;;;;;;;;;:22;;;27250:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36125:11:::1;36121:61;;;36153:17;:15;:17::i;:::-;36121:61;36192:23;36233:10;;36218:12;:25;:79;;36287:10;;36218:79;;;36259:12;36218:79;36192:105;;36326:32;36346:11;36326:15;;:19;;:32;;;;:::i;:::-;36308:15;:50;;;;36369:8;36397:309;;;;;;;;36434:8;36397:309;;;;;;36473:11;36397:309;;;;36520:15;36397:309;;;;36571:1;36397:309;;;;36606:1;36397:309;;;;36642:15;36397:309;;;;36689:1;36397:309;;::::0;36369:348:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27328:1;35990:735:::0;;;:::o;42074:493::-;42184:7;42209:21;42233:8;:14;42242:4;42233:14;;;;;;;;;;;:21;42248:5;42233:21;;;;;;;;;;;;;;;42209:45;;42265:21;42289:15;42265:39;;42316:26;42345:64;42406:2;42345:56;42398:2;42345:48;42390:2;42365:4;:19;;;42346:16;:38;42345:44;;:48;;;;:::i;:::-;:52;;:56;;;;:::i;:::-;:60;;:64;;;;:::i;:::-;42316:93;;42420:19;42442:41;42451:28;42477:1;42451:21;:25;;:28;;;;:::i;:::-;42446:2;:33;42481:1;42442:3;:41::i;:::-;42420:63;;42545:14;42538:21;;;;;;42074:493;;;;:::o;45561:1335::-;45645:12;:10;:12::i;:::-;45638:4;:19;45630:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45680:21;45704:8;45713:4;45704:14;;;;;;;;;;;;;;;;;;45680:38;;45729:21;45753:8;:14;45762:4;45753:14;;;;;;;;;;;:26;45768:10;45753:26;;;;;;;;;;;;;;;45729:50;;45813:13;;45798:12;:28;45790:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45948:7;45933:4;:11;;;:22;;45925:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45989:16;46000:4;45989:10;:16::i;:::-;46016:15;46034:29;46046:4;46052:10;46034:11;:29::i;:::-;46016:47;;46088:1;46078:7;:11;46074:315;;;46106:19;46128:41;46152:4;46158:10;46128:23;:41::i;:::-;46106:63;;46184:12;46199:36;46231:3;46199:27;46211:14;46199:7;:11;;:27;;;;:::i;:::-;:31;;:36;;;;:::i;:::-;46184:51;;46250:12;46265:17;46277:4;46265:7;:11;;:17;;;;:::i;:::-;46250:32;;46297:31;46314:7;;;;;;;;;;;46323:4;46297:16;:31::i;:::-;46343:34;46360:10;46372:4;46343:16;:34::i;:::-;46074:315;;;;46413:1;46403:7;:11;46399:219;;;46445:24;46461:7;46445:4;:11;;;:15;;:24;;;;:::i;:::-;46431:4;:11;;:38;;;;46505:31;46528:7;46505:4;:18;;;:22;;:31;;;;:::i;:::-;46484:4;:18;;:52;;;;46551:55;46585:10;46598:7;46551:4;:12;;;;;;;;;;;;:25;;;;:55;;;;;:::i;:::-;46399:219;46630:14;46683:1;46662:4;:18;;;:22;46659:108;;;46709:46;46721:4;46727:10;46739:15;46709:11;:46::i;:::-;46700:55;;46659:108;46795:42;46832:4;46795:32;46806:4;:20;;;46795:6;:10;;:32;;;;:::i;:::-;:36;;:42;;;;:::i;:::-;46777:4;:15;;:60;;;;46874:4;46862:10;46853:35;;;46880:7;46853:35;;;;;;;;;;;;;;;;;;45561:1335;;;;;;:::o;34935:25::-;;;;:::o;34444:27::-;;;;:::o;46967:385::-;47026:21;47050:8;47059:4;47050:14;;;;;;;;;;;;;;;;;;47026:38;;47075:21;47099:8;:14;47108:4;47099:14;;;;;;;;;;;:26;47114:10;47099:26;;;;;;;;;;;;;;;47075:50;;47136:14;47153:4;:11;;;47136:28;;47189:1;47175:4;:11;;:15;;;;47219:1;47201:4;:15;;:19;;;;47231:54;47265:10;47278:6;47231:4;:12;;;;;;;;;;;;:25;;;;:54;;;;;:::i;:::-;47331:4;47319:10;47301:43;;;47337:6;47301:43;;;;;;;;;;;;;;;;;;46967:385;;;;:::o;41886:180::-;41931:14;41948:8;:15;;;;41931:32;;41979:11;41974:85;42002:6;41996:3;:12;41974:85;;;42032:15;42043:3;42032:10;:15::i;:::-;42010:5;;;;;41974:85;;;;41886:180;:::o;37668:362::-;27268:12;:10;:12::i;:::-;27258:22;;:6;;;;;;;;;;:22;;;27250:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37800:11:::1;37796:61;;;37828:17;:15;:17::i;:::-;37796:61;37885:87;37950:11;37885:46;37905:8;37914:4;37905:14;;;;;;;;;;;;;;;;;;:25;;;37885:15;;:19;;:46;;;;:::i;:::-;:50;;:87;;;;:::i;:::-;37867:15;:105;;;;38011:11;37983:8;37992:4;37983:14;;;;;;;;;;;;;;;;;;:25;;:39;;;;37668:362:::0;;;:::o;39182:785::-;39236:7;39261:21;39285:15;39261:39;;39312:26;39341:68;39406:2;39341:60;39398:2;39341:52;39390:2;39341:44;39381:3;39361:14;;39342:16;:33;39341:39;;:44;;;;:::i;:::-;:48;;:52;;;;:::i;:::-;:56;;:60;;;;:::i;:::-;:64;;:68;;;;:::i;:::-;39312:97;;39420:16;39481:5;39456:21;:30;39453:69;;39509:1;39502:8;;;;;;;39453:69;39562:4;39537:21;:29;39534:234;;39595:1;39582:14;;39534:234;;;39642:4;39617:21;:29;39614:154;;39675:1;39662:14;;39614:154;;;39722:4;39697:21;:29;39694:74;;39755:1;39742:14;;39694:74;39614:154;39534:234;39781:23;39807:12;;39781:38;;39847:1;39834:10;:14;;;39830:95;;;39882:31;39902:10;39882:31;;:15;:19;;:31;;;;:::i;:::-;39864:49;;39830:95;39944:15;39937:22;;;;;;39182:785;;:::o;27688:148::-;27268:12;:10;:12::i;:::-;27258:22;;:6;;;;;;;;;;:22;;;27250:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27795:1:::1;27758:40;;27779:6;::::0;::::1;;;;;;;;27758:40;;;;;;;;;;;;27826:1;27809:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;27688:148::o:0;34525:44::-;34568:1;34525:44;:::o;47728:129::-;47799:7;;;;;;;;;;;47785:21;;:10;:21;;;47777:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47841:8;47831:7;;:18;;;;;;;;;;;;;;;;;;47728:129;:::o;27046:79::-;27084:7;27111:6;;;;;;;;;;;27104:13;;27046:79;:::o;38106:480::-;38205:7;38241:13;;38234:3;:20;38230:349;;38278:36;34568:1;38278:14;38286:5;38278:3;:7;;:14;;;;:::i;:::-;:18;;:36;;;;:::i;:::-;38271:43;;;;38230:349;38345:13;;38336:5;:22;38332:247;;38382:14;38390:5;38382:3;:7;;:14;;;;:::i;:::-;38375:21;;;;38332:247;38453:114;38526:22;38534:13;;38526:3;:7;;:22;;;;:::i;:::-;38453:46;34568:1;38453:24;38471:5;38453:13;;:17;;:24;;;;:::i;:::-;:28;;:46;;;;:::i;:::-;:50;;:114;;;;:::i;:::-;38429:138;;38106:480;;;;;:::o;38594:580::-;38734:6;38753:21;38777:8;:14;38786:4;38777:14;;;;;;;;;;;:21;38792:5;38777:21;;;;;;;;;;;;;;;38753:45;;38809:15;38827:2;38809:20;;38859:9;38871:4;:19;;;38859:31;;38840:182;38919:5;38909:6;38905:1;:10;:19;38840:182;;39007:3;39001:2;38990:8;:13;38989:21;;;;;;;;38977:33;;;;38944:6;38939:11;;;;38840:182;;;;39034:10;39047:24;39059:4;39065:5;39047:11;:24::i;:::-;39034:37;;39096:3;39085:14;;:8;:14;;;39082:59;;;39126:3;39115:14;;39082:59;39158:8;39151:15;;;;;38594:580;;;;;:::o;34685:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40300:486::-;40388:7;40413:13;40437;40453:15;40437:31;;40500:12;40515:8;:14;40524:4;40515:14;;;;;;;;;;;:21;32700:1;40515:21;;;;;;;;;;;;;;;:26;;;;;;;;;;;;40500:41;;40481:273;32700:1;40556:13;;:4;:13;;;40481:273;;40677:1;40646:8;:14;40655:4;40646:14;;;;;;;;;;;:20;40661:4;40646:20;;;;;;;;;;;;;;;:27;;;:32;40643:45;;;40680:8;;40643:45;40712:30;40724:4;40730;40736:5;40712:11;:30::i;:::-;40703:39;;;;40481:273;40591:8;:14;40600:4;40591:14;;;;;;;;;;;:20;40606:4;40591:20;;;;;;;;;;;;;;;:25;;;;;;;;;;;;40584:32;;40481:273;;;;40773:5;40766:12;;;;40300:486;;;:::o;40850:953::-;40948:7;40973:21;40997:8;41006:4;40997:14;;;;;;;;;;;;;;;;;;40973:38;;41022:21;41046:8;:14;41055:4;41046:14;;;;;;;;;;;:21;41061:5;41046:21;;;;;;;;;;;;;;;41022:45;;41078:23;41104:4;:20;;;41078:46;;41135:14;41152:41;41164:4;41170:5;41177:15;41152:11;:41::i;:::-;41135:58;;41225:4;:20;;;41210:12;:35;:59;;;;;41268:1;41249:4;:16;;;:20;41210:59;41206:512;;;41286:18;41307:98;41339:4;:20;;;41378:12;41307:13;:98::i;:::-;41286:119;;41420:18;41441:135;41560:15;;41441:96;41521:4;:15;;;41441:57;41474:23;:21;:23::i;:::-;41441:10;:32;;:57;;;;:::i;:::-;:79;;:96;;;;:::i;:::-;:118;;:135;;;;:::i;:::-;41420:156;;41611:95;41649:42;41674:4;:16;;;41649:20;41664:4;41649:10;:14;;:20;;;;:::i;:::-;:24;;:42;;;;:::i;:::-;41611:15;:19;;:95;;;;:::i;:::-;41593:113;;41206:512;;;41737:58;41779:4;:15;;;41737:37;41769:4;41737:27;41748:15;41737:6;:10;;:27;;;;:::i;:::-;:31;;:37;;;;:::i;:::-;:41;;:58;;;;:::i;:::-;41730:65;;;;;;40850:953;;;;:::o;34291:22::-;;;;;;;;;;;;;:::o;43778:1727::-;43861:12;:10;:12::i;:::-;43854:4;:19;43846:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43914:1;43904:7;:11;43896:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43952:21;43976:8;43985:4;43976:14;;;;;;;;;;;;;;;;;;43952:38;;44001:21;44025:8;:14;44034:4;44025:14;;;;;;;;;;;:26;44040:10;44025:26;;;;;;;;;;;;;;;44001:50;;44064:16;44075:4;44064:10;:16::i;:::-;44221:1;44206:4;:11;;;:16;44202:246;;;44313:15;44291:4;:19;;:37;;;;44356:8;:14;44365:4;44356:14;;;;;;;;;;;:21;32700:1;44356:21;;;;;;;;;;;;;;;:26;;;;;;;;;;;;44344:4;:9;;;:38;;;;;;;;;;;;;;;;;;44426:10;44397:8;:14;44406:4;44397:14;;;;;;;;;;;:21;32700:1;44397:21;;;;;;;;;;;;;;;:26;;;:39;;;;;;;;;;;;;;;;;;44202:246;44527:1;44513:4;:11;;;:15;:47;;;;;44547:13;;44532:12;:28;44513:47;44509:480;;;44577:15;44595:29;44607:4;44613:10;44595:11;:29::i;:::-;44577:47;;44653:1;44643:7;:11;44639:339;;;44675:19;44697:41;44721:4;44727:10;44697:23;:41::i;:::-;44675:63;;44757:12;44772:36;44804:3;44772:27;44784:14;44772:7;:11;;:27;;;;:::i;:::-;:31;;:36;;;;:::i;:::-;44757:51;;44827:12;44842:17;44854:4;44842:7;:11;;:17;;;;:::i;:::-;44827:32;;44878:31;44895:7;;;;;;;;;;;44904:4;44878:16;:31::i;:::-;44928:34;44945:10;44957:4;44928:16;:34::i;:::-;44639:339;;;;44509:480;;45015:1;45005:7;:11;45001:237;;;45047:24;45063:7;45047:4;:11;;;:15;;:24;;;;:::i;:::-;45033:4;:11;;:38;;;;45086:140;45142:10;45180:4;45204:7;45086:4;:12;;;;;;;;;;;;:29;;;;:140;;;;;;:::i;:::-;45001:237;45271:31;45294:7;45271:4;:18;;;:22;;:31;;;;:::i;:::-;45250:4;:18;;:52;;;;45313:14;45330:46;45342:4;45348:10;45360:15;45330:11;:46::i;:::-;45313:63;;45405:42;45442:4;45405:32;45416:4;:20;;;45405:6;:10;;:32;;;;:::i;:::-;:36;;:42;;;;:::i;:::-;45387:4;:15;;:60;;;;45483:4;45471:10;45463:34;;;45489:7;45463:34;;;;;;;;;;;;;;;;;;43778:1727;;;;;:::o;35013:29::-;;;;:::o;27991:244::-;27268:12;:10;:12::i;:::-;27258:22;;:6;;;;;;;;;;:22;;;27250:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28100:1:::1;28080:22;;:8;:22;;;;28072:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28190:8;28161:38;;28182:6;::::0;::::1;;;;;;;;28161:38;;;;;;;;;;;;28219:8;28210:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;27991:244:::0;:::o;12027:471::-;12085:7;12335:1;12330;:6;12326:47;;;12360:1;12353:8;;;;12326:47;12385:9;12401:1;12397;:5;12385:17;;12430:1;12425;12421;:5;;;;;;:10;12413:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12489:1;12482:8;;;12027:471;;;;;:::o;12974:132::-;13032:7;13059:39;13063:1;13066;13059:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;13052:46;;12974:132;;;;:::o;603:106::-;656:15;691:10;684:17;;603:106;:::o;10673:181::-;10731:7;10751:9;10767:1;10763;:5;10751:17;;10792:1;10787;:6;;10779:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10845:1;10838:8;;;10673:181;;;;:::o;42575:96::-;42626:4;42654:1;42650;:5;:13;;42662:1;42650:13;;;42658:1;42650:13;42643:20;;42575:96;;;;:::o;42747:958::-;42800:21;42824:8;42833:4;42824:14;;;;;;;;;;;;;;;;;;42800:38;;42869:4;:20;;;42853:12;:36;42849:75;;42906:7;;;42849:75;42934:16;42953:4;:12;;;;;;;;;;;;:22;;;42984:4;42953:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42934:56;;43017:1;43005:8;:13;43001:102;;;43058:12;43035:4;:20;;:35;;;;43085:7;;;;43001:102;43113:18;43134:49;43148:4;:20;;;43170:12;43134:13;:49::i;:::-;43113:70;;43194:18;43215:123;43322:15;;43215:88;43287:4;:15;;;43215:53;43244:23;:21;:23::i;:::-;43215:10;:28;;:53;;;;:::i;:::-;:71;;:88;;;;:::i;:::-;:106;;:123;;;;:::i;:::-;43194:144;;43349:4;;;;;;;;;;;:9;;;43359:7;;;;;;;;;;;43368:18;43383:2;43368:10;:14;;:18;;;;:::i;:::-;43349:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43398:4;;;;;;;;;;;:9;;;43416:4;43423:10;43398:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43445:19;43467:22;43484:4;43467:16;:22::i;:::-;43445:44;;43519:11;43500:4;:16;;:30;;;;43564:87;43603:37;43628:11;43603:20;43618:4;43603:10;:14;;:20;;;;:::i;:::-;:24;;:37;;;;:::i;:::-;43564:4;:20;;;:24;;:87;;;;:::i;:::-;43541:4;:20;;:110;;;;43685:12;43662:4;:20;;:35;;;;42747:958;;;;;;;:::o;11137:136::-;11195:7;11222:43;11226:1;11229;11222:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;11215:50;;11137:136;;;;:::o;47474:198::-;47549:15;47567:4;;;;;;;;;;;:14;;;47590:4;47567:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47549:47;;47607:4;;;;;;;;;;;:13;;;47621:3;47636:7;47626;:17;:37;;47656:7;47626:37;;;47646:7;47626:37;47607:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47474:198;;;:::o;28805:177::-;28888:86;28908:5;28938:23;;;28963:2;28967:5;28915:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28888:19;:86::i;:::-;28805:177;;;:::o;39975:317::-;40110:7;40130:21;40154:8;:14;40163:4;40154:14;;;;;;;;;;;:21;40169:5;40154:21;;;;;;;;;;;;;;;40130:45;;40186:15;40204:37;40222:4;40228:5;40235;40204:17;:37::i;:::-;40186:55;;40259:25;40275:8;40259:25;;:4;:11;;;:15;;:25;;;;:::i;:::-;40252:32;;;;39975:317;;;;;:::o;28990:205::-;29091:96;29111:5;29141:27;;;29170:4;29176:2;29180:5;29118:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29091:19;:96::i;:::-;28990:205;;;;:::o;13602:278::-;13688:7;13720:1;13716;:5;13723:12;13708:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13747:9;13763:1;13759;:5;;;;;;13747:17;;13871:1;13864:8;;;13602:278;;;;;:::o;11576:192::-;11662:7;11695:1;11690;:6;;11698:12;11682:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11722:9;11738:1;11734;:5;11722:17;;11759:1;11752:8;;;11576:192;;;;;:::o;31110:761::-;31534:23;31560:69;31588:4;31560:69;;;;;;;;;;;;;;;;;31568:5;31560:27;;;;:69;;;;;:::i;:::-;31534:95;;31664:1;31644:10;:17;:21;31640:224;;;31786:10;31775:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31767:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31640:224;31110:761;;;:::o;7468:196::-;7571:12;7603:53;7626:6;7634:4;7640:1;7643:12;7603:22;:53::i;:::-;7596:60;;7468:196;;;;;:::o;8845:979::-;8975:12;9008:18;9019:6;9008:10;:18::i;:::-;9000:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9134:12;9148:23;9175:6;:11;;9195:8;9206:4;9175:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9133:78;;;;9226:7;9222:595;;;9257:10;9250:17;;;;;;9222:595;9391:1;9371:10;:17;:21;9367:439;;;9634:10;9628:17;9695:15;9682:10;9678:2;9674:19;9667:44;9582:148;9777:12;9770:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8845:979;;;;;;;:::o;4353:619::-;4413:4;4675:16;4702:19;4724:66;4702:88;;;;4893:7;4881:20;4869:32;;4933:11;4921:8;:23;;:42;;;;;4960:3;4948:15;;:8;:15;;4921:42;4913:51;;;;4353:619;;;:::o
Swarm Source
ipfs://1254e92e764b979296dc89da6f63af43a289f60badb8945846e1ce89ff85abbd
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.