ERC-20
Overview
Max Total Supply
10,000,000 TAYLR
Holders
1,862
Total Transfers
-
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:
TaylorToken
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-07-16 */ /** Copyright (c) 2018 Taylor OÜ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. based on the contracts of OpenZeppelin: https://github.com/OpenZeppelin/zeppelin-solidity/tree/master/contracts **/ 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 TaylorToken **/ contract TaylorToken is Ownable{ using SafeMath for uint256; /** EVENTS **/ event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); event Burn(address indexed _owner, uint256 _amount); /** CONTRACT VARIABLES **/ mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; //this address can transfer even when transfer is disabled. mapping (address => bool) public whitelistedTransfer; mapping (address => bool) public whitelistedBurn; string public name = "Taylor"; string public symbol = "TAYLR"; uint8 public decimals = 18; uint256 constant internal DECIMAL_CASES = 10**18; uint256 public totalSupply = 10**7 * DECIMAL_CASES; bool public transferable = false; /** MODIFIERS **/ modifier onlyWhenTransferable(){ if(!whitelistedTransfer[msg.sender]){ require(transferable); } _; } /** CONSTRUCTOR **/ /** @dev Constructor function executed on contract creation **/ function TaylorToken() Ownable() public { balances[owner] = balances[owner].add(totalSupply); whitelistedTransfer[msg.sender] = true; whitelistedBurn[msg.sender] = true; Transfer(address(0),owner, totalSupply); } /** OWNER ONLY FUNCTIONS **/ /** @dev Activates the trasfer for all users **/ function activateTransfers() public onlyOwner { transferable = true; } /** @dev Allows the owner to add addresse that can bypass the transfer lock. Eg: ICO contract, TGE contract. @param _address address Address to be added **/ function addWhitelistedTransfer(address _address) public onlyOwner { whitelistedTransfer[_address] = true; } /** @dev Sends all avaible TAY to the TGE contract to be properly distribute @param _tgeAddress address Address of the token distribution contract **/ function distribute(address _tgeAddress) public onlyOwner { whitelistedTransfer[_tgeAddress] = true; transfer(_tgeAddress, balances[owner]); } /** @dev Allows the owner to add addresse that can burn tokens Eg: ICO contract, TGE contract. @param _address address Address to be added **/ function addWhitelistedBurn(address _address) public onlyOwner { whitelistedBurn[_address] = true; } /** PUBLIC FUNCTIONS **/ /** * @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 onlyWhenTransferable returns (bool success) { require(_to != address(0)); require(_value <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } /** * @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 onlyWhenTransferable returns (bool success) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. For security reasons, if one need to change the value from a existing allowance, it must furst sets it to zero and then sets the new value * @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 onlyWhenTransferable returns (bool success) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } /** * @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); 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); } Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** @dev Allows for msg.sender to burn his on tokens @param _amount uint256 The amount of tokens to be burned **/ function burn(uint256 _amount) public returns (bool success) { require(whitelistedBurn[msg.sender]); require(_amount <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(_amount); totalSupply = totalSupply.sub(_amount); Burn(msg.sender, _amount); return true; } /** CONSTANT FUNCTIONS **/ /** * @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) view public returns (uint256 balance) { return balances[_owner]; } /** * @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) view public returns (uint256 remaining) { return allowed[_owner][_spender]; } }
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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"whitelistedBurn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":"success","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":"activateTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"addWhitelistedBurn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"whitelistedTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tgeAddress","type":"address"}],"name":"distribute","outputs":[],"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":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"addWhitelistedTransfer","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":"transferable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","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":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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":"_owner","type":"address"},{"indexed":false,"name":"_amount","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"}]
Contract Creation Code
606060405260408051908101604052600681527f5461796c6f720000000000000000000000000000000000000000000000000000602082015260059080516200004d929160200190620001bb565b5060408051908101604052600581527f5441594c520000000000000000000000000000000000000000000000000000006020820152600690805162000097929160200190620001bb565b506007805460ff199081166012179091556a084595161401484a0000006008556009805490911690553415620000cc57600080fd5b60008054600160a060020a03191633600160a060020a03908116919091178083556008549116825260016020526040909120546200011891640100000000620001a4810262000d921704565b60008054600160a060020a03908116825260016020818152604080852095909555338316845260038152848420805460ff19908116841790915560049091528484208054909116909117905581546008549116927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91905190815260200160405180910390a362000260565b600082820183811015620001b457fe5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001fe57805160ff19168380011785556200022e565b828001600101855582156200022e579182015b828111156200022e57825182559160200191906001019062000211565b506200023c92915062000240565b5090565b6200025d91905b808211156200023c576000815560010162000247565b90565b610dd480620002706000396000f30060606040526004361061011c5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610121578063095ea7b3146101ab57806311f71e97146101e157806318160ddd1461020057806323b872dd14610225578063313ce5671461024d5780633a62244f1461027657806342966c681461028b57806345c46619146102a15780634f5e6a8d146102c057806363453ae1146102df57806366188463146102fe57806370a0823114610320578063735b232c1461033f5780638da5cb5b1461035e57806392ff0d311461038d57806395d89b41146103a0578063a9059cbb146103b3578063d73dd623146103d5578063dd62ed3e146103f7578063f2fde38b1461041c575b600080fd5b341561012c57600080fd5b61013461043b565b60405160208082528190810183818151815260200191508051906020019080838360005b83811015610170578082015183820152602001610158565b50505050905090810190601f16801561019d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101b657600080fd5b6101cd600160a060020a03600435166024356104d9565b604051901515815260200160405180910390f35b34156101ec57600080fd5b6101cd600160a060020a0360043516610575565b341561020b57600080fd5b61021361058a565b60405190815260200160405180910390f35b341561023057600080fd5b6101cd600160a060020a0360043581169060243516604435610590565b341561025857600080fd5b610260610743565b60405160ff909116815260200160405180910390f35b341561028157600080fd5b61028961074c565b005b341561029657600080fd5b6101cd600435610776565b34156102ac57600080fd5b610289600160a060020a036004351661085f565b34156102cb57600080fd5b6101cd600160a060020a036004351661089e565b34156102ea57600080fd5b610289600160a060020a03600435166108b3565b341561030957600080fd5b6101cd600160a060020a0360043516602435610913565b341561032b57600080fd5b610213600160a060020a0360043516610a0d565b341561034a57600080fd5b610289600160a060020a0360043516610a28565b341561036957600080fd5b610371610a67565b604051600160a060020a03909116815260200160405180910390f35b341561039857600080fd5b6101cd610a76565b34156103ab57600080fd5b610134610a7f565b34156103be57600080fd5b6101cd600160a060020a0360043516602435610aea565b34156103e057600080fd5b6101cd600160a060020a0360043516602435610c16565b341561040257600080fd5b610213600160a060020a0360043581169060243516610cba565b341561042757600080fd5b610289600160a060020a0360043516610ce5565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104d15780601f106104a6576101008083540402835291602001916104d1565b820191906000526020600020905b8154815290600101906020018083116104b457829003601f168201915b505050505081565b600160a060020a03331660009081526003602052604081205460ff16151561050c5760095460ff16151561050c57600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60046020526000908152604090205460ff1681565b60085481565b600160a060020a03331660009081526003602052604081205460ff1615156105c35760095460ff1615156105c357600080fd5b600160a060020a03831615156105d857600080fd5b600160a060020a0384166000908152600160205260409020548211156105fd57600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561063057600080fd5b600160a060020a038416600090815260016020526040902054610659908363ffffffff610d8016565b600160a060020a03808616600090815260016020526040808220939093559085168152205461068e908363ffffffff610d9216565b600160a060020a038085166000908152600160209081526040808320949094558783168252600281528382203390931682529190915220546106d6908363ffffffff610d8016565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60075460ff1681565b60005433600160a060020a0390811691161461076757600080fd5b6009805460ff19166001179055565b600160a060020a03331660009081526004602052604081205460ff16151561079d57600080fd5b600160a060020a0333166000908152600160205260409020548211156107c257600080fd5b600160a060020a0333166000908152600160205260409020546107eb908363ffffffff610d8016565b600160a060020a033316600090815260016020526040902055600854610817908363ffffffff610d8016565b600855600160a060020a0333167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a2506001919050565b60005433600160a060020a0390811691161461087a57600080fd5b600160a060020a03166000908152600460205260409020805460ff19166001179055565b60036020526000908152604090205460ff1681565b60005433600160a060020a039081169116146108ce57600080fd5b600160a060020a038082166000908152600360209081526040808320805460ff1916600190811790915583549094168352929052205461090f908290610aea565b5050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561097057600160a060020a0333811660009081526002602090815260408083209388168352929052908120556109a7565b610980818463ffffffff610d8016565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526001602052604090205490565b60005433600160a060020a03908116911614610a4357600080fd5b600160a060020a03166000908152600360205260409020805460ff19166001179055565b600054600160a060020a031681565b60095460ff1681565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104d15780601f106104a6576101008083540402835291602001916104d1565b600160a060020a03331660009081526003602052604081205460ff161515610b1d5760095460ff161515610b1d57600080fd5b600160a060020a0383161515610b3257600080fd5b600160a060020a033316600090815260016020526040902054821115610b5757600080fd5b600160a060020a033316600090815260016020526040902054610b80908363ffffffff610d8016565b600160a060020a033381166000908152600160205260408082209390935590851681522054610bb5908363ffffffff610d9216565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610c4e908363ffffffff610d9216565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60005433600160a060020a03908116911614610d0057600080fd5b600160a060020a0381161515610d1557600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610d8c57fe5b50900390565b600082820183811015610da157fe5b93925050505600a165627a7a723058200be130920ef06d4a894a623db2980ba78c3a4270886001cef28b02b590996c160029
Deployed Bytecode
0x60606040526004361061011c5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610121578063095ea7b3146101ab57806311f71e97146101e157806318160ddd1461020057806323b872dd14610225578063313ce5671461024d5780633a62244f1461027657806342966c681461028b57806345c46619146102a15780634f5e6a8d146102c057806363453ae1146102df57806366188463146102fe57806370a0823114610320578063735b232c1461033f5780638da5cb5b1461035e57806392ff0d311461038d57806395d89b41146103a0578063a9059cbb146103b3578063d73dd623146103d5578063dd62ed3e146103f7578063f2fde38b1461041c575b600080fd5b341561012c57600080fd5b61013461043b565b60405160208082528190810183818151815260200191508051906020019080838360005b83811015610170578082015183820152602001610158565b50505050905090810190601f16801561019d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101b657600080fd5b6101cd600160a060020a03600435166024356104d9565b604051901515815260200160405180910390f35b34156101ec57600080fd5b6101cd600160a060020a0360043516610575565b341561020b57600080fd5b61021361058a565b60405190815260200160405180910390f35b341561023057600080fd5b6101cd600160a060020a0360043581169060243516604435610590565b341561025857600080fd5b610260610743565b60405160ff909116815260200160405180910390f35b341561028157600080fd5b61028961074c565b005b341561029657600080fd5b6101cd600435610776565b34156102ac57600080fd5b610289600160a060020a036004351661085f565b34156102cb57600080fd5b6101cd600160a060020a036004351661089e565b34156102ea57600080fd5b610289600160a060020a03600435166108b3565b341561030957600080fd5b6101cd600160a060020a0360043516602435610913565b341561032b57600080fd5b610213600160a060020a0360043516610a0d565b341561034a57600080fd5b610289600160a060020a0360043516610a28565b341561036957600080fd5b610371610a67565b604051600160a060020a03909116815260200160405180910390f35b341561039857600080fd5b6101cd610a76565b34156103ab57600080fd5b610134610a7f565b34156103be57600080fd5b6101cd600160a060020a0360043516602435610aea565b34156103e057600080fd5b6101cd600160a060020a0360043516602435610c16565b341561040257600080fd5b610213600160a060020a0360043581169060243516610cba565b341561042757600080fd5b610289600160a060020a0360043516610ce5565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104d15780601f106104a6576101008083540402835291602001916104d1565b820191906000526020600020905b8154815290600101906020018083116104b457829003601f168201915b505050505081565b600160a060020a03331660009081526003602052604081205460ff16151561050c5760095460ff16151561050c57600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60046020526000908152604090205460ff1681565b60085481565b600160a060020a03331660009081526003602052604081205460ff1615156105c35760095460ff1615156105c357600080fd5b600160a060020a03831615156105d857600080fd5b600160a060020a0384166000908152600160205260409020548211156105fd57600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561063057600080fd5b600160a060020a038416600090815260016020526040902054610659908363ffffffff610d8016565b600160a060020a03808616600090815260016020526040808220939093559085168152205461068e908363ffffffff610d9216565b600160a060020a038085166000908152600160209081526040808320949094558783168252600281528382203390931682529190915220546106d6908363ffffffff610d8016565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60075460ff1681565b60005433600160a060020a0390811691161461076757600080fd5b6009805460ff19166001179055565b600160a060020a03331660009081526004602052604081205460ff16151561079d57600080fd5b600160a060020a0333166000908152600160205260409020548211156107c257600080fd5b600160a060020a0333166000908152600160205260409020546107eb908363ffffffff610d8016565b600160a060020a033316600090815260016020526040902055600854610817908363ffffffff610d8016565b600855600160a060020a0333167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a2506001919050565b60005433600160a060020a0390811691161461087a57600080fd5b600160a060020a03166000908152600460205260409020805460ff19166001179055565b60036020526000908152604090205460ff1681565b60005433600160a060020a039081169116146108ce57600080fd5b600160a060020a038082166000908152600360209081526040808320805460ff1916600190811790915583549094168352929052205461090f908290610aea565b5050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561097057600160a060020a0333811660009081526002602090815260408083209388168352929052908120556109a7565b610980818463ffffffff610d8016565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526001602052604090205490565b60005433600160a060020a03908116911614610a4357600080fd5b600160a060020a03166000908152600360205260409020805460ff19166001179055565b600054600160a060020a031681565b60095460ff1681565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104d15780601f106104a6576101008083540402835291602001916104d1565b600160a060020a03331660009081526003602052604081205460ff161515610b1d5760095460ff161515610b1d57600080fd5b600160a060020a0383161515610b3257600080fd5b600160a060020a033316600090815260016020526040902054821115610b5757600080fd5b600160a060020a033316600090815260016020526040902054610b80908363ffffffff610d8016565b600160a060020a033381166000908152600160205260408082209390935590851681522054610bb5908363ffffffff610d9216565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610c4e908363ffffffff610d9216565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60005433600160a060020a03908116911614610d0057600080fd5b600160a060020a0381161515610d1557600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610d8c57fe5b50900390565b600082820183811015610da157fe5b93925050505600a165627a7a723058200be130920ef06d4a894a623db2980ba78c3a4270886001cef28b02b590996c160029
Swarm Source
bzzr://0be130920ef06d4a894a623db2980ba78c3a4270886001cef28b02b590996c16
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.