Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 44 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Get Token Fund | 11316169 | 1451 days ago | IN | 0 ETH | 0.00230563 | ||||
Get Ether Fund | 11290309 | 1455 days ago | IN | 0 ETH | 0.0011739 | ||||
Claim | 11251068 | 1461 days ago | IN | 0.01 ETH | 0.00238915 | ||||
Claim | 11244270 | 1462 days ago | IN | 0.01 ETH | 0.00154376 | ||||
Claim | 11199311 | 1469 days ago | IN | 0.01 ETH | 0.00175427 | ||||
Claim | 11198983 | 1469 days ago | IN | 0.01 ETH | 0.00137044 | ||||
Claim | 11186033 | 1471 days ago | IN | 0.01 ETH | 0.00167074 | ||||
Claim | 11185773 | 1471 days ago | IN | 0.01 ETH | 0.00208842 | ||||
Claim | 11185106 | 1471 days ago | IN | 0.01 ETH | 0.00491197 | ||||
Claim | 11183656 | 1472 days ago | IN | 0.01 ETH | 0.00184616 | ||||
Claim | 11183321 | 1472 days ago | IN | 0.01 ETH | 0.00203078 | ||||
Claim | 11178489 | 1472 days ago | IN | 0.01 ETH | 0.00492868 | ||||
Claim | 11169116 | 1474 days ago | IN | 0.01 ETH | 0.00117787 | ||||
Claim | 11167276 | 1474 days ago | IN | 0.01 ETH | 0.0003671 | ||||
Claim | 11167276 | 1474 days ago | IN | 0.01 ETH | 0.00116951 | ||||
Claim | 11166854 | 1474 days ago | IN | 0.01 ETH | 0.00137836 | ||||
Claim | 11166418 | 1474 days ago | IN | 0.01 ETH | 0.00043593 | ||||
Claim | 11166418 | 1474 days ago | IN | 0.01 ETH | 0.0012614 | ||||
Claim | 11165212 | 1474 days ago | IN | 0.01 ETH | 0.00284025 | ||||
Claim | 11160568 | 1475 days ago | IN | 0.01 ETH | 0.00157635 | ||||
Claim | 11160237 | 1475 days ago | IN | 0.01 ETH | 0.00182946 | ||||
Claim | 11159807 | 1475 days ago | IN | 0.01 ETH | 0.00142012 | ||||
Claim | 11158019 | 1475 days ago | IN | 0.01 ETH | 0.0031527 | ||||
Claim | 11156582 | 1476 days ago | IN | 0.01 ETH | 0.00342501 | ||||
Claim | 11156476 | 1476 days ago | IN | 0.01 ETH | 0.00342501 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
11290309 | 1455 days ago | 0.39 ETH |
Loading...
Loading
Contract Name:
QubAirdrop
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-10-27 */ pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {Address-functionCall-address-bytes-}, but with * `errorMessage` as a fallback revert reason when `target` reverts. */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Performs a Solidity function call using a low level `call`, * transferring `value` wei. 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). * * Requirements: * * - `target` must be a contract. * - the calling contract must have an ETH balance of at least `value`. * - calling `target` with `data` must not revert. */ 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 {Address-functionCallWithValue-address-bytes-uint256-}, but * with `errorMessage` as a fallback revert reason when `target` reverts. */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } pragma solidity ^0.6.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); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract QubAirdrop is Ownable { using SafeERC20 for IERC20; uint256 public CLAIM_AMOUNT = 50*10**18; uint256 public CLAIM_PAYMENT = 1*10**16; IERC20 public qub = IERC20(0xB2D74b7a454EDa300c6E633f5b593d128C0C0Dcf); mapping(address => bool) public isClaimed; uint256 public claimedAddressesCount = 0; modifier checkClaim { require(!isClaimed[msg.sender]); _; } modifier checkPayment { require(msg.value >= CLAIM_PAYMENT); _; } function claim() public payable checkPayment checkClaim { isClaimed[msg.sender] = true; qub.safeTransfer(msg.sender, CLAIM_AMOUNT); claimedAddressesCount++; } function getEtherFund() public onlyOwner { msg.sender.transfer(address(this).balance); } function getTokenFund(address tokenAddress) public onlyOwner { IERC20 ierc20Token = IERC20(tokenAddress); uint256 tokenBalance = ierc20Token.balanceOf(address(this)); ierc20Token.safeTransfer(msg.sender, tokenBalance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"CLAIM_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLAIM_PAYMENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimedAddressesCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEtherFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"getTokenFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"qub","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526802b5e3af16b1880000600155662386f26fc10000600255600380546001600160a01b03191673b2d74b7a454eda300c6e633f5b593d128c0c0dcf1790556000600581905561005a6001600160e01b036100a916565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506100ad565b3390565b61098b806100bc6000396000f3fe60806040526004361061009c5760003560e01c80637e0b01b3116100645780637e0b01b31461012d5780638cc08025146101425780638da5cb5b14610189578063c9ec61b21461019e578063f2fde38b146101b3578063f6ed8519146101e65761009c565b8063270ef385146100a157806346228746146100c85780634e71d92d146100f95780636ca5a30b14610103578063715018a614610118575b600080fd5b3480156100ad57600080fd5b506100b6610219565b60408051918252519081900360200190f35b3480156100d457600080fd5b506100dd61021f565b604080516001600160a01b039092168252519081900360200190f35b61010161022e565b005b34801561010f57600080fd5b506101016102a2565b34801561012457600080fd5b50610101610329565b34801561013957600080fd5b506100b66103cb565b34801561014e57600080fd5b506101756004803603602081101561016557600080fd5b50356001600160a01b03166103d1565b604080519115158252519081900360200190f35b34801561019557600080fd5b506100dd6103e6565b3480156101aa57600080fd5b506100b66103f5565b3480156101bf57600080fd5b50610101600480360360208110156101d657600080fd5b50356001600160a01b03166103fb565b3480156101f257600080fd5b506101016004803603602081101561020957600080fd5b50356001600160a01b03166104f3565b60015481565b6003546001600160a01b031681565b60025434101561023d57600080fd5b3360009081526004602052604090205460ff161561025a57600080fd5b336000818152600460205260409020805460ff1916600190811790915554600354610297926001600160a01b03919091169163ffffffff6105e316565b600580546001019055565b6102aa610635565b6000546001600160a01b039081169116146102fa576040805162461bcd60e51b8152602060048201819052602482015260008051602061090c833981519152604482015290519081900360640190fd5b60405133904780156108fc02916000818181858888f19350505050158015610326573d6000803e3d6000fd5b50565b610331610635565b6000546001600160a01b03908116911614610381576040805162461bcd60e51b8152602060048201819052602482015260008051602061090c833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60055481565b60046020526000908152604090205460ff1681565b6000546001600160a01b031690565b60025481565b610403610635565b6000546001600160a01b03908116911614610453576040805162461bcd60e51b8152602060048201819052602482015260008051602061090c833981519152604482015290519081900360640190fd5b6001600160a01b0381166104985760405162461bcd60e51b81526004018080602001828103825260268152602001806108e66026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6104fb610635565b6000546001600160a01b0390811691161461054b576040805162461bcd60e51b8152602060048201819052602482015260008051602061090c833981519152604482015290519081900360640190fd5b604080516370a0823160e01b8152306004820152905182916000916001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561059657600080fd5b505afa1580156105aa573d6000803e3d6000fd5b505050506040513d60208110156105c057600080fd5b505190506105de6001600160a01b038316338363ffffffff6105e316565b505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526105de908490610639565b3390565b606061068e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166106ea9092919063ffffffff16565b8051909150156105de578080602001905160208110156106ad57600080fd5b50516105de5760405162461bcd60e51b815260040180806020018281038252602a81526020018061092c602a913960400191505060405180910390fd5b60606106f98484600085610701565b949350505050565b606061070c856108ac565b61075d576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061079c5780518252601f19909201916020918201910161077d565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146107fe576040519150601f19603f3d011682016040523d82523d6000602084013e610803565b606091505b509150915081156108175791506106f99050565b8051156108275780518082602001fd5b8360405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610871578181015183820152602001610859565b50505050905090810190601f16801561089e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906106f957505015159291505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220ea6b6d5378d0b667f3dd099aee556d7a14c350565341fb62772b0114e9b952b864736f6c63430006060033
Deployed Bytecode
0x60806040526004361061009c5760003560e01c80637e0b01b3116100645780637e0b01b31461012d5780638cc08025146101425780638da5cb5b14610189578063c9ec61b21461019e578063f2fde38b146101b3578063f6ed8519146101e65761009c565b8063270ef385146100a157806346228746146100c85780634e71d92d146100f95780636ca5a30b14610103578063715018a614610118575b600080fd5b3480156100ad57600080fd5b506100b6610219565b60408051918252519081900360200190f35b3480156100d457600080fd5b506100dd61021f565b604080516001600160a01b039092168252519081900360200190f35b61010161022e565b005b34801561010f57600080fd5b506101016102a2565b34801561012457600080fd5b50610101610329565b34801561013957600080fd5b506100b66103cb565b34801561014e57600080fd5b506101756004803603602081101561016557600080fd5b50356001600160a01b03166103d1565b604080519115158252519081900360200190f35b34801561019557600080fd5b506100dd6103e6565b3480156101aa57600080fd5b506100b66103f5565b3480156101bf57600080fd5b50610101600480360360208110156101d657600080fd5b50356001600160a01b03166103fb565b3480156101f257600080fd5b506101016004803603602081101561020957600080fd5b50356001600160a01b03166104f3565b60015481565b6003546001600160a01b031681565b60025434101561023d57600080fd5b3360009081526004602052604090205460ff161561025a57600080fd5b336000818152600460205260409020805460ff1916600190811790915554600354610297926001600160a01b03919091169163ffffffff6105e316565b600580546001019055565b6102aa610635565b6000546001600160a01b039081169116146102fa576040805162461bcd60e51b8152602060048201819052602482015260008051602061090c833981519152604482015290519081900360640190fd5b60405133904780156108fc02916000818181858888f19350505050158015610326573d6000803e3d6000fd5b50565b610331610635565b6000546001600160a01b03908116911614610381576040805162461bcd60e51b8152602060048201819052602482015260008051602061090c833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60055481565b60046020526000908152604090205460ff1681565b6000546001600160a01b031690565b60025481565b610403610635565b6000546001600160a01b03908116911614610453576040805162461bcd60e51b8152602060048201819052602482015260008051602061090c833981519152604482015290519081900360640190fd5b6001600160a01b0381166104985760405162461bcd60e51b81526004018080602001828103825260268152602001806108e66026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6104fb610635565b6000546001600160a01b0390811691161461054b576040805162461bcd60e51b8152602060048201819052602482015260008051602061090c833981519152604482015290519081900360640190fd5b604080516370a0823160e01b8152306004820152905182916000916001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561059657600080fd5b505afa1580156105aa573d6000803e3d6000fd5b505050506040513d60208110156105c057600080fd5b505190506105de6001600160a01b038316338363ffffffff6105e316565b505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526105de908490610639565b3390565b606061068e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166106ea9092919063ffffffff16565b8051909150156105de578080602001905160208110156106ad57600080fd5b50516105de5760405162461bcd60e51b815260040180806020018281038252602a81526020018061092c602a913960400191505060405180910390fd5b60606106f98484600085610701565b949350505050565b606061070c856108ac565b61075d576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061079c5780518252601f19909201916020918201910161077d565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146107fe576040519150601f19603f3d011682016040523d82523d6000602084013e610803565b606091505b509150915081156108175791506106f99050565b8051156108275780518082602001fd5b8360405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610871578181015183820152602001610859565b50505050905090810190601f16801561089e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906106f957505015159291505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220ea6b6d5378d0b667f3dd099aee556d7a14c350565341fb62772b0114e9b952b864736f6c63430006060033
Deployed Bytecode Sourcemap
20757:1094:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;20830:39:0;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20830:39:0;;;:::i;:::-;;;;;;;;;;;;;;;;20924:70;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20924:70:0;;;:::i;:::-;;;;-1:-1:-1;;;;;20924:70:0;;;;;;;;;;;;;;21288:190;;;:::i;:::-;;21486:102;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21486:102:0;;;:::i;20199:148::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20199:148:0;;;:::i;21053:40::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21053:40:0;;;:::i;21003:41::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21003:41:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21003:41:0;-1:-1:-1;;;;;21003:41:0;;:::i;:::-;;;;;;;;;;;;;;;;;;19557:79;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19557:79:0;;;:::i;20876:39::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20876:39:0;;;:::i;20502:244::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20502:244:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20502:244:0;-1:-1:-1;;;;;20502:244:0;;:::i;21596:252::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21596:252:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21596:252:0;-1:-1:-1;;;;;21596:252:0;;:::i;20830:39::-;;;;:::o;20924:70::-;;;-1:-1:-1;;;;;20924:70:0;;:::o;21288:190::-;21246:13;;21233:9;:26;;21225:35;;12:1:-1;9;2:12;21225:35:0;21152:10:::1;21142:21;::::0;;;:9:::1;:21;::::0;;;;;::::1;;21141:22;21133:31;;12:1:-1;9::::0;2:12:::1;21133:31:0;21365:10:::2;21355:21;::::0;;;:9:::2;:21;::::0;;;;:28;;-1:-1:-1;;21355:28:0::2;21379:4;21355:28:::0;;::::2;::::0;;;21423:12;21394:3:::2;::::0;:42:::2;::::0;-1:-1:-1;;;;;21394:3:0;;;::::2;::::0;:42:::2;:16;:42;:::i;:::-;21447:21;:23:::0;;::::2;;::::0;;21288:190::o;21486:102::-;19779:12;:10;:12::i;:::-;19769:6;;-1:-1:-1;;;;;19769:6:0;;;:22;;;19761:67;;;;;-1:-1:-1;;;19761:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19761:67:0;;;;;;;;;;;;;;;21538:42:::1;::::0;:10:::1;::::0;21558:21:::1;21538:42:::0;::::1;;;::::0;::::1;::::0;;;21558:21;21538:10;:42;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;21538:42:0;21486:102::o:0;20199:148::-;19779:12;:10;:12::i;:::-;19769:6;;-1:-1:-1;;;;;19769:6:0;;;:22;;;19761:67;;;;;-1:-1:-1;;;19761:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19761:67:0;;;;;;;;;;;;;;;20306:1:::1;20290:6:::0;;20269:40:::1;::::0;-1:-1:-1;;;;;20290:6:0;;::::1;::::0;20269:40:::1;::::0;20306:1;;20269:40:::1;20337:1;20320:19:::0;;-1:-1:-1;;;;;;20320:19:0::1;::::0;;20199:148::o;21053:40::-;;;;:::o;21003:41::-;;;;;;;;;;;;;;;:::o;19557:79::-;19595:7;19622:6;-1:-1:-1;;;;;19622:6:0;19557:79;:::o;20876:39::-;;;;:::o;20502:244::-;19779:12;:10;:12::i;:::-;19769:6;;-1:-1:-1;;;;;19769:6:0;;;:22;;;19761:67;;;;;-1:-1:-1;;;19761:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19761:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;20591:22:0;::::1;20583:73;;;;-1:-1:-1::0;;;20583:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20693:6;::::0;;20672:38:::1;::::0;-1:-1:-1;;;;;20672:38:0;;::::1;::::0;20693:6;::::1;::::0;20672:38:::1;::::0;::::1;20721:6;:17:::0;;-1:-1:-1;;;;;;20721:17:0::1;-1:-1:-1::0;;;;;20721:17:0;;;::::1;::::0;;;::::1;::::0;;20502:244::o;21596:252::-;19779:12;:10;:12::i;:::-;19769:6;;-1:-1:-1;;;;;19769:6:0;;;:22;;;19761:67;;;;;-1:-1:-1;;;19761:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19761:67:0;;;;;;;;;;;;;;;21743:36:::1;::::0;;-1:-1:-1;;;21743:36:0;;21773:4:::1;21743:36;::::0;::::1;::::0;;;21696:12;;21668:18:::1;::::0;-1:-1:-1;;;;;21743:21:0;::::1;::::0;::::1;::::0;:36;;;;;::::1;::::0;;;;;;;;:21;:36;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;21743:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;21743:36:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;21743:36:0;;-1:-1:-1;21790:50:0::1;-1:-1:-1::0;;;;;21790:24:0;::::1;21815:10;21743:36:::0;21790:50:::1;:24;:50;:::i;:::-;19839:1;;21596:252:::0;:::o;14575:177::-;14685:58;;;-1:-1:-1;;;;;14685:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;14685:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;14658:86:0;;14678:5;;14658:19;:86::i;18193:106::-;18281:10;18193:106;:::o;16880:761::-;17304:23;17330:69;17358:4;17330:69;;;;;;;;;;;;;;;;;17338:5;-1:-1:-1;;;;;17330:27:0;;;:69;;;;;:::i;:::-;17414:17;;17304:95;;-1:-1:-1;17414:21:0;17410:224;;17556:10;17545:30;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;17545:30:0;17537:85;;;;-1:-1:-1;;;17537:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3476:196;3579:12;3611:53;3634:6;3642:4;3648:1;3651:12;3611:22;:53::i;:::-;3604:60;3476:196;-1:-1:-1;;;;3476:196:0:o;4986:979::-;5116:12;5149:18;5160:6;5149:10;:18::i;:::-;5141:60;;;;;-1:-1:-1;;;5141:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5275:12;5289:23;5316:6;-1:-1:-1;;;;;5316:11:0;5336:8;5347:4;5316:36;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;5316:36:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;5274:78:0;;;;5367:7;5363:595;;;5398:10;-1:-1:-1;5391:17:0;;-1:-1:-1;5391:17:0;5363:595;5512:17;;:21;5508:439;;5775:10;5769:17;5836:15;5823:10;5819:2;5815:19;5808:44;5723:148;5918:12;5911:20;;-1:-1:-1;;;5911:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5911:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;708:619;768:4;1236:20;;1079:66;1276:23;;;;;;:42;;-1:-1:-1;;1303:15:0;;;1268:51;-1:-1:-1;;708:619:0:o
Swarm Source
ipfs://ea6b6d5378d0b667f3dd099aee556d7a14c350565341fb62772b0114e9b952b8
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BSC | 100.00% | $639.53 | 0.11 | $70.35 |
Loading...
Loading
[ Download: CSV Export ]
[ 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.