ERC-20
Overview
Max Total Supply
2,500,000,000 ZJLT
Holders
86,315
Transfers
-
0
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
ZJLTToken
Compiler Version
v0.4.21+commit.dfe3193c
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2018-05-11
*/
pragma solidity ^0.4.18;
/** ----------------------------------------------------------------------------------------------
* ZJLTToken by ZJLT Distributed Factoring Network Limited.
* An ERC20 standard
*
* author: ZJLT Distributed Factoring Network Team
*/
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error.
*/
library SafeMath {
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;
}
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;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
assert(b <= a);
return a - b;
}
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
assert(c >= a);
return c;
}
}
contract ERC20 {
uint256 public totalSupply;
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
function balanceOf(address who) public view returns (uint256);
function transfer(address to, uint256 value) public returns (bool);
function allowance(address owner, address spender) public view returns (uint256);
function approve(address spender, uint256 value) public returns (bool);
function transferFrom(address from, address to, uint256 value) public returns (bool);
}
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));
emit OwnershipTransferred(owner, newOwner);
owner = newOwner;
}
}
interface TokenRecipient {
function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external;
}
contract TokenERC20 is ERC20, Ownable{
// Public variables of the token
string public name;
string public symbol;
uint8 public decimals = 18;
// 18 decimals is the strongly suggested default, avoid changing it
using SafeMath for uint256;
// Balances
mapping (address => uint256) balances;
// Allowances
mapping (address => mapping (address => uint256)) allowances;
// ----- Events -----
event Burn(address indexed from, uint256 value);
/**
* Constructor function
*/
function TokenERC20(uint256 _initialSupply, string _tokenName, string _tokenSymbol, uint8 _decimals) public {
name = _tokenName; // Set the name for display purposes
symbol = _tokenSymbol; // Set the symbol for display purposes
decimals = _decimals;
totalSupply = _initialSupply * 10 ** uint256(decimals); // Update total supply with the decimal amount
balances[msg.sender] = totalSupply; // Give the creator all initial tokens
}
/**
* @dev Fix for the ERC20 short address attack.
*/
modifier onlyPayloadSize(uint size) {
if(msg.data.length < size + 4) {
revert();
}
_;
}
function balanceOf(address _owner) public view returns(uint256) {
return balances[_owner];
}
function allowance(address _owner, address _spender) public view returns (uint256) {
return allowances[_owner][_spender];
}
/**
* Internal transfer, only can be called by this contract
*/
function _transfer(address _from, address _to, uint _value) internal returns(bool) {
// Prevent transfer to 0x0 address. Use burn() instead
require(_to != 0x0);
// Check if the sender has enough
require(balances[_from] >= _value);
// Check for overflows
require(balances[_to] + _value > balances[_to]);
require(_value >= 0);
// Save this for an assertion in the future
uint previousBalances = balances[_from].add(balances[_to]);
// SafeMath.sub will throw if there is not enough balance.
balances[_from] = balances[_from].sub(_value);
balances[_to] = balances[_to].add(_value);
emit Transfer(_from, _to, _value);
// Asserts are used to use static analysis to find bugs in your code. They should never fail
assert(balances[_from] + balances[_to] == previousBalances);
return true;
}
/**
* Transfer tokens
*
* Send `_value` tokens to `_to` from your account
*
* @param _to The address of the recipient
* @param _value the amount to send
*/
function transfer(address _to, uint256 _value) public returns(bool) {
return _transfer(msg.sender, _to, _value);
}
/**
* Transfer tokens from other address
*
* Send `_value` tokens to `_to` in behalf of `_from`
*
* @param _from The address of the sender
* @param _to The address of the recipient
* @param _value the amount to send
*/
function transferFrom(address _from, address _to, uint256 _value) public returns(bool) {
require(_to != address(0));
require(_value <= balances[_from]);
require(_value > 0);
balances[_from] = balances[_from].sub(_value);
balances[_to] = balances[_to].add(_value);
allowances[_from][msg.sender] = allowances[_from][msg.sender].sub(_value);
emit Transfer(_from, _to, _value);
return true;
}
/**
* Set allowance for other address
*
* Allows `_spender` to spend no more than `_value` tokens in your behalf
*
* @param _spender The address authorized to spend
* @param _value the max amount they can spend
*/
function approve(address _spender, uint256 _value) public returns(bool) {
require((_value == 0) || (allowances[msg.sender][_spender] == 0));
allowances[msg.sender][_spender] = _value;
emit Approval(msg.sender, _spender, _value);
return true;
}
/**
* Set allowance for other address and notify
*
* Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it
*
* @param _spender The address authorized to spend
* @param _value the max amount they can spend
* @param _extraData some extra information to send to the approved contract
*/
function approveAndCall(address _spender, uint256 _value, bytes _extraData) public returns(bool) {
if (approve(_spender, _value)) {
TokenRecipient spender = TokenRecipient(_spender);
spender.receiveApproval(msg.sender, _value, this, _extraData);
return true;
}
return false;
}
/**
* @dev Transfer tokens to multiple addresses
* @param _addresses The addresses that will receieve tokens
* @param _amounts The quantity of tokens that will be transferred
* @return True if the tokens are transferred correctly
*/
function transferForMultiAddresses(address[] _addresses, uint256[] _amounts) public returns (bool) {
for (uint256 i = 0; i < _addresses.length; i++) {
require(_addresses[i] != address(0));
require(_amounts[i] <= balances[msg.sender]);
require(_amounts[i] > 0);
// SafeMath.sub will throw if there is not enough balance.
balances[msg.sender] = balances[msg.sender].sub(_amounts[i]);
balances[_addresses[i]] = balances[_addresses[i]].add(_amounts[i]);
emit Transfer(msg.sender, _addresses[i], _amounts[i]);
}
return true;
}
/**
* Destroy tokens
*
* Remove `_value` tokens from the system irreversibly
*
* @param _value the amount of money to burn
*/
function burn(uint256 _value) public returns(bool) {
require(balances[msg.sender] >= _value); // Check if the sender has enough
balances[msg.sender] = balances[msg.sender].sub(_value); // Subtract from the sender
totalSupply = totalSupply.sub(_value); // Updates totalSupply
emit Burn(msg.sender, _value);
return true;
}
/**
* Destroy tokens from other account
*
* Remove `_value` tokens from the system irreversibly on behalf of `_from`.
*
* @param _from the address of the sender
* @param _value the amount of money to burn
*/
function burnFrom(address _from, uint256 _value) public returns(bool) {
require(balances[_from] >= _value); // Check if the targeted balance is enough
require(_value <= allowances[_from][msg.sender]); // Check allowance
balances[_from] = balances[_from].sub(_value); // Subtract from the targeted balance
allowances[_from][msg.sender] = allowances[_from][msg.sender].sub(_value); // Subtract from the sender's allowance
totalSupply = totalSupply.sub(_value); // Update totalSupply
emit Burn(_from, _value);
return true;
}
/**
* approve should be called when allowances[_spender] == 0. To increment
* allowances value is better to use this function to avoid 2 calls (and wait until
* the first transaction is mined)
* From MonolithDAO Token.sol
*/
function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
// Check for overflows
require(allowances[msg.sender][_spender].add(_addedValue) > allowances[msg.sender][_spender]);
allowances[msg.sender][_spender] =allowances[msg.sender][_spender].add(_addedValue);
emit Approval(msg.sender, _spender, allowances[msg.sender][_spender]);
return true;
}
function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
uint oldValue = allowances[msg.sender][_spender];
if (_subtractedValue > oldValue) {
allowances[msg.sender][_spender] = 0;
} else {
allowances[msg.sender][_spender] = oldValue.sub(_subtractedValue);
}
emit Approval(msg.sender, _spender, allowances[msg.sender][_spender]);
return true;
}
}
contract ZJLTToken is TokenERC20 {
function ZJLTToken() TokenERC20(2500000000, "ZJLT Distributed Factoring Network", "ZJLT", 18) public {
}
function () payable public {
//if ether is sent to this address, send it back.
//throw;
require(false);
}
}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":"","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":"_addresses","type":"address[]"},{"name":"_amounts","type":"uint256[]"}],"name":"transferForMultiAddresses","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","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":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"value","type":"uint256"}],"name":"Burn","type":"event"},{"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
60606040526004805460ff1916601217905534156200001d57600080fd5b639502f90060606040519081016040908152602282527f5a4a4c5420446973747269627574656420466163746f72696e67204e6574776f60208301527f726b000000000000000000000000000000000000000000000000000000000000818301528051908101604052600481527f5a4a4c5400000000000000000000000000000000000000000000000000000000602082015260018054600160a060020a03191633600160a060020a031617905560126002838051620000e292916020019062000137565b506003828051620000f892916020019062000137565b506004805460ff191660ff928316179081905516600a0a92909202600081815533600160a060020a031681526005602052604090205550620001dc9050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200017a57805160ff1916838001178555620001aa565b82800160010185558215620001aa579182015b82811115620001aa5782518255916020019190600101906200018d565b50620001b8929150620001bc565b5090565b620001d991905b80821115620001b85760008155600101620001c3565b90565b61117e80620001ec6000396000f3006060604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f7578063095ea7b31461018157806318160ddd146101b7578063204009d2146101dc57806323b872dd1461026b578063313ce5671461029357806342966c68146102bc57806366188463146102d257806370a08231146102f457806379cc6790146103135780638da5cb5b1461033557806395d89b4114610364578063a9059cbb14610377578063cae9ca5114610399578063d73dd623146103fe578063dd62ed3e14610420578063f2fde38b14610445575b600080fd5b005b341561010257600080fd5b61010a610464565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561014657808201518382015260200161012e565b50505050905090810190601f1680156101735780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018c57600080fd5b6101a3600160a060020a0360043516602435610502565b604051901515815260200160405180910390f35b34156101c257600080fd5b6101ca6105a8565b60405190815260200160405180910390f35b34156101e757600080fd5b6101a36004602481358181019083013580602081810201604051908101604052809392919081815260200183836020028082843782019150505050505091908035906020019082018035906020019080806020026020016040519081016040528093929190818152602001838360200280828437509496506105ae95505050505050565b341561027657600080fd5b6101a3600160a060020a03600435811690602435166044356107aa565b341561029e57600080fd5b6102a6610906565b60405160ff909116815260200160405180910390f35b34156102c757600080fd5b6101a360043561090f565b34156102dd57600080fd5b6101a3600160a060020a03600435166024356109d3565b34156102ff57600080fd5b6101ca600160a060020a0360043516610acd565b341561031e57600080fd5b6101a3600160a060020a0360043516602435610ae8565b341561034057600080fd5b610348610c33565b604051600160a060020a03909116815260200160405180910390f35b341561036f57600080fd5b61010a610c42565b341561038257600080fd5b6101a3600160a060020a0360043516602435610cad565b34156103a457600080fd5b6101a360048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610cc195505050505050565b341561040957600080fd5b6101a3600160a060020a0360043516602435610dfa565b341561042b57600080fd5b6101ca600160a060020a0360043581169060243516610ed8565b341561045057600080fd5b6100f5600160a060020a0360043516610f03565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104fa5780601f106104cf576101008083540402835291602001916104fa565b820191906000526020600020905b8154815290600101906020018083116104dd57829003601f168201915b505050505081565b60008115806105345750600160a060020a03338116600090815260066020908152604080832093871683529290522054155b151561053f57600080fd5b600160a060020a03338116600081815260066020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005481565b6000805b83518110156107a05760008482815181106105c957fe5b90602001906020020151600160a060020a031614156105e757600080fd5b600160a060020a03331660009081526005602052604090205483828151811061060c57fe5b90602001906020020151111561062157600080fd5b600083828151811061062f57fe5b906020019060200201511161064357600080fd5b61068183828151811061065257fe5b90602001906020020151600160a060020a0333166000908152600560205260409020549063ffffffff610f9e16565b600160a060020a0333166000908152600560205260409020556106f38382815181106106a957fe5b90602001906020020151600560008785815181106106c357fe5b90602001906020020151600160a060020a031681526020810191909152604001600020549063ffffffff610fb016565b6005600086848151811061070357fe5b90602001906020020151600160a060020a0316815260208101919091526040016000205583818151811061073357fe5b90602001906020020151600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85848151811061077d57fe5b9060200190602002015160405190815260200160405180910390a36001016105b2565b5060019392505050565b6000600160a060020a03831615156107c157600080fd5b600160a060020a0384166000908152600560205260409020548211156107e657600080fd5b600082116107f357600080fd5b600160a060020a03841660009081526005602052604090205461081c908363ffffffff610f9e16565b600160a060020a038086166000908152600560205260408082209390935590851681522054610851908363ffffffff610fb016565b600160a060020a03808516600090815260056020908152604080832094909455878316825260068152838220339093168252919091522054610899908363ffffffff610f9e16565b600160a060020a03808616600081815260066020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60045460ff1681565b600160a060020a0333166000908152600560205260408120548290101561093557600080fd5b600160a060020a03331660009081526005602052604090205461095e908363ffffffff610f9e16565b600160a060020a0333166000908152600560205260408120919091555461098b908363ffffffff610f9e16565b600055600160a060020a0333167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a2506001919050565b600160a060020a03338116600090815260066020908152604080832093861683529290529081205480831115610a3057600160a060020a033381166000908152600660209081526040808320938816835292905290812055610a67565b610a40818463ffffffff610f9e16565b600160a060020a033381166000908152600660209081526040808320938916835292905220555b600160a060020a0333811660008181526006602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526005602052604090205490565b600160a060020a03821660009081526005602052604081205482901015610b0e57600080fd5b600160a060020a0380841660009081526006602090815260408083203390941683529290522054821115610b4157600080fd5b600160a060020a038316600090815260056020526040902054610b6a908363ffffffff610f9e16565b600160a060020a0380851660009081526005602090815260408083209490945560068152838220339093168252919091522054610bad908363ffffffff610f9e16565b600160a060020a0380851660009081526006602090815260408083203390941683529290529081209190915554610bea908363ffffffff610f9e16565b600055600160a060020a0383167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a250600192915050565b600154600160a060020a031681565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104fa5780601f106104cf576101008083540402835291602001916104fa565b6000610cba338484610fbf565b9392505050565b600080610cce8585610502565b15610ded575083600160a060020a038116638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610d86578082015183820152602001610d6e565b50505050905090810190601f168015610db35780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610dd457600080fd5b5af11515610de157600080fd5b50505060019150610df2565b600091505b509392505050565b600160a060020a033381166000908152600660209081526040808320938616835292905290812054610e2c8184610fb0565b11610e3657600080fd5b600160a060020a03338116600090815260066020908152604080832093871683529290522054610e6c908363ffffffff610fb016565b600160a060020a0333811660008181526006602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b60015433600160a060020a03908116911614610f1e57600080fd5b600160a060020a0381161515610f3357600080fd5b600154600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610faa57fe5b50900390565b600082820183811015610cba57fe5b600080600160a060020a0384161515610fd757600080fd5b600160a060020a03851660009081526005602052604090205483901015610ffd57600080fd5b600160a060020a0384166000908152600560205260409020548381011161102357600080fd5b600083101561103157600080fd5b600160a060020a038085166000908152600560205260408082205492881682529020546110639163ffffffff610fb016565b600160a060020a03861660009081526005602052604090205490915061108f908463ffffffff610f9e16565b600160a060020a0380871660009081526005602052604080822093909355908616815220546110c4908463ffffffff610fb016565b600160a060020a03808616600081815260056020526040908190209390935591908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600160a060020a0380851660009081526005602052604080822054928816825290205401811461114757fe5b5060019493505050505600a165627a7a723058203d14b8136945b25c2235b9dcddf4b6889302eadda5a2cb452aba15c8888395ec0029
Deployed Bytecode
0x6060604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f7578063095ea7b31461018157806318160ddd146101b7578063204009d2146101dc57806323b872dd1461026b578063313ce5671461029357806342966c68146102bc57806366188463146102d257806370a08231146102f457806379cc6790146103135780638da5cb5b1461033557806395d89b4114610364578063a9059cbb14610377578063cae9ca5114610399578063d73dd623146103fe578063dd62ed3e14610420578063f2fde38b14610445575b600080fd5b005b341561010257600080fd5b61010a610464565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561014657808201518382015260200161012e565b50505050905090810190601f1680156101735780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018c57600080fd5b6101a3600160a060020a0360043516602435610502565b604051901515815260200160405180910390f35b34156101c257600080fd5b6101ca6105a8565b60405190815260200160405180910390f35b34156101e757600080fd5b6101a36004602481358181019083013580602081810201604051908101604052809392919081815260200183836020028082843782019150505050505091908035906020019082018035906020019080806020026020016040519081016040528093929190818152602001838360200280828437509496506105ae95505050505050565b341561027657600080fd5b6101a3600160a060020a03600435811690602435166044356107aa565b341561029e57600080fd5b6102a6610906565b60405160ff909116815260200160405180910390f35b34156102c757600080fd5b6101a360043561090f565b34156102dd57600080fd5b6101a3600160a060020a03600435166024356109d3565b34156102ff57600080fd5b6101ca600160a060020a0360043516610acd565b341561031e57600080fd5b6101a3600160a060020a0360043516602435610ae8565b341561034057600080fd5b610348610c33565b604051600160a060020a03909116815260200160405180910390f35b341561036f57600080fd5b61010a610c42565b341561038257600080fd5b6101a3600160a060020a0360043516602435610cad565b34156103a457600080fd5b6101a360048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610cc195505050505050565b341561040957600080fd5b6101a3600160a060020a0360043516602435610dfa565b341561042b57600080fd5b6101ca600160a060020a0360043581169060243516610ed8565b341561045057600080fd5b6100f5600160a060020a0360043516610f03565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104fa5780601f106104cf576101008083540402835291602001916104fa565b820191906000526020600020905b8154815290600101906020018083116104dd57829003601f168201915b505050505081565b60008115806105345750600160a060020a03338116600090815260066020908152604080832093871683529290522054155b151561053f57600080fd5b600160a060020a03338116600081815260066020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005481565b6000805b83518110156107a05760008482815181106105c957fe5b90602001906020020151600160a060020a031614156105e757600080fd5b600160a060020a03331660009081526005602052604090205483828151811061060c57fe5b90602001906020020151111561062157600080fd5b600083828151811061062f57fe5b906020019060200201511161064357600080fd5b61068183828151811061065257fe5b90602001906020020151600160a060020a0333166000908152600560205260409020549063ffffffff610f9e16565b600160a060020a0333166000908152600560205260409020556106f38382815181106106a957fe5b90602001906020020151600560008785815181106106c357fe5b90602001906020020151600160a060020a031681526020810191909152604001600020549063ffffffff610fb016565b6005600086848151811061070357fe5b90602001906020020151600160a060020a0316815260208101919091526040016000205583818151811061073357fe5b90602001906020020151600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85848151811061077d57fe5b9060200190602002015160405190815260200160405180910390a36001016105b2565b5060019392505050565b6000600160a060020a03831615156107c157600080fd5b600160a060020a0384166000908152600560205260409020548211156107e657600080fd5b600082116107f357600080fd5b600160a060020a03841660009081526005602052604090205461081c908363ffffffff610f9e16565b600160a060020a038086166000908152600560205260408082209390935590851681522054610851908363ffffffff610fb016565b600160a060020a03808516600090815260056020908152604080832094909455878316825260068152838220339093168252919091522054610899908363ffffffff610f9e16565b600160a060020a03808616600081815260066020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60045460ff1681565b600160a060020a0333166000908152600560205260408120548290101561093557600080fd5b600160a060020a03331660009081526005602052604090205461095e908363ffffffff610f9e16565b600160a060020a0333166000908152600560205260408120919091555461098b908363ffffffff610f9e16565b600055600160a060020a0333167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a2506001919050565b600160a060020a03338116600090815260066020908152604080832093861683529290529081205480831115610a3057600160a060020a033381166000908152600660209081526040808320938816835292905290812055610a67565b610a40818463ffffffff610f9e16565b600160a060020a033381166000908152600660209081526040808320938916835292905220555b600160a060020a0333811660008181526006602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526005602052604090205490565b600160a060020a03821660009081526005602052604081205482901015610b0e57600080fd5b600160a060020a0380841660009081526006602090815260408083203390941683529290522054821115610b4157600080fd5b600160a060020a038316600090815260056020526040902054610b6a908363ffffffff610f9e16565b600160a060020a0380851660009081526005602090815260408083209490945560068152838220339093168252919091522054610bad908363ffffffff610f9e16565b600160a060020a0380851660009081526006602090815260408083203390941683529290529081209190915554610bea908363ffffffff610f9e16565b600055600160a060020a0383167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a250600192915050565b600154600160a060020a031681565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104fa5780601f106104cf576101008083540402835291602001916104fa565b6000610cba338484610fbf565b9392505050565b600080610cce8585610502565b15610ded575083600160a060020a038116638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610d86578082015183820152602001610d6e565b50505050905090810190601f168015610db35780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610dd457600080fd5b5af11515610de157600080fd5b50505060019150610df2565b600091505b509392505050565b600160a060020a033381166000908152600660209081526040808320938616835292905290812054610e2c8184610fb0565b11610e3657600080fd5b600160a060020a03338116600090815260066020908152604080832093871683529290522054610e6c908363ffffffff610fb016565b600160a060020a0333811660008181526006602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b60015433600160a060020a03908116911614610f1e57600080fd5b600160a060020a0381161515610f3357600080fd5b600154600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610faa57fe5b50900390565b600082820183811015610cba57fe5b600080600160a060020a0384161515610fd757600080fd5b600160a060020a03851660009081526005602052604090205483901015610ffd57600080fd5b600160a060020a0384166000908152600560205260409020548381011161102357600080fd5b600083101561103157600080fd5b600160a060020a038085166000908152600560205260408082205492881682529020546110639163ffffffff610fb016565b600160a060020a03861660009081526005602052604090205490915061108f908463ffffffff610f9e16565b600160a060020a0380871660009081526005602052604080822093909355908616815220546110c4908463ffffffff610fb016565b600160a060020a03808616600081815260056020526040908190209390935591908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600160a060020a0380851660009081526005602052604080822054928816825290205401811461114757fe5b5060019493505050505600a165627a7a723058203d14b8136945b25c2235b9dcddf4b6889302eadda5a2cb452aba15c8888395ec0029
Swarm Source
bzzr://3d14b8136945b25c2235b9dcddf4b6889302eadda5a2cb452aba15c8888395ec
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.
Add Token to MetaMask (Web3)