ERC-20
Overview
Max Total Supply
10,000,000 MLOT
Holders
284
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:
MoonLotteryToken
Compiler Version
v0.4.16+commit.d7661dd9
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2017-11-30 */ pragma solidity ^0.4.15; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } function div(uint256 a, uint256 b) internal 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 returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal 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) onlyOwner public { require(newOwner != address(0)); OwnershipTransferred(owner, newOwner); owner = newOwner; } } /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ 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; Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; Unpause(); } } /** * ERC20 + ERC20Basic */ contract ERC20Token { uint256 public totalSupply; function balanceOf(address who) public view returns (uint256); function allowance(address owner, address spender) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; } /** StandardToken + MintableToken + BurnableToken */ contract MoonToken is ERC20Token, Pausable { using SafeMath for uint256; mapping(address => uint256) balances; mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256 balance) { return balances[_owner]; } /** * @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 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) whenNotPaused public returns (bool) { require(_to != address(0)); require(_value <= balances[msg.sender]); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } /** * @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) whenNotPaused 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); 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) whenNotPaused public returns (bool) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } /** * Set allowance for other address and notify * * Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it * * @param _spender The address authorized to spend * @param _value the max amount they can spend * @param _extraData some extra information to send to the approved contract */ function approveAndCall(address _spender, uint256 _value, bytes _extraData) whenNotPaused public returns (bool success) { tokenRecipient spender = tokenRecipient(_spender); if (approve(_spender, _value)) { spender.receiveApproval(msg.sender, _value, this, _extraData); return true; } } /** * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol */ function increaseApproval(address _spender, uint _addedValue) whenNotPaused public returns (bool) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } function decreaseApproval(address _spender, uint _subtractedValue) whenNotPaused 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 Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) onlyOwner whenNotPaused public returns (bool) { totalSupply = totalSupply.add(_amount); balances[_to] = balances[_to].add(_amount); Mint(_to, _amount); Transfer(address(0), _to, _amount); return true; } /** * @dev Burns a specific amount of tokens. * @param _value The amount of token to be burned. */ function burn(uint256 _value) whenNotPaused public { require(_value > 0); require(_value <= balances[msg.sender]); // 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 address burner = msg.sender; balances[burner] = balances[burner].sub(_value); totalSupply = totalSupply.sub(_value); Burn(burner, _value); } function burnFrom(address _from, uint256 _value) onlyOwner whenNotPaused public { require(_value > 0); require(_value <= balances[_from]); address burner = _from; balances[burner] = balances[burner].sub(_value); totalSupply = totalSupply.sub(_value); Burn(burner, _value); } event Mint(address indexed to, uint256 amount); event Burn(address indexed burner, uint256 value); } contract MoonLotteryToken is MoonToken { string public name = "MoonLottery Token"; string public symbol = "MLOT"; uint8 public decimals = 18; function MoonLotteryToken () public { } }
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":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","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":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":"","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":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","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":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"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":"","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":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","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":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
606060409081526001805460a060020a60ff02191690558051908101604052601181527f4d6f6f6e4c6f747465727920546f6b656e000000000000000000000000000000602082015260049080516200005d929160200190620000e6565b5060408051908101604052600481527f4d4c4f540000000000000000000000000000000000000000000000000000000060208201526005908051620000a7929160200190620000e6565b506006805460ff191660121790553415620000c157600080fd5b5b5b60018054600160a060020a03191633600160a060020a03161790555b5b62000190565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200012957805160ff191683800117855562000159565b8280016001018555821562000159579182015b82811115620001595782518255916020019190600101906200013c565b5b50620001689291506200016c565b5090565b6200018d91905b8082111562000168576000815560010162000173565b5090565b90565b61128d80620001a06000396000f3006060604052361561010f5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610114578063095ea7b31461019f57806318160ddd146101d557806323b872dd146101fa578063313ce567146102365780633f4ba83a1461025f57806340c10f191461027457806342966c68146102aa5780635c975abb146102c257806366188463146102e957806370a082311461031f57806379cc6790146103505780638456cb59146103745780638da5cb5b1461038957806395d89b41146103b8578063a9059cbb14610443578063cae9ca5114610479578063d73dd623146104f2578063dd62ed3e14610528578063f2fde38b1461055f575b600080fd5b341561011f57600080fd5b610127610580565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101645780820151818401525b60200161014b565b50505050905090810190601f1680156101915780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101aa57600080fd5b6101c1600160a060020a036004351660243561061e565b604051901515815260200160405180910390f35b34156101e057600080fd5b6101e86106a3565b60405190815260200160405180910390f35b341561020557600080fd5b6101c1600160a060020a03600435811690602435166044356106a9565b604051901515815260200160405180910390f35b341561024157600080fd5b610249610845565b60405160ff909116815260200160405180910390f35b341561026a57600080fd5b61027261084e565b005b341561027f57600080fd5b6101c1600160a060020a03600435166024356108d0565b604051901515815260200160405180910390f35b34156102b557600080fd5b6102726004356109e0565b005b34156102cd57600080fd5b6101c1610ac4565b604051901515815260200160405180910390f35b34156102f457600080fd5b6101c1600160a060020a0360043516602435610ad4565b604051901515815260200160405180910390f35b341561032a57600080fd5b6101e8600160a060020a0360043516610bec565b60405190815260200160405180910390f35b341561035b57600080fd5b610272600160a060020a0360043516602435610c0b565b005b341561037f57600080fd5b610272610d13565b005b341561039457600080fd5b61039c610d9a565b604051600160a060020a03909116815260200160405180910390f35b34156103c357600080fd5b610127610da9565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101645780820151818401525b60200161014b565b50505050905090810190601f1680156101915780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561044e57600080fd5b6101c1600160a060020a0360043516602435610e47565b604051901515815260200160405180910390f35b341561048457600080fd5b6101c160048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610f5c95505050505050565b604051901515815260200160405180910390f35b34156104fd57600080fd5b6101c1600160a060020a03600435166024356110ac565b604051901515815260200160405180910390f35b341561053357600080fd5b6101e8600160a060020a036004358116906024351661116a565b60405190815260200160405180910390f35b341561056a57600080fd5b610272600160a060020a0360043516611197565b005b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106165780601f106105eb57610100808354040283529160200191610616565b820191906000526020600020905b8154815290600101906020018083116105f957829003601f168201915b505050505081565b60015460009060a060020a900460ff161561063857600080fd5b600160a060020a03338116600081815260036020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b5b92915050565b60005481565b60015460009060a060020a900460ff16156106c357600080fd5b600160a060020a03831615156106d857600080fd5b600160a060020a0384166000908152600260205260409020548211156106fd57600080fd5b600160a060020a038085166000908152600360209081526040808320339094168352929052205482111561073057600080fd5b600160a060020a038416600090815260026020526040902054610759908363ffffffff61123016565b600160a060020a03808616600090815260026020526040808220939093559085168152205461078e908363ffffffff61124716565b600160a060020a038085166000908152600260209081526040808320949094558783168252600381528382203390931682529190915220546107d6908363ffffffff61123016565b600160a060020a03808616600081815260036020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b5b9392505050565b60065460ff1681565b60015433600160a060020a0390811691161461086957600080fd5b60015460a060020a900460ff16151561088157600080fd5b6001805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15b5b5b565b60015460009033600160a060020a039081169116146108ee57600080fd5b60015460a060020a900460ff161561090557600080fd5b600054610918908363ffffffff61124716565b6000908155600160a060020a038416815260026020526040902054610943908363ffffffff61124716565b600160a060020a0384166000818152600260205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a03831660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a35060015b5b5b92915050565b60015460009060a060020a900460ff16156109fa57600080fd5b60008211610a0757600080fd5b600160a060020a033316600090815260026020526040902054821115610a2c57600080fd5b5033600160a060020a038116600090815260026020526040902054610a519083611230565b600160a060020a03821660009081526002602052604081209190915554610a7e908363ffffffff61123016565b600055600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25b5b5050565b60015460a060020a900460ff1681565b600154600090819060a060020a900460ff1615610af057600080fd5b50600160a060020a0333811660009081526003602090815260408083209387168352929052205480831115610b4c57600160a060020a033381166000908152600360209081526040808320938816835292905290812055610b83565b610b5c818463ffffffff61123016565b600160a060020a033381166000908152600360209081526040808320938916835292905220555b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5b5092915050565b600160a060020a0381166000908152600260205260409020545b919050565b60015460009033600160a060020a03908116911614610c2957600080fd5b60015460a060020a900460ff1615610c4057600080fd5b60008211610c4d57600080fd5b600160a060020a038316600090815260026020526040902054821115610c7257600080fd5b50600160a060020a0382166000908152600260205260409020548290610c9e908363ffffffff61123016565b600160a060020a03821660009081526002602052604081209190915554610ccb908363ffffffff61123016565b600055600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25b5b5b505050565b60015433600160a060020a03908116911614610d2e57600080fd5b60015460a060020a900460ff1615610d4557600080fd5b6001805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15b5b5b565b600154600160a060020a031681565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106165780601f106105eb57610100808354040283529160200191610616565b820191906000526020600020905b8154815290600101906020018083116105f957829003601f168201915b505050505081565b60015460009060a060020a900460ff1615610e6157600080fd5b600160a060020a0383161515610e7657600080fd5b600160a060020a033316600090815260026020526040902054821115610e9b57600080fd5b600160a060020a033316600090815260026020526040902054610ec4908363ffffffff61123016565b600160a060020a033381166000908152600260205260408082209390935590851681522054610ef9908363ffffffff61124716565b600160a060020a0380851660008181526002602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b5b92915050565b600154600090819060a060020a900460ff1615610f7857600080fd5b5083610f84818561061e565b156110a25780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561103b5780820151818401525b602001611022565b50505050905090810190601f1680156110685780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b151561108957600080fd5b6102c65a03f1151561109a57600080fd5b505050600191505b5b5b509392505050565b60015460009060a060020a900460ff16156110c657600080fd5b600160a060020a033381166000908152600360209081526040808320938716835292905220546110fc908363ffffffff61124716565b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a35060015b5b92915050565b600160a060020a038083166000908152600360209081526040808320938516835292905220545b92915050565b60015433600160a060020a039081169116146111b257600080fd5b600160a060020a03811615156111c757600080fd5b600154600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60008282111561123c57fe5b508082035b92915050565b60008282018381101561125657fe5b8091505b50929150505600a165627a7a72305820730b687721498132c681020e7e919370fd022cbf96be9b9681750a24ba5c7a230029
Deployed Bytecode
0x6060604052361561010f5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610114578063095ea7b31461019f57806318160ddd146101d557806323b872dd146101fa578063313ce567146102365780633f4ba83a1461025f57806340c10f191461027457806342966c68146102aa5780635c975abb146102c257806366188463146102e957806370a082311461031f57806379cc6790146103505780638456cb59146103745780638da5cb5b1461038957806395d89b41146103b8578063a9059cbb14610443578063cae9ca5114610479578063d73dd623146104f2578063dd62ed3e14610528578063f2fde38b1461055f575b600080fd5b341561011f57600080fd5b610127610580565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101645780820151818401525b60200161014b565b50505050905090810190601f1680156101915780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101aa57600080fd5b6101c1600160a060020a036004351660243561061e565b604051901515815260200160405180910390f35b34156101e057600080fd5b6101e86106a3565b60405190815260200160405180910390f35b341561020557600080fd5b6101c1600160a060020a03600435811690602435166044356106a9565b604051901515815260200160405180910390f35b341561024157600080fd5b610249610845565b60405160ff909116815260200160405180910390f35b341561026a57600080fd5b61027261084e565b005b341561027f57600080fd5b6101c1600160a060020a03600435166024356108d0565b604051901515815260200160405180910390f35b34156102b557600080fd5b6102726004356109e0565b005b34156102cd57600080fd5b6101c1610ac4565b604051901515815260200160405180910390f35b34156102f457600080fd5b6101c1600160a060020a0360043516602435610ad4565b604051901515815260200160405180910390f35b341561032a57600080fd5b6101e8600160a060020a0360043516610bec565b60405190815260200160405180910390f35b341561035b57600080fd5b610272600160a060020a0360043516602435610c0b565b005b341561037f57600080fd5b610272610d13565b005b341561039457600080fd5b61039c610d9a565b604051600160a060020a03909116815260200160405180910390f35b34156103c357600080fd5b610127610da9565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101645780820151818401525b60200161014b565b50505050905090810190601f1680156101915780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561044e57600080fd5b6101c1600160a060020a0360043516602435610e47565b604051901515815260200160405180910390f35b341561048457600080fd5b6101c160048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610f5c95505050505050565b604051901515815260200160405180910390f35b34156104fd57600080fd5b6101c1600160a060020a03600435166024356110ac565b604051901515815260200160405180910390f35b341561053357600080fd5b6101e8600160a060020a036004358116906024351661116a565b60405190815260200160405180910390f35b341561056a57600080fd5b610272600160a060020a0360043516611197565b005b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106165780601f106105eb57610100808354040283529160200191610616565b820191906000526020600020905b8154815290600101906020018083116105f957829003601f168201915b505050505081565b60015460009060a060020a900460ff161561063857600080fd5b600160a060020a03338116600081815260036020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b5b92915050565b60005481565b60015460009060a060020a900460ff16156106c357600080fd5b600160a060020a03831615156106d857600080fd5b600160a060020a0384166000908152600260205260409020548211156106fd57600080fd5b600160a060020a038085166000908152600360209081526040808320339094168352929052205482111561073057600080fd5b600160a060020a038416600090815260026020526040902054610759908363ffffffff61123016565b600160a060020a03808616600090815260026020526040808220939093559085168152205461078e908363ffffffff61124716565b600160a060020a038085166000908152600260209081526040808320949094558783168252600381528382203390931682529190915220546107d6908363ffffffff61123016565b600160a060020a03808616600081815260036020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b5b9392505050565b60065460ff1681565b60015433600160a060020a0390811691161461086957600080fd5b60015460a060020a900460ff16151561088157600080fd5b6001805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15b5b5b565b60015460009033600160a060020a039081169116146108ee57600080fd5b60015460a060020a900460ff161561090557600080fd5b600054610918908363ffffffff61124716565b6000908155600160a060020a038416815260026020526040902054610943908363ffffffff61124716565b600160a060020a0384166000818152600260205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a03831660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a35060015b5b5b92915050565b60015460009060a060020a900460ff16156109fa57600080fd5b60008211610a0757600080fd5b600160a060020a033316600090815260026020526040902054821115610a2c57600080fd5b5033600160a060020a038116600090815260026020526040902054610a519083611230565b600160a060020a03821660009081526002602052604081209190915554610a7e908363ffffffff61123016565b600055600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25b5b5050565b60015460a060020a900460ff1681565b600154600090819060a060020a900460ff1615610af057600080fd5b50600160a060020a0333811660009081526003602090815260408083209387168352929052205480831115610b4c57600160a060020a033381166000908152600360209081526040808320938816835292905290812055610b83565b610b5c818463ffffffff61123016565b600160a060020a033381166000908152600360209081526040808320938916835292905220555b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5b5092915050565b600160a060020a0381166000908152600260205260409020545b919050565b60015460009033600160a060020a03908116911614610c2957600080fd5b60015460a060020a900460ff1615610c4057600080fd5b60008211610c4d57600080fd5b600160a060020a038316600090815260026020526040902054821115610c7257600080fd5b50600160a060020a0382166000908152600260205260409020548290610c9e908363ffffffff61123016565b600160a060020a03821660009081526002602052604081209190915554610ccb908363ffffffff61123016565b600055600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25b5b5b505050565b60015433600160a060020a03908116911614610d2e57600080fd5b60015460a060020a900460ff1615610d4557600080fd5b6001805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15b5b5b565b600154600160a060020a031681565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106165780601f106105eb57610100808354040283529160200191610616565b820191906000526020600020905b8154815290600101906020018083116105f957829003601f168201915b505050505081565b60015460009060a060020a900460ff1615610e6157600080fd5b600160a060020a0383161515610e7657600080fd5b600160a060020a033316600090815260026020526040902054821115610e9b57600080fd5b600160a060020a033316600090815260026020526040902054610ec4908363ffffffff61123016565b600160a060020a033381166000908152600260205260408082209390935590851681522054610ef9908363ffffffff61124716565b600160a060020a0380851660008181526002602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b5b92915050565b600154600090819060a060020a900460ff1615610f7857600080fd5b5083610f84818561061e565b156110a25780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561103b5780820151818401525b602001611022565b50505050905090810190601f1680156110685780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b151561108957600080fd5b6102c65a03f1151561109a57600080fd5b505050600191505b5b5b509392505050565b60015460009060a060020a900460ff16156110c657600080fd5b600160a060020a033381166000908152600360209081526040808320938716835292905220546110fc908363ffffffff61124716565b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a35060015b5b92915050565b600160a060020a038083166000908152600360209081526040808320938516835292905220545b92915050565b60015433600160a060020a039081169116146111b257600080fd5b600160a060020a03811615156111c757600080fd5b600154600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60008282111561123c57fe5b508082035b92915050565b60008282018381101561125657fe5b8091505b50929150505600a165627a7a72305820730b687721498132c681020e7e919370fd022cbf96be9b9681750a24ba5c7a230029
Swarm Source
bzzr://730b687721498132c681020e7e919370fd022cbf96be9b9681750a24ba5c7a23
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.