More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 24,311 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 21560963 | 105 days ago | IN | 0 ETH | 0.00117702 | ||||
Withdraw | 21402652 | 128 days ago | IN | 0 ETH | 0.00140609 | ||||
Withdraw | 21249408 | 149 days ago | IN | 0 ETH | 0.00176602 | ||||
Withdraw | 21217277 | 153 days ago | IN | 0 ETH | 0.00297368 | ||||
Withdraw | 20210839 | 294 days ago | IN | 0 ETH | 0.00052706 | ||||
Withdraw | 20174222 | 299 days ago | IN | 0 ETH | 0.00048852 | ||||
Claim Reward | 19955961 | 330 days ago | IN | 0 ETH | 0.00080455 | ||||
Withdraw | 19582801 | 382 days ago | IN | 0 ETH | 0.00469635 | ||||
Withdraw | 19525678 | 390 days ago | IN | 0 ETH | 0.00442601 | ||||
Withdraw | 19511791 | 392 days ago | IN | 0 ETH | 0.00287879 | ||||
Withdraw | 19511785 | 392 days ago | IN | 0 ETH | 0.00337793 | ||||
Withdraw | 19408466 | 406 days ago | IN | 0 ETH | 0.00762387 | ||||
Emergency Withdr... | 19319330 | 419 days ago | IN | 0 ETH | 0.00205715 | ||||
Withdraw | 19132763 | 445 days ago | IN | 0 ETH | 0.00298796 | ||||
Claim Reward | 19085740 | 451 days ago | IN | 0 ETH | 0.00082918 | ||||
Withdraw | 19085738 | 451 days ago | IN | 0 ETH | 0.00355953 | ||||
Withdraw | 19083883 | 452 days ago | IN | 0 ETH | 0.0039805 | ||||
Claim Reward | 19083882 | 452 days ago | IN | 0 ETH | 0.00488294 | ||||
Withdraw | 19010791 | 462 days ago | IN | 0 ETH | 0.00044748 | ||||
Withdraw | 19010790 | 462 days ago | IN | 0 ETH | 0.00279514 | ||||
Withdraw | 18951379 | 470 days ago | IN | 0 ETH | 0.00193419 | ||||
Withdraw | 18880532 | 480 days ago | IN | 0 ETH | 0.00341097 | ||||
Claim Reward | 18869676 | 482 days ago | IN | 0 ETH | 0.00207859 | ||||
Withdraw | 18834730 | 487 days ago | IN | 0 ETH | 0.00644857 | ||||
Withdraw | 18719082 | 503 days ago | IN | 0 ETH | 0.00490692 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
bAlphaMaster
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-03-04 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol pragma solidity >=0.6.0 <0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: @openzeppelin/contracts/utils/EnumerableSet.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: contracts/bAlphaToken.sol pragma solidity 0.6.12; contract bAlphaToken is ERC20("bAlpha", "bALPHA"), Ownable { uint256 public cap = 18000e18 + 1e17; address public bAlphaMaster; mapping(address => uint) public redeemed; constructor(address _sendTo) public { _mint(_sendTo, 1e17); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { super._beforeTokenTransfer(from, to, amount); if (from == address(0)) { require(totalSupply().add(amount) <= cap, "ERC20Capped: cap exceeded"); } } function setMaster(address _bAlphaMaster) public onlyOwner { bAlphaMaster = _bAlphaMaster; } function mint(address _to, uint256 _amount) public { require(msg.sender == bAlphaMaster, "bAlphaToken: only master farmer can mint"); _mint(_to, _amount); } function safeBurn(uint256 _amount) public { uint canBurn = canBurnAmount(msg.sender); uint burnAmount = canBurn > _amount ? _amount : canBurn; redeemed[msg.sender] += burnAmount; _burn(msg.sender, burnAmount); } function burn(uint256 _amount) public { require(redeemed[msg.sender] + _amount <= 1e18, "bAlpphaToken: cannot burn more than 1 bAlpha"); redeemed[msg.sender] += _amount; _burn(msg.sender, _amount); } function canBurnAmount(address _add) public view returns (uint) { return 1e18 - redeemed[_add]; } } // File: contracts/bAlphaMaster.sol pragma solidity 0.6.12; contract bAlphaMaster is Ownable { using SafeMath for uint256; using SafeERC20 for IERC20; struct UserInfo { uint256 amount; // How many LP tokens the user has provided. uint256 rewardDebt; // Reward debt. See explanation below. } // Info of each pool. struct PoolInfo { IERC20 lpToken; uint256 allocPoint; uint256 lastRewardBlock; uint256 rewardPerShare; } bAlphaToken public bAlpha; uint256 public REWARD_PER_BLOCK; uint256[] public REWARD_MULTIPLIER = [688, 413, 310, 232, 209, 188, 169, 152, 137, 123, 111, 100]; uint256[] public HALVING_AT_BLOCK; uint256 public FINISH_BONUS_AT_BLOCK; uint256 public START_BLOCK; // Info of each pool. PoolInfo[] public poolInfo; mapping(address => uint256) public poolId1; // poolId1 count from 1, subtraction 1 before using with poolInfo // Info of each user that stakes LP tokens. pid => user address => info mapping (uint256 => mapping (address => UserInfo)) public userInfo; // Total allocation poitns. Must be the sum of all allocation points in all pools. uint256 public totalAllocPoint = 0; event Deposit(address indexed user, uint256 indexed pid, uint256 amount); event Withdraw(address indexed user, uint256 indexed pid, uint256 amount); event EmergencyWithdraw(address indexed user, uint256 indexed pid, uint256 amount); event SendReward(address indexed user, uint256 indexed pid, uint256 amount); constructor( bAlphaToken _bAlpha, uint256 _rewardPerBlock, uint256 _startBlock, uint256 _halvingAfterBlock ) public { bAlpha = _bAlpha; REWARD_PER_BLOCK = _rewardPerBlock; START_BLOCK = _startBlock; for (uint256 i = 0; i < REWARD_MULTIPLIER.length - 1; i++) { uint256 halvingAtBlock = _halvingAfterBlock.mul(i + 1).add(_startBlock); HALVING_AT_BLOCK.push(halvingAtBlock); } FINISH_BONUS_AT_BLOCK = _halvingAfterBlock.mul(REWARD_MULTIPLIER.length - 1).add(_startBlock); HALVING_AT_BLOCK.push(uint256(-1)); } // -------- For manage pool --------- function add(uint256 _allocPoint, IERC20 _lpToken, bool _withUpdate) public onlyOwner { require(poolId1[address(_lpToken)] == 0, "bAlphaMaster::add: lp is already in pool"); if (_withUpdate) { massUpdatePools(); } uint256 lastRewardBlock = block.number > START_BLOCK ? block.number : START_BLOCK; totalAllocPoint = totalAllocPoint.add(_allocPoint); poolId1[address(_lpToken)] = poolInfo.length + 1; poolInfo.push(PoolInfo({ lpToken: _lpToken, allocPoint: _allocPoint, lastRewardBlock: lastRewardBlock, rewardPerShare: 0 })); } 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; } function massUpdatePools() public { uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { updatePool(pid); } } function updatePool(uint256 _pid) public { PoolInfo storage pool = poolInfo[_pid]; if (block.number <= pool.lastRewardBlock) { return; } uint256 lpSupply = pool.lpToken.balanceOf(address(this)); if (lpSupply == 0) { pool.lastRewardBlock = block.number; return; } uint256 reward = getPoolReward(pool.lastRewardBlock, block.number, pool.allocPoint); bAlpha.mint(address(this), reward); pool.rewardPerShare = pool.rewardPerShare.add(reward.mul(1e12).div(lpSupply)); pool.lastRewardBlock = block.number; } // --------- For user ---------------- function deposit(uint256 _pid, uint256 _amount) public { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; updatePool(_pid); if (user.amount > 0) { uint256 pending = user.amount.mul(pool.rewardPerShare).div(1e12).sub(user.rewardDebt); if(pending > 0) { safeTransferReward(msg.sender, pending); } } if(_amount > 0) { pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount); user.amount = user.amount.add(_amount); } user.rewardDebt = user.amount.mul(pool.rewardPerShare).div(1e12); emit Deposit(msg.sender, _pid, _amount); } function withdraw(uint256 _pid, uint256 _amount) public { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; require(user.amount >= _amount, "withdraw: not good"); updatePool(_pid); uint256 pending = user.amount.mul(pool.rewardPerShare).div(1e12).sub(user.rewardDebt); if(pending > 0) { safeTransferReward(msg.sender, pending); } if(_amount > 0) { user.amount = user.amount.sub(_amount); pool.lpToken.safeTransfer(address(msg.sender), _amount); } user.rewardDebt = user.amount.mul(pool.rewardPerShare).div(1e12); emit Withdraw(msg.sender, _pid, _amount); } function claimReward(uint256 _pid) public { deposit(_pid, 0); } // Withdraw without caring about rewards. EMERGENCY ONLY. function emergencyWithdraw(uint256 _pid) public { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; pool.lpToken.safeTransfer(address(msg.sender), user.amount); emit EmergencyWithdraw(msg.sender, _pid, user.amount); user.amount = 0; user.rewardDebt = 0; } // ----------------------------- function safeTransferReward(address _to, uint256 _amount) internal { uint256 bal = bAlpha.balanceOf(address(this)); if (_amount > bal) { bAlpha.transfer(_to, bal); } else { bAlpha.transfer(_to, _amount); } } // GET INFO for UI function getMultiplier(uint256 _from, uint256 _to) public view returns (uint256) { uint256 result = 0; if (_from < START_BLOCK) return 0; for (uint256 i = 0; i < HALVING_AT_BLOCK.length; i++) { uint256 endBlock = HALVING_AT_BLOCK[i]; if (_to <= endBlock) { uint256 m = _to.sub(_from).mul(REWARD_MULTIPLIER[i]); return result.add(m); } if (_from < endBlock) { uint256 m = endBlock.sub(_from).mul(REWARD_MULTIPLIER[i]); _from = endBlock; result = result.add(m); } } return result; } function getPoolReward(uint256 _from, uint256 _to, uint256 _allocPoint) public view returns (uint) { uint256 multiplier = getMultiplier(_from, _to); uint256 amount = (multiplier.mul(REWARD_PER_BLOCK).mul(_allocPoint).div(totalAllocPoint)).div(100); uint256 amountCanMint = bAlpha.cap().sub(bAlpha.totalSupply()); return amountCanMint < amount ? amountCanMint : amount; } function getRewardPerBlock(uint256 pid1) public view returns (uint256) { uint256 multiplier = getMultiplier(block.number -1, block.number); if (pid1 == 0) { return (multiplier.mul(REWARD_PER_BLOCK)).div(100); } else { return (multiplier .mul(REWARD_PER_BLOCK) .mul(poolInfo[pid1 - 1].allocPoint) .div(totalAllocPoint)) .div(100); } } function pendingReward(uint256 _pid, address _user) public view returns (uint256) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 rewardPerShare = pool.rewardPerShare; uint256 lpSupply = pool.lpToken.balanceOf(address(this)); if (block.number > pool.lastRewardBlock && lpSupply > 0) { uint256 reward = getPoolReward(pool.lastRewardBlock, block.number, pool.allocPoint); rewardPerShare = rewardPerShare.add(reward.mul(1e12).div(lpSupply)); } return user.amount.mul(rewardPerShare).div(1e12).sub(user.rewardDebt); } function poolLength() public view returns (uint256) { return poolInfo.length; } function getStakedAmount(uint _pid, address _user) public view returns (uint256) { UserInfo storage user = userInfo[_pid][_user]; return user.amount; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract bAlphaToken","name":"_bAlpha","type":"address"},{"internalType":"uint256","name":"_rewardPerBlock","type":"uint256"},{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"uint256","name":"_halvingAfterBlock","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":"SendReward","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":"FINISH_BONUS_AT_BLOCK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"HALVING_AT_BLOCK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"REWARD_MULTIPLIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REWARD_PER_BLOCK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"START_BLOCK","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":"bAlpha","outputs":[{"internalType":"contract bAlphaToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"claimReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"getMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"}],"name":"getPoolReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"pid1","type":"uint256"}],"name":"getRewardPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"getStakedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"poolId1","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":"rewardPerShare","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":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6102006040526102b0608090815261019d60a05261013660c05260e860e05260d16101005260bc6101205260a961014052609861016052608961018052607b6101a052606f6101c05260646101e0526200005e90600390600c620002ea565b506000600a553480156200007157600080fd5b5060405162001e3d38038062001e3d833981810160405260808110156200009757600080fd5b50805160208201516040830151606090930151919290916000620000ba62000224565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180546001600160a01b0319166001600160a01b0386161790556002839055600682905560005b60035460001901811015620001b657600062000173846200015f84600101866200022860201b6200131f1790919060201c565b6200028f60201b620013781790919060201c565b60048054600181810183556000929092527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01919091559190910190506200012c565b50620001de826200015f600160038054905003846200022860201b6200131f1790919060201c565b6005555050600480546001810182556000919091526000197f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b9091015550620003579050565b3390565b600082620002395750600062000289565b828202828482816200024757fe5b0414620002865760405162461bcd60e51b815260040180806020018281038252602181526020018062001e1c6021913960400191505060405180910390fd5b90505b92915050565b60008282018381101562000286576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b8280548282559060005260206000209081019282156200032e579160200282015b828111156200032e578251829061ffff169055916020019190600101906200030b565b506200033c92915062000340565b5090565b5b808211156200033c576000815560010162000341565b611ab580620003676000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f957806398969e8211610097578063ce2529c911610071578063ce2529c914610484578063d8db39d7146104aa578063e2bbb158146104b2578063f2fde38b146104d5576101a9565b806398969e8214610412578063ae169a501461043e578063c8ed76801461045b576101a9565b80638dbb1e3a116100d35780638dbb1e3a1461039a57806393f1a40b146103bd578063975532dc14610402578063980c2a981461040a576101a9565b8063715018a6146103515780637b550bc9146103595780638da5cb5b14610376576101a9565b80633a71ede81161016657806351eb05a61161014057806351eb05a6146102e45780635312ea8e14610301578063630b5ba11461031e57806364482f7914610326576101a9565b80633a71ede8146102785780634179b4fb146102a4578063441a3e70146102c1576101a9565b8063081e3eda146101ae5780631526fe27146101c857806317caf6f1146102155780631eaaa0451461021d5780632fda77351461025357806339b3e82614610270575b600080fd5b6101b66104fb565b60408051918252519081900360200190f35b6101e5600480360360208110156101de57600080fd5b5035610501565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b6101b6610542565b6102516004803603606081101561023357600080fd5b508035906001600160a01b0360208201351690604001351515610548565b005b6101b66004803603602081101561026957600080fd5b5035610736565b6101b6610754565b6101b66004803603604081101561028e57600080fd5b50803590602001356001600160a01b031661075a565b6101b6600480360360208110156102ba57600080fd5b5035610784565b610251600480360360408110156102d757600080fd5b5080359060200135610791565b610251600480360360208110156102fa57600080fd5b50356108f0565b6102516004803603602081101561031757600080fd5b5035610a69565b610251610b04565b6102516004803603606081101561033c57600080fd5b50803590602081013590604001351515610b27565b610251610c02565b6101b66004803603602081101561036f57600080fd5b5035610cae565b61037e610d37565b604080516001600160a01b039092168252519081900360200190f35b6101b6600480360360408110156103b057600080fd5b5080359060200135610d46565b6103e9600480360360408110156103d357600080fd5b50803590602001356001600160a01b0316610e24565b6040805192835260208301919091528051918290030190f35b6101b6610e48565b6101b6610e4e565b6101b66004803603604081101561042857600080fd5b50803590602001356001600160a01b0316610e54565b6102516004803603602081101561045457600080fd5b5035610f94565b6101b66004803603606081101561047157600080fd5b5080359060208101359060400135610f9f565b6101b66004803603602081101561049a57600080fd5b50356001600160a01b03166110ea565b61037e6110fc565b610251600480360360408110156104c857600080fd5b508035906020013561110b565b610251600480360360208110156104eb57600080fd5b50356001600160a01b031661121d565b60075490565b6007818154811061050e57fe5b600091825260209091206004909102018054600182015460028301546003909301546001600160a01b039092169350919084565b600a5481565b6105506113d2565b6001600160a01b0316610561610d37565b6001600160a01b0316146105aa576040805162461bcd60e51b81526020600482018190526024820152600080516020611a36833981519152604482015290519081900360640190fd5b6001600160a01b038216600090815260086020526040902054156105ff5760405162461bcd60e51b8152600401808060200182810382526028815260200180611a0e6028913960400191505060405180910390fd5b801561060d5761060d610b04565b6000600654431161062057600654610622565b435b600a549091506106329085611378565b600a55600780546001600160a01b03948516600081815260086020908152604080832060019586019055805160808101825293845290830198895282019485526060820181815284549384018555939052517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688600490920291820180546001600160a01b031916919096161790945593517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c689840155517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68a8301555090517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68b90910155565b6003818154811061074357fe5b600091825260209091200154905081565b60065481565b60008281526009602090815260408083206001600160a01b03851684529091529020545b92915050565b6004818154811061074357fe5b6000600783815481106107a057fe5b600091825260208083208684526009825260408085203386529092529220805460049092029092019250831115610813576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b61081c846108f0565b6000610856826001015461085064e8d4a5100061084a8760030154876000015461131f90919063ffffffff16565b906113d6565b9061143d565b9050801561086857610868338261149a565b831561089257815461087a908561143d565b82558254610892906001600160a01b0316338661162b565b600383015482546108ad9164e8d4a510009161084a9161131f565b6001830155604080518581529051869133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a35050505050565b6000600782815481106108ff57fe5b90600052602060002090600402019050806002015443116109205750610a66565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561096a57600080fd5b505afa15801561097e573d6000803e3d6000fd5b505050506040513d602081101561099457600080fd5b50519050806109aa575043600290910155610a66565b60006109bf8360020154438560010154610f9f565b600154604080516340c10f1960e01b81523060048201526024810184905290519293506001600160a01b03909116916340c10f199160448082019260009290919082900301818387803b158015610a1557600080fd5b505af1158015610a29573d6000803e3d6000fd5b50505050610a57610a4c8361084a64e8d4a510008561131f90919063ffffffff16565b600385015490611378565b60038401555050436002909101555b50565b600060078281548110610a7857fe5b60009182526020808320858452600982526040808520338087529352909320805460049093029093018054909450610abd926001600160a01b0391909116919061162b565b80546040805191825251849133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a360008082556001909101555050565b60075460005b81811015610b2357610b1b816108f0565b600101610b0a565b5050565b610b2f6113d2565b6001600160a01b0316610b40610d37565b6001600160a01b031614610b89576040805162461bcd60e51b81526020600482018190526024820152600080516020611a36833981519152604482015290519081900360640190fd5b8015610b9757610b97610b04565b610bd482610bce60078681548110610bab57fe5b906000526020600020906004020160010154600a5461143d90919063ffffffff16565b90611378565b600a819055508160078481548110610be857fe5b906000526020600020906004020160010181905550505050565b610c0a6113d2565b6001600160a01b0316610c1b610d37565b6001600160a01b031614610c64576040805162461bcd60e51b81526020600482018190526024820152600080516020611a36833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600080610cbe6001430343610d46565b905082610ce757610cdf606461084a6002548461131f90919063ffffffff16565b915050610d32565b610cdf606461084a600a5461084a60076001890381548110610d0557fe5b906000526020600020906004020160010154610d2c6002548861131f90919063ffffffff16565b9061131f565b919050565b6000546001600160a01b031690565b6006546000908190841015610d5f57600091505061077e565b60005b600454811015610e1c57600060048281548110610d7b57fe5b90600052602060002001549050808511610dce576000610db760038481548110610da157fe5b600091825260209091200154610d2c888a61143d565b9050610dc38482611378565b94505050505061077e565b80861015610e13576000610dfe60038481548110610de857fe5b600091825260209091200154610d2c848a61143d565b91965086919050610e0f8482611378565b9350505b50600101610d62565b509392505050565b60096020908152600092835260408084209091529082529020805460019091015482565b60025481565b60055481565b60008060078481548110610e6457fe5b600091825260208083208784526009825260408085206001600160a01b03898116875290845281862060049586029093016003810154815484516370a0823160e01b81523098810198909852935191985093969395939492909116926370a08231926024808301939192829003018186803b158015610ee257600080fd5b505afa158015610ef6573d6000803e3d6000fd5b505050506040513d6020811015610f0c57600080fd5b5051600285015490915043118015610f245750600081115b15610f61576000610f3e8560020154438760010154610f9f565b9050610f5d610f568361084a8464e8d4a5100061131f565b8490611378565b9250505b610f89836001015461085064e8d4a5100061084a86886000015461131f90919063ffffffff16565b979650505050505050565b610a6681600061110b565b600080610fac8585610d46565b90506000610fd4606461084a600a5461084a88610d2c6002548961131f90919063ffffffff16565b905060006110cc600160009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561102957600080fd5b505afa15801561103d573d6000803e3d6000fd5b505050506040513d602081101561105357600080fd5b505160015460408051631aa93a7560e11b815290516001600160a01b039092169163355274ea91600480820192602092909190829003018186803b15801561109a57600080fd5b505afa1580156110ae573d6000803e3d6000fd5b505050506040513d60208110156110c457600080fd5b50519061143d565b90508181106110db57816110dd565b805b93505050505b9392505050565b60086020526000908152604090205481565b6001546001600160a01b031681565b60006007838154811061111a57fe5b6000918252602080832086845260098252604080852033865290925292206004909102909101915061114b846108f0565b805415611194576000611180826001015461085064e8d4a5100061084a8760030154876000015461131f90919063ffffffff16565b9050801561119257611192338261149a565b505b82156111c05781546111b1906001600160a01b031633308661167d565b80546111bd9084611378565b81555b600382015481546111db9164e8d4a510009161084a9161131f565b6001820155604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a350505050565b6112256113d2565b6001600160a01b0316611236610d37565b6001600160a01b03161461127f576040805162461bcd60e51b81526020600482018190526024820152600080516020611a36833981519152604482015290519081900360640190fd5b6001600160a01b0381166112c45760405162461bcd60e51b81526004018080602001828103825260268152602001806119a16026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60008261132e5750600061077e565b8282028284828161133b57fe5b04146110e35760405162461bcd60e51b81526004018080602001828103825260218152602001806119ed6021913960400191505060405180910390fd5b6000828201838110156110e3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b600080821161142c576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161143557fe5b049392505050565b600082821115611494576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156114e557600080fd5b505afa1580156114f9573d6000803e3d6000fd5b505050506040513d602081101561150f57600080fd5b50519050808211156115a3576001546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018590529151919092169163a9059cbb9160448083019260209291908290030181600087803b15801561157157600080fd5b505af1158015611585573d6000803e3d6000fd5b505050506040513d602081101561159b57600080fd5b506116269050565b6001546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018690529151919092169163a9059cbb9160448083019260209291908290030181600087803b1580156115f957600080fd5b505af115801561160d573d6000803e3d6000fd5b505050506040513d602081101561162357600080fd5b50505b505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526116269084906116dd565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526116d79085906116dd565b50505050565b6060611732826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661178e9092919063ffffffff16565b8051909150156116265780806020019051602081101561175157600080fd5b50516116265760405162461bcd60e51b815260040180806020018281038252602a815260200180611a56602a913960400191505060405180910390fd5b606061179d84846000856117a5565b949350505050565b6060824710156117e65760405162461bcd60e51b81526004018080602001828103825260268152602001806119c76026913960400191505060405180910390fd5b6117ef856118f6565b611840576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061187f5780518252601f199092019160209182019101611860565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146118e1576040519150601f19603f3d011682016040523d82523d6000602084013e6118e6565b606091505b5091509150610f898282866118fc565b3b151590565b6060831561190b5750816110e3565b82511561191b5782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561196557818101518382015260200161194d565b50505050905090810190601f1680156119925780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7762416c7068614d61737465723a3a6164643a206c7020697320616c726561647920696e20706f6f6c4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220050a71ccca5c0c4eed1c13f89b09a3fa82e065a621daac4706be5a7f8184e6db64736f6c634300060c0033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f770000000000000000000000007a5ce6abd131ea6b148a022cb76fc180ae3315a60000000000000000000000000000000000000000000000000035b9b75011bdd00000000000000000000000000000000000000000000000000000000000b6e436000000000000000000000000000000000000000000000000000000000000a410
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f957806398969e8211610097578063ce2529c911610071578063ce2529c914610484578063d8db39d7146104aa578063e2bbb158146104b2578063f2fde38b146104d5576101a9565b806398969e8214610412578063ae169a501461043e578063c8ed76801461045b576101a9565b80638dbb1e3a116100d35780638dbb1e3a1461039a57806393f1a40b146103bd578063975532dc14610402578063980c2a981461040a576101a9565b8063715018a6146103515780637b550bc9146103595780638da5cb5b14610376576101a9565b80633a71ede81161016657806351eb05a61161014057806351eb05a6146102e45780635312ea8e14610301578063630b5ba11461031e57806364482f7914610326576101a9565b80633a71ede8146102785780634179b4fb146102a4578063441a3e70146102c1576101a9565b8063081e3eda146101ae5780631526fe27146101c857806317caf6f1146102155780631eaaa0451461021d5780632fda77351461025357806339b3e82614610270575b600080fd5b6101b66104fb565b60408051918252519081900360200190f35b6101e5600480360360208110156101de57600080fd5b5035610501565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b6101b6610542565b6102516004803603606081101561023357600080fd5b508035906001600160a01b0360208201351690604001351515610548565b005b6101b66004803603602081101561026957600080fd5b5035610736565b6101b6610754565b6101b66004803603604081101561028e57600080fd5b50803590602001356001600160a01b031661075a565b6101b6600480360360208110156102ba57600080fd5b5035610784565b610251600480360360408110156102d757600080fd5b5080359060200135610791565b610251600480360360208110156102fa57600080fd5b50356108f0565b6102516004803603602081101561031757600080fd5b5035610a69565b610251610b04565b6102516004803603606081101561033c57600080fd5b50803590602081013590604001351515610b27565b610251610c02565b6101b66004803603602081101561036f57600080fd5b5035610cae565b61037e610d37565b604080516001600160a01b039092168252519081900360200190f35b6101b6600480360360408110156103b057600080fd5b5080359060200135610d46565b6103e9600480360360408110156103d357600080fd5b50803590602001356001600160a01b0316610e24565b6040805192835260208301919091528051918290030190f35b6101b6610e48565b6101b6610e4e565b6101b66004803603604081101561042857600080fd5b50803590602001356001600160a01b0316610e54565b6102516004803603602081101561045457600080fd5b5035610f94565b6101b66004803603606081101561047157600080fd5b5080359060208101359060400135610f9f565b6101b66004803603602081101561049a57600080fd5b50356001600160a01b03166110ea565b61037e6110fc565b610251600480360360408110156104c857600080fd5b508035906020013561110b565b610251600480360360208110156104eb57600080fd5b50356001600160a01b031661121d565b60075490565b6007818154811061050e57fe5b600091825260209091206004909102018054600182015460028301546003909301546001600160a01b039092169350919084565b600a5481565b6105506113d2565b6001600160a01b0316610561610d37565b6001600160a01b0316146105aa576040805162461bcd60e51b81526020600482018190526024820152600080516020611a36833981519152604482015290519081900360640190fd5b6001600160a01b038216600090815260086020526040902054156105ff5760405162461bcd60e51b8152600401808060200182810382526028815260200180611a0e6028913960400191505060405180910390fd5b801561060d5761060d610b04565b6000600654431161062057600654610622565b435b600a549091506106329085611378565b600a55600780546001600160a01b03948516600081815260086020908152604080832060019586019055805160808101825293845290830198895282019485526060820181815284549384018555939052517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688600490920291820180546001600160a01b031916919096161790945593517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c689840155517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68a8301555090517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68b90910155565b6003818154811061074357fe5b600091825260209091200154905081565b60065481565b60008281526009602090815260408083206001600160a01b03851684529091529020545b92915050565b6004818154811061074357fe5b6000600783815481106107a057fe5b600091825260208083208684526009825260408085203386529092529220805460049092029092019250831115610813576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b61081c846108f0565b6000610856826001015461085064e8d4a5100061084a8760030154876000015461131f90919063ffffffff16565b906113d6565b9061143d565b9050801561086857610868338261149a565b831561089257815461087a908561143d565b82558254610892906001600160a01b0316338661162b565b600383015482546108ad9164e8d4a510009161084a9161131f565b6001830155604080518581529051869133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a35050505050565b6000600782815481106108ff57fe5b90600052602060002090600402019050806002015443116109205750610a66565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561096a57600080fd5b505afa15801561097e573d6000803e3d6000fd5b505050506040513d602081101561099457600080fd5b50519050806109aa575043600290910155610a66565b60006109bf8360020154438560010154610f9f565b600154604080516340c10f1960e01b81523060048201526024810184905290519293506001600160a01b03909116916340c10f199160448082019260009290919082900301818387803b158015610a1557600080fd5b505af1158015610a29573d6000803e3d6000fd5b50505050610a57610a4c8361084a64e8d4a510008561131f90919063ffffffff16565b600385015490611378565b60038401555050436002909101555b50565b600060078281548110610a7857fe5b60009182526020808320858452600982526040808520338087529352909320805460049093029093018054909450610abd926001600160a01b0391909116919061162b565b80546040805191825251849133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a360008082556001909101555050565b60075460005b81811015610b2357610b1b816108f0565b600101610b0a565b5050565b610b2f6113d2565b6001600160a01b0316610b40610d37565b6001600160a01b031614610b89576040805162461bcd60e51b81526020600482018190526024820152600080516020611a36833981519152604482015290519081900360640190fd5b8015610b9757610b97610b04565b610bd482610bce60078681548110610bab57fe5b906000526020600020906004020160010154600a5461143d90919063ffffffff16565b90611378565b600a819055508160078481548110610be857fe5b906000526020600020906004020160010181905550505050565b610c0a6113d2565b6001600160a01b0316610c1b610d37565b6001600160a01b031614610c64576040805162461bcd60e51b81526020600482018190526024820152600080516020611a36833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600080610cbe6001430343610d46565b905082610ce757610cdf606461084a6002548461131f90919063ffffffff16565b915050610d32565b610cdf606461084a600a5461084a60076001890381548110610d0557fe5b906000526020600020906004020160010154610d2c6002548861131f90919063ffffffff16565b9061131f565b919050565b6000546001600160a01b031690565b6006546000908190841015610d5f57600091505061077e565b60005b600454811015610e1c57600060048281548110610d7b57fe5b90600052602060002001549050808511610dce576000610db760038481548110610da157fe5b600091825260209091200154610d2c888a61143d565b9050610dc38482611378565b94505050505061077e565b80861015610e13576000610dfe60038481548110610de857fe5b600091825260209091200154610d2c848a61143d565b91965086919050610e0f8482611378565b9350505b50600101610d62565b509392505050565b60096020908152600092835260408084209091529082529020805460019091015482565b60025481565b60055481565b60008060078481548110610e6457fe5b600091825260208083208784526009825260408085206001600160a01b03898116875290845281862060049586029093016003810154815484516370a0823160e01b81523098810198909852935191985093969395939492909116926370a08231926024808301939192829003018186803b158015610ee257600080fd5b505afa158015610ef6573d6000803e3d6000fd5b505050506040513d6020811015610f0c57600080fd5b5051600285015490915043118015610f245750600081115b15610f61576000610f3e8560020154438760010154610f9f565b9050610f5d610f568361084a8464e8d4a5100061131f565b8490611378565b9250505b610f89836001015461085064e8d4a5100061084a86886000015461131f90919063ffffffff16565b979650505050505050565b610a6681600061110b565b600080610fac8585610d46565b90506000610fd4606461084a600a5461084a88610d2c6002548961131f90919063ffffffff16565b905060006110cc600160009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561102957600080fd5b505afa15801561103d573d6000803e3d6000fd5b505050506040513d602081101561105357600080fd5b505160015460408051631aa93a7560e11b815290516001600160a01b039092169163355274ea91600480820192602092909190829003018186803b15801561109a57600080fd5b505afa1580156110ae573d6000803e3d6000fd5b505050506040513d60208110156110c457600080fd5b50519061143d565b90508181106110db57816110dd565b805b93505050505b9392505050565b60086020526000908152604090205481565b6001546001600160a01b031681565b60006007838154811061111a57fe5b6000918252602080832086845260098252604080852033865290925292206004909102909101915061114b846108f0565b805415611194576000611180826001015461085064e8d4a5100061084a8760030154876000015461131f90919063ffffffff16565b9050801561119257611192338261149a565b505b82156111c05781546111b1906001600160a01b031633308661167d565b80546111bd9084611378565b81555b600382015481546111db9164e8d4a510009161084a9161131f565b6001820155604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a350505050565b6112256113d2565b6001600160a01b0316611236610d37565b6001600160a01b03161461127f576040805162461bcd60e51b81526020600482018190526024820152600080516020611a36833981519152604482015290519081900360640190fd5b6001600160a01b0381166112c45760405162461bcd60e51b81526004018080602001828103825260268152602001806119a16026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60008261132e5750600061077e565b8282028284828161133b57fe5b04146110e35760405162461bcd60e51b81526004018080602001828103825260218152602001806119ed6021913960400191505060405180910390fd5b6000828201838110156110e3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b600080821161142c576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161143557fe5b049392505050565b600082821115611494576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156114e557600080fd5b505afa1580156114f9573d6000803e3d6000fd5b505050506040513d602081101561150f57600080fd5b50519050808211156115a3576001546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018590529151919092169163a9059cbb9160448083019260209291908290030181600087803b15801561157157600080fd5b505af1158015611585573d6000803e3d6000fd5b505050506040513d602081101561159b57600080fd5b506116269050565b6001546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018690529151919092169163a9059cbb9160448083019260209291908290030181600087803b1580156115f957600080fd5b505af115801561160d573d6000803e3d6000fd5b505050506040513d602081101561162357600080fd5b50505b505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526116269084906116dd565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526116d79085906116dd565b50505050565b6060611732826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661178e9092919063ffffffff16565b8051909150156116265780806020019051602081101561175157600080fd5b50516116265760405162461bcd60e51b815260040180806020018281038252602a815260200180611a56602a913960400191505060405180910390fd5b606061179d84846000856117a5565b949350505050565b6060824710156117e65760405162461bcd60e51b81526004018080602001828103825260268152602001806119c76026913960400191505060405180910390fd5b6117ef856118f6565b611840576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061187f5780518252601f199092019160209182019101611860565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146118e1576040519150601f19603f3d011682016040523d82523d6000602084013e6118e6565b606091505b5091509150610f898282866118fc565b3b151590565b6060831561190b5750816110e3565b82511561191b5782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561196557818101518382015260200161194d565b50505050905090810190601f1680156119925780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7762416c7068614d61737465723a3a6164643a206c7020697320616c726561647920696e20706f6f6c4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220050a71ccca5c0c4eed1c13f89b09a3fa82e065a621daac4706be5a7f8184e6db64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a5ce6abd131ea6b148a022cb76fc180ae3315a60000000000000000000000000000000000000000000000000035b9b75011bdd00000000000000000000000000000000000000000000000000000000000b6e436000000000000000000000000000000000000000000000000000000000000a410
-----Decoded View---------------
Arg [0] : _bAlpha (address): 0x7a5ce6abD131EA6B148a022CB76fc180ae3315A6
Arg [1] : _rewardPerBlock (uint256): 15122370739158480
Arg [2] : _startBlock (uint256): 11985974
Arg [3] : _halvingAfterBlock (uint256): 42000
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a5ce6abd131ea6b148a022cb76fc180ae3315a6
Arg [1] : 0000000000000000000000000000000000000000000000000035b9b75011bdd0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000b6e436
Arg [3] : 000000000000000000000000000000000000000000000000000000000000a410
Deployed Bytecode Sourcemap
47775:9021:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56518:93;;;:::i;:::-;;;;;;;;;;;;;;;;48564:26;;;;;;;;;;;;;;;;-1:-1:-1;48564:26:0;;:::i;:::-;;;;-1:-1:-1;;;;;48564:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48950:34;;;:::i;50017:668::-;;;;;;;;;;;;;;;;-1:-1:-1;50017:668:0;;;-1:-1:-1;;;;;50017:668:0;;;;;;;;;;;;:::i;:::-;;48313:97;;;;;;;;;;;;;;;;-1:-1:-1;48313:97:0;;:::i;48502:26::-;;;:::i;56619:174::-;;;;;;;;;;;;;;;;-1:-1:-1;56619:174:0;;;;;;-1:-1:-1;;;;;56619:174:0;;:::i;48417:33::-;;;;;;;;;;;;;;;;-1:-1:-1;48417:33:0;;:::i;52650:740::-;;;;;;;;;;;;;;;;-1:-1:-1;52650:740:0;;;;;;;:::i;51193:645::-;;;;;;;;;;;;;;;;-1:-1:-1;51193:645:0;;:::i;53546:356::-;;;;;;;;;;;;;;;;-1:-1:-1;53546:356:0;;:::i;51005:180::-;;;:::i;50693:304::-;;;;;;;;;;;;;;;;-1:-1:-1;50693:304:0;;;;;;;;;;;;;;:::i;34534:148::-;;;:::i;55369:477::-;;;;;;;;;;;;;;;;-1:-1:-1;55369:477:0;;:::i;33883:87::-;;;:::i;:::-;;;;-1:-1:-1;;;;;33883:87:0;;;;;;;;;;;;;;54254:688;;;;;;;;;;;;;;;;-1:-1:-1;54254:688:0;;;;;;;:::i;48789:66::-;;;;;;;;;;;;;;;;-1:-1:-1;48789:66:0;;;;;;-1:-1:-1;;;;;48789:66:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;48275:31;;;:::i;48457:36::-;;;:::i;55854:656::-;;;;;;;;;;;;;;;;-1:-1:-1;55854:656:0;;;;;;-1:-1:-1;;;;;55854:656:0;;:::i;53398:77::-;;;;;;;;;;;;;;;;-1:-1:-1;53398:77:0;;:::i;54950:411::-;;;;;;;;;;;;;;;;-1:-1:-1;54950:411:0;;;;;;;;;;;;:::i;48597:42::-;;;;;;;;;;;;;;;;-1:-1:-1;48597:42:0;-1:-1:-1;;;;;48597:42:0;;:::i;48237:25::-;;;:::i;51890:752::-;;;;;;;;;;;;;;;;-1:-1:-1;51890:752:0;;;;;;;:::i;34837:244::-;;;;;;;;;;;;;;;;-1:-1:-1;34837:244:0;-1:-1:-1;;;;;34837:244:0;;:::i;56518:93::-;56588:8;:15;56518:93;:::o;48564:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48564:26:0;;;;-1:-1:-1;48564:26:0;;;:::o;48950:34::-;;;;:::o;50017:668::-;34114:12;:10;:12::i;:::-;-1:-1:-1;;;;;34103:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;34103:23:0;;34095:68;;;;;-1:-1:-1;;;34095:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;34095:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;50122:26:0;::::1;;::::0;;;:7:::1;:26;::::0;;;;;:31;50114:84:::1;;;;-1:-1:-1::0;;;50114:84:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50213:11;50209:61;;;50241:17;:15;:17::i;:::-;50280:23;50321:11;;50306:12;:26;:55;;50350:11;;50306:55;;;50335:12;50306:55;50390:15;::::0;50280:81;;-1:-1:-1;50390:32:0::1;::::0;50410:11;50390:19:::1;:32::i;:::-;50372:15;:50:::0;50462:8:::1;:15:::0;;-1:-1:-1;;;;;50433:26:0;;::::1;;::::0;;;:7:::1;:26;::::0;;;;;;;50480:1:::1;50462:19:::0;;::::1;50433:48:::0;;50506:170;;::::1;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;;50492:185;;;;::::1;::::0;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;;50492:185:0::1;::::0;;;::::1;;::::0;;;;;;;;;;;;;;-1:-1:-1;50492:185:0;;;;;;;50017:668::o;48313:97::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48313:97:0;:::o;48502:26::-;;;;:::o;56619:174::-;56691:7;56735:14;;;:8;:14;;;;;;;;-1:-1:-1;;;;;56735:21:0;;;;;;;;;56774:11;56619:174;;;;;:::o;48417:33::-;;;;;;;;;;52650:740;52717:21;52741:8;52750:4;52741:14;;;;;;;;;;;;;;;;52790;;;:8;:14;;;;;;52805:10;52790:26;;;;;;;52835:11;;52741:14;;;;;;;;-1:-1:-1;52835:22:0;-1:-1:-1;52835:22:0;52827:53;;;;;-1:-1:-1;;;52827:53:0;;;;;;;;;;;;-1:-1:-1;;;52827:53:0;;;;;;;;;;;;;;;52891:16;52902:4;52891:10;:16::i;:::-;52918:15;52936:67;52987:4;:15;;;52936:46;52977:4;52936:36;52952:4;:19;;;52936:4;:11;;;:15;;:36;;;;:::i;:::-;:40;;:46::i;:::-;:50;;:67::i;:::-;52918:85;-1:-1:-1;53017:11:0;;53014:82;;53045:39;53064:10;53076:7;53045:18;:39::i;:::-;53109:11;;53106:151;;53151:11;;:24;;53167:7;53151:15;:24::i;:::-;53137:38;;53190:12;;:55;;-1:-1:-1;;;;;53190:12:0;53224:10;53237:7;53190:25;:55::i;:::-;53301:19;;;;53285:11;;:46;;53326:4;;53285:36;;:15;:36::i;:46::-;53267:15;;;:64;53347:35;;;;;;;;53368:4;;53356:10;;53347:35;;;;;;;;;52650:740;;;;;:::o;51193:645::-;51245:21;51269:8;51278:4;51269:14;;;;;;;;;;;;;;;;;;51245:38;;51314:4;:20;;;51298:12;:36;51294:75;;51351:7;;;51294:75;51398:12;;:37;;;-1:-1:-1;;;51398:37:0;;51429:4;51398:37;;;;;;51379:16;;-1:-1:-1;;;;;51398:12:0;;:22;;:37;;;;;;;;;;;;;;:12;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51398:37:0;;-1:-1:-1;51450:13:0;51446:102;;-1:-1:-1;51503:12:0;51480:20;;;;:35;51530:7;;51446:102;51558:14;51575:66;51589:4;:20;;;51611:12;51625:4;:15;;;51575:13;:66::i;:::-;51662:6;;:34;;;-1:-1:-1;;;51662:34:0;;51682:4;51662:34;;;;;;;;;;;;51558:83;;-1:-1:-1;;;;;;51662:6:0;;;;:11;;:34;;;;;:6;;:34;;;;;;;;:6;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51729:55;51753:30;51774:8;51753:16;51764:4;51753:6;:10;;:16;;;;:::i;:30::-;51729:19;;;;;:23;:55::i;:::-;51707:19;;;:77;-1:-1:-1;;51818:12:0;51795:20;;;;:35;51193:645;;:::o;53546:356::-;53605:21;53629:8;53638:4;53629:14;;;;;;;;;;;;;;;;53678;;;:8;:14;;;;;;53693:10;53678:26;;;;;;;;53762:11;;53629:14;;;;;;;53715:12;;53629:14;;-1:-1:-1;53715:59:0;;-1:-1:-1;;;;;53715:12:0;;;;;53693:10;53715:25;:59::i;:::-;53826:11;;53790:48;;;;;;;53820:4;;53808:10;;53790:48;;;;;;;;;53863:1;53849:15;;;53875;;;;:19;-1:-1:-1;;53546:356:0:o;51005:180::-;51067:8;:15;51050:14;51093:85;51121:6;51115:3;:12;51093:85;;;51151:15;51162:3;51151:10;:15::i;:::-;51129:5;;51093:85;;;;51005:180;:::o;50693:304::-;34114:12;:10;:12::i;:::-;-1:-1:-1;;;;;34103:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;34103:23:0;;34095:68;;;;;-1:-1:-1;;;34095:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;34095:68:0;;;;;;;;;;;;;;;50791:11:::1;50787:61;;;50819:17;:15;:17::i;:::-;50876:63;50927:11;50876:46;50896:8;50905:4;50896:14;;;;;;;;;;;;;;;;;;:25;;;50876:15;;:19;;:46;;;;:::i;:::-;:50:::0;::::1;:63::i;:::-;50858:15;:81;;;;50978:11;50950:8;50959:4;50950:14;;;;;;;;;;;;;;;;;;:25;;:39;;;;50693:304:::0;;;:::o;34534:148::-;34114:12;:10;:12::i;:::-;-1:-1:-1;;;;;34103:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;34103:23:0;;34095:68;;;;;-1:-1:-1;;;34095:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;34095:68:0;;;;;;;;;;;;;;;34641:1:::1;34625:6:::0;;34604:40:::1;::::0;-1:-1:-1;;;;;34625:6:0;;::::1;::::0;34604:40:::1;::::0;34641:1;;34604:40:::1;34672:1;34655:19:::0;;-1:-1:-1;;;;;;34655:19:0::1;::::0;;34534:148::o;55369:477::-;55431:7;55451:18;55472:44;55500:1;55486:12;:15;55503:12;55472:13;:44::i;:::-;55451:65;-1:-1:-1;55531:9:0;55527:312;;55564:43;55603:3;55565:32;55580:16;;55565:10;:14;;:32;;;;:::i;55564:43::-;55557:50;;;;;55527:312;55656:171;55823:3;55657:142;55783:15;;55657:103;55730:8;55746:1;55739:4;:8;55730:18;;;;;;;;;;;;;;;;;;:29;;;55657:50;55690:16;;55657:10;:32;;:50;;;;:::i;:::-;:72;;:103::i;55369:477::-;;;;:::o;33883:87::-;33929:7;33956:6;-1:-1:-1;;;;;33956:6:0;33883:87;:::o;54254:688::-;54387:11;;54326:7;;;;54379:19;;54375:33;;;54407:1;54400:8;;;;;54375:33;54426:9;54421:488;54445:16;:23;54441:27;;54421:488;;;54490:16;54509;54526:1;54509:19;;;;;;;;;;;;;;;;54490:38;;54556:8;54549:3;:15;54545:147;;54585:9;54597:40;54616:17;54634:1;54616:20;;;;;;;;;;;;;;;;;;54597:14;:3;54605:5;54597:7;:14::i;:40::-;54585:52;-1:-1:-1;54663:13:0;:6;54585:52;54663:10;:13::i;:::-;54656:20;;;;;;;;54545:147;54720:8;54712:5;:16;54708:190;;;54749:9;54761:45;54785:17;54803:1;54785:20;;;;;;;;;;;;;;;;;;54761:19;:8;54774:5;54761:12;:19::i;:45::-;54833:8;;-1:-1:-1;54833:8:0;;54749:57;-1:-1:-1;54869:13:0;:6;54749:57;54869:10;:13::i;:::-;54860:22;;54708:190;;-1:-1:-1;54470:3:0;;54421:488;;;-1:-1:-1;54928:6:0;54254:688;-1:-1:-1;;;54254:688:0:o;48789:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48275:31::-;;;;:::o;48457:36::-;;;;:::o;55854:656::-;55927:7;55947:21;55971:8;55980:4;55971:14;;;;;;;;;;;;;;;;56020;;;:8;:14;;;;;;-1:-1:-1;;;;;56020:21:0;;;;;;;;;;;55971:14;;;;;;;56077:19;;;;56126:12;;:37;;-1:-1:-1;;;56126:37:0;;56157:4;56126:37;;;;;;;;;55971:14;;-1:-1:-1;56020:21:0;;56077:19;;55971:14;;56126:12;;;;;:22;;:37;;;;;55971:14;;56126:37;;;;;:12;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56126:37:0;56193:20;;;;56126:37;;-1:-1:-1;56178:12:0;:35;:51;;;;;56228:1;56217:8;:12;56178:51;56174:249;;;56246:14;56263:66;56277:4;:20;;;56299:12;56313:4;:15;;;56263:13;:66::i;:::-;56246:83;-1:-1:-1;56361:50:0;56380:30;56401:8;56380:16;56246:83;56391:4;56380:10;:16::i;:30::-;56361:14;;:18;:50::i;:::-;56344:67;;56174:249;;56440:62;56486:4;:15;;;56440:41;56476:4;56440:31;56456:14;56440:4;:11;;;:15;;:31;;;;:::i;:62::-;56433:69;55854:656;-1:-1:-1;;;;;;;55854:656:0:o;53398:77::-;53451:16;53459:4;53465:1;53451:7;:16::i;54950:411::-;55043:4;55060:18;55081:25;55095:5;55102:3;55081:13;:25::i;:::-;55060:46;;55117:14;55134:81;55211:3;55135:70;55189:15;;55135:49;55172:11;55135:32;55150:16;;55135:10;:14;;:32;;;;:::i;55134:81::-;55117:98;;55226:21;55250:38;55267:6;;;;;;;;;-1:-1:-1;;;;;55267:6:0;-1:-1:-1;;;;;55267:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55267:20:0;55250:6;;:12;;;-1:-1:-1;;;55250:12:0;;;;-1:-1:-1;;;;;55250:6:0;;;;:10;;:12;;;;;55267:20;;55250:12;;;;;;;;:6;:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55250:12:0;;:16;:38::i;:::-;55226:62;;55322:6;55306:13;:22;:47;;55347:6;55306:47;;;55331:13;55306:47;55299:54;;;;;54950:411;;;;;;:::o;48597:42::-;;;;;;;;;;;;;:::o;48237:25::-;;;-1:-1:-1;;;;;48237:25:0;;:::o;51890:752::-;51956:21;51980:8;51989:4;51980:14;;;;;;;;;;;;;;;;52029;;;:8;:14;;;;;;52044:10;52029:26;;;;;;;51980:14;;;;;;;;-1:-1:-1;52066:16:0;52038:4;52066:10;:16::i;:::-;52097:11;;:15;52093:237;;52129:15;52147:67;52198:4;:15;;;52147:46;52188:4;52147:36;52163:4;:19;;;52147:4;:11;;;:15;;:36;;;;:::i;:67::-;52129:85;-1:-1:-1;52232:11:0;;52229:90;;52264:39;52283:10;52295:7;52264:18;:39::i;:::-;52093:237;;52343:11;;52340:170;;52371:12;;:74;;-1:-1:-1;;;;;52371:12:0;52409:10;52430:4;52437:7;52371:29;:74::i;:::-;52474:11;;:24;;52490:7;52474:15;:24::i;:::-;52460:38;;52340:170;52554:19;;;;52538:11;;:46;;52579:4;;52538:36;;:15;:36::i;:46::-;52520:15;;;:64;52600:34;;;;;;;;52620:4;;52608:10;;52600:34;;;;;;;;;51890:752;;;;:::o;34837:244::-;34114:12;:10;:12::i;:::-;-1:-1:-1;;;;;34103:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;34103:23:0;;34095:68;;;;;-1:-1:-1;;;34095:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;34095:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34926:22:0;::::1;34918:73;;;;-1:-1:-1::0;;;34918:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35028:6;::::0;;35007:38:::1;::::0;-1:-1:-1;;;;;35007:38:0;;::::1;::::0;35028:6;::::1;::::0;35007:38:::1;::::0;::::1;35056:6;:17:::0;;-1:-1:-1;;;;;;35056:17:0::1;-1:-1:-1::0;;;;;35056:17:0;;;::::1;::::0;;;::::1;::::0;;34837:244::o;6516:220::-;6574:7;6598:6;6594:20;;-1:-1:-1;6613:1:0;6606:8;;6594:20;6637:5;;;6641:1;6637;:5;:1;6661:5;;;;;:10;6653:56;;;;-1:-1:-1;;;6653:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5637:179;5695:7;5727:5;;;5751:6;;;;5743:46;;;;;-1:-1:-1;;;5743:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;32420:106;32508:10;32420:106;:::o;7214:153::-;7272:7;7304:1;7300;:5;7292:44;;;;;-1:-1:-1;;;7292:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7358:1;7354;:5;;;;;;;7214:153;-1:-1:-1;;;7214:153:0:o;6099:158::-;6157:7;6190:1;6185;:6;;6177:49;;;;;-1:-1:-1;;;6177:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6244:5:0;;;6099:158::o;53948:274::-;54040:6;;:31;;;-1:-1:-1;;;54040:31:0;;54065:4;54040:31;;;;;;54026:11;;-1:-1:-1;;;;;54040:6:0;;:16;;:31;;;;;;;;;;;;;;:6;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54040:31:0;;-1:-1:-1;54086:13:0;;;54082:133;;;54116:6;;:25;;;-1:-1:-1;;;54116:25:0;;-1:-1:-1;;;;;54116:25:0;;;;;;;;;;;;;;;:6;;;;;:15;;:25;;;;;;;;;;;;;;:6;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54082:133:0;;-1:-1:-1;54082:133:0;;54174:6;;:29;;;-1:-1:-1;;;54174:29:0;;-1:-1:-1;;;;;54174:29:0;;;;;;;;;;;;;;;:6;;;;;:15;;:29;;;;;;;;;;;;;;:6;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54082:133:0;53948:274;;;:::o;18999:177::-;19109:58;;;-1:-1:-1;;;;;19109:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19109:58:0;-1:-1:-1;;;19109:58:0;;;19082:86;;19102:5;;19082:19;:86::i;19184:205::-;19312:68;;;-1:-1:-1;;;;;19312:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19312:68:0;-1:-1:-1;;;19312:68:0;;;19285:96;;19305:5;;19285:19;:96::i;:::-;19184:205;;;;:::o;21304:761::-;21728:23;21754:69;21782:4;21754:69;;;;;;;;;;;;;;;;;21762:5;-1:-1:-1;;;;;21754:27:0;;;:69;;;;;:::i;:::-;21838:17;;21728:95;;-1:-1:-1;21838:21:0;21834:224;;21980:10;21969:30;;;;;;;;;;;;;;;-1:-1:-1;21969:30:0;21961:85;;;;-1:-1:-1;;;21961:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13994:195;14097:12;14129:52;14151:6;14159:4;14165:1;14168:12;14129:21;:52::i;:::-;14122:59;13994:195;-1:-1:-1;;;;13994:195:0:o;15046:530::-;15173:12;15231:5;15206:21;:30;;15198:81;;;;-1:-1:-1;;;15198:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15298:18;15309:6;15298:10;:18::i;:::-;15290:60;;;;;-1:-1:-1;;;15290:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15424:12;15438:23;15465:6;-1:-1:-1;;;;;15465:11:0;15485:5;15493:4;15465:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;15465:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15423:75;;;;15516:52;15534:7;15543:10;15555:12;15516:17;:52::i;11076:422::-;11443:20;11482:8;;;11076:422::o;17586:742::-;17701:12;17730:7;17726:595;;;-1:-1:-1;17761:10:0;17754:17;;17726:595;17875:17;;:21;17871:439;;18138:10;18132:17;18199:15;18186:10;18182:2;18178:19;18171:44;18086:148;18281:12;18274:20;;-1:-1:-1;;;18274:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://050a71ccca5c0c4eed1c13f89b09a3fa82e065a621daac4706be5a7f8184e6db
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $4.1 | 211.149 | $865.13 |
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.