ERC-20
Overview
Max Total Supply
50,000,000,000 NNSH
Holders
3,548
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:
NANASHITOKEN
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-07-03 */ pragma solidity ^0.4.23; /** * @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 Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256 c) { 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 OwnershipRenounced(address indexed previousOwner); 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 relinquish control of the contract. * @notice Renouncing to ownership will leave the contract without an owner. * It will not be possible to call the functions with the `onlyOwner` * modifier anymore. */ function renounceOwnership() public onlyOwner { emit OwnershipRenounced(owner); owner = address(0); } /** * @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 { _transferOwnership(_newOwner); } /** * @dev Transfers control of the contract to a newOwner. * @param _newOwner The address to transfer ownership to. */ function _transferOwnership(address _newOwner) internal { require(_newOwner != address(0)); emit OwnershipTransferred(owner, _newOwner); owner = _newOwner; } } /** * @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 ERC20StandardToken { event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed _owner, address indexed _spender, uint _value); mapping (address => mapping (address => uint256)) internal allowed; mapping (address => uint256) public balanceOf; using SafeMath for uint256; uint256 totalSupply_; /** * @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 <= balanceOf[_from]); require(_value <= allowed[_from][msg.sender]); balanceOf[_from] = balanceOf[_from].sub(_value); balanceOf[_to] = balanceOf[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); emit Transfer(_from, _to, _value); return true; } /** * @dev total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balanceOf[msg.sender]); balanceOf[msg.sender] = balanceOf[msg.sender].sub(_value); balanceOf[_to] = balanceOf[_to].add(_value); emit Transfer(msg.sender, _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 Contract that will work with ERC223 tokens. */ contract addtionalERC223Interface { function transfer(address to, uint256 value, bytes data) public returns (bool); event Transfer(address indexed from, address indexed to, uint value, bytes data); } contract ERC223ReceivingContract { /** * @dev Standard ERC223 function that will handle incoming token transfers. * * @param _from Token sender address. * @param _value Amount of tokens. * @param _data Transaction metadata. */ struct TKN { address sender; uint value; bytes data; bytes4 sig; } function tokenFallback(address _from, uint256 _value, bytes _data) public pure { TKN memory tkn; tkn.sender = _from; tkn.value = _value; tkn.data = _data; uint32 u = uint32(_data[3]) + (uint32(_data[2]) << 8) + (uint32(_data[1]) << 16) + (uint32(_data[0]) << 24); tkn.sig = bytes4(u); } } /** * @title Reference implementation of the ERC223 standard token. */ contract ERC223Token is addtionalERC223Interface , ERC20StandardToken { function _transfer(address _to, uint256 _value ) private returns (bool) { require(balanceOf[msg.sender] >= _value); balanceOf[msg.sender] = balanceOf[msg.sender].sub(_value); balanceOf[_to] = balanceOf[_to].add(_value); return true; } function _transferFallback(address _to, uint256 _value, bytes _data) private returns (bool) { require(balanceOf[msg.sender] >= _value); balanceOf[msg.sender] = balanceOf[msg.sender].sub(_value); balanceOf[_to] = balanceOf[_to].add(_value); ERC223ReceivingContract receiver = ERC223ReceivingContract(_to); receiver.tokenFallback(msg.sender, _value, _data); emit Transfer(msg.sender, _to, _value, _data); return true; } /** * @dev Transfer the specified amount of tokens to the specified address. * Invokes the `tokenFallback` function if the recipient is a contract. * The token transfer fails if the recipient is a contract * but does not implement the `tokenFallback` function * or the fallback function to receive funds. * * @param _to Receiver address. * @param _value Amount of tokens that will be transferred. * @param _data Transaction metadata. */ function transfer(address _to, uint256 _value, bytes _data) public returns (bool OK) { // Standard function transfer similar to ERC20 transfer with no _data . // Added due to backwards compatibility reasons . if(isContract(_to)) { return _transferFallback(_to,_value,_data); }else{ _transfer(_to,_value); emit Transfer(msg.sender, _to, _value, _data); } return true; } /** * @dev Transfer the specified amount of tokens to the specified address. * This function works the same with the previous one * but doesn't contain `_data` param. * Added due to backwards compatibility reasons. * * @param _to Receiver address. * @param _value Amount of tokens that will be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { bytes memory empty; if(isContract(_to)) { return _transferFallback(_to,_value,empty); }else{ _transfer(_to,_value); emit Transfer(msg.sender, _to, _value); } } // assemble the given address bytecode. If bytecode exists then the _addr is a contract. function isContract(address _addr) private view returns (bool) { uint length; assembly { //retrieve the size of the code on target address, this needs assembly length := extcodesize(_addr) } return (length > 0); } } contract NANASHITOKEN is ERC223Token , Ownable { event Burn(address indexed from, uint256 amount); event Mint(address indexed to, uint256 amount); string public name = "NANASHITOKEN"; string public symbol = "NNSH"; uint8 public decimals = 18; constructor() public{ address founder = 0x34c6D2bd70862D33c2d6710cF683e9b0860017a3; address developer = 0x0ede4523d0aD50FF840Be95Dd680704f761C1E06; owner = founder; uint256 dec = decimals; totalSupply_ = 500 * 1e8 * (10**dec); balanceOf[founder] = totalSupply_.mul(97).div(100); balanceOf[developer] = totalSupply_.mul(3).div(100); } function burn(address _from, uint256 _unitAmount) onlyOwner public { require(_unitAmount > 0 && balanceOf[_from] >= _unitAmount); balanceOf[_from] = balanceOf[_from].sub(_unitAmount); totalSupply_ = totalSupply_.sub(_unitAmount); emit Burn(_from, _unitAmount); } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _unitAmount The amount of tokens to mint. */ function mint(address _to, uint256 _unitAmount) onlyOwner public returns (bool) { require(_unitAmount > 0); totalSupply_ = totalSupply_.add(_unitAmount); balanceOf[_to] = balanceOf[_to].add(_unitAmount); emit Mint(_to, _unitAmount); emit Transfer(address(0), _to, _unitAmount); return true; } }
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":"_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":"_to","type":"address"},{"name":"_unitAmount","type":"uint256"}],"name":"mint","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":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_unitAmount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transfer","outputs":[{"name":"OK","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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Burn","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":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"}],"name":"Transfer","type":"event"}]
Contract Creation Code
60c0604052600c60808190527f4e414e41534849544f4b454e000000000000000000000000000000000000000060a0908152620000409160049190620001ef565b506040805180820190915260048082527f4e4e53480000000000000000000000000000000000000000000000000000000060209092019182526200008791600591620001ef565b506006805460ff19166012179055348015620000a257600080fd5b50600380547334c6d2bd70862d33c2d6710cf683e9b0860017a3600160a060020a031991821633600160a060020a031617909116811790915560065460ff16600a81900a640ba43b7400026002819055730ede4523d0ad50ff840be95dd680704f761c1e06919062000141906064906200012c906061640100000000620001a681026200105f1704565b9064010000000062001088620001d982021704565b600160a060020a03841660009081526001602052604090205560025462000180906064906200012c9060036401000000006200105f620001a682021704565b600160a060020a0390921660009081526001602052604090209190915550620002949050565b6000821515620001b957506000620001d3565b50818102818382811515620001ca57fe5b0414620001d357fe5b92915050565b60008183811515620001e757fe5b049392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200023257805160ff191683800117855562000262565b8280016001018555821562000262579182015b828111156200026257825182559160200191906001019062000245565b506200027092915062000274565b5090565b6200029191905b808211156200027057600081556001016200027b565b90565b6110c980620002a46000396000f3006080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b757806323b872dd146101de578063313ce5671461020857806340c10f1914610233578063661884631461025757806370a082311461027b578063715018a61461029c5780638da5cb5b146102b357806395d89b41146102e45780639dc29fac146102f9578063a9059cbb1461031d578063be45fd6214610341578063d73dd623146103aa578063dd62ed3e146103ce578063f2fde38b146103f5575b600080fd5b34801561010157600080fd5b5061010a610416565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101a3600160a060020a03600435166024356104a4565b604080519115158252519081900360200190f35b3480156101c357600080fd5b506101cc61050d565b60408051918252519081900360200190f35b3480156101ea57600080fd5b506101a3600160a060020a0360043581169060243516604435610513565b34801561021457600080fd5b5061021d610691565b6040805160ff9092168252519081900360200190f35b34801561023f57600080fd5b506101a3600160a060020a036004351660243561069a565b34801561026357600080fd5b506101a3600160a060020a03600435166024356107a0565b34801561028757600080fd5b506101cc600160a060020a0360043516610893565b3480156102a857600080fd5b506102b16108a5565b005b3480156102bf57600080fd5b506102c8610917565b60408051600160a060020a039092168252519081900360200190f35b3480156102f057600080fd5b5061010a610926565b34801561030557600080fd5b506102b1600160a060020a0360043516602435610981565b34801561032957600080fd5b506101a3600160a060020a0360043516602435610a6a565b34801561034d57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101a3948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610aeb9650505050505050565b3480156103b657600080fd5b506101a3600160a060020a0360043516602435610bd7565b3480156103da57600080fd5b506101cc600160a060020a0360043581169060243516610c75565b34801561040157600080fd5b506102b1600160a060020a0360043516610c9e565b6004805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561049c5780601f106104715761010080835404028352916020019161049c565b820191906000526020600020905b81548152906001019060200180831161047f57829003601f168201915b505050505081565b600160a060020a0333811660008181526020818152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60025490565b6000600160a060020a038316151561052a57600080fd5b600160a060020a03841660009081526001602052604090205482111561054f57600080fd5b600160a060020a03808516600090815260208181526040808320339094168352929052205482111561058057600080fd5b600160a060020a0384166000908152600160205260409020546105a9908363ffffffff610cc516565b600160a060020a0380861660009081526001602052604080822093909355908516815220546105de908363ffffffff610cd716565b600160a060020a038085166000908152600160209081526040808320949094558783168252818152838220339093168252919091522054610625908363ffffffff610cc516565b600160a060020a03808616600081815260208181526040808320338616845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060015b9392505050565b60065460ff1681565b60035460009033600160a060020a039081169116146106b857600080fd5b600082116106c557600080fd5b6002546106d8908363ffffffff610cd716565b600255600160a060020a038316600090815260016020526040902054610704908363ffffffff610cd716565b600160a060020a038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b600160a060020a03338116600090815260208181526040808320938616835292905290812054808311156107f957600160a060020a0333811660009081526020818152604080832093881683529290529081205561082e565b610809818463ffffffff610cc516565b600160a060020a03338116600090815260208181526040808320938916835292905220555b600160a060020a033381166000818152602081815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3600191505b5092915050565b60016020526000908152604090205481565b60035433600160a060020a039081169116146108c057600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600354600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561049c5780601f106104715761010080835404028352916020019161049c565b60035433600160a060020a0390811691161461099c57600080fd5b6000811180156109c45750600160a060020a0382166000908152600160205260409020548111155b15156109cf57600080fd5b600160a060020a0382166000908152600160205260409020546109f8908263ffffffff610cc516565b600160a060020a038316600090815260016020526040902055600254610a24908263ffffffff610cc516565b600255604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b60006060610a7784610ce4565b15610a8e57610a87848483610cec565b915061088c565b610a988484610f37565b5083600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a35092915050565b6000610af684610ce4565b15610b0d57610b06848484610cec565b905061068a565b610b178484610f37565b5083600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1685856040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610b92578181015183820152602001610b7a565b50505050905090810190601f168015610bbf5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a35060019392505050565b600160a060020a03338116600090815260208181526040808320938616835292905290812054610c0d908363ffffffff610cd716565b600160a060020a033381166000818152602081815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b600160a060020a0391821660009081526020818152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610cb957600080fd5b610cc281610fe1565b50565b600082821115610cd157fe5b50900390565b8181018281101561050757fe5b6000903b1190565b600160a060020a0333166000908152600160205260408120548190841115610d1357600080fd5b600160a060020a033316600090815260016020526040902054610d3c908563ffffffff610cc516565b600160a060020a033381166000908152600160205260408082209390935590871681522054610d71908563ffffffff610cd716565b600160a060020a0380871660008181526001602090815260408083209590955593517fc0ee0b8a0000000000000000000000000000000000000000000000000000000081523393841660048201908152602482018a90526060604483019081528951606484015289518c9850949663c0ee0b8a96958c958c9560840192860191908190849084905b83811015610e11578181015183820152602001610df9565b50505050905090810190601f168015610e3e5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b158015610e5f57600080fd5b505af1158015610e73573d6000803e3d6000fd5b5050505084600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1686866040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610ef1578181015183820152602001610ed9565b50505050905090810190601f168015610f1e5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3506001949350505050565b600160a060020a033316600090815260016020526040812054821115610f5c57600080fd5b600160a060020a033316600090815260016020526040902054610f85908363ffffffff610cc516565b600160a060020a033381166000908152600160205260408082209390935590851681522054610fba908363ffffffff610cd716565b600160a060020a038416600090815260016020819052604090912091909155905092915050565b600160a060020a0381161515610ff657600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082151561107057506000610507565b5081810281838281151561108057fe5b041461050757fe5b6000818381151561109557fe5b0493925050505600a165627a7a72305820739be0f18d2f8e0a3d591e28337932c0cf7d4de6735c6e45ffec337ec4a1d9670029
Deployed Bytecode
0x6080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b757806323b872dd146101de578063313ce5671461020857806340c10f1914610233578063661884631461025757806370a082311461027b578063715018a61461029c5780638da5cb5b146102b357806395d89b41146102e45780639dc29fac146102f9578063a9059cbb1461031d578063be45fd6214610341578063d73dd623146103aa578063dd62ed3e146103ce578063f2fde38b146103f5575b600080fd5b34801561010157600080fd5b5061010a610416565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101a3600160a060020a03600435166024356104a4565b604080519115158252519081900360200190f35b3480156101c357600080fd5b506101cc61050d565b60408051918252519081900360200190f35b3480156101ea57600080fd5b506101a3600160a060020a0360043581169060243516604435610513565b34801561021457600080fd5b5061021d610691565b6040805160ff9092168252519081900360200190f35b34801561023f57600080fd5b506101a3600160a060020a036004351660243561069a565b34801561026357600080fd5b506101a3600160a060020a03600435166024356107a0565b34801561028757600080fd5b506101cc600160a060020a0360043516610893565b3480156102a857600080fd5b506102b16108a5565b005b3480156102bf57600080fd5b506102c8610917565b60408051600160a060020a039092168252519081900360200190f35b3480156102f057600080fd5b5061010a610926565b34801561030557600080fd5b506102b1600160a060020a0360043516602435610981565b34801561032957600080fd5b506101a3600160a060020a0360043516602435610a6a565b34801561034d57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101a3948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610aeb9650505050505050565b3480156103b657600080fd5b506101a3600160a060020a0360043516602435610bd7565b3480156103da57600080fd5b506101cc600160a060020a0360043581169060243516610c75565b34801561040157600080fd5b506102b1600160a060020a0360043516610c9e565b6004805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561049c5780601f106104715761010080835404028352916020019161049c565b820191906000526020600020905b81548152906001019060200180831161047f57829003601f168201915b505050505081565b600160a060020a0333811660008181526020818152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60025490565b6000600160a060020a038316151561052a57600080fd5b600160a060020a03841660009081526001602052604090205482111561054f57600080fd5b600160a060020a03808516600090815260208181526040808320339094168352929052205482111561058057600080fd5b600160a060020a0384166000908152600160205260409020546105a9908363ffffffff610cc516565b600160a060020a0380861660009081526001602052604080822093909355908516815220546105de908363ffffffff610cd716565b600160a060020a038085166000908152600160209081526040808320949094558783168252818152838220339093168252919091522054610625908363ffffffff610cc516565b600160a060020a03808616600081815260208181526040808320338616845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060015b9392505050565b60065460ff1681565b60035460009033600160a060020a039081169116146106b857600080fd5b600082116106c557600080fd5b6002546106d8908363ffffffff610cd716565b600255600160a060020a038316600090815260016020526040902054610704908363ffffffff610cd716565b600160a060020a038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b600160a060020a03338116600090815260208181526040808320938616835292905290812054808311156107f957600160a060020a0333811660009081526020818152604080832093881683529290529081205561082e565b610809818463ffffffff610cc516565b600160a060020a03338116600090815260208181526040808320938916835292905220555b600160a060020a033381166000818152602081815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3600191505b5092915050565b60016020526000908152604090205481565b60035433600160a060020a039081169116146108c057600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600354600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561049c5780601f106104715761010080835404028352916020019161049c565b60035433600160a060020a0390811691161461099c57600080fd5b6000811180156109c45750600160a060020a0382166000908152600160205260409020548111155b15156109cf57600080fd5b600160a060020a0382166000908152600160205260409020546109f8908263ffffffff610cc516565b600160a060020a038316600090815260016020526040902055600254610a24908263ffffffff610cc516565b600255604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b60006060610a7784610ce4565b15610a8e57610a87848483610cec565b915061088c565b610a988484610f37565b5083600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a35092915050565b6000610af684610ce4565b15610b0d57610b06848484610cec565b905061068a565b610b178484610f37565b5083600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1685856040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610b92578181015183820152602001610b7a565b50505050905090810190601f168015610bbf5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a35060019392505050565b600160a060020a03338116600090815260208181526040808320938616835292905290812054610c0d908363ffffffff610cd716565b600160a060020a033381166000818152602081815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b600160a060020a0391821660009081526020818152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610cb957600080fd5b610cc281610fe1565b50565b600082821115610cd157fe5b50900390565b8181018281101561050757fe5b6000903b1190565b600160a060020a0333166000908152600160205260408120548190841115610d1357600080fd5b600160a060020a033316600090815260016020526040902054610d3c908563ffffffff610cc516565b600160a060020a033381166000908152600160205260408082209390935590871681522054610d71908563ffffffff610cd716565b600160a060020a0380871660008181526001602090815260408083209590955593517fc0ee0b8a0000000000000000000000000000000000000000000000000000000081523393841660048201908152602482018a90526060604483019081528951606484015289518c9850949663c0ee0b8a96958c958c9560840192860191908190849084905b83811015610e11578181015183820152602001610df9565b50505050905090810190601f168015610e3e5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b158015610e5f57600080fd5b505af1158015610e73573d6000803e3d6000fd5b5050505084600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1686866040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610ef1578181015183820152602001610ed9565b50505050905090810190601f168015610f1e5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3506001949350505050565b600160a060020a033316600090815260016020526040812054821115610f5c57600080fd5b600160a060020a033316600090815260016020526040902054610f85908363ffffffff610cc516565b600160a060020a033381166000908152600160205260408082209390935590851681522054610fba908363ffffffff610cd716565b600160a060020a038416600090815260016020819052604090912091909155905092915050565b600160a060020a0381161515610ff657600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082151561107057506000610507565b5081810281838281151561108057fe5b041461050757fe5b6000818381151561109557fe5b0493925050505600a165627a7a72305820739be0f18d2f8e0a3d591e28337932c0cf7d4de6735c6e45ffec337ec4a1d9670029
Swarm Source
bzzr://739be0f18d2f8e0a3d591e28337932c0cf7d4de6735c6e45ffec337ec4a1d967
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.