Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 65 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 11433011 | 1929 days ago | IN | 0 ETH | 0.00110745 | ||||
| Transfer | 11092327 | 1981 days ago | IN | 0 ETH | 0.00177527 | ||||
| Transfer | 11092312 | 1981 days ago | IN | 0 ETH | 0.00182749 | ||||
| Transfer | 11087289 | 1982 days ago | IN | 0 ETH | 0.00157719 | ||||
| Approve | 11087110 | 1982 days ago | IN | 0 ETH | 0.00173988 | ||||
| Approve | 11087055 | 1982 days ago | IN | 0 ETH | 0.00255188 | ||||
| Approve | 11067451 | 1985 days ago | IN | 0 ETH | 0.00294786 | ||||
| Transfer | 11038677 | 1990 days ago | IN | 0 ETH | 0.00214077 | ||||
| Transfer | 11012861 | 1994 days ago | IN | 0 ETH | 0.00208856 | ||||
| Transfer | 11012850 | 1994 days ago | IN | 0 ETH | 0.00208856 | ||||
| Transfer | 11012843 | 1994 days ago | IN | 0 ETH | 0.00219298 | ||||
| Transfer | 11012839 | 1994 days ago | IN | 0 ETH | 0.00219248 | ||||
| Transfer | 11012837 | 1994 days ago | IN | 0 ETH | 0.00208856 | ||||
| Transfer | 11012827 | 1994 days ago | IN | 0 ETH | 0.00148856 | ||||
| Transfer | 11012815 | 1994 days ago | IN | 0 ETH | 0.0022452 | ||||
| Transfer | 11012812 | 1994 days ago | IN | 0 ETH | 0.00208808 | ||||
| Transfer | 11002029 | 1995 days ago | IN | 0 ETH | 0.00485478 | ||||
| Transfer | 11000409 | 1996 days ago | IN | 0 ETH | 0.00266291 | ||||
| Transfer | 10999859 | 1996 days ago | IN | 0 ETH | 0.00287177 | ||||
| Transfer | 10996417 | 1996 days ago | IN | 0 ETH | 0.00438496 | ||||
| Transfer | 10996073 | 1996 days ago | IN | 0 ETH | 0.00241891 | ||||
| Transfer | 10995893 | 1996 days ago | IN | 0 ETH | 0.00339469 | ||||
| Transfer | 10993516 | 1997 days ago | IN | 0 ETH | 0.00219491 | ||||
| Transfer | 10991599 | 1997 days ago | IN | 0 ETH | 0.00229688 | ||||
| Transfer | 10989789 | 1997 days ago | IN | 0 ETH | 0.00250627 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Token
Compiler Version
v0.4.26+commit.4563c3fc
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-09-30
*/
pragma solidity ^0.4.20;
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.
*
* > 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);
}
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 Substracts 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 Ownable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () public{
_owner = address(0x51C41F067eDf4969c48Ef4D364ed6E9EC9B47239);
emit OwnershipTransferred(address(0), _owner);
}
/**
* @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(isOwner(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Returns true if the caller is the current owner.
*/
function isOwner() public view returns (bool) {
return msg.sender == _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 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 onlyOwner {
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
*/
function _transferOwnership(address newOwner) internal {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
contract StandardToken is IERC20, Ownable {
using SafeMath for uint256;
mapping (address => uint256) balances;
mapping (address => mapping (address => uint256)) allowed;
uint256 public totalSupply;
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);
emit Transfer(msg.sender, _to, _value);
return true;
}
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);
emit Transfer(_from, _to, _value);
return true;
}
function balanceOf(address _owner) public constant returns (uint256 balance) {
return balances[_owner];
}
function approve(address _spender, uint256 _value) public returns (bool success) {
allowed[msg.sender][_spender] = _value;
emit Approval(msg.sender, _spender, _value);
return true;
}
function allowance(address _owner, address _spender) public constant returns (uint256 remaining) {
return allowed[_owner][_spender];
}
function totalSupply() public constant returns (uint _totalSupply) {
_totalSupply = totalSupply;
}
function mint(address account, uint256 amount) public onlyOwner{
require(account != address(0), "ERC20: mint to the zero address");
totalSupply = totalSupply.add(amount);
balances[account] = balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
}
contract Token is StandardToken {
string public name ="Flysio Token";
uint8 public decimals = 18;
string public symbol = "FLY";
uint256 public initialSupply = 100000000;
constructor(address _receiver) public {
require(_receiver != address(0));
totalSupply = initialSupply * 10 ** uint256(decimals);
balances[_receiver] = totalSupply; // Give the receiver all initial tokens
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"_totalSupply","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_receiver","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]Contract Creation Code
60c0604052600c60808190527f466c7973696f20546f6b656e000000000000000000000000000000000000000060a090815261003e916004919061015d565b506005805460ff191660121790556040805180820190915260038082527f464c59000000000000000000000000000000000000000000000000000000000060209092019182526100909160069161015d565b506305f5e1006007553480156100a557600080fd5b50604051602080610d38833981016040819052905160008054600160a060020a0319167351c41f067edf4969c48ef4d364ed6e9ec9b47239178082559192600160a060020a0392909216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3600160a060020a038116151561012a57600080fd5b60055460075460ff909116600a0a026003819055600160a060020a039091166000908152600160205260409020556101f8565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061019e57805160ff19168380011785556101cb565b828001600101855582156101cb579182015b828111156101cb5782518255916020019190600101906101b0565b506101d79291506101db565b5090565b6101f591905b808211156101d757600081556001016101e1565b90565b610b31806102076000396000f3006080604052600436106100da5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100df578063095ea7b31461016957806318160ddd146101a157806323b872dd146101c8578063313ce567146101f2578063378dc3dc1461021d57806340c10f191461023257806370a0823114610258578063715018a6146102795780638da5cb5b1461028e5780638f32d59b146102bf57806395d89b41146102d4578063a9059cbb146102e9578063dd62ed3e1461030d578063f2fde38b14610334575b600080fd5b3480156100eb57600080fd5b506100f4610355565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012e578181015183820152602001610116565b50505050905090810190601f16801561015b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561017557600080fd5b5061018d600160a060020a03600435166024356103e3565b604080519115158252519081900360200190f35b3480156101ad57600080fd5b506101b6610449565b60408051918252519081900360200190f35b3480156101d457600080fd5b5061018d600160a060020a036004358116906024351660443561044f565b3480156101fe57600080fd5b506102076105c8565b6040805160ff9092168252519081900360200190f35b34801561022957600080fd5b506101b66105d1565b34801561023e57600080fd5b50610256600160a060020a03600435166024356105d7565b005b34801561026457600080fd5b506101b6600160a060020a036004351661072c565b34801561028557600080fd5b50610256610747565b34801561029a57600080fd5b506102a36107fc565b60408051600160a060020a039092168252519081900360200190f35b3480156102cb57600080fd5b5061018d61080b565b3480156102e057600080fd5b506100f461081c565b3480156102f557600080fd5b5061018d600160a060020a0360043516602435610877565b34801561031957600080fd5b506101b6600160a060020a036004358116906024351661095a565b34801561034057600080fd5b50610256600160a060020a0360043516610985565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103db5780601f106103b0576101008083540402835291602001916103db565b820191906000526020600020905b8154815290600101906020018083116103be57829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60035490565b6000600160a060020a038316151561046657600080fd5b600160a060020a03841660009081526001602052604090205482111561048b57600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156104bb57600080fd5b600160a060020a0384166000908152600160205260409020546104e4908363ffffffff6109ef16565b600160a060020a038086166000908152600160205260408082209390935590851681522054610519908363ffffffff610a0116565b600160a060020a03808516600090815260016020908152604080832094909455918716815260028252828120338252909152205461055d908363ffffffff6109ef16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60055460ff1681565b60075481565b6105df61080b565b1515610635576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600160a060020a0382161515610695576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6003546106a8908263ffffffff610a0116565b600355600160a060020a0382166000908152600160205260409020546106d4908263ffffffff610a0116565b600160a060020a03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a031660009081526001602052604090205490565b61074f61080b565b15156107a5576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60008054604051600160a060020a03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b600054600160a060020a031690565b600054600160a060020a0316331490565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103db5780601f106103b0576101008083540402835291602001916103db565b6000600160a060020a038316151561088e57600080fd5b336000908152600160205260409020548211156108aa57600080fd5b336000908152600160205260409020546108ca908363ffffffff6109ef16565b3360009081526001602052604080822092909255600160a060020a038516815220546108fc908363ffffffff610a0116565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b61098d61080b565b15156109e3576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6109ec81610a17565b50565b6000828211156109fb57fe5b50900390565b600082820183811015610a1057fe5b9392505050565b600160a060020a0381161515610a9d576040805160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a72305820ce27f0f9f2ff581dd230003e44066a14260b9fc06161ae8cbb1c27e360f22331002900000000000000000000000051c41f067edf4969c48ef4d364ed6e9ec9b47239
Deployed Bytecode
0x6080604052600436106100da5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100df578063095ea7b31461016957806318160ddd146101a157806323b872dd146101c8578063313ce567146101f2578063378dc3dc1461021d57806340c10f191461023257806370a0823114610258578063715018a6146102795780638da5cb5b1461028e5780638f32d59b146102bf57806395d89b41146102d4578063a9059cbb146102e9578063dd62ed3e1461030d578063f2fde38b14610334575b600080fd5b3480156100eb57600080fd5b506100f4610355565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012e578181015183820152602001610116565b50505050905090810190601f16801561015b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561017557600080fd5b5061018d600160a060020a03600435166024356103e3565b604080519115158252519081900360200190f35b3480156101ad57600080fd5b506101b6610449565b60408051918252519081900360200190f35b3480156101d457600080fd5b5061018d600160a060020a036004358116906024351660443561044f565b3480156101fe57600080fd5b506102076105c8565b6040805160ff9092168252519081900360200190f35b34801561022957600080fd5b506101b66105d1565b34801561023e57600080fd5b50610256600160a060020a03600435166024356105d7565b005b34801561026457600080fd5b506101b6600160a060020a036004351661072c565b34801561028557600080fd5b50610256610747565b34801561029a57600080fd5b506102a36107fc565b60408051600160a060020a039092168252519081900360200190f35b3480156102cb57600080fd5b5061018d61080b565b3480156102e057600080fd5b506100f461081c565b3480156102f557600080fd5b5061018d600160a060020a0360043516602435610877565b34801561031957600080fd5b506101b6600160a060020a036004358116906024351661095a565b34801561034057600080fd5b50610256600160a060020a0360043516610985565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103db5780601f106103b0576101008083540402835291602001916103db565b820191906000526020600020905b8154815290600101906020018083116103be57829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60035490565b6000600160a060020a038316151561046657600080fd5b600160a060020a03841660009081526001602052604090205482111561048b57600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156104bb57600080fd5b600160a060020a0384166000908152600160205260409020546104e4908363ffffffff6109ef16565b600160a060020a038086166000908152600160205260408082209390935590851681522054610519908363ffffffff610a0116565b600160a060020a03808516600090815260016020908152604080832094909455918716815260028252828120338252909152205461055d908363ffffffff6109ef16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60055460ff1681565b60075481565b6105df61080b565b1515610635576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600160a060020a0382161515610695576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6003546106a8908263ffffffff610a0116565b600355600160a060020a0382166000908152600160205260409020546106d4908263ffffffff610a0116565b600160a060020a03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a031660009081526001602052604090205490565b61074f61080b565b15156107a5576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60008054604051600160a060020a03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b600054600160a060020a031690565b600054600160a060020a0316331490565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103db5780601f106103b0576101008083540402835291602001916103db565b6000600160a060020a038316151561088e57600080fd5b336000908152600160205260409020548211156108aa57600080fd5b336000908152600160205260409020546108ca908363ffffffff6109ef16565b3360009081526001602052604080822092909255600160a060020a038516815220546108fc908363ffffffff610a0116565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b61098d61080b565b15156109e3576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6109ec81610a17565b50565b6000828211156109fb57fe5b50900390565b600082820183811015610a1057fe5b9392505050565b600160a060020a0381161515610a9d576040805160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a72305820ce27f0f9f2ff581dd230003e44066a14260b9fc06161ae8cbb1c27e360f223310029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000051c41f067edf4969c48ef4d364ed6e9ec9b47239
-----Decoded View---------------
Arg [0] : _receiver (address): 0x51C41F067eDf4969c48Ef4D364ed6E9EC9B47239
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000051c41f067edf4969c48ef4d364ed6e9ec9b47239
Deployed Bytecode Sourcemap
7867:461:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7910:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7910:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7910:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7046:214;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7046:214:0;-1:-1:-1;;;;;7046:214:0;;;;;;;;;;;;;;;;;;;;;;;;;7424:112;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7424:112:0;;;;;;;;;;;;;;;;;;;;6423:488;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6423:488:0;-1:-1:-1;;;;;6423:488:0;;;;;;;;;;;;7951:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7951:26:0;;;;;;;;;;;;;;;;;;;;;;;8019:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8019:40:0;;;;7544:310;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7544:310:0;-1:-1:-1;;;;;7544:310:0;;;;;;;;;6919:119;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6919:119:0;-1:-1:-1;;;;;6919:119:0;;;;;5018:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5018:140:0;;;;4207:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4207:79:0;;;;;;;;-1:-1:-1;;;;;4207:79:0;;;;;;;;;;;;;;4573:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4573:92:0;;;;7984:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7984:28:0;;;;5992:423;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5992:423:0;-1:-1:-1;;;;;5992:423:0;;;;;;;7268:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7268:148:0;-1:-1:-1;;;;;7268:148:0;;;;;;;;;;5313:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5313:109:0;-1:-1:-1;;;;;5313:109:0;;;;;7910:34;;;;;;;;;;;;;;;-1:-1:-1;;7910:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7046:214::-;7146:10;7113:12;7138:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7138:29:0;;;;;;;;;;;:38;;;7192;;;;;;;7113:12;;7138:29;;7146:10;;7192:38;;;;;;;;-1:-1:-1;7248:4:0;7046:214;;;;:::o;7424:112::-;7517:11;;;7424:112::o;6423:488::-;6505:4;-1:-1:-1;;;;;6530:17:0;;;;6522:26;;;;;;-1:-1:-1;;;;;6577:15:0;;;;;;:8;:15;;;;;;6567:25;;;6559:34;;;;;;-1:-1:-1;;;;;6622:14:0;;;;;;:7;:14;;;;;;;;6637:10;6622:26;;;;;;;;6612:36;;;6604:45;;;;;;-1:-1:-1;;;;;6680:15:0;;;;;;:8;:15;;;;;;:27;;6700:6;6680:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;6662:15:0;;;;;;;:8;:15;;;;;;:45;;;;6734:13;;;;;;;:25;;6752:6;6734:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;6718:13:0;;;;;;;:8;:13;;;;;;;;:41;;;;6799:14;;;;;:7;:14;;;;;6814:10;6799:26;;;;;;;:38;;6830:6;6799:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;6770:14:0;;;;;;;:7;:14;;;;;;;;6785:10;6770:26;;;;;;;;:67;;;;6853:28;;;;;;;;;;;6770:14;;6853:28;;;;;;;;;;;-1:-1:-1;6899:4:0;6423:488;;;;;:::o;7951:26::-;;;;;;:::o;8019:40::-;;;;:::o;7544:310::-;4419:9;:7;:9::i;:::-;4411:54;;;;;;;-1:-1:-1;;;;;4411:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7626:21:0;;;;7618:65;;;;;-1:-1:-1;;;;;7618:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7710:11;;:23;;7726:6;7710:23;:15;:23;:::i;:::-;7696:11;:37;-1:-1:-1;;;;;7764:17:0;;;;;;:8;:17;;;;;;:29;;7786:6;7764:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;7744:17:0;;;;;;:8;:17;;;;;;;;:49;;;;7809:37;;;;;;;7744:17;;;;7809:37;;;;;;;;;;7544:310;;:::o;6919:119::-;-1:-1:-1;;;;;7014:16:0;6979:15;7014:16;;;:8;:16;;;;;;;6919:119::o;5018:140::-;4419:9;:7;:9::i;:::-;4411:54;;;;;;;-1:-1:-1;;;;;4411:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5117:1;5101:6;;5080:40;;-1:-1:-1;;;;;5101:6:0;;;;5080:40;;5117:1;;5080:40;5148:1;5131:19;;-1:-1:-1;;5131:19:0;;;5018:140::o;4207:79::-;4245:7;4272:6;-1:-1:-1;;;;;4272:6:0;4207:79;:::o;4573:92::-;4613:4;4651:6;-1:-1:-1;;;;;4651:6:0;4637:10;:20;;4573:92::o;7984:28::-;;;;;;;;;;;;;;;-1:-1:-1;;7984:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5992:423;6055:4;-1:-1:-1;;;;;6080:17:0;;;;6072:26;;;;;;6136:10;6127:20;;;;:8;:20;;;;;;6117:30;;;6109:39;;;;;;6261:10;6252:20;;;;:8;:20;;;;;;:32;;6277:6;6252:32;:24;:32;:::i;:::-;6238:10;6229:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;6311:13:0;;;;;;:25;;6329:6;6311:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;6295:13:0;;;;;;:8;:13;;;;;;;;;:41;;;;6352:33;;;;;;;6295:13;;6361:10;;6352:33;;;;;;;;;;-1:-1:-1;6403:4:0;5992:423;;;;:::o;7268:148::-;-1:-1:-1;;;;;7383:15:0;;;7346:17;7383:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;7268:148::o;5313:109::-;4419:9;:7;:9::i;:::-;4411:54;;;;;;;-1:-1:-1;;;;;4411:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5386:28;5405:8;5386:18;:28::i;:::-;5313:109;:::o;3404:113::-;3462:7;3485:6;;;;3478:14;;;;-1:-1:-1;3506:5:0;;;3404:113::o;3584:133::-;3642:7;3670:5;;;3689:6;;;;3682:14;;;;3710:1;3584:133;-1:-1:-1;;;3584:133:0:o;5528:229::-;-1:-1:-1;;;;;5602:22:0;;;;5594:73;;;;;-1:-1:-1;;;;;5594:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5704:6;;;5683:38;;-1:-1:-1;;;;;5683:38:0;;;;5704:6;;;5683:38;;;5732:6;:17;;-1:-1:-1;;5732:17:0;-1:-1:-1;;;;;5732:17:0;;;;;;;;;;5528:229::o
Swarm Source
bzzr://ce27f0f9f2ff581dd230003e44066a14260b9fc06161ae8cbb1c27e360f22331
Loading...
Loading
Loading...
Loading
OVERVIEW
Flysio Token (FLY) is a native currency of Flysio platform that users can use along with several major cryptocurrencies to make bookings through Flysio's web & mobile-based application.Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.