ERC-20
Overview
Max Total Supply
100,000,000.12 EMPRB
Holders
644
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
917,831.105123 EMPRBValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EMPRB
Compiler Version
v0.4.21+commit.dfe3193c
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-06-07 */ pragma solidity ^0.4.19; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 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) { uint256 c = a + b; assert(c >= a); return c; } } contract Owned { address private Owner; function Owned() public{ Owner = msg.sender; } function IsOwner(address addr) view public returns(bool) { return Owner == addr; } function TransferOwner(address newOwner) public onlyOwner { Owner = newOwner; } function Terminate() public onlyOwner { selfdestruct(Owner); } modifier onlyOwner(){ require(msg.sender == Owner); _; } } contract EMPRB is Owned { using SafeMath for uint256; string public constant name = "empowr blue"; string public constant symbol = "EMPRB"; uint256 public constant decimals = 18; // 18 is the most common number of decimal places bool private tradeable; uint256 private currentSupply; mapping(address => uint256) private balances; mapping(address => mapping(address=> uint256)) private allowed; mapping(address => bool) private lockedAccounts; /* Incoming Ether */ event ReceivedEth(address indexed _from, uint256 _value); //this is the fallback function () payable public { emit ReceivedEth(msg.sender, msg.value); } event TransferredEth(address indexed _to, uint256 _value); function FoundationTransfer(address _to, uint256 amtEth, uint256 amtToken) public onlyOwner { require(address(this).balance >= amtEth && balances[this] >= amtToken ); if(amtEth >0) { _to.transfer(amtEth); emit TransferredEth(_to, amtEth); } if(amtToken > 0) { require(balances[_to] + amtToken > balances[_to]); balances[this] -= amtToken; balances[_to] += amtToken; emit Transfer(this, _to, amtToken); } } /* End Incoming Ether */ function EMPRB( ) public { uint256 initialTotalSupplyRaw = 20000000000000000; balances[this] = initialTotalSupplyRaw; currentSupply = initialTotalSupplyRaw; emit Transfer(address(0), this, currentSupply); } function MintToken(uint256 amt) public onlyOwner { require(balances[this] + amt >= balances[this]); currentSupply += amt; balances[this] += amt; emit Transfer(address(0), this, amt); } function DestroyToken(uint256 amt) public onlyOwner { require ( balances[this] >= amt); currentSupply -= amt; balances[this] -= amt; emit Transfer(this,address(0), amt); } event SoldToken(address _buyer, uint256 _value, string note); function BuyToken(address _buyer, uint256 _value, string note) public onlyOwner { require(balances[this] >= _value && balances[_buyer] + _value > balances[_buyer]); emit SoldToken( _buyer, _value, note); balances[this] -= _value; balances[_buyer] += _value; emit Transfer(this, _buyer, _value); } function LockAccount(address toLock) public onlyOwner { lockedAccounts[toLock] = true; } function UnlockAccount(address toUnlock) public onlyOwner { delete lockedAccounts[toUnlock]; } function SetTradeable(bool t) public onlyOwner { tradeable = t; } function IsTradeable() public view returns(bool) { return tradeable; } function totalSupply() constant public returns (uint256) { return currentSupply; } function balanceOf(address _owner) constant public returns (uint256 balance) { return balances[_owner]; } function transfer(address _to, uint256 _value) public notLocked returns (bool success) { require(tradeable); if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) { emit Transfer( msg.sender, _to, _value); balances[msg.sender] -= _value; balances[_to] += _value; return true; } else { return false; } } function transferFrom(address _from, address _to, uint _value)public notLocked returns (bool success) { require(!lockedAccounts[_from] && !lockedAccounts[_to]); require(tradeable); if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]) { emit Transfer( _from, _to, _value); balances[_from] -= _value; allowed[_from][msg.sender] -= _value; balances[_to] += _value; return true; } else { return false; } } /** * @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; } event Transfer(address indexed _from, address indexed _to, uint _value); event Approval(address indexed _owner, address indexed _spender, uint _value); modifier notLocked(){ require (!lockedAccounts[msg.sender]); _; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[{"name":"amt","type":"uint256"}],"name":"MintToken","outputs":[],"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":"amtEth","type":"uint256"},{"name":"amtToken","type":"uint256"}],"name":"FoundationTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"toLock","type":"address"}],"name":"LockAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_buyer","type":"address"},{"name":"_value","type":"uint256"},{"name":"note","type":"string"}],"name":"BuyToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amt","type":"uint256"}],"name":"DestroyToken","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":"newOwner","type":"address"}],"name":"TransferOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"IsTradeable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"t","type":"bool"}],"name":"SetTradeable","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"Terminate","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":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"toUnlock","type":"address"}],"name":"UnlockAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"IsOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"ReceivedEth","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"TransferredEth","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_buyer","type":"address"},{"indexed":false,"name":"_value","type":"uint256"},{"indexed":false,"name":"note","type":"string"}],"name":"SoldToken","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
6060604052341561000f57600080fd5b60008054600160a060020a03191633600160a060020a0390811691909117825530168082526002602052604080832066470de4df82000090819055600181905592907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a350611001806100946000396000f3006060604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305297781811461016657806306fdde031461017e5780630730a32214610208578063095ea7b31461022d57806318160ddd1461026357806323b872dd146102885780632e42b012146102b0578063313ce567146102cf578063321de1d4146102e25780635daf8a7114610347578063661884631461035d57806370a082311461037f578063858ac4d81461039e5780638aa99826146103bd5780638e3bd6fa146103d05780639445eb3a146103e857806395d89b41146103fb578063a9059cbb1461040e578063b9c97a4414610430578063d73dd6231461044f578063dd0860a814610471578063dd62ed3e14610490575b33600160a060020a03167f52a6cdf67c40ce333b3d846e4e143db87f71dd7935612a4cafcf6ba76047ca1f3460405190815260200160405180910390a2005b341561017157600080fd5b61017c6004356104b5565b005b341561018957600080fd5b610191610542565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101cd5780820151838201526020016101b5565b50505050905090810190601f1680156101fa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561021357600080fd5b61017c600160a060020a0360043516602435604435610579565b341561023857600080fd5b61024f600160a060020a03600435166024356106d2565b604051901515815260200160405180910390f35b341561026e57600080fd5b61027661073f565b60405190815260200160405180910390f35b341561029357600080fd5b61024f600160a060020a0360043581169060243516604435610745565b34156102bb57600080fd5b61017c600160a060020a03600435166108eb565b34156102da57600080fd5b61027661092a565b34156102ed57600080fd5b61017c60048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061092f95505050505050565b341561035257600080fd5b61017c600435610aa1565b341561036857600080fd5b61024f600160a060020a0360043516602435610b32565b341561038a57600080fd5b610276600160a060020a0360043516610c2c565b34156103a957600080fd5b61017c600160a060020a0360043516610c47565b34156103c857600080fd5b61024f610c91565b34156103db57600080fd5b61017c6004351515610cb2565b34156103f357600080fd5b61017c610d0d565b341561040657600080fd5b610191610d36565b341561041957600080fd5b61024f600160a060020a0360043516602435610d6d565b341561043b57600080fd5b61017c600160a060020a0360043516610e75565b341561045a57600080fd5b61024f600160a060020a0360043516602435610eb1565b341561047c57600080fd5b61024f600160a060020a0360043516610f55565b341561049b57600080fd5b610276600160a060020a0360043581169060243516610f69565b60005433600160a060020a039081169116146104d057600080fd5b600160a060020a03301660009081526002602052604090205481810110156104f757600080fd5b6001805482019055600160a060020a033016600081815260026020526040808220805485019055600080516020610fb68339815191529084905190815260200160405180910390a350565b60408051908101604052600b81527f656d706f777220626c7565000000000000000000000000000000000000000000602082015281565b60005433600160a060020a0390811691161461059457600080fd5b8130600160a060020a031631101580156105c75750600160a060020a033016600090815260026020526040902054819010155b15156105d257600080fd5b600082111561064a57600160a060020a03831682156108fc0283604051600060405180830381858888f19350505050151561060c57600080fd5b82600160a060020a03167f83007cefb28dc4cfb49f429f899c69d37f8011db578f48da2f64929a79bf67b38360405190815260200160405180910390a25b60008111156106cd57600160a060020a0383166000908152600260205260409020548181011161067957600080fd5b600160a060020a03308116600081815260026020526040808220805486900390559286168082529083902080548501905591600080516020610fb68339815191529084905190815260200160405180910390a35b505050565b600160a060020a03338116600081815260036020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60015490565b600160a060020a03331660009081526004602052604081205460ff161561076b57600080fd5b600160a060020a03841660009081526004602052604090205460ff161580156107ad5750600160a060020a03831660009081526004602052604090205460ff16155b15156107b857600080fd5b60005474010000000000000000000000000000000000000000900460ff1615156107e157600080fd5b600160a060020a0384166000908152600260205260409020548290108015906108315750600160a060020a0380851660009081526003602090815260408083203390941683529290522054829010155b80156108565750600160a060020a038316600090815260026020526040902054828101115b156108e05782600160a060020a031684600160a060020a0316600080516020610fb68339815191528460405190815260200160405180910390a350600160a060020a038084166000908152600260208181526040808420805487900390556003825280842033861685528252808420805487900390559386168352522080548201905560016108e4565b5060005b9392505050565b60005433600160a060020a0390811691161461090657600080fd5b600160a060020a03166000908152600460205260409020805460ff19166001179055565b601281565b60005433600160a060020a0390811691161461094a57600080fd5b600160a060020a03301660009081526002602052604090205482901080159061098c5750600160a060020a038316600090815260026020526040902054828101115b151561099757600080fd5b7f0307f82a1d7930932f894f6f841bd41285da9d1374694c831ad1efa591139316838383604051600160a060020a03841681526020810183905260606040820181815290820183818151815260200191508051906020019080838360005b83811015610a0d5780820151838201526020016109f5565b50505050905090810190601f168015610a3a5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a1600160a060020a03308116600081815260026020526040808220805487900390559286168082529083902080548601905591600080516020610fb68339815191529085905190815260200160405180910390a3505050565b60005433600160a060020a03908116911614610abc57600080fd5b600160a060020a03301660009081526002602052604090205481901015610ae257600080fd5b600180548290039055600160a060020a03301660008181526002602052604080822080548590039055909190600080516020610fb68339815191529084905190815260200160405180910390a350565b600160a060020a03338116600090815260036020908152604080832093861683529290529081205480831115610b8f57600160a060020a033381166000908152600360209081526040808320938816835292905290812055610bc6565b610b9f818463ffffffff610f9416565b600160a060020a033381166000908152600360209081526040808320938916835292905220555b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526002602052604090205490565b60005433600160a060020a03908116911614610c6257600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60005474010000000000000000000000000000000000000000900460ff1690565b60005433600160a060020a03908116911614610ccd57600080fd5b60008054911515740100000000000000000000000000000000000000000274ff000000000000000000000000000000000000000019909216919091179055565b60005433600160a060020a03908116911614610d2857600080fd5b600054600160a060020a0316ff5b60408051908101604052600581527f454d505242000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a03331660009081526004602052604081205460ff1615610d9357600080fd5b60005474010000000000000000000000000000000000000000900460ff161515610dbc57600080fd5b600160a060020a033316600090815260026020526040902054829010801590610dfe5750600160a060020a038316600090815260026020526040902054828101115b15610e6d5782600160a060020a031633600160a060020a0316600080516020610fb68339815191528460405190815260200160405180910390a350600160a060020a03338116600090815260026020526040808220805485900390559184168152208054820190556001610739565b506000610739565b60005433600160a060020a03908116911614610e9057600080fd5b600160a060020a03166000908152600460205260409020805460ff19169055565b600160a060020a033381166000908152600360209081526040808320938616835292905290812054610ee9908363ffffffff610fa616565b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600054600160a060020a0391821691161490565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600082821115610fa057fe5b50900390565b6000828201838110156108e457fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820fccec0a8e11de84571f15eceb47505696d04626ab8b935b93887b2aa7cba880a0029
Deployed Bytecode
0x6060604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305297781811461016657806306fdde031461017e5780630730a32214610208578063095ea7b31461022d57806318160ddd1461026357806323b872dd146102885780632e42b012146102b0578063313ce567146102cf578063321de1d4146102e25780635daf8a7114610347578063661884631461035d57806370a082311461037f578063858ac4d81461039e5780638aa99826146103bd5780638e3bd6fa146103d05780639445eb3a146103e857806395d89b41146103fb578063a9059cbb1461040e578063b9c97a4414610430578063d73dd6231461044f578063dd0860a814610471578063dd62ed3e14610490575b33600160a060020a03167f52a6cdf67c40ce333b3d846e4e143db87f71dd7935612a4cafcf6ba76047ca1f3460405190815260200160405180910390a2005b341561017157600080fd5b61017c6004356104b5565b005b341561018957600080fd5b610191610542565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101cd5780820151838201526020016101b5565b50505050905090810190601f1680156101fa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561021357600080fd5b61017c600160a060020a0360043516602435604435610579565b341561023857600080fd5b61024f600160a060020a03600435166024356106d2565b604051901515815260200160405180910390f35b341561026e57600080fd5b61027661073f565b60405190815260200160405180910390f35b341561029357600080fd5b61024f600160a060020a0360043581169060243516604435610745565b34156102bb57600080fd5b61017c600160a060020a03600435166108eb565b34156102da57600080fd5b61027661092a565b34156102ed57600080fd5b61017c60048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061092f95505050505050565b341561035257600080fd5b61017c600435610aa1565b341561036857600080fd5b61024f600160a060020a0360043516602435610b32565b341561038a57600080fd5b610276600160a060020a0360043516610c2c565b34156103a957600080fd5b61017c600160a060020a0360043516610c47565b34156103c857600080fd5b61024f610c91565b34156103db57600080fd5b61017c6004351515610cb2565b34156103f357600080fd5b61017c610d0d565b341561040657600080fd5b610191610d36565b341561041957600080fd5b61024f600160a060020a0360043516602435610d6d565b341561043b57600080fd5b61017c600160a060020a0360043516610e75565b341561045a57600080fd5b61024f600160a060020a0360043516602435610eb1565b341561047c57600080fd5b61024f600160a060020a0360043516610f55565b341561049b57600080fd5b610276600160a060020a0360043581169060243516610f69565b60005433600160a060020a039081169116146104d057600080fd5b600160a060020a03301660009081526002602052604090205481810110156104f757600080fd5b6001805482019055600160a060020a033016600081815260026020526040808220805485019055600080516020610fb68339815191529084905190815260200160405180910390a350565b60408051908101604052600b81527f656d706f777220626c7565000000000000000000000000000000000000000000602082015281565b60005433600160a060020a0390811691161461059457600080fd5b8130600160a060020a031631101580156105c75750600160a060020a033016600090815260026020526040902054819010155b15156105d257600080fd5b600082111561064a57600160a060020a03831682156108fc0283604051600060405180830381858888f19350505050151561060c57600080fd5b82600160a060020a03167f83007cefb28dc4cfb49f429f899c69d37f8011db578f48da2f64929a79bf67b38360405190815260200160405180910390a25b60008111156106cd57600160a060020a0383166000908152600260205260409020548181011161067957600080fd5b600160a060020a03308116600081815260026020526040808220805486900390559286168082529083902080548501905591600080516020610fb68339815191529084905190815260200160405180910390a35b505050565b600160a060020a03338116600081815260036020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60015490565b600160a060020a03331660009081526004602052604081205460ff161561076b57600080fd5b600160a060020a03841660009081526004602052604090205460ff161580156107ad5750600160a060020a03831660009081526004602052604090205460ff16155b15156107b857600080fd5b60005474010000000000000000000000000000000000000000900460ff1615156107e157600080fd5b600160a060020a0384166000908152600260205260409020548290108015906108315750600160a060020a0380851660009081526003602090815260408083203390941683529290522054829010155b80156108565750600160a060020a038316600090815260026020526040902054828101115b156108e05782600160a060020a031684600160a060020a0316600080516020610fb68339815191528460405190815260200160405180910390a350600160a060020a038084166000908152600260208181526040808420805487900390556003825280842033861685528252808420805487900390559386168352522080548201905560016108e4565b5060005b9392505050565b60005433600160a060020a0390811691161461090657600080fd5b600160a060020a03166000908152600460205260409020805460ff19166001179055565b601281565b60005433600160a060020a0390811691161461094a57600080fd5b600160a060020a03301660009081526002602052604090205482901080159061098c5750600160a060020a038316600090815260026020526040902054828101115b151561099757600080fd5b7f0307f82a1d7930932f894f6f841bd41285da9d1374694c831ad1efa591139316838383604051600160a060020a03841681526020810183905260606040820181815290820183818151815260200191508051906020019080838360005b83811015610a0d5780820151838201526020016109f5565b50505050905090810190601f168015610a3a5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a1600160a060020a03308116600081815260026020526040808220805487900390559286168082529083902080548601905591600080516020610fb68339815191529085905190815260200160405180910390a3505050565b60005433600160a060020a03908116911614610abc57600080fd5b600160a060020a03301660009081526002602052604090205481901015610ae257600080fd5b600180548290039055600160a060020a03301660008181526002602052604080822080548590039055909190600080516020610fb68339815191529084905190815260200160405180910390a350565b600160a060020a03338116600090815260036020908152604080832093861683529290529081205480831115610b8f57600160a060020a033381166000908152600360209081526040808320938816835292905290812055610bc6565b610b9f818463ffffffff610f9416565b600160a060020a033381166000908152600360209081526040808320938916835292905220555b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526002602052604090205490565b60005433600160a060020a03908116911614610c6257600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60005474010000000000000000000000000000000000000000900460ff1690565b60005433600160a060020a03908116911614610ccd57600080fd5b60008054911515740100000000000000000000000000000000000000000274ff000000000000000000000000000000000000000019909216919091179055565b60005433600160a060020a03908116911614610d2857600080fd5b600054600160a060020a0316ff5b60408051908101604052600581527f454d505242000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a03331660009081526004602052604081205460ff1615610d9357600080fd5b60005474010000000000000000000000000000000000000000900460ff161515610dbc57600080fd5b600160a060020a033316600090815260026020526040902054829010801590610dfe5750600160a060020a038316600090815260026020526040902054828101115b15610e6d5782600160a060020a031633600160a060020a0316600080516020610fb68339815191528460405190815260200160405180910390a350600160a060020a03338116600090815260026020526040808220805485900390559184168152208054820190556001610739565b506000610739565b60005433600160a060020a03908116911614610e9057600080fd5b600160a060020a03166000908152600460205260409020805460ff19169055565b600160a060020a033381166000908152600360209081526040808320938616835292905290812054610ee9908363ffffffff610fa616565b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600054600160a060020a0391821691161490565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600082821115610fa057fe5b50900390565b6000828201838110156108e457fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820fccec0a8e11de84571f15eceb47505696d04626ab8b935b93887b2aa7cba880a0029
Deployed Bytecode Sourcemap
1672:7345:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2334:10;-1:-1:-1;;;;;2322:34:0;;2346:9;2322:34;;;;;;;;;;;;;;1672:7345;3223:210;;;;;;;;;;;;;;;;1736:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1736:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2430:470;;;;;;;;;;-1:-1:-1;;;;;2430:470:0;;;;;;;;;6489:192;;;;;;;;;;-1:-1:-1;;;;;6489:192:0;;;;;;;;;;;;;;;;;;;;;;;;4516:101;;;;;;;;;;;;;;;;;;;;;;;;;;;5201:646;;;;;;;;;;-1:-1:-1;;;;;5201:646:0;;;;;;;;;;;;4081:107;;;;;;;;;;-1:-1:-1;;;;;4081:107:0;;;;;1832:37;;;;;;;;;;;;3718:351;;;;;;;;;;;;;-1:-1:-1;;;;;3718:351:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3718:351:0;;-1:-1:-1;3718:351:0;;-1:-1:-1;;;;;;3718:351:0;3439:197;;;;;;;;;;;;;;8345:412;;;;;;;;;;-1:-1:-1;;;;;8345:412:0;;;;;;;4623:124;;;;;;;;;;-1:-1:-1;;;;;4623:124:0;;;;;1413:89;;;;;;;;;;-1:-1:-1;;;;;1413:89:0;;;;;4409;;;;;;;;;;;;4319:84;;;;;;;;;;;;;;;;1508:72;;;;;;;;;;;;1786:39;;;;;;;;;;;;4753:442;;;;;;;;;;-1:-1:-1;;;;;4753:442:0;;;;;;;4194:113;;;;;;;;;;-1:-1:-1;;;;;4194:113:0;;;;;7605:266;;;;;;;;;;-1:-1:-1;;;;;7605:266:0;;;;;;;1315:92;;;;;;;;;;-1:-1:-1;;;;;1315:92:0;;;;;7008:128;;;;;;;;;;-1:-1:-1;;;;;7008:128:0;;;;;;;;;;3223:210;1639:5;;1625:10;-1:-1:-1;;;;;1625:19:0;;;1639:5;;1625:19;1617:28;;;;;;-1:-1:-1;;;;;3321:4:0;3312:14;;;;;:8;:14;;;;;;3288:20;;;:38;;3280:47;;;;;;3335:13;:20;;;;;;-1:-1:-1;;;;;3372:4:0;3363:14;3335:13;3363:14;;;:8;:14;;;;;;:21;;;;;;-1:-1:-1;;;;;;;;;;;3397:31:0;3352:3;;3397:31;;;;;;;;;;;;;3223:210;:::o;1736:43::-;;;;;;;;;;;;;;;;;;:::o;2430:470::-;1639:5;;1625:10;-1:-1:-1;;;;;1625:19:0;;;1639:5;;1625:19;1617:28;;;;;;2562:6;2545:4;-1:-1:-1;;;;;2537:21:0;;:31;;:61;;;;-1:-1:-1;;;;;;2581:4:0;2572:14;;;;;:8;:14;;;;;;:26;;;;2537:61;2529:71;;;;;;;;2620:1;2612:6;:9;2609:87;;;-1:-1:-1;;;;;2632:12:0;;:20;;;;2645:6;2632:20;;;;;;;;;;;;;;;;;;;;;;;;;;2678:3;-1:-1:-1;;;;;2663:27:0;;2683:6;2663:27;;;;;;;;;;;;;;2609:87;2718:1;2707:8;:12;2704:184;;;-1:-1:-1;;;;;2765:13:0;;;;;;:8;:13;;;;;;2738:24;;;:40;2730:49;;;;;;-1:-1:-1;;;;;2794:4:0;2785:14;;;;;;:8;:14;;;;;;:26;;;;;;;2817:13;;;;;;;;;;:25;;;;;;:13;-1:-1:-1;;;;;;;;;;;2853:29:0;2803:8;;2853:29;;;;;;;;;;;;;2704:184;2430:470;;;:::o;6489:192::-;-1:-1:-1;;;;;6577:10:0;6569:19;;6556:4;6569:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;:38;;;6556:4;;6569:29;:19;6619:38;;6601:6;;6619:38;;;;;;;;;;;;;-1:-1:-1;6671:4:0;6489:192;;;;;:::o;4516:101::-;4596:13;;4516:101;:::o;5201:646::-;-1:-1:-1;;;;;8984:10:0;8969:26;5289:12;8969:26;;;:14;:26;;;;;;;;8968:27;8959:37;;;;;;-1:-1:-1;;;;;5323:21:0;;;;;;:14;:21;;;;;;;;5322:22;:46;;;;-1:-1:-1;;;;;;5349:19:0;;;;;;:14;:19;;;;;;;;5348:20;5322:46;5314:55;;;;;;;;5382:9;;;;;;;5374:18;;;;;;;;-1:-1:-1;;;;;5407:15:0;;;;;;:8;:15;;;;;;:25;;;;;;:78;;-1:-1:-1;;;;;;5449:14:0;;;;;;;:7;:14;;;;;;;;5464:10;5449:26;;;;;;;;;;:36;;;;5407:78;:133;;;;-1:-1:-1;;;;;;5527:13:0;;;;;;:8;:13;;;;;;5502:22;;;:38;5407:133;5403:437;;;5597:3;-1:-1:-1;;;;;5580:30:0;5590:5;-1:-1:-1;;;;;5580:30:0;-1:-1:-1;;;;;;;;;;;5603:6:0;5580:30;;;;;;;;;;;;;;-1:-1:-1;;;;;;5643:15:0;;;;;;;:8;:15;;;;;;;;:25;;;;;;;5683:7;:14;;;;;5698:10;5683:26;;;;;;;;;:36;;;;;;;5734:13;;;;;;;:23;;;;;;-1:-1:-1;5772:11:0;;5403:437;-1:-1:-1;5823:5:0;5403:437;5201:646;;;;;:::o;4081:107::-;1639:5;;1625:10;-1:-1:-1;;;;;1625:19:0;;;1639:5;;1625:19;1617:28;;;;;;-1:-1:-1;;;;;4151:22:0;;;;;:14;:22;;;;;:29;;-1:-1:-1;;4151:29:0;4176:4;4151:29;;;4081:107::o;1832:37::-;1867:2;1832:37;:::o;3718:351::-;1639:5;;1625:10;-1:-1:-1;;;;;1625:19:0;;;1639:5;;1625:19;1617:28;;;;;;-1:-1:-1;;;;;3825:4:0;3816:14;;;;;:8;:14;;;;;;:24;;;;;;:72;;-1:-1:-1;;;;;;3872:16:0;;;;;;:8;:16;;;;;;3844:25;;;:44;3816:72;3808:81;;;;;;;;3909:34;3920:6;3929;3938:4;3909:34;;-1:-1:-1;;;;;3909:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;3909:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3963:4:0;3954:14;;;;;;:8;:14;;;;;;:24;;;;;;;3989:16;;;;;;;;;;:26;;;;;;:16;-1:-1:-1;;;;;;;;;;;4031:30:0;3972:6;;4031:30;;;;;;;;;;;;;3718:351;;;:::o;3439:197::-;1639:5;;1625:10;-1:-1:-1;;;;;1625:19:0;;;1639:5;;1625:19;1617:28;;;;;;-1:-1:-1;;;;;3518:4:0;3509:14;;;;;:8;:14;;;;;;:21;;;;3499:32;;;;;;3539:13;:20;;;;;;;-1:-1:-1;;;;;3576:4:0;3567:14;3539:13;3567:14;;;:8;:14;;;;;;:21;;;;;;;3539:13;;3567:14;-1:-1:-1;;;;;;;;;;;3601:30:0;3556:3;;3601:30;;;;;;;;;;;;;3439:197;:::o;8345:412::-;-1:-1:-1;;;;;8465:10:0;8457:19;;8428:4;8457:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;8497:27;;;8493:168;;;-1:-1:-1;;;;;8543:10:0;8535:19;;8567:1;8535:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;:33;8493:168;;;8623:30;:8;8636:16;8623:30;:12;:30;:::i;:::-;-1:-1:-1;;;;;8599:10:0;8591:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;:62;8493:168;-1:-1:-1;;;;;8681:10:0;8672:61;;8703:19;;;;:7;:19;;;;;;;;8672:61;;;8703:29;;;;;;;;;;;;8672:61;;;;;;;;;;;;;;;-1:-1:-1;8747:4:0;;8345:412;-1:-1:-1;;;8345:412:0:o;4623:124::-;-1:-1:-1;;;;;4723:16:0;4683:15;4723:16;;;:8;:16;;;;;;;4623:124::o;1413:89::-;1639:5;;1625:10;-1:-1:-1;;;;;1625:19:0;;;1639:5;;1625:19;1617:28;;;;;;1481:5;:16;;-1:-1:-1;;1481:16:0;-1:-1:-1;;;;;1481:16:0;;;;;;;;;;1413:89::o;4409:::-;4452:4;4481:9;;;;;;;4409:89::o;4319:84::-;1639:5;;1625:10;-1:-1:-1;;;;;1625:19:0;;;1639:5;;1625:19;1617:28;;;;;;4382:9;:13;;;;;;;-1:-1:-1;;4382:13:0;;;;;;;;;4319:84::o;1508:72::-;1639:5;;1625:10;-1:-1:-1;;;;;1625:19:0;;;1639:5;;1625:19;1617:28;;;;;;1569:5;;-1:-1:-1;;;;;1569:5:0;1556:19;1786:39;;;;;;;;;;;;;;;;;;:::o;4753:442::-;-1:-1:-1;;;;;8984:10:0;8969:26;4826:12;8969:26;;;:14;:26;;;;;;;;8968:27;8959:37;;;;;;4859:9;;;;;;;4851:18;;;;;;;;-1:-1:-1;;;;;4894:10:0;4885:20;;;;;:8;:20;;;;;;:30;;;;;;:72;;-1:-1:-1;;;;;;4944:13:0;;;;;;:8;:13;;;;;;4919:22;;;:38;4885:72;4881:306;;;5002:3;-1:-1:-1;;;;;4980:35:0;4990:10;-1:-1:-1;;;;;4980:35:0;-1:-1:-1;;;;;;;;;;;5008:6:0;4980:35;;;;;;;;;;;;;;-1:-1:-1;;;;;;5040:10:0;5031:20;;;;;;:8;:20;;;;;;:30;;;;;;;5077:13;;;;;;:23;;;;;;-1:-1:-1;5116:11:0;;4881:306;-1:-1:-1;5169:5:0;5162:12;;4194:113;1639:5;;1625:10;-1:-1:-1;;;;;1625:19:0;;;1639:5;;1625:19;1617:28;;;;;;-1:-1:-1;;;;;4275:24:0;;;;;:14;:24;;;;;4268:31;;-1:-1:-1;;4268:31:0;;;4194:113::o;7605:266::-;-1:-1:-1;;;;;7736:10:0;7728:19;;7683:4;7728:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;:46;;7762:11;7728:46;:33;:46;:::i;:::-;-1:-1:-1;;;;;7704:10:0;7696:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;;:78;;;:29;;:19;;7786:61;;7696:78;7786:61;;;;;;;;;;;;;-1:-1:-1;7861:4:0;7605:266;;;;:::o;1315:92::-;1366:4;1389:5;-1:-1:-1;;;;;1389:13:0;;;:5;;:13;;1315:92::o;7008:128::-;-1:-1:-1;;;;;7105:15:0;;;7082:7;7105:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;7008:128::o;876:113::-;934:7;957:6;;;;950:14;;;;-1:-1:-1;978:5:0;;;876:113::o;1056:133::-;1114:7;1142:5;;;1161:6;;;;1154:14;;
Swarm Source
bzzr://fccec0a8e11de84571f15eceb47505696d04626ab8b935b93887b2aa7cba880a
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.