More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 233 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer Out Bal... | 5696750 | 2448 days ago | IN | 0 ETH | 0.00048199 | ||||
Airdrop Tokens B... | 5695452 | 2448 days ago | IN | 0 ETH | 0.04065303 | ||||
Airdrop Tokens B... | 5695448 | 2448 days ago | IN | 0 ETH | 0.05443536 | ||||
Airdrop Tokens B... | 5695439 | 2448 days ago | IN | 0 ETH | 0.0675121 | ||||
Airdrop Tokens B... | 5695430 | 2448 days ago | IN | 0 ETH | 0.06750922 | ||||
Airdrop Tokens B... | 5695420 | 2448 days ago | IN | 0 ETH | 0.06750826 | ||||
Airdrop Tokens B... | 5695407 | 2448 days ago | IN | 0 ETH | 0.0675121 | ||||
Airdrop Tokens B... | 5695398 | 2448 days ago | IN | 0 ETH | 0.06751018 | ||||
Airdrop Tokens B... | 5695388 | 2448 days ago | IN | 0 ETH | 0.06750826 | ||||
Airdrop Tokens B... | 5695378 | 2448 days ago | IN | 0 ETH | 0.06750922 | ||||
Airdrop Tokens B... | 5695369 | 2448 days ago | IN | 0 ETH | 0.0675121 | ||||
Airdrop Tokens B... | 5695357 | 2448 days ago | IN | 0 ETH | 0.06750826 | ||||
Airdrop Tokens B... | 5695349 | 2448 days ago | IN | 0 ETH | 0.06750826 | ||||
Airdrop Tokens B... | 5695100 | 2448 days ago | IN | 0 ETH | 0.06750826 | ||||
Airdrop Tokens B... | 5695083 | 2448 days ago | IN | 0 ETH | 0.06751306 | ||||
Airdrop Tokens B... | 5695076 | 2448 days ago | IN | 0 ETH | 0.0675121 | ||||
Airdrop Tokens B... | 5695068 | 2448 days ago | IN | 0 ETH | 0.06751018 | ||||
Airdrop Tokens B... | 5695055 | 2448 days ago | IN | 0 ETH | 0.06751306 | ||||
Airdrop Tokens B... | 5695043 | 2448 days ago | IN | 0 ETH | 0.06751018 | ||||
Airdrop Tokens B... | 5695025 | 2448 days ago | IN | 0 ETH | 0.06751018 | ||||
Airdrop Tokens B... | 5695011 | 2448 days ago | IN | 0 ETH | 0.06728614 | ||||
Airdrop Tokens B... | 5694995 | 2448 days ago | IN | 0 ETH | 0.06751114 | ||||
Airdrop Tokens B... | 5694981 | 2448 days ago | IN | 0 ETH | 0.06751018 | ||||
Airdrop Tokens B... | 5694971 | 2448 days ago | IN | 0 ETH | 0.06750922 | ||||
Airdrop Tokens B... | 5694961 | 2448 days ago | IN | 0 ETH | 0.06751114 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x47E24d59...D86C7f11d The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
AirdropLibraToken
Compiler Version
v0.4.17+commit.bdeb9e52
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-05-24 */ pragma solidity ^0.4.17; contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); OwnershipTransferred(owner, newOwner); owner = newOwner; } } library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[msg.sender]); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256 balance) { return balances[_owner]; } } contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * 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 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public view returns (uint256) { return allowed[_owner][_spender]; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval(address _spender, uint _addedValue) public returns (bool) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } contract LibraToken is StandardToken { string public constant name = "LibraToken"; // solium-disable-line uppercase string public constant symbol = "LBA"; // solium-disable-line uppercase uint8 public constant decimals = 18; // solium-disable-line uppercase uint256 public constant INITIAL_SUPPLY = (10 ** 9) * (10 ** uint256(decimals)); /** * @dev Constructor that gives msg.sender all of existing tokens. */ function LibraToken() public { totalSupply_ = INITIAL_SUPPLY; balances[msg.sender] = INITIAL_SUPPLY; Transfer(0x0, msg.sender, INITIAL_SUPPLY); } } contract AirdropLibraToken is Ownable { using SafeMath for uint256; uint256 decimal = 10**uint256(18); //How many tokens has been distributed uint256 distributedTotal = 0; uint256 airdropStartTime; uint256 airdropEndTime; // The LBA token LibraToken private token; // List of admins mapping (address => bool) public airdropAdmins; //the map that has been airdropped, key -- address ,value -- amount mapping(address => uint256) public airdropDoneAmountMap; //the list that has been airdropped addresses address[] public airdropDoneList; //airdrop event event Airdrop(address _receiver, uint256 amount); event AddAdmin(address _admin); event RemoveAdmin(address _admin); event UpdateEndTime(address _operator, uint256 _oldTime, uint256 _newTime); modifier onlyOwnerOrAdmin() { require(msg.sender == owner || airdropAdmins[msg.sender]); _; } function addAdmin(address _admin) public onlyOwner { airdropAdmins[_admin] = true; AddAdmin(_admin); } function removeAdmin(address _admin) public onlyOwner { if(isAdmin(_admin)){ airdropAdmins[_admin] = false; RemoveAdmin(_admin); } } modifier onlyWhileAirdropPhaseOpen { require(block.timestamp > airdropStartTime && block.timestamp < airdropEndTime); _; } function AirdropLibraToken( ERC20 _token, uint256 _airdropStartTime, uint256 _airdropEndTime ) public { token = LibraToken(_token); airdropStartTime = _airdropStartTime; airdropEndTime = _airdropEndTime; } function airdropTokens(address _recipient, uint256 amount) public onlyOwnerOrAdmin onlyWhileAirdropPhaseOpen { require(amount > 0); uint256 lbaBalance = token.balanceOf(this); require(lbaBalance >= amount); require(token.transfer(_recipient, amount)); //put address into has done list airdropDoneList.push(_recipient); //update airdropped actually uint256 airDropAmountThisAddr = 0; if(airdropDoneAmountMap[_recipient] > 0){ airDropAmountThisAddr = airdropDoneAmountMap[_recipient].add(amount); }else{ airDropAmountThisAddr = amount; } airdropDoneAmountMap[_recipient] = airDropAmountThisAddr; distributedTotal = distributedTotal.add(amount); Airdrop(_recipient, amount); } //batch airdrop, key-- the receiver's address, value -- receiver's amount function airdropTokensBatch(address[] receivers, uint256[] amounts) public onlyOwnerOrAdmin onlyWhileAirdropPhaseOpen{ require(receivers.length > 0 && receivers.length == amounts.length); for (uint256 i = 0; i < receivers.length; i++){ airdropTokens(receivers[i], amounts[i]); } } function transferOutBalance() public onlyOwner view returns (bool){ address creator = msg.sender; uint256 _balanceOfThis = token.balanceOf(this); if(_balanceOfThis > 0){ LibraToken(token).approve(this, _balanceOfThis); LibraToken(token).transferFrom(this, creator, _balanceOfThis); return true; }else{ return false; } } //How many tokens are left without payment function balanceOfThis() public view returns (uint256){ return token.balanceOf(this); } //how many tokens have been distributed function getDistributedTotal() public view returns (uint256){ return distributedTotal; } function isAdmin(address _addr) public view returns (bool){ return airdropAdmins[_addr]; } function updateAirdropEndTime(uint256 _newEndTime) public onlyOwnerOrAdmin { UpdateEndTime(msg.sender, airdropEndTime, _newEndTime); airdropEndTime = _newEndTime; } //get all addresses that has been airdropped function getDoneAddresses() public constant returns (address[]){ return airdropDoneList; } //get the amount has been dropped by user's address function getDoneAirdropAmount(address _addr) public view returns (uint256){ return airdropDoneAmountMap[_addr]; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"airdropAdmins","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_admin","type":"address"}],"name":"removeAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"isAdmin","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"getDoneAirdropAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"transferOutBalance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_admin","type":"address"}],"name":"addAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getDoneAddresses","outputs":[{"name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"balanceOfThis","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newEndTime","type":"uint256"}],"name":"updateAirdropEndTime","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getDistributedTotal","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"airdropTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"airdropDoneList","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"airdropDoneAmountMap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"receivers","type":"address[]"},{"name":"amounts","type":"uint256[]"}],"name":"airdropTokensBatch","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_token","type":"address"},{"name":"_airdropStartTime","type":"uint256"},{"name":"_airdropEndTime","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_receiver","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Airdrop","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_admin","type":"address"}],"name":"AddAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_admin","type":"address"}],"name":"RemoveAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_operator","type":"address"},{"indexed":false,"name":"_oldTime","type":"uint256"},{"indexed":false,"name":"_newTime","type":"uint256"}],"name":"UpdateEndTime","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Deployed Bytecode
0x606060405236156100e4576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806310e82384146100e95780631785f53c1461013a57806324d7806c1461017357806334d64e50146101c45780633963184914610211578063704802751461023e57806370d290b5146102775780638da5cb5b146102e1578063999eb6b1146103365780639b0ee7b71461035f578063b8cb40e014610382578063f2fde38b146103ab578063f659a45f146103e4578063f731a6f714610426578063f900920214610489578063f92cd2b2146104d6575b600080fd5b34156100f457600080fd5b610120600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610570565b604051808215151515815260200191505060405180910390f35b341561014557600080fd5b610171600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610590565b005b341561017e57600080fd5b6101aa600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919050506106b8565b604051808215151515815260200191505060405180910390f35b34156101cf57600080fd5b6101fb600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190505061070e565b6040518082815260200191505060405180910390f35b341561021c57600080fd5b610224610757565b604051808215151515815260200191505060405180910390f35b341561024957600080fd5b610275600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610abe565b005b341561028257600080fd5b61028a610bd7565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156102cd5780820151818401526020810190506102b2565b505050509050019250505060405180910390f35b34156102ec57600080fd5b6102f4610c6b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561034157600080fd5b610349610c90565b6040518082815260200191505060405180910390f35b341561036a57600080fd5b6103806004808035906020019091905050610d77565b005b341561038d57600080fd5b610395610ea5565b6040518082815260200191505060405180910390f35b34156103b657600080fd5b6103e2600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610eaf565b005b34156103ef57600080fd5b610424600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091905050611004565b005b341561043157600080fd5b61044760048080359060200190919050506114a2565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561049457600080fd5b6104c0600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919050506114e1565b6040518082815260200191505060405180910390f35b34156104e157600080fd5b61056e600480803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843782019150505050505091908035906020019082018035906020019080806020026020016040519081016040528093929190818152602001838360200280828437820191505050505050919050506114f9565b005b60066020528060005260406000206000915054906101000a900460ff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156105eb57600080fd5b6105f4816106b8565b156106b5576000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f753f40ca3312b2408759a67875b367955e7baa221daf08aa3d643d96202ac12b81604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a15b50565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156107b757600080fd5b339150600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306000604051602001526040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b151561087f57600080fd5b6102c65a03f1151561089057600080fd5b5050506040518051905090506000811115610ab457600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b330836000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b151561097257600080fd5b6102c65a03f1151561098357600080fd5b5050506040518051905050600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3084846000604051602001526040518463ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b1515610a8f57600080fd5b6102c65a03f11515610aa057600080fd5b505050604051805190505060019250610ab9565b600092505b505090565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610b1957600080fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fad6de4452a631e641cb59902236607946ce9272b9b981f2f80e8d129cb9084ba81604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b610bdf61165a565b6008805480602002602001604051908101604052809291908181526020018280548015610c6157602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610c17575b5050505050905090565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306000604051602001526040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b1515610d5757600080fd5b6102c65a03f11515610d6857600080fd5b50505060405180519050905090565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610e1b5750600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1515610e2657600080fd5b7fc16974328ffcf9463697990f5485eb6b94d7c7b4f6128b76e646eb3560de81873360045483604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828152602001935050505060405180910390a18060048190555050565b6000600254905090565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610f0a57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515610f4657600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806110ab5750600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15156110b657600080fd5b600354421180156110c8575060045442105b15156110d357600080fd5b6000831115156110e257600080fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306000604051602001526040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b15156111a757600080fd5b6102c65a03f115156111b857600080fd5b5050506040518051905091508282101515156111d357600080fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15156112a057600080fd5b6102c65a03f115156112b157600080fd5b5050506040518051905015156112c657600080fd5b600880548060010182816112da919061166e565b9160005260206000209001600086909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050600090506000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156113ce576113c783600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461163c90919063ffffffff16565b90506113d2565b8290505b80600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061142b8360025461163c90919063ffffffff16565b6002819055507f8c32c568416fcf97be35ce5b27844cfddcd63a67a1a602c3595ba5dac38f303a8484604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a150505050565b6008818154811015156114b157fe5b90600052602060002090016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60076020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061159f5750600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15156115aa57600080fd5b600354421180156115bc575060045442105b15156115c757600080fd5b600083511180156115d9575081518351145b15156115e457600080fd5b600090505b82518110156116375761162a838281518110151561160357fe5b90602001906020020151838381518110151561161b57fe5b90602001906020020151611004565b80806001019150506115e9565b505050565b600080828401905083811015151561165057fe5b8091505092915050565b602060405190810160405280600081525090565b81548183558181151161169557818360005260206000209182019101611694919061169a565b5b505050565b6116bc91905b808211156116b85760008160009055506001016116a0565b5090565b905600a165627a7a7230582071d4bfd35c6e2a9f7992dba607067995111adfe28cad7142781f11ce06bf3aa70029
Swarm Source
bzzr://71d4bfd35c6e2a9f7992dba607067995111adfe28cad7142781f11ce06bf3aa7
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.