ERC-20
Overview
Max Total Supply
6,000,000,000 DFC
Holders
416
Market
Onchain Market Cap
$0.00
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:
DeepCoinToken
Compiler Version
v0.4.18+commit.9cf6e910
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-02-12 */ pragma solidity ^0.4.18; /** * @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; } } /** * @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. */ function Ownable() public{ owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); OwnershipTransferred(owner, newOwner); owner = newOwner; } } /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } contract BasicToken is ERC20Basic, Ownable { using SafeMath for uint256; mapping(address => uint256) balances; bool public stopped = false; /** * @dev Throws if stopped is false */ modifier isRunning { require(!stopped); _; } function stop() public isRunning onlyOwner { stopped = true; } function start() public isRunning onlyOwner { stopped = false; } /** * @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) isRunning public returns (bool) { require(_value <= balances[msg.sender]); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } function batchTransfer(address[] _addresses, uint256[] _value) isRunning public returns (bool) { for (uint256 i = 0; i < _addresses.length; i++) { require(transfer(_addresses[i], _value[i])); } return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256 balance) { return balances[_owner]; } } contract 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 Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ 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) isRunning public returns (bool) { require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) isRunning public returns (bool) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public view returns (uint256) { return allowed[_owner][_spender]; } /** * 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 */ function increaseApproval(address _spender, uint _addedValue) isRunning public returns (bool) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } function decreaseApproval(address _spender, uint _subtractedValue) isRunning public returns (bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } contract DeepCoinToken is StandardToken { uint256 public totalSupply = 100000000 * 60 * 10 ** 18; // 6, 000, 000, 000 string public name = "Deepfin Coin"; uint8 public decimals = 18; string public symbol = 'DFC'; string public version = 'v1.0'; function DeepCoinToken() public{ balances[msg.sender] = totalSupply; } /** * destroy coin, cap is 5 billion */ function burn(uint256 _value) onlyOwner isRunning public { require(balances[0x0].add(_value) <= 100000000 * 50 * 10 ** 18); transfer(0x0, _value); } function burnBalance() onlyOwner public view returns (uint256) { uint256 burnCap = 100000000 * 50 * 10 ** 18; return burnCap.sub(balances[0x0]); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"stop","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"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":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stopped","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_addresses","type":"address[]"},{"name":"_value","type":"uint256[]"}],"name":"batchTransfer","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":"burnBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"start","outputs":[],"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"},{"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":"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"}]
Contract Creation Code
606060409081526003805460ff191690556b1363156bbee3016d700000006005558051908101604052600c81527f4465657066696e20436f696e000000000000000000000000000000000000000060208201526006908051620000679291602001906200014c565b506007805460ff1916601217905560408051908101604052600381527f444643000000000000000000000000000000000000000000000000000000000060208201526008908051620000be9291602001906200014c565b5060408051908101604052600481527f76312e300000000000000000000000000000000000000000000000000000000060208201526009908051620001089291602001906200014c565b5034156200011557600080fd5b60018054600160a060020a03191633600160a060020a031690811790915560055460009182526002602052604090912055620001f1565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200018f57805160ff1916838001178555620001bf565b82800160010185558215620001bf579182015b82811115620001bf578251825591602001919060010190620001a2565b50620001cd929150620001d1565b5090565b620001ee91905b80821115620001cd5760008155600101620001d8565b90565b610dc480620002016000396000f3006060604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461011657806307da68f5146101a0578063095ea7b3146101b557806318160ddd146101eb57806323b872dd14610210578063313ce5671461023857806342966c681461026157806354fd4d5014610277578063661884631461028a57806370a08231146102ac57806375f12b21146102cb57806388d695b2146102de5780638da5cb5b1461036d57806395d89b411461039c578063a9059cbb146103af578063bc68fad9146103d1578063be9a6555146103e4578063d73dd623146103f7578063dd62ed3e14610419578063f2fde38b1461043e575b600080fd5b341561012157600080fd5b61012961045d565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561016557808201518382015260200161014d565b50505050905090810190601f1680156101925780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101ab57600080fd5b6101b36104fb565b005b34156101c057600080fd5b6101d7600160a060020a0360043516602435610535565b604051901515815260200160405180910390f35b34156101f657600080fd5b6101fe6105b1565b60405190815260200160405180910390f35b341561021b57600080fd5b6101d7600160a060020a03600435811690602435166044356105b7565b341561024357600080fd5b61024b610735565b60405160ff909116815260200160405180910390f35b341561026c57600080fd5b6101b360043561073e565b341561028257600080fd5b6101296107cc565b341561029557600080fd5b6101d7600160a060020a0360043516602435610837565b34156102b757600080fd5b6101fe600160a060020a0360043516610945565b34156102d657600080fd5b6101d7610960565b34156102e957600080fd5b6101d760046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437820191505050505050919080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284375094965061096995505050505050565b341561037857600080fd5b6103806109dc565b604051600160a060020a03909116815260200160405180910390f35b34156103a757600080fd5b6101296109eb565b34156103ba57600080fd5b6101d7600160a060020a0360043516602435610a56565b34156103dc57600080fd5b6101fe610b4d565b34156103ef57600080fd5b6101b3610bbe565b341561040257600080fd5b6101d7600160a060020a0360043516602435610bf5565b341561042457600080fd5b6101fe600160a060020a0360043581169060243516610caa565b341561044957600080fd5b6101b3600160a060020a0360043516610cd5565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104f35780601f106104c8576101008083540402835291602001916104f3565b820191906000526020600020905b8154815290600101906020018083116104d657829003601f168201915b505050505081565b60035460ff161561050b57600080fd5b60015433600160a060020a0390811691161461052657600080fd5b6003805460ff19166001179055565b60035460009060ff161561054857600080fd5b600160a060020a03338116600081815260046020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60055481565b60035460009060ff16156105ca57600080fd5b600160a060020a0384166000908152600260205260409020548211156105ef57600080fd5b600160a060020a038085166000908152600460209081526040808320339094168352929052205482111561062257600080fd5b600160a060020a03841660009081526002602052604090205461064b908363ffffffff610d7016565b600160a060020a038086166000908152600260205260408082209390935590851681522054610680908363ffffffff610d8216565b600160a060020a038085166000908152600260209081526040808320949094558783168252600481528382203390931682529190915220546106c8908363ffffffff610d7016565b600160a060020a03808616600081815260046020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60075460ff1681565b60015433600160a060020a0390811691161461075957600080fd5b60035460ff161561076957600080fd5b6000805260026020527fac33ff75c19e70fe83507db0d683fd3465c996598dc972688b7ace676c89077b546b1027e72f1f12813088000000906107b2908363ffffffff610d8216565b11156107bd57600080fd5b6107c8600082610a56565b5050565b60098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104f35780601f106104c8576101008083540402835291602001916104f3565b600354600090819060ff161561084c57600080fd5b50600160a060020a03338116600090815260046020908152604080832093871683529290522054808311156108a857600160a060020a0333811660009081526004602090815260408083209388168352929052908120556108df565b6108b8818463ffffffff610d7016565b600160a060020a033381166000908152600460209081526040808320938916835292905220555b600160a060020a0333811660008181526004602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526002602052604090205490565b60035460ff1681565b600354600090819060ff161561097e57600080fd5b5060005b83518110156109d2576109bf84828151811061099a57fe5b906020019060200201518483815181106109b057fe5b90602001906020020151610a56565b15156109ca57600080fd5b600101610982565b5060019392505050565b600154600160a060020a031681565b60088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104f35780601f106104c8576101008083540402835291602001916104f3565b60035460009060ff1615610a6957600080fd5b600160a060020a033316600090815260026020526040902054821115610a8e57600080fd5b600160a060020a033316600090815260026020526040902054610ab7908363ffffffff610d7016565b600160a060020a033381166000908152600260205260408082209390935590851681522054610aec908363ffffffff610d8216565b600160a060020a0380851660008181526002602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600154600090819033600160a060020a03908116911614610b6d57600080fd5b506000805260026020527fac33ff75c19e70fe83507db0d683fd3465c996598dc972688b7ace676c89077b546b1027e72f1f1281308800000090610bb890829063ffffffff610d7016565b91505090565b60035460ff1615610bce57600080fd5b60015433600160a060020a03908116911614610be957600080fd5b6003805460ff19169055565b60035460009060ff1615610c0857600080fd5b600160a060020a03338116600090815260046020908152604080832093871683529290522054610c3e908363ffffffff610d8216565b600160a060020a0333811660008181526004602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b60015433600160a060020a03908116911614610cf057600080fd5b600160a060020a0381161515610d0557600080fd5b600154600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610d7c57fe5b50900390565b600082820183811015610d9157fe5b93925050505600a165627a7a7230582044d0b4fe3b60b9b0111f6239938fe0a9f116394ecf18e7891771550a60ae1d9d0029
Deployed Bytecode
0x6060604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461011657806307da68f5146101a0578063095ea7b3146101b557806318160ddd146101eb57806323b872dd14610210578063313ce5671461023857806342966c681461026157806354fd4d5014610277578063661884631461028a57806370a08231146102ac57806375f12b21146102cb57806388d695b2146102de5780638da5cb5b1461036d57806395d89b411461039c578063a9059cbb146103af578063bc68fad9146103d1578063be9a6555146103e4578063d73dd623146103f7578063dd62ed3e14610419578063f2fde38b1461043e575b600080fd5b341561012157600080fd5b61012961045d565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561016557808201518382015260200161014d565b50505050905090810190601f1680156101925780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101ab57600080fd5b6101b36104fb565b005b34156101c057600080fd5b6101d7600160a060020a0360043516602435610535565b604051901515815260200160405180910390f35b34156101f657600080fd5b6101fe6105b1565b60405190815260200160405180910390f35b341561021b57600080fd5b6101d7600160a060020a03600435811690602435166044356105b7565b341561024357600080fd5b61024b610735565b60405160ff909116815260200160405180910390f35b341561026c57600080fd5b6101b360043561073e565b341561028257600080fd5b6101296107cc565b341561029557600080fd5b6101d7600160a060020a0360043516602435610837565b34156102b757600080fd5b6101fe600160a060020a0360043516610945565b34156102d657600080fd5b6101d7610960565b34156102e957600080fd5b6101d760046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437820191505050505050919080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284375094965061096995505050505050565b341561037857600080fd5b6103806109dc565b604051600160a060020a03909116815260200160405180910390f35b34156103a757600080fd5b6101296109eb565b34156103ba57600080fd5b6101d7600160a060020a0360043516602435610a56565b34156103dc57600080fd5b6101fe610b4d565b34156103ef57600080fd5b6101b3610bbe565b341561040257600080fd5b6101d7600160a060020a0360043516602435610bf5565b341561042457600080fd5b6101fe600160a060020a0360043581169060243516610caa565b341561044957600080fd5b6101b3600160a060020a0360043516610cd5565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104f35780601f106104c8576101008083540402835291602001916104f3565b820191906000526020600020905b8154815290600101906020018083116104d657829003601f168201915b505050505081565b60035460ff161561050b57600080fd5b60015433600160a060020a0390811691161461052657600080fd5b6003805460ff19166001179055565b60035460009060ff161561054857600080fd5b600160a060020a03338116600081815260046020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60055481565b60035460009060ff16156105ca57600080fd5b600160a060020a0384166000908152600260205260409020548211156105ef57600080fd5b600160a060020a038085166000908152600460209081526040808320339094168352929052205482111561062257600080fd5b600160a060020a03841660009081526002602052604090205461064b908363ffffffff610d7016565b600160a060020a038086166000908152600260205260408082209390935590851681522054610680908363ffffffff610d8216565b600160a060020a038085166000908152600260209081526040808320949094558783168252600481528382203390931682529190915220546106c8908363ffffffff610d7016565b600160a060020a03808616600081815260046020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60075460ff1681565b60015433600160a060020a0390811691161461075957600080fd5b60035460ff161561076957600080fd5b6000805260026020527fac33ff75c19e70fe83507db0d683fd3465c996598dc972688b7ace676c89077b546b1027e72f1f12813088000000906107b2908363ffffffff610d8216565b11156107bd57600080fd5b6107c8600082610a56565b5050565b60098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104f35780601f106104c8576101008083540402835291602001916104f3565b600354600090819060ff161561084c57600080fd5b50600160a060020a03338116600090815260046020908152604080832093871683529290522054808311156108a857600160a060020a0333811660009081526004602090815260408083209388168352929052908120556108df565b6108b8818463ffffffff610d7016565b600160a060020a033381166000908152600460209081526040808320938916835292905220555b600160a060020a0333811660008181526004602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526002602052604090205490565b60035460ff1681565b600354600090819060ff161561097e57600080fd5b5060005b83518110156109d2576109bf84828151811061099a57fe5b906020019060200201518483815181106109b057fe5b90602001906020020151610a56565b15156109ca57600080fd5b600101610982565b5060019392505050565b600154600160a060020a031681565b60088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104f35780601f106104c8576101008083540402835291602001916104f3565b60035460009060ff1615610a6957600080fd5b600160a060020a033316600090815260026020526040902054821115610a8e57600080fd5b600160a060020a033316600090815260026020526040902054610ab7908363ffffffff610d7016565b600160a060020a033381166000908152600260205260408082209390935590851681522054610aec908363ffffffff610d8216565b600160a060020a0380851660008181526002602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600154600090819033600160a060020a03908116911614610b6d57600080fd5b506000805260026020527fac33ff75c19e70fe83507db0d683fd3465c996598dc972688b7ace676c89077b546b1027e72f1f1281308800000090610bb890829063ffffffff610d7016565b91505090565b60035460ff1615610bce57600080fd5b60015433600160a060020a03908116911614610be957600080fd5b6003805460ff19169055565b60035460009060ff1615610c0857600080fd5b600160a060020a03338116600090815260046020908152604080832093871683529290522054610c3e908363ffffffff610d8216565b600160a060020a0333811660008181526004602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b60015433600160a060020a03908116911614610cf057600080fd5b600160a060020a0381161515610d0557600080fd5b600154600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610d7c57fe5b50900390565b600082820183811015610d9157fe5b93925050505600a165627a7a7230582044d0b4fe3b60b9b0111f6239938fe0a9f116394ecf18e7891771550a60ae1d9d0029
Swarm Source
bzzr://44d0b4fe3b60b9b0111f6239938fe0a9f116394ecf18e7891771550a60ae1d9d
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.