ERC-20
Overview
Max Total Supply
400,038,195.01093225 GOT
Holders
10,946
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:
GOeureka
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-08-01 */ pragma solidity ^0.4.23; // produced by the Solididy File Flattener (c) David Appleton 2018 // contact : [email protected] // released under Apache 2.0 licence contract GoConfig { string public constant NAME = "GOeureka"; string public constant SYMBOL = "GOT"; uint8 public constant DECIMALS = 18; uint public constant DECIMALSFACTOR = 10 ** uint(DECIMALS); uint public constant TOTALSUPPLY = 1000000000 * DECIMALSFACTOR; } 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 transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } /** * @dev Allows the current owner to relinquish control of the contract. */ function renounceOwnership() public onlyOwner { emit OwnershipRenounced(owner); owner = address(0); } } contract WhiteListedBasic { function addWhiteListed(address[] addrs) external; function removeWhiteListed(address addr) external; function isWhiteListed(address addr) external view returns (bool); } 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; } } contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } contract OperatableBasic { function setMinter (address addr) external; function setWhiteLister (address addr) external; } contract gotTokenSaleConfig is GoConfig { uint public constant MIN_PRESALE = 5 ether; uint public constant MIN_PRESALE2 = 1 ether; uint public constant VESTING_AMOUNT = 100000000 * DECIMALSFACTOR; address public constant VESTING_WALLET = 0x8B6EB396eF85D2a9ADbb79955dEB5d77Ee61Af88; uint public constant RESERVE_AMOUNT = 300000000 * DECIMALSFACTOR; address public constant RESERVE_WALLET = 0x8B6EB396eF85D2a9ADbb79955dEB5d77Ee61Af88; uint public constant PRESALE_START = 1529035246; // Friday, June 15, 2018 12:00:46 PM GMT+08:00 uint public constant SALE_START = PRESALE_START + 4 weeks; uint public constant SALE_CAP = 600000000 * DECIMALSFACTOR; address public constant MULTISIG_ETH = RESERVE_WALLET; } contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused public { paused = true; emit Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; emit Unpause(); } } contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @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 <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256) { return balances[_owner]; } } contract Claimable is Ownable { address public pendingOwner; /** * @dev Modifier throws if called by any account other than the pendingOwner. */ modifier onlyPendingOwner() { require(msg.sender == pendingOwner); _; } /** * @dev Allows the current owner to set the pendingOwner address. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) onlyOwner public { pendingOwner = newOwner; } /** * @dev Allows the pendingOwner address to finalize the transfer. */ function claimOwnership() onlyPendingOwner public { emit OwnershipTransferred(owner, pendingOwner); owner = pendingOwner; pendingOwner = address(0); } } contract Operatable is Claimable, OperatableBasic { address public minter; address public whiteLister; address public launcher; event NewMinter(address newMinter); event NewWhiteLister(address newwhiteLister); modifier canOperate() { require(msg.sender == minter || msg.sender == whiteLister || msg.sender == owner); _; } constructor() public { minter = owner; whiteLister = owner; launcher = owner; } function setMinter (address addr) external onlyOwner { minter = addr; emit NewMinter(minter); } function setWhiteLister (address addr) external onlyOwner { whiteLister = addr; emit NewWhiteLister(whiteLister); } modifier ownerOrMinter() { require ((msg.sender == minter) || (msg.sender == owner)); _; } modifier onlyLauncher() { require (msg.sender == launcher); _; } modifier onlyWhiteLister() { require (msg.sender == whiteLister); _; } } 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 ); } contract BurnableToken is BasicToken { event Burn(address indexed burner, uint256 value); /** * @dev Burns a specific amount of tokens. * @param _value The amount of token to be burned. */ function burn(uint256 _value) public { _burn(msg.sender, _value); } function _burn(address _who, uint256 _value) internal { require(_value <= balances[_who]); // no need to require value <= totalSupply, since that would imply the // sender's balance is greater than the totalSupply, which *should* be an assertion failure balances[_who] = balances[_who].sub(_value); totalSupply_ = totalSupply_.sub(_value); emit Burn(_who, _value); emit Transfer(_who, address(0), _value); } } contract Salvageable is Operatable { // Salvage other tokens that are accidentally sent into this token function emergencyERC20Drain(ERC20 oddToken, uint amount) public onlyLauncher { if (address(oddToken) == address(0)) { launcher.transfer(amount); return; } oddToken.transfer(launcher, amount); } } contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom( address _from, address _to, uint256 _value ) public returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); emit Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance( address _owner, address _spender ) public view returns (uint256) { return allowed[_owner][_spender]; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval( address _spender, uint _addedValue ) public returns (bool) { allowed[msg.sender][_spender] = ( allowed[msg.sender][_spender].add(_addedValue)); emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval( address _spender, uint _subtractedValue ) public returns (bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } contract PausableToken is StandardToken, Pausable { function transfer( address _to, uint256 _value ) public whenNotPaused returns (bool) { return super.transfer(_to, _value); } function transferFrom( address _from, address _to, uint256 _value ) public whenNotPaused returns (bool) { return super.transferFrom(_from, _to, _value); } function approve( address _spender, uint256 _value ) public whenNotPaused returns (bool) { return super.approve(_spender, _value); } function increaseApproval( address _spender, uint _addedValue ) public whenNotPaused returns (bool success) { return super.increaseApproval(_spender, _addedValue); } function decreaseApproval( address _spender, uint _subtractedValue ) public whenNotPaused returns (bool success) { return super.decreaseApproval(_spender, _subtractedValue); } } contract GOeureka is Salvageable, PausableToken, BurnableToken, GoConfig { using SafeMath for uint; string public name = NAME; string public symbol = SYMBOL; uint8 public decimals = DECIMALS; bool public mintingFinished = false; event Mint(address indexed to, uint amount); event MintFinished(); modifier canMint() { require(!mintingFinished); _; } constructor() public { paused = true; } function mint(address _to, uint _amount) ownerOrMinter canMint public returns (bool) { require(totalSupply_.add(_amount) <= TOTALSUPPLY); totalSupply_ = totalSupply_.add(_amount); balances[_to] = balances[_to].add(_amount); emit Mint(_to, _amount); emit Transfer(address(0), _to, _amount); return true; } function finishMinting() ownerOrMinter canMint public returns (bool) { mintingFinished = true; emit MintFinished(); return true; } function sendBatchCS(address[] _recipients, uint[] _values) external ownerOrMinter returns (bool) { require(_recipients.length == _values.length); uint senderBalance = balances[msg.sender]; for (uint i = 0; i < _values.length; i++) { uint value = _values[i]; address to = _recipients[i]; require(senderBalance >= value); senderBalance = senderBalance - value; balances[to] += value; emit Transfer(msg.sender, to, value); } balances[msg.sender] = senderBalance; return true; } // Lifted from ERC827 /** * @dev Addition to ERC20 token methods. Transfer tokens to a specified * @dev address and execute a call with the sent data on the same transaction * * @param _to address The address which you want to transfer to * @param _value uint256 the amout of tokens to be transfered * @param _data ABI-encoded contract call to call `_to` address. * * @return true if the call function was executed successfully */ function transferAndCall( address _to, uint256 _value, bytes _data ) public payable whenNotPaused returns (bool) { require(_to != address(this)); super.transfer(_to, _value); // solium-disable-next-line security/no-call-value require(_to.call.value(msg.value)(_data)); return true; } } contract GOeurekaSale is Claimable, gotTokenSaleConfig, Pausable, Salvageable { using SafeMath for uint256; // The token being sold GOeureka public token; WhiteListedBasic public whiteListed; uint256 public presaleEnd; uint256 public saleEnd; // Minimum contribution is now calculated uint256 public minContribution; // address where funds are collected address public multiSig; // amount of raised funds in wei from private, presale and main sale uint256 public weiRaised; // amount of raised tokens uint256 public tokensRaised; // number of participants mapping(address => uint256) public contributions; uint256 public numberOfContributors = 0; // for rate uint public basicRate; // EVENTS event TokenPurchase(address indexed beneficiary, uint256 value, uint256 amount); event SaleClosed(); event HardcapReached(); event NewCapActivated(uint256 newCap); // CONSTRUCTOR constructor(GOeureka token_, WhiteListedBasic _whiteListed) public { basicRate = 3000; // TokensPerEther calculateRates(); presaleEnd = 1536508800; //20180910 00:00 +8 saleEnd = 1543593600; //20181201 00:00 +8 multiSig = MULTISIG_ETH; // NOTE - toke token = token_; whiteListed = _whiteListed; } // This sale contract must be the minter before we mintAllocations or do anything else. // bool allocated = false; function mintAllocations() external onlyOwner { require(!allocated); allocated = true; token.mint(VESTING_WALLET,VESTING_AMOUNT); token.mint(RESERVE_WALLET,RESERVE_AMOUNT); } function setWallet(address _newWallet) public onlyOwner { multiSig = _newWallet; } // @return true if crowdsale event has ended function hasEnded() public view returns (bool) { if (now > saleEnd) return true; if (tokensRaised >= SALE_CAP) return true; // if we reach the tokensForSale return false; } // Buyer must be whitelisted function isWhiteListed(address beneficiary) internal view returns (bool) { return whiteListed.isWhiteListed(beneficiary); } modifier onlyAuthorised(address beneficiary) { require(isWhiteListed(beneficiary),"Not authorised"); require (!hasEnded(),"ended"); require (multiSig != 0x0,"MultiSig empty"); require ((msg.value > minContribution) || (tokensRaised.add(getTokens(msg.value)) == SALE_CAP),"Value too small"); _; } function setNewRate(uint newRate) onlyOwner public { require(weiRaised == 0); require(1000 < newRate && newRate < 10000); basicRate = newRate; calculateRates(); } function calculateRates() internal { minContribution = uint(100 * DECIMALSFACTOR).div(basicRate); } function getTokens(uint256 amountInWei) internal view returns (uint256 tokens) { if (now <= presaleEnd) { uint theseTokens = amountInWei.mul(basicRate).mul(1125).div(1000); require((amountInWei >= 1 ether) || (tokensRaised.add(theseTokens)==SALE_CAP)); return (theseTokens); } if (now <= saleEnd) { return (amountInWei.mul(basicRate)); } revert(); } // low level token purchase function function buyTokens(address beneficiary, uint256 value) internal onlyAuthorised(beneficiary) whenNotPaused { uint256 newTokens; newTokens = getTokens(value); weiRaised = weiRaised.add(value); // if we have bridged two tranches.... if (contributions[beneficiary] == 0) { numberOfContributors++; } contributions[beneficiary] = contributions[beneficiary].add(value); tokensRaised = tokensRaised.add(newTokens); token.mint(beneficiary,newTokens); emit TokenPurchase(beneficiary, value, newTokens); multiSig.transfer(value); } function placeTokens(address beneficiary, uint256 tokens) public onlyOwner { require(!hasEnded()); tokensRaised = tokensRaised.add(tokens); token.mint(beneficiary,tokens); } // Complete the sale function finishSale() public onlyOwner { require(hasEnded()); token.finishMinting(); emit SaleClosed(); } // fallback function can be used to buy tokens function () public payable { buyTokens(msg.sender, msg.value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minter","outputs":[{"name":"","type":"address"}],"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":"launcher","outputs":[{"name":"","type":"address"}],"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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"DECIMALS","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"name":"","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"DECIMALSFACTOR","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"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":"addr","type":"address"}],"name":"setWhiteLister","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_recipients","type":"address[]"},{"name":"_values","type":"uint256[]"}],"name":"sendBatchCS","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"NAME","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"oddToken","type":"address"},{"name":"amount","type":"uint256"}],"name":"emergencyERC20Drain","outputs":[],"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":true,"inputs":[],"name":"pendingOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"whiteLister","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"SYMBOL","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"setMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newMinter","type":"address"}],"name":"NewMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newwhiteLister","type":"address"}],"name":"NewWhiteLister","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":"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
6007805460a060020a60ff021916905560c0604052600860808190527f474f657572656b6100000000000000000000000000000000000000000000000060a09081526200004e91908162000120565b506040805180820190915260038082527f474f5400000000000000000000000000000000000000000000000000000000006020909201918252620000959160099162000120565b50600a805461ff001960ff19909116601217169055348015620000b757600080fd5b506003805433600160a060020a0319918216179182905560058054600160a060020a0390931692821683179055600680548216831790556007805474010000000000000000000000000000000000000000921690921760a060020a60ff021916179055620001c5565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200016357805160ff191683800117855562000193565b8280016001018555821562000193579182015b828111156200019357825182559160200191906001019062000176565b50620001a1929150620001a5565b5090565b620001c291905b80821115620001a15760008155600101620001ac565b90565b6116f780620001d56000396000f3006080604052600436106101c15763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b81146101c657806306fdde03146101ef5780630754617214610279578063095ea7b3146102aa57806316eebd1e146102ce57806318160ddd146102e357806323b872dd1461030a5780632e0f262514610334578063313ce5671461035f5780633f4ba83a146103745780634000aea01461038b57806340c10f19146103e757806342966c681461040b5780634e71e0c8146104235780635c975abb14610438578063661884631461044d57806370a0823114610471578063715018a6146104925780637d64bcb4146104a75780638456cb59146104bc5780638bc04eb7146104d15780638da5cb5b146104e657806394a08c69146104fb5780639576bfbd1461051057806395d89b41146105315780639c1d979014610546578063a3f4df7e14610572578063a9059cbb14610587578063d73dd623146105ab578063db0e16f1146105cf578063dd62ed3e146105f3578063e30c39781461061a578063ef26e41d1461062f578063f2fde38b14610644578063f76f8d7814610665578063fca3b5aa1461067a575b600080fd5b3480156101d257600080fd5b506101db61069b565b604080519115158252519081900360200190f35b3480156101fb57600080fd5b506102046106a9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561023e578181015183820152602001610226565b50505050905090810190601f16801561026b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028557600080fd5b5061028e610737565b60408051600160a060020a039092168252519081900360200190f35b3480156102b657600080fd5b506101db600160a060020a0360043516602435610746565b3480156102da57600080fd5b5061028e610771565b3480156102ef57600080fd5b506102f8610780565b60408051918252519081900360200190f35b34801561031657600080fd5b506101db600160a060020a0360043581169060243516604435610786565b34801561034057600080fd5b506103496107b3565b6040805160ff9092168252519081900360200190f35b34801561036b57600080fd5b506103496107b8565b34801561038057600080fd5b506103896107c1565b005b604080516020600460443581810135601f81018490048402850184019095528484526101db948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506108399650505050505050565b3480156103f357600080fd5b506101db600160a060020a0360043516602435610901565b34801561041757600080fd5b50610389600435610a3a565b34801561042f57600080fd5b50610389610a47565b34801561044457600080fd5b506101db610ad1565b34801561045957600080fd5b506101db600160a060020a0360043516602435610ae1565b34801561047d57600080fd5b506102f8600160a060020a0360043516610b05565b34801561049e57600080fd5b50610389610b20565b3480156104b357600080fd5b506101db610b8e565b3480156104c857600080fd5b50610389610c12565b3480156104dd57600080fd5b506102f8610c8f565b3480156104f257600080fd5b5061028e610c9b565b34801561050757600080fd5b506102f8610caa565b34801561051c57600080fd5b50610389600160a060020a0360043516610cba565b34801561053d57600080fd5b50610204610d38565b34801561055257600080fd5b506101db6024600480358281019290820135918135918201910135610d93565b34801561057e57600080fd5b50610204610eaa565b34801561059357600080fd5b506101db600160a060020a0360043516602435610ee1565b3480156105b757600080fd5b506101db600160a060020a0360043516602435610f05565b3480156105db57600080fd5b50610389600160a060020a0360043516602435610f29565b3480156105ff57600080fd5b506102f8600160a060020a0360043581169060243516611030565b34801561062657600080fd5b5061028e61105b565b34801561063b57600080fd5b5061028e61106a565b34801561065057600080fd5b50610389600160a060020a0360043516611079565b34801561067157600080fd5b506102046110bf565b34801561068657600080fd5b50610389600160a060020a03600435166110f6565b600a54610100900460ff1681565b6008805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561072f5780601f106107045761010080835404028352916020019161072f565b820191906000526020600020905b81548152906001019060200180831161071257829003601f168201915b505050505081565b600554600160a060020a031681565b60075460009060a060020a900460ff161561076057600080fd5b61076a8383611174565b9392505050565b600754600160a060020a031681565b60015490565b60075460009060a060020a900460ff16156107a057600080fd5b6107ab8484846111da565b949350505050565b601281565b600a5460ff1681565b600354600160a060020a031633146107d857600080fd5b60075460a060020a900460ff1615156107f057600080fd5b6007805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60075460009060a060020a900460ff161561085357600080fd5b600160a060020a03841630141561086957600080fd5b6108738484610ee1565b5083600160a060020a0316348360405180828051906020019080838360005b838110156108aa578181015183820152602001610892565b50505050905090810190601f1680156108d75780820380516001836020036101000a031916815260200191505b5091505060006040518083038185875af19250505015156108f757600080fd5b5060019392505050565b600554600090600160a060020a03163314806109275750600354600160a060020a031633145b151561093257600080fd5b600a54610100900460ff161561094757600080fd5b6001546b033b2e3c9fd0803ce800000090610968908463ffffffff61133f16565b111561097357600080fd5b600154610986908363ffffffff61133f16565b600155600160a060020a0383166000908152602081905260409020546109b2908363ffffffff61133f16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206116ac8339815191529181900360200190a350600192915050565b610a443382611352565b50565b600454600160a060020a03163314610a5e57600080fd5b600454600354604051600160a060020a0392831692909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546003805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b60075460a060020a900460ff1681565b60075460009060a060020a900460ff1615610afb57600080fd5b61076a8383611441565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a03163314610b3757600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600554600090600160a060020a0316331480610bb45750600354600160a060020a031633145b1515610bbf57600080fd5b600a54610100900460ff1615610bd457600080fd5b600a805461ff0019166101001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600354600160a060020a03163314610c2957600080fd5b60075460a060020a900460ff1615610c4057600080fd5b6007805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b670de0b6b3a764000081565b600354600160a060020a031681565b6b033b2e3c9fd0803ce800000081565b600354600160a060020a03163314610cd157600080fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03838116919091179182905560408051929091168252517f09ebea9685d3394fb080028f682138bd6bc97e571259a0cc21bedf3395096dfc916020908290030190a150565b6009805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561072f5780601f106107045761010080835404028352916020019161072f565b6005546000908190819081908190600160a060020a0316331480610dc15750600354600160a060020a031633145b1515610dcc57600080fd5b878614610dd857600080fd5b33600090815260208190526040812054945092505b85831015610e8957868684818110610e0157fe5b9050602002013591508888848181101515610e1857fe5b90506020020135600160a060020a03169050818410151515610e3957600080fd5b600160a060020a0381166000818152602081815260409182902080548601905581518581529151968590039633926000805160206116ac83398151915292908290030190a3600190920191610ded565b50503360009081526020819052604090209190915550600195945050505050565b60408051808201909152600881527f474f657572656b61000000000000000000000000000000000000000000000000602082015281565b60075460009060a060020a900460ff1615610efb57600080fd5b61076a8383611531565b60075460009060a060020a900460ff1615610f1f57600080fd5b61076a8383611600565b600754600160a060020a03163314610f4057600080fd5b600160a060020a0382161515610f9057600754604051600160a060020a039091169082156108fc029083906000818181858888f19350505050158015610f8a573d6000803e3d6000fd5b5061102c565b600754604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519184169163a9059cbb916044808201926020929091908290030181600087803b158015610fff57600080fd5b505af1158015611013573d6000803e3d6000fd5b505050506040513d602081101561102957600080fd5b50505b5050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600454600160a060020a031681565b600654600160a060020a031681565b600354600160a060020a0316331461109057600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60408051808201909152600381527f474f540000000000000000000000000000000000000000000000000000000000602082015281565b600354600160a060020a0316331461110d57600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03838116919091179182905560408051929091168252517f6adffd5c93085d835dac6f3b40adf7c242ca4b3284048d20c3d8a501748dc973916020908290030190a150565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000600160a060020a03831615156111f157600080fd5b600160a060020a03841660009081526020819052604090205482111561121657600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561124657600080fd5b600160a060020a03841660009081526020819052604090205461126f908363ffffffff61169916565b600160a060020a0380861660009081526020819052604080822093909355908516815220546112a4908363ffffffff61133f16565b600160a060020a038085166000908152602081815260408083209490945591871681526002825282812033825290915220546112e6908363ffffffff61169916565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391926000805160206116ac833981519152929181900390910190a35060019392505050565b8181018281101561134c57fe5b92915050565b600160a060020a03821660009081526020819052604090205481111561137757600080fd5b600160a060020a0382166000908152602081905260409020546113a0908263ffffffff61169916565b600160a060020a0383166000908152602081905260409020556001546113cc908263ffffffff61169916565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206116ac8339815191529181900360200190a35050565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561149657336000908152600260209081526040808320600160a060020a03881684529091528120556114cb565b6114a6818463ffffffff61169916565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000600160a060020a038316151561154857600080fd5b3360009081526020819052604090205482111561156457600080fd5b33600090815260208190526040902054611584908363ffffffff61169916565b3360009081526020819052604080822092909255600160a060020a038516815220546115b6908363ffffffff61133f16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206116ac8339815191529281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054611634908363ffffffff61133f16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6000828211156116a557fe5b509003905600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058202bd9395573dbf51820eeb581632a5369a6d4591f3cc5636a6fabf974ecd8f17b0029
Deployed Bytecode
0x6080604052600436106101c15763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b81146101c657806306fdde03146101ef5780630754617214610279578063095ea7b3146102aa57806316eebd1e146102ce57806318160ddd146102e357806323b872dd1461030a5780632e0f262514610334578063313ce5671461035f5780633f4ba83a146103745780634000aea01461038b57806340c10f19146103e757806342966c681461040b5780634e71e0c8146104235780635c975abb14610438578063661884631461044d57806370a0823114610471578063715018a6146104925780637d64bcb4146104a75780638456cb59146104bc5780638bc04eb7146104d15780638da5cb5b146104e657806394a08c69146104fb5780639576bfbd1461051057806395d89b41146105315780639c1d979014610546578063a3f4df7e14610572578063a9059cbb14610587578063d73dd623146105ab578063db0e16f1146105cf578063dd62ed3e146105f3578063e30c39781461061a578063ef26e41d1461062f578063f2fde38b14610644578063f76f8d7814610665578063fca3b5aa1461067a575b600080fd5b3480156101d257600080fd5b506101db61069b565b604080519115158252519081900360200190f35b3480156101fb57600080fd5b506102046106a9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561023e578181015183820152602001610226565b50505050905090810190601f16801561026b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028557600080fd5b5061028e610737565b60408051600160a060020a039092168252519081900360200190f35b3480156102b657600080fd5b506101db600160a060020a0360043516602435610746565b3480156102da57600080fd5b5061028e610771565b3480156102ef57600080fd5b506102f8610780565b60408051918252519081900360200190f35b34801561031657600080fd5b506101db600160a060020a0360043581169060243516604435610786565b34801561034057600080fd5b506103496107b3565b6040805160ff9092168252519081900360200190f35b34801561036b57600080fd5b506103496107b8565b34801561038057600080fd5b506103896107c1565b005b604080516020600460443581810135601f81018490048402850184019095528484526101db948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506108399650505050505050565b3480156103f357600080fd5b506101db600160a060020a0360043516602435610901565b34801561041757600080fd5b50610389600435610a3a565b34801561042f57600080fd5b50610389610a47565b34801561044457600080fd5b506101db610ad1565b34801561045957600080fd5b506101db600160a060020a0360043516602435610ae1565b34801561047d57600080fd5b506102f8600160a060020a0360043516610b05565b34801561049e57600080fd5b50610389610b20565b3480156104b357600080fd5b506101db610b8e565b3480156104c857600080fd5b50610389610c12565b3480156104dd57600080fd5b506102f8610c8f565b3480156104f257600080fd5b5061028e610c9b565b34801561050757600080fd5b506102f8610caa565b34801561051c57600080fd5b50610389600160a060020a0360043516610cba565b34801561053d57600080fd5b50610204610d38565b34801561055257600080fd5b506101db6024600480358281019290820135918135918201910135610d93565b34801561057e57600080fd5b50610204610eaa565b34801561059357600080fd5b506101db600160a060020a0360043516602435610ee1565b3480156105b757600080fd5b506101db600160a060020a0360043516602435610f05565b3480156105db57600080fd5b50610389600160a060020a0360043516602435610f29565b3480156105ff57600080fd5b506102f8600160a060020a0360043581169060243516611030565b34801561062657600080fd5b5061028e61105b565b34801561063b57600080fd5b5061028e61106a565b34801561065057600080fd5b50610389600160a060020a0360043516611079565b34801561067157600080fd5b506102046110bf565b34801561068657600080fd5b50610389600160a060020a03600435166110f6565b600a54610100900460ff1681565b6008805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561072f5780601f106107045761010080835404028352916020019161072f565b820191906000526020600020905b81548152906001019060200180831161071257829003601f168201915b505050505081565b600554600160a060020a031681565b60075460009060a060020a900460ff161561076057600080fd5b61076a8383611174565b9392505050565b600754600160a060020a031681565b60015490565b60075460009060a060020a900460ff16156107a057600080fd5b6107ab8484846111da565b949350505050565b601281565b600a5460ff1681565b600354600160a060020a031633146107d857600080fd5b60075460a060020a900460ff1615156107f057600080fd5b6007805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60075460009060a060020a900460ff161561085357600080fd5b600160a060020a03841630141561086957600080fd5b6108738484610ee1565b5083600160a060020a0316348360405180828051906020019080838360005b838110156108aa578181015183820152602001610892565b50505050905090810190601f1680156108d75780820380516001836020036101000a031916815260200191505b5091505060006040518083038185875af19250505015156108f757600080fd5b5060019392505050565b600554600090600160a060020a03163314806109275750600354600160a060020a031633145b151561093257600080fd5b600a54610100900460ff161561094757600080fd5b6001546b033b2e3c9fd0803ce800000090610968908463ffffffff61133f16565b111561097357600080fd5b600154610986908363ffffffff61133f16565b600155600160a060020a0383166000908152602081905260409020546109b2908363ffffffff61133f16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206116ac8339815191529181900360200190a350600192915050565b610a443382611352565b50565b600454600160a060020a03163314610a5e57600080fd5b600454600354604051600160a060020a0392831692909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546003805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b60075460a060020a900460ff1681565b60075460009060a060020a900460ff1615610afb57600080fd5b61076a8383611441565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a03163314610b3757600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600554600090600160a060020a0316331480610bb45750600354600160a060020a031633145b1515610bbf57600080fd5b600a54610100900460ff1615610bd457600080fd5b600a805461ff0019166101001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600354600160a060020a03163314610c2957600080fd5b60075460a060020a900460ff1615610c4057600080fd5b6007805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b670de0b6b3a764000081565b600354600160a060020a031681565b6b033b2e3c9fd0803ce800000081565b600354600160a060020a03163314610cd157600080fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03838116919091179182905560408051929091168252517f09ebea9685d3394fb080028f682138bd6bc97e571259a0cc21bedf3395096dfc916020908290030190a150565b6009805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561072f5780601f106107045761010080835404028352916020019161072f565b6005546000908190819081908190600160a060020a0316331480610dc15750600354600160a060020a031633145b1515610dcc57600080fd5b878614610dd857600080fd5b33600090815260208190526040812054945092505b85831015610e8957868684818110610e0157fe5b9050602002013591508888848181101515610e1857fe5b90506020020135600160a060020a03169050818410151515610e3957600080fd5b600160a060020a0381166000818152602081815260409182902080548601905581518581529151968590039633926000805160206116ac83398151915292908290030190a3600190920191610ded565b50503360009081526020819052604090209190915550600195945050505050565b60408051808201909152600881527f474f657572656b61000000000000000000000000000000000000000000000000602082015281565b60075460009060a060020a900460ff1615610efb57600080fd5b61076a8383611531565b60075460009060a060020a900460ff1615610f1f57600080fd5b61076a8383611600565b600754600160a060020a03163314610f4057600080fd5b600160a060020a0382161515610f9057600754604051600160a060020a039091169082156108fc029083906000818181858888f19350505050158015610f8a573d6000803e3d6000fd5b5061102c565b600754604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519184169163a9059cbb916044808201926020929091908290030181600087803b158015610fff57600080fd5b505af1158015611013573d6000803e3d6000fd5b505050506040513d602081101561102957600080fd5b50505b5050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600454600160a060020a031681565b600654600160a060020a031681565b600354600160a060020a0316331461109057600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60408051808201909152600381527f474f540000000000000000000000000000000000000000000000000000000000602082015281565b600354600160a060020a0316331461110d57600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03838116919091179182905560408051929091168252517f6adffd5c93085d835dac6f3b40adf7c242ca4b3284048d20c3d8a501748dc973916020908290030190a150565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000600160a060020a03831615156111f157600080fd5b600160a060020a03841660009081526020819052604090205482111561121657600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561124657600080fd5b600160a060020a03841660009081526020819052604090205461126f908363ffffffff61169916565b600160a060020a0380861660009081526020819052604080822093909355908516815220546112a4908363ffffffff61133f16565b600160a060020a038085166000908152602081815260408083209490945591871681526002825282812033825290915220546112e6908363ffffffff61169916565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391926000805160206116ac833981519152929181900390910190a35060019392505050565b8181018281101561134c57fe5b92915050565b600160a060020a03821660009081526020819052604090205481111561137757600080fd5b600160a060020a0382166000908152602081905260409020546113a0908263ffffffff61169916565b600160a060020a0383166000908152602081905260409020556001546113cc908263ffffffff61169916565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206116ac8339815191529181900360200190a35050565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561149657336000908152600260209081526040808320600160a060020a03881684529091528120556114cb565b6114a6818463ffffffff61169916565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000600160a060020a038316151561154857600080fd5b3360009081526020819052604090205482111561156457600080fd5b33600090815260208190526040902054611584908363ffffffff61169916565b3360009081526020819052604080822092909255600160a060020a038516815220546115b6908363ffffffff61133f16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206116ac8339815191529281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054611634908363ffffffff61133f16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6000828211156116a557fe5b509003905600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058202bd9395573dbf51820eeb581632a5369a6d4591f3cc5636a6fabf974ecd8f17b0029
Swarm Source
bzzr://2bd9395573dbf51820eeb581632a5369a6d4591f3cc5636a6fabf974ecd8f17b
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.