Source Code
Latest 25 from a total of 153 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Claim | 12527471 | 1767 days ago | IN | 0 ETH | 0.00243036 | ||||
| Claim | 12323994 | 1799 days ago | IN | 0 ETH | 0.00453775 | ||||
| Claim | 12229204 | 1813 days ago | IN | 0 ETH | 0.0040392 | ||||
| Withdraw Fee | 12188561 | 1820 days ago | IN | 0 ETH | 0.00403362 | ||||
| Claim | 12164058 | 1823 days ago | IN | 0 ETH | 0.00666206 | ||||
| Claim | 12139671 | 1827 days ago | IN | 0 ETH | 0.00777519 | ||||
| Claim | 12139165 | 1827 days ago | IN | 0 ETH | 0.00832483 | ||||
| Claim | 12115437 | 1831 days ago | IN | 0 ETH | 0.01217509 | ||||
| Claim | 12115435 | 1831 days ago | IN | 0 ETH | 0.01233954 | ||||
| Claim | 12115432 | 1831 days ago | IN | 0 ETH | 0.01217509 | ||||
| Claim | 12109969 | 1832 days ago | IN | 0 ETH | 0.00794901 | ||||
| Claim | 12090746 | 1835 days ago | IN | 0 ETH | 0.01265848 | ||||
| Claim | 12085622 | 1835 days ago | IN | 0 ETH | 0.00914256 | ||||
| Claim | 12081755 | 1836 days ago | IN | 0 ETH | 0.00526423 | ||||
| Claim | 12078146 | 1837 days ago | IN | 0 ETH | 0.00850819 | ||||
| Claim | 12076800 | 1837 days ago | IN | 0 ETH | 0.01157875 | ||||
| Claim | 12076168 | 1837 days ago | IN | 0 ETH | 0.01218656 | ||||
| Claim | 12043010 | 1842 days ago | IN | 0 ETH | 0.01364159 | ||||
| Claim | 12034379 | 1843 days ago | IN | 0 ETH | 0.00740399 | ||||
| Claim | 12026876 | 1845 days ago | IN | 0 ETH | 0.00404183 | ||||
| Claim | 12026876 | 1845 days ago | IN | 0 ETH | 0.00746762 | ||||
| Claim | 12007469 | 1848 days ago | IN | 0 ETH | 0.00881568 | ||||
| Claim | 12004888 | 1848 days ago | IN | 0 ETH | 0.00691786 | ||||
| Claim | 12002329 | 1848 days ago | IN | 0 ETH | 0.00876208 | ||||
| Claim | 12002329 | 1848 days ago | IN | 0 ETH | 0.00703938 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| - | 12188561 | 1820 days ago | 0.51 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
AirDropper
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-02-27
*/
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// SPDX-License-Identifier: MIT
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);
}
// File: @openzeppelin/contracts/math/SafeMath.sol
pragma solidity ^0.6.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, 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;
}
}
// File: @openzeppelin/contracts/utils/Address.sol
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).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
return _functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
return _functionCallWithValue(target, data, value, errorMessage);
}
function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol
pragma solidity ^0.6.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/cryptography/MerkleProof.sol
pragma solidity ^0.6.0;
/**
* @dev These functions deal with verification of Merkle trees (hash trees),
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
bytes32 proofElement = proof[i];
if (computedHash <= proofElement) {
// Hash(current computed hash + current element of the proof)
computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
} else {
// Hash(current element of the proof + current computed hash)
computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
}
}
// Check if the computed hash (root) is equal to the provided root
return computedHash == root;
}
}
// File: @openzeppelin/contracts/GSN/Context.sol
pragma solidity ^0.6.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;
/**
* @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;
}
}
// File: contracts/AirDropper.sol
pragma solidity >= 0.6.11;
contract AirDropper is Ownable {
using SafeERC20 for IERC20;
using SafeMath for uint256;
struct AirDrop {
address token;
bytes32 merkleRoot;
uint256 amount;
mapping(uint256 => uint256) claimedBitMap;
}
mapping(uint256 => AirDrop) public airDrops;
mapping(uint8 => bool) public isPaused;
event AddedAirdrop(uint256 airdropId, address token, uint256 amount);
event Claimed(uint256 airdropId, uint256 index, address account, uint256 amount);
function addAirdrop(uint256 airdropId, address token, uint256 amount, bytes32 merkleRoot) external payable {
require(!isPaused[0], "Paused");
AirDrop storage airDrop = airDrops[airdropId];
require(airDrop.token == address(0), "Airdrop already exists");
// require(IERC20(token).transferFrom(msg.sender, address(this), amount), "Can't transfer tokens from msg.sender");
IERC20(token).safeTransferFrom(msg.sender, address(this), amount);
airDrop.token = token;
airDrop.merkleRoot = merkleRoot;
airDrop.amount = amount;
emit AddedAirdrop(airdropId, token, amount);
}
function isClaimed(uint256 airdropId, uint256 index) public view returns (bool) {
// to save the gas, whether user claim the token is stored in bitmap
uint256 claimedWordIndex = index / 256;
uint256 claimedBitIndex = index % 256;
AirDrop storage airDrop = airDrops[airdropId];
uint256 claimedWord = airDrop.claimedBitMap[claimedWordIndex];
uint256 mask = (1 << claimedBitIndex);
return claimedWord & mask == mask;
}
function _setClaimed(uint256 airdropId, uint256 index) private {
uint256 claimedWordIndex = index / 256;
uint256 claimedBitIndex = index % 256;
AirDrop storage airDrop = airDrops[airdropId];
airDrop.claimedBitMap[claimedWordIndex] = airDrop.claimedBitMap[claimedWordIndex] | (1 << claimedBitIndex);
}
function claim(uint256 airdropId, uint256 index, address account, uint256 amount, bytes32[] calldata merkleProof) external {
require(!isPaused[1], "Paused");
AirDrop storage airDrop = airDrops[airdropId];
require(airDrop.token != address(0), "Airdrop with given Id doesn't exists");
require(!isClaimed(airdropId, index), "Account already claimed tokens.");
// Verify the merkle proof.
bytes32 node = keccak256(abi.encodePacked(index, account, amount));
require(MerkleProof.verify(merkleProof, airDrop.merkleRoot, node), "Invalid Merkle-proof.");
airDrop.amount.sub(amount);
// Mark it claimed and send the token.
_setClaimed(airdropId, index);
IERC20(airDrop.token).safeTransfer(account, amount);
emit Claimed(airdropId, index, account, amount);
}
event Received(address, uint);
receive() external payable {
emit Received(msg.sender, msg.value);
}
function withdrawFee() onlyOwner external {
msg.sender.transfer(address(this).balance);
}
function setPause(uint8 i, bool on) onlyOwner external {
isPaused[i] = on;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"airdropId","type":"uint256"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AddedAirdrop","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"airdropId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","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":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"Received","type":"event"},{"inputs":[{"internalType":"uint256","name":"airdropId","type":"uint256"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"addAirdrop","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"airDrops","outputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"airdropId","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"airdropId","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"isClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"isPaused","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"i","type":"uint8"},{"internalType":"bool","name":"on","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
608060405234801561001057600080fd5b5060006100216100c460201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506100cc565b600033905090565b6118ac806100db6000396000f3fe6080604052600436106100955760003560e01c8063bc61e73311610059578063bc61e733146102cf578063cd12665714610323578063e941fa7814610385578063f2fde38b1461039c578063f364c90c146103ed576100f1565b806301af6fd0146100f65780634cef7bcd146101405780635d4df3bf146101b3578063715018a6146102775780638da5cb5b1461028e576100f1565b366100f1577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f885258743334604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1005b600080fd5b34801561010257600080fd5b5061013e6004803603604081101561011957600080fd5b81019080803560ff169060200190929190803515159060200190929190505050610448565b005b34801561014c57600080fd5b506101796004803603602081101561016357600080fd5b8101908080359060200190929190505050610545565b604051808473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828152602001935050505060405180910390f35b3480156101bf57600080fd5b50610275600480360360a08110156101d657600080fd5b810190808035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561023157600080fd5b82018360208201111561024357600080fd5b8035906020019184602083028401116401000000008311171561026557600080fd5b909192939192939050505061058f565b005b34801561028357600080fd5b5061028c61095b565b005b34801561029a57600080fd5b506102a3610ae1565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156102db57600080fd5b5061030b600480360360208110156102f257600080fd5b81019080803560ff169060200190929190505050610b0a565b60405180821515815260200191505060405180910390f35b6103836004803603608081101561033957600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050610b2a565b005b34801561039157600080fd5b5061039a610d84565b005b3480156103a857600080fd5b506103eb600480360360208110156103bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e95565b005b3480156103f957600080fd5b506104306004803603604081101561041057600080fd5b8101908080359060200190929190803590602001909291905050506110a0565b60405180821515815260200191505060405180910390f35b61045061110d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610510576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600260008460ff1660ff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60016020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154905083565b60026000600160ff16815260200190815260200160002060009054906101000a900460ff1615610627576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260068152602001807f506175736564000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600160008881526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156106e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806118036024913960400191505060405180910390fd5b6106f287876110a0565b15610765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4163636f756e7420616c726561647920636c61696d656420746f6b656e732e0081525060200191505060405180910390fd5b6000868686604051602001808481526020018373ffffffffffffffffffffffffffffffffffffffff1660601b81526014018281526020019350505050604051602081830303815290604052805190602001209050610809848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050836001015483611115565b61087b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f496e76616c6964204d65726b6c652d70726f6f662e000000000000000000000081525060200191505060405180910390fd5b6108928583600201546111ca90919063ffffffff16565b5061089d8888611214565b6108ec86868460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166112879092919063ffffffff16565b7fb94bf7f9302edf52a596286915a69b4b0685574cffdedd0712e3c62f2550f0ba88888888604051808581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200194505050505060405180910390a15050505050505050565b61096361110d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a23576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60026020528060005260406000206000915054906101000a900460ff1681565b600260008060ff16815260200190815260200160002060009054906101000a900460ff1615610bc1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260068152602001807f506175736564000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600160008681526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c9e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f41697264726f7020616c7265616479206578697374730000000000000000000081525060200191505060405180910390fd5b610ccb3330858773ffffffffffffffffffffffffffffffffffffffff16611329909392919063ffffffff16565b838160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508181600101819055508281600201819055507f24a2604e36db419cb07543941ccc6ca60eb04391c4ccb6bb42f63990271143b2858585604051808481526020018373ffffffffffffffffffffffffffffffffffffffff168152602001828152602001935050505060405180910390a15050505050565b610d8c61110d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e92573d6000803e3d6000fd5b50565b610e9d61110d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f5d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fe3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806118276026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008061010083816110ae57fe5b049050600061010084816110be57fe5b069050600060016000878152602001908152602001600020905060008160030160008581526020019081526020016000205490506000836001901b905080818316149550505050505092915050565b600033905090565b60008082905060005b85518110156111bc57600086828151811061113557fe5b6020026020010151905080831161117c57828160405160200180838152602001828152602001925050506040516020818303038152906040528051906020012092506111ae565b808360405160200180838152602001828152602001925050506040516020818303038152906040528051906020012092505b50808060010191505061111e565b508381149150509392505050565b600061120c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113ea565b905092915050565b6000610100828161122157fe5b0490506000610100838161123157fe5b0690506000600160008681526020019081526020016000209050816001901b8160030160008581526020019081526020016000205417816003016000858152602001908152602001600020819055505050505050565b6113248363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506114aa565b505050565b6113e4846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506114aa565b50505050565b6000838311158290611497576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561145c578082015181840152602081019050611441565b50505050905090810190601f1680156114895780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b606061150c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166115999092919063ffffffff16565b90506000815111156115945780806020019051602081101561152d57600080fd5b8101908080519060200190929190505050611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061184d602a913960400191505060405180910390fd5b5b505050565b60606115a884846000856115b1565b90509392505050565b60606115bc856117b7565b61162e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061167e578051825260208201915060208101905060208303925061165b565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146116e0576040519150601f19603f3d011682016040523d82523d6000602084013e6116e5565b606091505b509150915081156116fa5780925050506117af565b60008151111561170d5780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611774578082015181840152602081019050611759565b50505050905090810190601f1680156117a15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91508082141580156117f957506000801b8214155b9250505091905056fe41697264726f70207769746820676976656e20496420646f65736e2774206578697374734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a264697066735822122006739fcc9202a1f53d60616c4035932ad8b576bea5f1a04005d4e8684065418664736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106100955760003560e01c8063bc61e73311610059578063bc61e733146102cf578063cd12665714610323578063e941fa7814610385578063f2fde38b1461039c578063f364c90c146103ed576100f1565b806301af6fd0146100f65780634cef7bcd146101405780635d4df3bf146101b3578063715018a6146102775780638da5cb5b1461028e576100f1565b366100f1577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f885258743334604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1005b600080fd5b34801561010257600080fd5b5061013e6004803603604081101561011957600080fd5b81019080803560ff169060200190929190803515159060200190929190505050610448565b005b34801561014c57600080fd5b506101796004803603602081101561016357600080fd5b8101908080359060200190929190505050610545565b604051808473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828152602001935050505060405180910390f35b3480156101bf57600080fd5b50610275600480360360a08110156101d657600080fd5b810190808035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561023157600080fd5b82018360208201111561024357600080fd5b8035906020019184602083028401116401000000008311171561026557600080fd5b909192939192939050505061058f565b005b34801561028357600080fd5b5061028c61095b565b005b34801561029a57600080fd5b506102a3610ae1565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156102db57600080fd5b5061030b600480360360208110156102f257600080fd5b81019080803560ff169060200190929190505050610b0a565b60405180821515815260200191505060405180910390f35b6103836004803603608081101561033957600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050610b2a565b005b34801561039157600080fd5b5061039a610d84565b005b3480156103a857600080fd5b506103eb600480360360208110156103bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e95565b005b3480156103f957600080fd5b506104306004803603604081101561041057600080fd5b8101908080359060200190929190803590602001909291905050506110a0565b60405180821515815260200191505060405180910390f35b61045061110d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610510576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600260008460ff1660ff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60016020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154905083565b60026000600160ff16815260200190815260200160002060009054906101000a900460ff1615610627576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260068152602001807f506175736564000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600160008881526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156106e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806118036024913960400191505060405180910390fd5b6106f287876110a0565b15610765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4163636f756e7420616c726561647920636c61696d656420746f6b656e732e0081525060200191505060405180910390fd5b6000868686604051602001808481526020018373ffffffffffffffffffffffffffffffffffffffff1660601b81526014018281526020019350505050604051602081830303815290604052805190602001209050610809848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050836001015483611115565b61087b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f496e76616c6964204d65726b6c652d70726f6f662e000000000000000000000081525060200191505060405180910390fd5b6108928583600201546111ca90919063ffffffff16565b5061089d8888611214565b6108ec86868460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166112879092919063ffffffff16565b7fb94bf7f9302edf52a596286915a69b4b0685574cffdedd0712e3c62f2550f0ba88888888604051808581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200194505050505060405180910390a15050505050505050565b61096361110d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a23576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60026020528060005260406000206000915054906101000a900460ff1681565b600260008060ff16815260200190815260200160002060009054906101000a900460ff1615610bc1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260068152602001807f506175736564000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600160008681526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c9e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f41697264726f7020616c7265616479206578697374730000000000000000000081525060200191505060405180910390fd5b610ccb3330858773ffffffffffffffffffffffffffffffffffffffff16611329909392919063ffffffff16565b838160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508181600101819055508281600201819055507f24a2604e36db419cb07543941ccc6ca60eb04391c4ccb6bb42f63990271143b2858585604051808481526020018373ffffffffffffffffffffffffffffffffffffffff168152602001828152602001935050505060405180910390a15050505050565b610d8c61110d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e92573d6000803e3d6000fd5b50565b610e9d61110d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f5d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fe3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806118276026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008061010083816110ae57fe5b049050600061010084816110be57fe5b069050600060016000878152602001908152602001600020905060008160030160008581526020019081526020016000205490506000836001901b905080818316149550505050505092915050565b600033905090565b60008082905060005b85518110156111bc57600086828151811061113557fe5b6020026020010151905080831161117c57828160405160200180838152602001828152602001925050506040516020818303038152906040528051906020012092506111ae565b808360405160200180838152602001828152602001925050506040516020818303038152906040528051906020012092505b50808060010191505061111e565b508381149150509392505050565b600061120c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113ea565b905092915050565b6000610100828161122157fe5b0490506000610100838161123157fe5b0690506000600160008681526020019081526020016000209050816001901b8160030160008581526020019081526020016000205417816003016000858152602001908152602001600020819055505050505050565b6113248363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506114aa565b505050565b6113e4846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506114aa565b50505050565b6000838311158290611497576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561145c578082015181840152602081019050611441565b50505050905090810190601f1680156114895780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b606061150c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166115999092919063ffffffff16565b90506000815111156115945780806020019051602081101561152d57600080fd5b8101908080519060200190929190505050611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061184d602a913960400191505060405180910390fd5b5b505050565b60606115a884846000856115b1565b90509392505050565b60606115bc856117b7565b61162e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061167e578051825260208201915060208101905060208303925061165b565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146116e0576040519150601f19603f3d011682016040523d82523d6000602084013e6116e5565b606091505b509150915081156116fa5780925050506117af565b60008151111561170d5780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611774578082015181840152602081019050611759565b50505050905090810190601f1680156117a15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91508082141580156117f957506000801b8214155b9250505091905056fe41697264726f70207769746820676976656e20496420646f65736e2774206578697374734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a264697066735822122006739fcc9202a1f53d60616c4035932ad8b576bea5f1a04005d4e8684065418664736f6c634300060c0033
Deployed Bytecode Sourcemap
22877:3232:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25857:31;25866:10;25878:9;25857:31;;;;;;;;;;;;;;;;;;;;;;;;;;22877:3232;;;;;26015:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23142:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24902:868;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22246:148;;;;;;;;;;;;;:::i;:::-;;21604:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23192:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23403:651;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25904:103;;;;;;;;;;;;;:::i;:::-;;22549:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24062:483;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26015:91;21826:12;:10;:12::i;:::-;21816:22;;:6;;;;;;;;;;:22;;;21808:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26096:2:::1;26082:8;:11;26091:1;26082:11;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;;;;;;;26015:91:::0;;:::o;23142:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24902:868::-;25045:8;:11;25054:1;25045:11;;;;;;;;;;;;;;;;;;;;;;;25044:12;25036:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25080:23;25106:8;:19;25115:9;25106:19;;;;;;;;;;;25080:45;;25169:1;25144:27;;:7;:13;;;;;;;;;;;;:27;;;;25136:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25232:27;25242:9;25253:5;25232:9;:27::i;:::-;25231:28;25223:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25345:12;25387:5;25394:7;25403:6;25370:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25360:51;;;;;;25345:66;;25430:57;25449:11;;25430:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25462:7;:18;;;25482:4;25430:18;:57::i;:::-;25422:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25526:26;25545:6;25526:7;:14;;;:18;;:26;;;;:::i;:::-;;25611:29;25623:9;25634:5;25611:11;:29::i;:::-;25651:51;25686:7;25695:6;25658:7;:13;;;;;;;;;;;;25651:34;;;;:51;;;;;:::i;:::-;25720:42;25728:9;25739:5;25746:7;25755:6;25720:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24902:868;;;;;;;;:::o;22246:148::-;21826:12;:10;:12::i;:::-;21816:22;;:6;;;;;;;;;;:22;;;21808:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22353:1:::1;22316:40;;22337:6;::::0;::::1;;;;;;;;22316:40;;;;;;;;;;;;22384:1;22367:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;22246:148::o:0;21604:79::-;21642:7;21669:6;;;;;;;;;;;21662:13;;21604:79;:::o;23192:38::-;;;;;;;;;;;;;;;;;;;;;;:::o;23403:651::-;23530:8;:11;23539:1;23530:11;;;;;;;;;;;;;;;;;;;;;;;23529:12;23521:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23565:23;23591:8;:19;23600:9;23591:19;;;;;;;;;;;23565:45;;23654:1;23629:27;;:7;:13;;;;;;;;;;;;:27;;;23621:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23819:65;23850:10;23870:4;23877:6;23826:5;23819:30;;;;:65;;;;;;:::i;:::-;23911:5;23895:7;:13;;;:21;;;;;;;;;;;;;;;;;;23948:10;23927:7;:18;;:31;;;;23986:6;23969:7;:14;;:23;;;;24008:38;24021:9;24032:5;24039:6;24008:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23403:651;;;;;:::o;25904:103::-;21826:12;:10;:12::i;:::-;21816:22;;:6;;;;;;;;;;:22;;;21808:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25957:10:::1;:19;;:42;25977:21;25957:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;25904:103::o:0;22549:244::-;21826:12;:10;:12::i;:::-;21816:22;;:6;;;;;;;;;;:22;;;21808:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22658:1:::1;22638:22;;:8;:22;;;;22630:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22748:8;22719:38;;22740:6;::::0;::::1;;;;;;;;22719:38;;;;;;;;;;;;22777:8;22768:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;22549:244:::0;:::o;24062:483::-;24136:4;24231:24;24266:3;24258:5;:11;;;;;;24231:38;;24280:23;24314:3;24306:5;:11;;;;;;24280:37;;24328:23;24354:8;:19;24363:9;24354:19;;;;;;;;;;;24328:45;;24384:19;24406:7;:21;;:39;24428:16;24406:39;;;;;;;;;;;;24384:61;;24456:12;24477:15;24472:1;:20;;24456:37;;24533:4;24525;24511:11;:18;:26;24504:33;;;;;;;24062:483;;;;:::o;20158:106::-;20211:15;20246:10;20239:17;;20158:106;:::o;18731:796::-;18822:4;18839:20;18862:4;18839:27;;18884:9;18879:525;18903:5;:12;18899:1;:16;18879:525;;;18937:20;18960:5;18966:1;18960:8;;;;;;;;;;;;;;18937:31;;19005:12;18989;:28;18985:408;;19159:12;19173;19142:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19132:55;;;;;;19117:70;;18985:408;;;19349:12;19363;19332:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19322:55;;;;;;19307:70;;18985:408;18879:525;18917:3;;;;;;;18879:525;;;;19515:4;19499:12;:20;19492:27;;;18731:796;;;;;:::o;4221:136::-;4279:7;4306:43;4310:1;4313;4306:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4299:50;;4221:136;;;;:::o;24553:341::-;24627:24;24662:3;24654:5;:11;;;;;;24627:38;;24676:23;24710:3;24702:5;:11;;;;;;24676:37;;24724:23;24750:8;:19;24759:9;24750:19;;;;;;;;;;;24724:45;;24870:15;24865:1;:20;;24822:7;:21;;:39;24844:16;24822:39;;;;;;;;;;;;:64;24780:7;:21;;:39;24802:16;24780:39;;;;;;;;;;;:106;;;;24553:341;;;;;:::o;15115:177::-;15198:86;15218:5;15248:23;;;15273:2;15277:5;15225:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15198:19;:86::i;:::-;15115:177;;;:::o;15300:205::-;15401:96;15421:5;15451:27;;;15480:4;15486:2;15490:5;15428:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15401:19;:96::i;:::-;15300:205;;;;:::o;4660:192::-;4746:7;4779:1;4774;:6;;4782:12;4766:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4806:9;4822:1;4818;:5;4806:17;;4843:1;4836:8;;;4660:192;;;;;:::o;17420:761::-;17844:23;17870:69;17898:4;17870:69;;;;;;;;;;;;;;;;;17878:5;17870:27;;;;:69;;;;;:::i;:::-;17844:95;;17974:1;17954:10;:17;:21;17950:224;;;18096:10;18085:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18077:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17950:224;17420:761;;;:::o;12096:196::-;12199:12;12231:53;12254:6;12262:4;12268:1;12271:12;12231:22;:53::i;:::-;12224:60;;12096:196;;;;;:::o;13473:979::-;13603:12;13636:18;13647:6;13636:10;:18::i;:::-;13628:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13762:12;13776:23;13803:6;:11;;13823:8;13834:4;13803:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13761:78;;;;13854:7;13850:595;;;13885:10;13878:17;;;;;;13850:595;14019:1;13999:10;:17;:21;13995:439;;;14262:10;14256:17;14323:15;14310:10;14306:2;14302:19;14295:44;14210:148;14405:12;14398:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13473:979;;;;;;;:::o;8981:619::-;9041:4;9303:16;9330:19;9352:66;9330:88;;;;9521:7;9509:20;9497:32;;9561:11;9549:8;:23;;:42;;;;;9588:3;9576:15;;:8;:15;;9549:42;9541:51;;;;8981:619;;;:::o
Swarm Source
ipfs://06739fcc9202a1f53d60616c4035932ad8b576bea5f1a04005d4e86840654186
Loading...
Loading
Loading...
Loading
Net Worth in USD
$36.52
Net Worth in ETH
0.017341
Token Allocations
SIG
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $0.00 | 10,460.6629 | $0.00 |
Loading...
Loading
Loading...
Loading
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.