ETH Price: $3,264.94 (+2.26%)
Gas: 1 Gwei

Token

empowr orange (EMPRO)
 

Overview

Max Total Supply

1,000,000,000,000,000 EMPRO

Holders

1,776

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10,000,000 EMPRO

Value
$0.00
0xfb7d0a0b21db61564e08cc3961fca2b0fdff6635
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EMPRO

Compiler Version
v0.4.21+commit.dfe3193c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2019-01-16
*/

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 EMPRO is Owned {
    using SafeMath for uint256;
    string public constant name = "empowr orange";
    string public constant symbol = "EMPRO";
    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 EMPRO( ) public
    {
        uint256 initialTotalSupply = 10;
        balances[this] = initialTotalSupply * (10**decimals);
        
        currentSupply =  initialTotalSupply * (10**decimals);
	    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

Contract ABI

[{"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"}]

6060604052341561000f57600080fd5b60008054600160a060020a03191633600160a060020a03908116919091178255301680825260026020526040808320678ac7230489e80000908190556001819055600a93917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91905190815260200160405180910390a350611001806100966000396000f3006060604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305297781811461016657806306fdde031461017e5780630730a32214610208578063095ea7b31461022d57806318160ddd1461026357806323b872dd146102885780632e42b012146102b0578063313ce567146102cf578063321de1d4146102e25780635daf8a7114610347578063661884631461035d57806370a082311461037f578063858ac4d81461039e5780638aa99826146103bd5780638e3bd6fa146103d05780639445eb3a146103e857806395d89b41146103fb578063a9059cbb1461040e578063b9c97a4414610430578063d73dd6231461044f578063dd0860a814610471578063dd62ed3e14610490575b33600160a060020a03167f52a6cdf67c40ce333b3d846e4e143db87f71dd7935612a4cafcf6ba76047ca1f3460405190815260200160405180910390a2005b341561017157600080fd5b61017c6004356104b5565b005b341561018957600080fd5b610191610542565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101cd5780820151838201526020016101b5565b50505050905090810190601f1680156101fa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561021357600080fd5b61017c600160a060020a0360043516602435604435610579565b341561023857600080fd5b61024f600160a060020a03600435166024356106d2565b604051901515815260200160405180910390f35b341561026e57600080fd5b61027661073f565b60405190815260200160405180910390f35b341561029357600080fd5b61024f600160a060020a0360043581169060243516604435610745565b34156102bb57600080fd5b61017c600160a060020a03600435166108eb565b34156102da57600080fd5b61027661092a565b34156102ed57600080fd5b61017c60048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061092f95505050505050565b341561035257600080fd5b61017c600435610aa1565b341561036857600080fd5b61024f600160a060020a0360043516602435610b32565b341561038a57600080fd5b610276600160a060020a0360043516610c2c565b34156103a957600080fd5b61017c600160a060020a0360043516610c47565b34156103c857600080fd5b61024f610c91565b34156103db57600080fd5b61017c6004351515610cb2565b34156103f357600080fd5b61017c610d0d565b341561040657600080fd5b610191610d36565b341561041957600080fd5b61024f600160a060020a0360043516602435610d6d565b341561043b57600080fd5b61017c600160a060020a0360043516610e75565b341561045a57600080fd5b61024f600160a060020a0360043516602435610eb1565b341561047c57600080fd5b61024f600160a060020a0360043516610f55565b341561049b57600080fd5b610276600160a060020a0360043581169060243516610f69565b60005433600160a060020a039081169116146104d057600080fd5b600160a060020a03301660009081526002602052604090205481810110156104f757600080fd5b6001805482019055600160a060020a033016600081815260026020526040808220805485019055600080516020610fb68339815191529084905190815260200160405180910390a350565b60408051908101604052600d81527f656d706f7772206f72616e676500000000000000000000000000000000000000602082015281565b60005433600160a060020a0390811691161461059457600080fd5b8130600160a060020a031631101580156105c75750600160a060020a033016600090815260026020526040902054819010155b15156105d257600080fd5b600082111561064a57600160a060020a03831682156108fc0283604051600060405180830381858888f19350505050151561060c57600080fd5b82600160a060020a03167f83007cefb28dc4cfb49f429f899c69d37f8011db578f48da2f64929a79bf67b38360405190815260200160405180910390a25b60008111156106cd57600160a060020a0383166000908152600260205260409020548181011161067957600080fd5b600160a060020a03308116600081815260026020526040808220805486900390559286168082529083902080548501905591600080516020610fb68339815191529084905190815260200160405180910390a35b505050565b600160a060020a03338116600081815260036020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60015490565b600160a060020a03331660009081526004602052604081205460ff161561076b57600080fd5b600160a060020a03841660009081526004602052604090205460ff161580156107ad5750600160a060020a03831660009081526004602052604090205460ff16155b15156107b857600080fd5b60005474010000000000000000000000000000000000000000900460ff1615156107e157600080fd5b600160a060020a0384166000908152600260205260409020548290108015906108315750600160a060020a0380851660009081526003602090815260408083203390941683529290522054829010155b80156108565750600160a060020a038316600090815260026020526040902054828101115b156108e05782600160a060020a031684600160a060020a0316600080516020610fb68339815191528460405190815260200160405180910390a350600160a060020a038084166000908152600260208181526040808420805487900390556003825280842033861685528252808420805487900390559386168352522080548201905560016108e4565b5060005b9392505050565b60005433600160a060020a0390811691161461090657600080fd5b600160a060020a03166000908152600460205260409020805460ff19166001179055565b601281565b60005433600160a060020a0390811691161461094a57600080fd5b600160a060020a03301660009081526002602052604090205482901080159061098c5750600160a060020a038316600090815260026020526040902054828101115b151561099757600080fd5b7f0307f82a1d7930932f894f6f841bd41285da9d1374694c831ad1efa591139316838383604051600160a060020a03841681526020810183905260606040820181815290820183818151815260200191508051906020019080838360005b83811015610a0d5780820151838201526020016109f5565b50505050905090810190601f168015610a3a5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a1600160a060020a03308116600081815260026020526040808220805487900390559286168082529083902080548601905591600080516020610fb68339815191529085905190815260200160405180910390a3505050565b60005433600160a060020a03908116911614610abc57600080fd5b600160a060020a03301660009081526002602052604090205481901015610ae257600080fd5b600180548290039055600160a060020a03301660008181526002602052604080822080548590039055909190600080516020610fb68339815191529084905190815260200160405180910390a350565b600160a060020a03338116600090815260036020908152604080832093861683529290529081205480831115610b8f57600160a060020a033381166000908152600360209081526040808320938816835292905290812055610bc6565b610b9f818463ffffffff610f9416565b600160a060020a033381166000908152600360209081526040808320938916835292905220555b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526002602052604090205490565b60005433600160a060020a03908116911614610c6257600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60005474010000000000000000000000000000000000000000900460ff1690565b60005433600160a060020a03908116911614610ccd57600080fd5b60008054911515740100000000000000000000000000000000000000000274ff000000000000000000000000000000000000000019909216919091179055565b60005433600160a060020a03908116911614610d2857600080fd5b600054600160a060020a0316ff5b60408051908101604052600581527f454d50524f000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a03331660009081526004602052604081205460ff1615610d9357600080fd5b60005474010000000000000000000000000000000000000000900460ff161515610dbc57600080fd5b600160a060020a033316600090815260026020526040902054829010801590610dfe5750600160a060020a038316600090815260026020526040902054828101115b15610e6d5782600160a060020a031633600160a060020a0316600080516020610fb68339815191528460405190815260200160405180910390a350600160a060020a03338116600090815260026020526040808220805485900390559184168152208054820190556001610739565b506000610739565b60005433600160a060020a03908116911614610e9057600080fd5b600160a060020a03166000908152600460205260409020805460ff19169055565b600160a060020a033381166000908152600360209081526040808320938616835292905290812054610ee9908363ffffffff610fa616565b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600054600160a060020a0391821691161490565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600082821115610fa057fe5b50900390565b6000828201838110156108e457fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820c87be3b905c183896c544653a3cf6dd3892a2205d59f23a2642ba2fc4500caa20029

Deployed Bytecode

0x6060604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305297781811461016657806306fdde031461017e5780630730a32214610208578063095ea7b31461022d57806318160ddd1461026357806323b872dd146102885780632e42b012146102b0578063313ce567146102cf578063321de1d4146102e25780635daf8a7114610347578063661884631461035d57806370a082311461037f578063858ac4d81461039e5780638aa99826146103bd5780638e3bd6fa146103d05780639445eb3a146103e857806395d89b41146103fb578063a9059cbb1461040e578063b9c97a4414610430578063d73dd6231461044f578063dd0860a814610471578063dd62ed3e14610490575b33600160a060020a03167f52a6cdf67c40ce333b3d846e4e143db87f71dd7935612a4cafcf6ba76047ca1f3460405190815260200160405180910390a2005b341561017157600080fd5b61017c6004356104b5565b005b341561018957600080fd5b610191610542565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101cd5780820151838201526020016101b5565b50505050905090810190601f1680156101fa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561021357600080fd5b61017c600160a060020a0360043516602435604435610579565b341561023857600080fd5b61024f600160a060020a03600435166024356106d2565b604051901515815260200160405180910390f35b341561026e57600080fd5b61027661073f565b60405190815260200160405180910390f35b341561029357600080fd5b61024f600160a060020a0360043581169060243516604435610745565b34156102bb57600080fd5b61017c600160a060020a03600435166108eb565b34156102da57600080fd5b61027661092a565b34156102ed57600080fd5b61017c60048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061092f95505050505050565b341561035257600080fd5b61017c600435610aa1565b341561036857600080fd5b61024f600160a060020a0360043516602435610b32565b341561038a57600080fd5b610276600160a060020a0360043516610c2c565b34156103a957600080fd5b61017c600160a060020a0360043516610c47565b34156103c857600080fd5b61024f610c91565b34156103db57600080fd5b61017c6004351515610cb2565b34156103f357600080fd5b61017c610d0d565b341561040657600080fd5b610191610d36565b341561041957600080fd5b61024f600160a060020a0360043516602435610d6d565b341561043b57600080fd5b61017c600160a060020a0360043516610e75565b341561045a57600080fd5b61024f600160a060020a0360043516602435610eb1565b341561047c57600080fd5b61024f600160a060020a0360043516610f55565b341561049b57600080fd5b610276600160a060020a0360043581169060243516610f69565b60005433600160a060020a039081169116146104d057600080fd5b600160a060020a03301660009081526002602052604090205481810110156104f757600080fd5b6001805482019055600160a060020a033016600081815260026020526040808220805485019055600080516020610fb68339815191529084905190815260200160405180910390a350565b60408051908101604052600d81527f656d706f7772206f72616e676500000000000000000000000000000000000000602082015281565b60005433600160a060020a0390811691161461059457600080fd5b8130600160a060020a031631101580156105c75750600160a060020a033016600090815260026020526040902054819010155b15156105d257600080fd5b600082111561064a57600160a060020a03831682156108fc0283604051600060405180830381858888f19350505050151561060c57600080fd5b82600160a060020a03167f83007cefb28dc4cfb49f429f899c69d37f8011db578f48da2f64929a79bf67b38360405190815260200160405180910390a25b60008111156106cd57600160a060020a0383166000908152600260205260409020548181011161067957600080fd5b600160a060020a03308116600081815260026020526040808220805486900390559286168082529083902080548501905591600080516020610fb68339815191529084905190815260200160405180910390a35b505050565b600160a060020a03338116600081815260036020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60015490565b600160a060020a03331660009081526004602052604081205460ff161561076b57600080fd5b600160a060020a03841660009081526004602052604090205460ff161580156107ad5750600160a060020a03831660009081526004602052604090205460ff16155b15156107b857600080fd5b60005474010000000000000000000000000000000000000000900460ff1615156107e157600080fd5b600160a060020a0384166000908152600260205260409020548290108015906108315750600160a060020a0380851660009081526003602090815260408083203390941683529290522054829010155b80156108565750600160a060020a038316600090815260026020526040902054828101115b156108e05782600160a060020a031684600160a060020a0316600080516020610fb68339815191528460405190815260200160405180910390a350600160a060020a038084166000908152600260208181526040808420805487900390556003825280842033861685528252808420805487900390559386168352522080548201905560016108e4565b5060005b9392505050565b60005433600160a060020a0390811691161461090657600080fd5b600160a060020a03166000908152600460205260409020805460ff19166001179055565b601281565b60005433600160a060020a0390811691161461094a57600080fd5b600160a060020a03301660009081526002602052604090205482901080159061098c5750600160a060020a038316600090815260026020526040902054828101115b151561099757600080fd5b7f0307f82a1d7930932f894f6f841bd41285da9d1374694c831ad1efa591139316838383604051600160a060020a03841681526020810183905260606040820181815290820183818151815260200191508051906020019080838360005b83811015610a0d5780820151838201526020016109f5565b50505050905090810190601f168015610a3a5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a1600160a060020a03308116600081815260026020526040808220805487900390559286168082529083902080548601905591600080516020610fb68339815191529085905190815260200160405180910390a3505050565b60005433600160a060020a03908116911614610abc57600080fd5b600160a060020a03301660009081526002602052604090205481901015610ae257600080fd5b600180548290039055600160a060020a03301660008181526002602052604080822080548590039055909190600080516020610fb68339815191529084905190815260200160405180910390a350565b600160a060020a03338116600090815260036020908152604080832093861683529290529081205480831115610b8f57600160a060020a033381166000908152600360209081526040808320938816835292905290812055610bc6565b610b9f818463ffffffff610f9416565b600160a060020a033381166000908152600360209081526040808320938916835292905220555b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526002602052604090205490565b60005433600160a060020a03908116911614610c6257600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60005474010000000000000000000000000000000000000000900460ff1690565b60005433600160a060020a03908116911614610ccd57600080fd5b60008054911515740100000000000000000000000000000000000000000274ff000000000000000000000000000000000000000019909216919091179055565b60005433600160a060020a03908116911614610d2857600080fd5b600054600160a060020a0316ff5b60408051908101604052600581527f454d50524f000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a03331660009081526004602052604081205460ff1615610d9357600080fd5b60005474010000000000000000000000000000000000000000900460ff161515610dbc57600080fd5b600160a060020a033316600090815260026020526040902054829010801590610dfe5750600160a060020a038316600090815260026020526040902054828101115b15610e6d5782600160a060020a031633600160a060020a0316600080516020610fb68339815191528460405190815260200160405180910390a350600160a060020a03338116600090815260026020526040808220805485900390559184168152208054820190556001610739565b506000610739565b60005433600160a060020a03908116911614610e9057600080fd5b600160a060020a03166000908152600460205260409020805460ff19169055565b600160a060020a033381166000908152600360209081526040808320938616835292905290812054610ee9908363ffffffff610fa616565b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600054600160a060020a0391821691161490565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600082821115610fa057fe5b50900390565b6000828201838110156108e457fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820c87be3b905c183896c544653a3cf6dd3892a2205d59f23a2642ba2fc4500caa20029

Swarm Source

bzzr://c87be3b905c183896c544653a3cf6dd3892a2205d59f23a2642ba2fc4500caa2
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.