ERC-20
Overview
Max Total Supply
24,241,600,000 VNET
Holders
344
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 6 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
VNETToken
Compiler Version
v0.4.23+commit.124ca40d
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-05-03 */ pragma solidity ^0.4.21; /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ 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); } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ 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); } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ 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. */ constructor() 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)); emit OwnershipTransferred(owner, _newOwner); owner = _newOwner; } /** * @dev Rescue compatible ERC20Basic Token * * @param _token ERC20Basic The address of the token contract */ function rescueTokens(ERC20Basic _token) external onlyOwner { uint256 balance = _token.balanceOf(this); assert(_token.transfer(owner, balance)); } /** * @dev Withdraw Ether */ function withdrawEther() external onlyOwner { owner.transfer(address(this).balance); } } /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { if (a == 0) { return 0; } 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 a / b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; assert(c >= a); 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; } } /** * @title Basic token, Lockable * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; uint256 totalSupply_; mapping(address => uint256) balances; mapping(address => uint256) lockedBalanceMap; // locked balance: address => amount mapping(address => uint256) releaseTimeMap; // release time: address => timestamp event BalanceLocked(address indexed _addr, uint256 _amount); /** * @dev total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @dev function to make sure the balance is not locked * @param _addr address * @param _value uint256 */ function checkNotLocked(address _addr, uint256 _value) internal view returns (bool) { uint256 balance = balances[_addr].sub(_value); if (releaseTimeMap[_addr] > block.timestamp && balance < lockedBalanceMap[_addr]) { revert(); } return true; } /** * @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]); checkNotLocked(msg.sender, _value); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit 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 Amount. */ function balanceOf(address _owner) public view returns (uint256) { return balances[_owner]; } /** * @dev Gets the locked balance of the specified address. * @param _owner The address to query. * @return Amount. */ function lockedBalanceOf(address _owner) public view returns (uint256) { return lockedBalanceMap[_owner]; } /** * @dev Gets the release timestamp of the specified address if it has a locked balance. * @param _owner The address to query. * @return Timestamp. */ function releaseTimeOf(address _owner) public view returns (uint256) { return releaseTimeMap[_owner]; } } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 */ 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]); checkNotLocked(_from, _value); 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; } /** * @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; emit 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); emit 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); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } /** * @title Abstract Standard ERC20 token */ contract AbstractToken is Ownable, StandardToken { string public name; string public symbol; uint256 public decimals; string public value; // Stable Value string public description; // Description string public website; // Website string public email; // Email string public news; // Latest News uint256 public cap; // Cap Limit mapping (address => bool) public mintAgents; // Mint Agents event Mint(address indexed _to, uint256 _amount); event MintAgentChanged(address _addr, bool _state); event NewsPublished(string _news); /** * @dev Set Info * * @param _description string * @param _website string * @param _email string */ function setInfo(string _description, string _website, string _email) external onlyOwner returns (bool) { description = _description; website = _website; email = _email; return true; } /** * @dev Set News * * @param _news string */ function setNews(string _news) external onlyOwner returns (bool) { news = _news; emit NewsPublished(_news); return true; } /** * @dev Set a mint agent address * * @param _addr address The address that will receive the minted tokens. * @param _state bool The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function setMintAgent(address _addr, bool _state) onlyOwner public returns (bool) { mintAgents[_addr] = _state; emit MintAgentChanged(_addr, _state); return true; } /** * @dev Constructor */ constructor() public { setMintAgent(msg.sender, true); } } /** * @dev VNET Token for Vision Network Project */ contract VNETToken is Ownable, AbstractToken { event Donate(address indexed _from, uint256 _amount); /** * @dev Constructor */ constructor() public { name = "VNET Token"; symbol = "VNET"; decimals = 6; value = "1 VNET Token = 100 GByte client newtwork traffic flow"; // 35 Billion Total cap = 35000000000 * (10 ** decimals); } /** * @dev Sending eth to this contract will be considered as a donation */ function () public payable { emit Donate(msg.sender, msg.value); } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) external returns (bool) { require(mintAgents[msg.sender] && totalSupply_.add(_amount) <= cap); totalSupply_ = totalSupply_.add(_amount); balances[_to] = balances[_to].add(_amount); emit Mint(_to, _amount); emit Transfer(address(0), _to, _amount); return true; } /** * @dev Function to mint tokens, and lock some of them with a release time * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @param _lockedAmount The amount of tokens to be locked. * @param _releaseTime The timestamp about to release, which could be set just once. * @return A boolean that indicates if the operation was successful. */ function mintWithLock(address _to, uint256 _amount, uint256 _lockedAmount, uint256 _releaseTime) external returns (bool) { require(mintAgents[msg.sender] && totalSupply_.add(_amount) <= cap); require(_amount >= _lockedAmount); totalSupply_ = totalSupply_.add(_amount); balances[_to] = balances[_to].add(_amount); lockedBalanceMap[_to] = lockedBalanceMap[_to] > 0 ? lockedBalanceMap[_to].add(_lockedAmount) : _lockedAmount; releaseTimeMap[_to] = releaseTimeMap[_to] > 0 ? releaseTimeMap[_to] : _releaseTime; emit Mint(_to, _amount); emit Transfer(address(0), _to, _amount); emit BalanceLocked(_to, _lockedAmount); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"rescueTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","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":"_owner","type":"address"}],"name":"releaseTimeOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"value","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"mintAgents","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"},{"name":"_state","type":"bool"}],"name":"setMintAgent","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"news","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"lockedBalanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_lockedAmount","type":"uint256"},{"name":"_releaseTime","type":"uint256"}],"name":"mintWithLock","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_description","type":"string"},{"name":"_website","type":"string"},{"name":"_email","type":"string"}],"name":"setInfo","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"description","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdrawEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"email","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_news","type":"string"}],"name":"setNews","outputs":[{"name":"","type":"bool"}],"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":"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":"website","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","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":"","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":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Donate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_addr","type":"address"},{"indexed":false,"name":"_state","type":"bool"}],"name":"MintAgentChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_news","type":"string"}],"name":"NewsPublished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_addr","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"BalanceLocked","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"},{"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":"_previousOwner","type":"address"},{"indexed":true,"name":"_newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060008054600160a060020a03191633600160a060020a038116919091179091556200004890600164010000000062000164810204565b5060408051808201909152600a8082527f564e455420546f6b656e0000000000000000000000000000000000000000000060209092019182526200008f91600691620001ea565b506040805180820190915260048082527f564e4554000000000000000000000000000000000000000000000000000000006020909201918252620000d691600791620001ea565b5060066008556040805160608101825260358082527f3120564e455420546f6b656e203d2031303020474279746520636c69656e7420602083019081527f6e657774776f726b207472616666696320666c6f77000000000000000000000092909301919091526200014a91600991620001ea565b50600854600a0a640826299e0002600e819055506200028f565b6000805433600160a060020a039081169116146200018157600080fd5b600160a060020a0383166000818152600f6020908152604091829020805460ff191686151590811790915582519384529083015280517fa09ab606a286dbc4fef3b4719193688eb1b1263b7bcf75e6b898938f5485988c9281900390910190a150600192915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200022d57805160ff19168380011785556200025d565b828001600101855582156200025d579182015b828111156200025d57825182559160200191906001019062000240565b506200026b9291506200026f565b5090565b6200028c91905b808211156200026b576000815560010162000276565b90565b611605806200029f6000396000f3006080604052600436106101735763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041662ae3bf881146101b457806306fdde03146101d7578063095ea7b31461026157806318160ddd1461029957806323b872dd146102c0578063286c241a146102ea578063313ce5671461030b578063355274ea146103205780633fa4f2451461033557806340c10f191461034a57806342c1867b1461036e578063432146751461038f5780635144417c146103b557806359355736146103ca57806366188463146103eb578063672492541461040f5780636dec7a931461043957806370a08231146104715780637284e416146104925780637362377b146104a7578063820e93f5146104bc578063884a47b4146104d15780638da5cb5b146104f157806395d89b4114610522578063a9059cbb14610537578063beb0a4161461055b578063d73dd62314610570578063dd62ed3e14610594578063f2fde38b146105bb575b604080513481529051600160a060020a033316917f0553260a2e46b0577270d8992db02d30856ca880144c72d6e9503760946aef13919081900360200190a2005b3480156101c057600080fd5b506101d5600160a060020a03600435166105dc565b005b3480156101e357600080fd5b506101ec610744565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022657818101518382015260200161020e565b50505050905090810190601f1680156102535780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561026d57600080fd5b50610285600160a060020a03600435166024356107d2565b604080519115158252519081900360200190f35b3480156102a557600080fd5b506102ae61083c565b60408051918252519081900360200190f35b3480156102cc57600080fd5b50610285600160a060020a0360043581169060243516604435610843565b3480156102f657600080fd5b506102ae600160a060020a03600435166109be565b34801561031757600080fd5b506102ae6109d9565b34801561032c57600080fd5b506102ae6109df565b34801561034157600080fd5b506101ec6109e5565b34801561035657600080fd5b50610285600160a060020a0360043516602435610a40565b34801561037a57600080fd5b50610285600160a060020a0360043516610b50565b34801561039b57600080fd5b50610285600160a060020a03600435166024351515610b65565b3480156103c157600080fd5b506101ec610bea565b3480156103d657600080fd5b506102ae600160a060020a0360043516610c45565b3480156103f757600080fd5b50610285600160a060020a0360043516602435610c60565b34801561041b57600080fd5b50610285600160a060020a0360043516602435604435606435610d59565b34801561044557600080fd5b506102856024600480358281019290820135918135808301929082013591604435918201910135610f5e565b34801561047d57600080fd5b506102ae600160a060020a0360043516610fae565b34801561049e57600080fd5b506101ec610fc9565b3480156104b357600080fd5b506101d5611024565b3480156104c857600080fd5b506101ec611081565b3480156104dd57600080fd5b5061028560048035602481019101356110dc565b3480156104fd57600080fd5b5061050661115e565b60408051600160a060020a039092168252519081900360200190f35b34801561052e57600080fd5b506101ec61116d565b34801561054357600080fd5b50610285600160a060020a03600435166024356111c8565b34801561056757600080fd5b506101ec6112bc565b34801561057c57600080fd5b50610285600160a060020a0360043516602435611317565b3480156105a057600080fd5b506102ae600160a060020a03600435811690602435166113b9565b3480156105c757600080fd5b506101d5600160a060020a03600435166113e4565b6000805433600160a060020a039081169116146105f857600080fd5b81600160a060020a03166370a08231306040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b15801561066c57600080fd5b505af1158015610680573d6000803e3d6000fd5b505050506040513d602081101561069657600080fd5b505160008054604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810185905290519394509085169263a9059cbb92604480840193602093929083900390910190829087803b15801561070c57600080fd5b505af1158015610720573d6000803e3d6000fd5b505050506040513d602081101561073657600080fd5b5051151561074057fe5b5050565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107ca5780601f1061079f576101008083540402835291602001916107ca565b820191906000526020600020905b8154815290600101906020018083116107ad57829003601f168201915b505050505081565b600160a060020a03338116600081815260056020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b6001545b90565b6000600160a060020a038316151561085a57600080fd5b600160a060020a03841660009081526002602052604090205482111561087f57600080fd5b600160a060020a03808516600090815260056020908152604080832033909416835292905220548211156108b257600080fd5b6108bc848361147c565b50600160a060020a0384166000908152600260205260409020546108e6908363ffffffff6114fc16565b600160a060020a03808616600090815260026020526040808220939093559085168152205461091b908363ffffffff61150e16565b600160a060020a03808516600090815260026020908152604080832094909455878316825260058152838220339093168252919091522054610963908363ffffffff6114fc16565b600160a060020a038086166000818152600560209081526040808320338616845282529182902094909455805186815290519287169391926000805160206115ba833981519152929181900390910190a35060019392505050565b600160a060020a031660009081526004602052604090205490565b60085481565b600e5481565b6009805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107ca5780601f1061079f576101008083540402835291602001916107ca565b600160a060020a0333166000908152600f602052604081205460ff168015610a7c5750600e54600154610a79908463ffffffff61150e16565b11155b1515610a8757600080fd5b600154610a9a908363ffffffff61150e16565b600155600160a060020a038316600090815260026020526040902054610ac6908363ffffffff61150e16565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206115ba8339815191529181900360200190a350600192915050565b600f6020526000908152604090205460ff1681565b6000805433600160a060020a03908116911614610b8157600080fd5b600160a060020a0383166000818152600f6020908152604091829020805460ff191686151590811790915582519384529083015280517fa09ab606a286dbc4fef3b4719193688eb1b1263b7bcf75e6b898938f5485988c9281900390910190a150600192915050565b600d805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107ca5780601f1061079f576101008083540402835291602001916107ca565b600160a060020a031660009081526003602052604090205490565b600160a060020a03338116600090815260056020908152604080832093861683529290529081205480831115610cbd57600160a060020a033381166000908152600560209081526040808320938816835292905290812055610cf4565b610ccd818463ffffffff6114fc16565b600160a060020a033381166000908152600560209081526040808320938916835292905220555b600160a060020a0333811660008181526005602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060019392505050565b600160a060020a0333166000908152600f602052604081205460ff168015610d955750600e54600154610d92908663ffffffff61150e16565b11155b1515610da057600080fd5b82841015610dad57600080fd5b600154610dc0908563ffffffff61150e16565b600155600160a060020a038516600090815260026020526040902054610dec908563ffffffff61150e16565b600160a060020a038616600090815260026020908152604080832093909355600390529081205411610e1e5782610e47565b600160a060020a038516600090815260036020526040902054610e47908463ffffffff61150e16565b600160a060020a038616600090815260036020908152604080832093909355600490529081205411610e795781610e93565b600160a060020a0385166000908152600460205260409020545b600160a060020a038616600081815260046020908152604091829020939093558051878152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518581529051600160a060020a038716916000916000805160206115ba8339815191529181900360200190a3604080518481529051600160a060020a038716917fd9aa477835e0d1939105c95f6883421ecfbf69c27b4825f650ac8c3fa975f280919081900360200190a2506001949350505050565b6000805433600160a060020a03908116911614610f7a57600080fd5b610f86600a8888611521565b50610f93600b8686611521565b50610fa0600c8484611521565b506001979650505050505050565b600160a060020a031660009081526002602052604090205490565b600a805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107ca5780601f1061079f576101008083540402835291602001916107ca565b60005433600160a060020a0390811691161461103f57600080fd5b60008054604051600160a060020a0391821692309092163180156108fc0292909190818181858888f1935050505015801561107e573d6000803e3d6000fd5b50565b600c805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107ca5780601f1061079f576101008083540402835291602001916107ca565b6000805433600160a060020a039081169116146110f857600080fd5b611104600d8484611521565b507fa9f1a471ec2e3188f8fe83ff492d6a51e428a600c245d778fcfbb699b5d4ed5c83836040518080602001828103825284848281815260200192508082843760405192018290039550909350505050a150600192915050565b600054600160a060020a031681565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107ca5780601f1061079f576101008083540402835291602001916107ca565b6000600160a060020a03831615156111df57600080fd5b600160a060020a03331660009081526002602052604090205482111561120457600080fd5b61120e338361147c565b50600160a060020a033316600090815260026020526040902054611238908363ffffffff6114fc16565b600160a060020a03338116600090815260026020526040808220939093559085168152205461126d908363ffffffff61150e16565b600160a060020a038085166000818152600260209081526040918290209490945580518681529051919333909316926000805160206115ba83398151915292918290030190a350600192915050565b600b805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107ca5780601f1061079f576101008083540402835291602001916107ca565b600160a060020a03338116600090815260056020908152604080832093861683529290529081205461134f908363ffffffff61150e16565b600160a060020a0333811660008181526005602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b60005433600160a060020a039081169116146113ff57600080fd5b600160a060020a038116151561141457600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03821660009081526002602052604081205481906114a7908463ffffffff6114fc16565b600160a060020a038516600090815260046020526040902054909150421080156114e85750600160a060020a03841660009081526003602052604090205481105b156114f257600080fd5b5060019392505050565b60008282111561150857fe5b50900390565b8181018281101561151b57fe5b92915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106115625782800160ff1982351617855561158f565b8280016001018555821561158f579182015b8281111561158f578235825591602001919060010190611574565b5061159b92915061159f565b5090565b61084091905b8082111561159b57600081556001016115a55600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820bf8453cb480cd601becc213310b67ef92d0a856552ca95a74057a3d6140cf3ec0029
Deployed Bytecode
0x6080604052600436106101735763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041662ae3bf881146101b457806306fdde03146101d7578063095ea7b31461026157806318160ddd1461029957806323b872dd146102c0578063286c241a146102ea578063313ce5671461030b578063355274ea146103205780633fa4f2451461033557806340c10f191461034a57806342c1867b1461036e578063432146751461038f5780635144417c146103b557806359355736146103ca57806366188463146103eb578063672492541461040f5780636dec7a931461043957806370a08231146104715780637284e416146104925780637362377b146104a7578063820e93f5146104bc578063884a47b4146104d15780638da5cb5b146104f157806395d89b4114610522578063a9059cbb14610537578063beb0a4161461055b578063d73dd62314610570578063dd62ed3e14610594578063f2fde38b146105bb575b604080513481529051600160a060020a033316917f0553260a2e46b0577270d8992db02d30856ca880144c72d6e9503760946aef13919081900360200190a2005b3480156101c057600080fd5b506101d5600160a060020a03600435166105dc565b005b3480156101e357600080fd5b506101ec610744565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022657818101518382015260200161020e565b50505050905090810190601f1680156102535780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561026d57600080fd5b50610285600160a060020a03600435166024356107d2565b604080519115158252519081900360200190f35b3480156102a557600080fd5b506102ae61083c565b60408051918252519081900360200190f35b3480156102cc57600080fd5b50610285600160a060020a0360043581169060243516604435610843565b3480156102f657600080fd5b506102ae600160a060020a03600435166109be565b34801561031757600080fd5b506102ae6109d9565b34801561032c57600080fd5b506102ae6109df565b34801561034157600080fd5b506101ec6109e5565b34801561035657600080fd5b50610285600160a060020a0360043516602435610a40565b34801561037a57600080fd5b50610285600160a060020a0360043516610b50565b34801561039b57600080fd5b50610285600160a060020a03600435166024351515610b65565b3480156103c157600080fd5b506101ec610bea565b3480156103d657600080fd5b506102ae600160a060020a0360043516610c45565b3480156103f757600080fd5b50610285600160a060020a0360043516602435610c60565b34801561041b57600080fd5b50610285600160a060020a0360043516602435604435606435610d59565b34801561044557600080fd5b506102856024600480358281019290820135918135808301929082013591604435918201910135610f5e565b34801561047d57600080fd5b506102ae600160a060020a0360043516610fae565b34801561049e57600080fd5b506101ec610fc9565b3480156104b357600080fd5b506101d5611024565b3480156104c857600080fd5b506101ec611081565b3480156104dd57600080fd5b5061028560048035602481019101356110dc565b3480156104fd57600080fd5b5061050661115e565b60408051600160a060020a039092168252519081900360200190f35b34801561052e57600080fd5b506101ec61116d565b34801561054357600080fd5b50610285600160a060020a03600435166024356111c8565b34801561056757600080fd5b506101ec6112bc565b34801561057c57600080fd5b50610285600160a060020a0360043516602435611317565b3480156105a057600080fd5b506102ae600160a060020a03600435811690602435166113b9565b3480156105c757600080fd5b506101d5600160a060020a03600435166113e4565b6000805433600160a060020a039081169116146105f857600080fd5b81600160a060020a03166370a08231306040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b15801561066c57600080fd5b505af1158015610680573d6000803e3d6000fd5b505050506040513d602081101561069657600080fd5b505160008054604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810185905290519394509085169263a9059cbb92604480840193602093929083900390910190829087803b15801561070c57600080fd5b505af1158015610720573d6000803e3d6000fd5b505050506040513d602081101561073657600080fd5b5051151561074057fe5b5050565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107ca5780601f1061079f576101008083540402835291602001916107ca565b820191906000526020600020905b8154815290600101906020018083116107ad57829003601f168201915b505050505081565b600160a060020a03338116600081815260056020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b6001545b90565b6000600160a060020a038316151561085a57600080fd5b600160a060020a03841660009081526002602052604090205482111561087f57600080fd5b600160a060020a03808516600090815260056020908152604080832033909416835292905220548211156108b257600080fd5b6108bc848361147c565b50600160a060020a0384166000908152600260205260409020546108e6908363ffffffff6114fc16565b600160a060020a03808616600090815260026020526040808220939093559085168152205461091b908363ffffffff61150e16565b600160a060020a03808516600090815260026020908152604080832094909455878316825260058152838220339093168252919091522054610963908363ffffffff6114fc16565b600160a060020a038086166000818152600560209081526040808320338616845282529182902094909455805186815290519287169391926000805160206115ba833981519152929181900390910190a35060019392505050565b600160a060020a031660009081526004602052604090205490565b60085481565b600e5481565b6009805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107ca5780601f1061079f576101008083540402835291602001916107ca565b600160a060020a0333166000908152600f602052604081205460ff168015610a7c5750600e54600154610a79908463ffffffff61150e16565b11155b1515610a8757600080fd5b600154610a9a908363ffffffff61150e16565b600155600160a060020a038316600090815260026020526040902054610ac6908363ffffffff61150e16565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206115ba8339815191529181900360200190a350600192915050565b600f6020526000908152604090205460ff1681565b6000805433600160a060020a03908116911614610b8157600080fd5b600160a060020a0383166000818152600f6020908152604091829020805460ff191686151590811790915582519384529083015280517fa09ab606a286dbc4fef3b4719193688eb1b1263b7bcf75e6b898938f5485988c9281900390910190a150600192915050565b600d805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107ca5780601f1061079f576101008083540402835291602001916107ca565b600160a060020a031660009081526003602052604090205490565b600160a060020a03338116600090815260056020908152604080832093861683529290529081205480831115610cbd57600160a060020a033381166000908152600560209081526040808320938816835292905290812055610cf4565b610ccd818463ffffffff6114fc16565b600160a060020a033381166000908152600560209081526040808320938916835292905220555b600160a060020a0333811660008181526005602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060019392505050565b600160a060020a0333166000908152600f602052604081205460ff168015610d955750600e54600154610d92908663ffffffff61150e16565b11155b1515610da057600080fd5b82841015610dad57600080fd5b600154610dc0908563ffffffff61150e16565b600155600160a060020a038516600090815260026020526040902054610dec908563ffffffff61150e16565b600160a060020a038616600090815260026020908152604080832093909355600390529081205411610e1e5782610e47565b600160a060020a038516600090815260036020526040902054610e47908463ffffffff61150e16565b600160a060020a038616600090815260036020908152604080832093909355600490529081205411610e795781610e93565b600160a060020a0385166000908152600460205260409020545b600160a060020a038616600081815260046020908152604091829020939093558051878152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518581529051600160a060020a038716916000916000805160206115ba8339815191529181900360200190a3604080518481529051600160a060020a038716917fd9aa477835e0d1939105c95f6883421ecfbf69c27b4825f650ac8c3fa975f280919081900360200190a2506001949350505050565b6000805433600160a060020a03908116911614610f7a57600080fd5b610f86600a8888611521565b50610f93600b8686611521565b50610fa0600c8484611521565b506001979650505050505050565b600160a060020a031660009081526002602052604090205490565b600a805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107ca5780601f1061079f576101008083540402835291602001916107ca565b60005433600160a060020a0390811691161461103f57600080fd5b60008054604051600160a060020a0391821692309092163180156108fc0292909190818181858888f1935050505015801561107e573d6000803e3d6000fd5b50565b600c805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107ca5780601f1061079f576101008083540402835291602001916107ca565b6000805433600160a060020a039081169116146110f857600080fd5b611104600d8484611521565b507fa9f1a471ec2e3188f8fe83ff492d6a51e428a600c245d778fcfbb699b5d4ed5c83836040518080602001828103825284848281815260200192508082843760405192018290039550909350505050a150600192915050565b600054600160a060020a031681565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107ca5780601f1061079f576101008083540402835291602001916107ca565b6000600160a060020a03831615156111df57600080fd5b600160a060020a03331660009081526002602052604090205482111561120457600080fd5b61120e338361147c565b50600160a060020a033316600090815260026020526040902054611238908363ffffffff6114fc16565b600160a060020a03338116600090815260026020526040808220939093559085168152205461126d908363ffffffff61150e16565b600160a060020a038085166000818152600260209081526040918290209490945580518681529051919333909316926000805160206115ba83398151915292918290030190a350600192915050565b600b805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107ca5780601f1061079f576101008083540402835291602001916107ca565b600160a060020a03338116600090815260056020908152604080832093861683529290529081205461134f908363ffffffff61150e16565b600160a060020a0333811660008181526005602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b60005433600160a060020a039081169116146113ff57600080fd5b600160a060020a038116151561141457600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03821660009081526002602052604081205481906114a7908463ffffffff6114fc16565b600160a060020a038516600090815260046020526040902054909150421080156114e85750600160a060020a03841660009081526003602052604090205481105b156114f257600080fd5b5060019392505050565b60008282111561150857fe5b50900390565b8181018281101561151b57fe5b92915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106115625782800160ff1982351617855561158f565b8280016001018555821561158f579182015b8281111561158f578235825591602001919060010190611574565b5061159b92915061159f565b5090565b61084091905b8082111561159b57600081556001016115a55600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820bf8453cb480cd601becc213310b67ef92d0a856552ca95a74057a3d6140cf3ec0029
Swarm Source
bzzr://bf8453cb480cd601becc213310b67ef92d0a856552ca95a74057a3d6140cf3ec
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.