ETH Price: $3,149.07 (+0.16%)
Gas: 2 Gwei

Token

Extra Box Cash (EXAC)
 

Overview

Max Total Supply

30,000,000,000 EXAC

Holders

27,819

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
129,705.332071566198224232 EXAC

Value
$0.00
0x15616e35bb67d027cad2e4e3eb851879edf89ab7
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:
ExtraBoxCash

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 2018-10-29
*/

pragma solidity ^0.4.18;

library SafeMath {
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a / b;
    return c;
  }

  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

contract ForeignToken {
    function balanceOf(address _owner) constant public returns (uint256);
    function transfer(address _to, uint256 _value) public returns (bool);
}

contract ERC20Basic {
    uint256 public totalSupply;
    function balanceOf(address who) public constant returns (uint256);
    function transfer(address to, uint256 value) public returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
}

contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender) public constant returns (uint256);
    function transferFrom(address from, address to, uint256 value) public returns (bool);
    function approve(address spender, uint256 value) public returns (bool);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

interface Token { 
    function distr(address _to, uint256 _value) external returns (bool);
    function totalSupply() constant external returns (uint256 supply);
    function balanceOf(address _owner) constant external returns (uint256 balance);
}

contract ExtraBoxCash is ERC20 {

 
    
    using SafeMath for uint256;
    address owner = msg.sender;

    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowed;
    mapping (address => bool) public blacklist;

    string public constant name = "Extra Box Cash";
    string public constant symbol = "EXAC";
    uint public constant decimals = 18;
    
uint256 public totalSupply = 30000000000e18;
    
uint256 public totalDistributed = 20000000000e18;
    
uint256 public totalRemaining = totalSupply.sub(totalDistributed);
    
uint256 public value = 200000e18;



    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
    
    event Distr(address indexed to, uint256 amount);
    event DistrFinished();
    
    event Burn(address indexed burner, uint256 value);

    bool public distributionFinished = false;
    
    modifier canDistr() {
        require(!distributionFinished);
        _;
    }
    
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
    
    modifier onlyWhitelist() {
        require(blacklist[msg.sender] == false);
        _;
    }
    
    function ExtraBoxCash() public {
        owner = msg.sender;
        balances[owner] = totalDistributed;
    }
    
    function transferOwnership(address newOwner) onlyOwner public {
        if (newOwner != address(0)) {
            owner = newOwner;
        }
    }
    
    function finishDistribution() onlyOwner canDistr public returns (bool) {
        distributionFinished = true;
        emit DistrFinished();
        return true;
    }
    
    function distr(address _to, uint256 _amount) canDistr private returns (bool) {
        totalDistributed = totalDistributed.add(_amount);
        totalRemaining = totalRemaining.sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        emit Distr(_to, _amount);
        emit Transfer(address(0), _to, _amount);
        return true;
        
        if (totalDistributed >= totalSupply) {
            distributionFinished = true;
        }
    }
    
    function () external payable {
        getTokens();
     }
    
    function getTokens() payable canDistr onlyWhitelist public {
        if (value > totalRemaining) {
            value = totalRemaining;
        }
        
        require(value <= totalRemaining);
        
        address investor = msg.sender;
        uint256 toGive = value;
        
        distr(investor, toGive);
        
        if (toGive > 0) {
            blacklist[investor] = true;
        }

        if (totalDistributed >= totalSupply) {
            distributionFinished = true;
        }
        
        value = value.div(100000).mul(99999);
    }

    function balanceOf(address _owner) constant public returns (uint256) {
        return balances[_owner];
    }

    modifier onlyPayloadSize(uint size) {
        assert(msg.data.length >= size + 4);
        _;
    }
    
    function transfer(address _to, uint256 _amount) onlyPayloadSize(2 * 32) public returns (bool success) {
        require(_to != address(0));
        require(_amount <= balances[msg.sender]);
        
        balances[msg.sender] = balances[msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        emit Transfer(msg.sender, _to, _amount);
        return true;
    }
    
    function transferFrom(address _from, address _to, uint256 _amount) onlyPayloadSize(3 * 32) public returns (bool success) {
        require(_to != address(0));
        require(_amount <= balances[_from]);
        require(_amount <= allowed[_from][msg.sender]);
        
        balances[_from] = balances[_from].sub(_amount);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        emit Transfer(_from, _to, _amount);
        return true;
    }
    
    function approve(address _spender, uint256 _value) public returns (bool success) {
        if (_value != 0 && allowed[msg.sender][_spender] != 0) { return false; }
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }
    
    function allowance(address _owner, address _spender) constant public returns (uint256) {
        return allowed[_owner][_spender];
    }
    
    function getTokenBalance(address tokenAddress, address who) constant public returns (uint){
        ForeignToken t = ForeignToken(tokenAddress);
        uint bal = t.balanceOf(who);
        return bal;
    }
    
    function withdraw() onlyOwner public {
        uint256 etherBalance = address(this).balance;
        owner.transfer(etherBalance);
    }
    
    function burn(uint256 _value) onlyOwner public {
        require(_value <= balances[msg.sender]);

        address burner = msg.sender;
        balances[burner] = balances[burner].sub(_value);
        totalSupply = totalSupply.sub(_value);
        totalDistributed = totalDistributed.sub(_value);
        emit Burn(burner, _value);
    }
    
    function withdrawForeignTokens(address _tokenContract) onlyOwner public returns (bool) {
        ForeignToken token = ForeignToken(_tokenContract);
        uint256 amount = token.balanceOf(address(this));
        return token.transfer(owner, amount);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"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":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"value","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishDistribution","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"distributionFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"who","type":"address"}],"name":"getTokenBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalRemaining","outputs":[{"name":"","type":"uint256"}],"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"},{"constant":false,"inputs":[{"name":"_tokenContract","type":"address"}],"name":"withdrawForeignTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalDistributed","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"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"blacklist","outputs":[{"name":"","type":"bool"}],"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":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Distr","type":"event"},{"anonymous":false,"inputs":[],"name":"DistrFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

606060405260018054600160a060020a03191633600160a060020a03161790556b60ef6b1aba6f07233000000060058190556b409f9cbc7c4a04c220000000600681905561005a91906401000000006100bb8102610d911704565b600755692a5a058fc295ed0000006008556009805460ff19169055341561008057600080fd5b60018054600160a060020a03191633600160a060020a03908116919091179182905560065491166000908152600260205260409020556100cd565b6000828211156100c757fe5b50900390565b610dde806100dc6000396000f3006060604052600436106101035763ffffffff60e060020a60003504166306fdde03811461010d578063095ea7b31461019757806318160ddd146101cd57806323b872dd146101f2578063313ce5671461021a5780633ccfd60b1461022d5780633fa4f2451461024057806342966c681461025357806370a082311461026957806395d89b41146102885780639b1cbccc1461029b578063a9059cbb146102ae578063aa6ca80814610103578063c108d542146102d0578063c489744b146102e3578063d8a5436014610308578063dd62ed3e1461031b578063e58fc54c14610340578063efca2eed1461035f578063f2fde38b14610372578063f9f92be414610391575b61010b6103b0565b005b341561011857600080fd5b610120610499565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561015c578082015183820152602001610144565b50505050905090810190601f1680156101895780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101a257600080fd5b6101b9600160a060020a03600435166024356104d0565b604051901515815260200160405180910390f35b34156101d857600080fd5b6101e061057c565b60405190815260200160405180910390f35b34156101fd57600080fd5b6101b9600160a060020a0360043581169060243516604435610582565b341561022557600080fd5b6101e0610712565b341561023857600080fd5b61010b610717565b341561024b57600080fd5b6101e0610771565b341561025e57600080fd5b61010b600435610777565b341561027457600080fd5b6101e0600160a060020a0360043516610865565b341561029357600080fd5b610120610880565b34156102a657600080fd5b6101b96108b7565b34156102b957600080fd5b6101b9600160a060020a0360043516602435610924565b34156102db57600080fd5b6101b9610a2d565b34156102ee57600080fd5b6101e0600160a060020a0360043581169060243516610a36565b341561031357600080fd5b6101e0610aa7565b341561032657600080fd5b6101e0600160a060020a0360043581169060243516610aad565b341561034b57600080fd5b6101b9600160a060020a0360043516610ad8565b341561036a57600080fd5b6101e0610bdc565b341561037d57600080fd5b61010b600160a060020a0360043516610be2565b341561039c57600080fd5b6101b9600160a060020a0360043516610c39565b600954600090819060ff16156103c557600080fd5b600160a060020a03331660009081526004602052604090205460ff16156103eb57600080fd5b60075460085411156103fe576007546008555b600754600854111561040f57600080fd5b505060085433906104208282610c4e565b50600081111561044e57600160a060020a0382166000908152600460205260409020805460ff191660011790555b60055460065410610467576009805460ff191660011790555b6104926201869f610486620186a0600854610d4f90919063ffffffff16565b9063ffffffff610d6616565b6008555050565b60408051908101604052600e81527f457874726120426f782043617368000000000000000000000000000000000000602082015281565b600081158015906105055750600160a060020a0333811660009081526003602090815260408083209387168352929052205415155b1561051257506000610576565b600160a060020a03338116600081815260036020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60055481565b60006060606436101561059157fe5b600160a060020a03841615156105a657600080fd5b600160a060020a0385166000908152600260205260409020548311156105cb57600080fd5b600160a060020a03808616600090815260036020908152604080832033909416835292905220548311156105fe57600080fd5b600160a060020a038516600090815260026020526040902054610627908463ffffffff610d9116565b600160a060020a038087166000908152600260209081526040808320949094556003815283822033909316825291909152205461066a908463ffffffff610d9116565b600160a060020a03808716600090815260036020908152604080832033851684528252808320949094559187168152600290915220546106b0908463ffffffff610da316565b600160a060020a03808616600081815260026020526040908190209390935591908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b601281565b60015460009033600160a060020a0390811691161461073557600080fd5b50600154600160a060020a0330811631911681156108fc0282604051600060405180830381858888f19350505050151561076e57600080fd5b50565b60085481565b60015460009033600160a060020a0390811691161461079557600080fd5b600160a060020a0333166000908152600260205260409020548211156107ba57600080fd5b5033600160a060020a0381166000908152600260205260409020546107df9083610d91565b600160a060020a03821660009081526002602052604090205560055461080b908363ffffffff610d9116565b600555600654610821908363ffffffff610d9116565b600655600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b600160a060020a031660009081526002602052604090205490565b60408051908101604052600481527f4558414300000000000000000000000000000000000000000000000000000000602082015281565b60015460009033600160a060020a039081169116146108d557600080fd5b60095460ff16156108e557600080fd5b6009805460ff191660011790557f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc60405160405180910390a150600190565b60006040604436101561093357fe5b600160a060020a038416151561094857600080fd5b600160a060020a03331660009081526002602052604090205483111561096d57600080fd5b600160a060020a033316600090815260026020526040902054610996908463ffffffff610d9116565b600160a060020a0333811660009081526002602052604080822093909355908616815220546109cb908463ffffffff610da316565b600160a060020a0380861660008181526002602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a35060019392505050565b60095460ff1681565b60008281600160a060020a0382166370a082318560405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610a8857600080fd5b5af11515610a9557600080fd5b50505060405180519695505050505050565b60075481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b6001546000908190819033600160a060020a03908116911614610afa57600080fd5b83915081600160a060020a03166370a082313060405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610b4b57600080fd5b5af11515610b5857600080fd5b5050506040518051600154909250600160a060020a03808516925063a9059cbb91168360405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610bbe57600080fd5b5af11515610bcb57600080fd5b505050604051805195945050505050565b60065481565b60015433600160a060020a03908116911614610bfd57600080fd5b600160a060020a0381161561076e5760018054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff1990911617905550565b60046020526000908152604090205460ff1681565b60095460009060ff1615610c6157600080fd5b600654610c74908363ffffffff610da316565b600655600754610c8a908363ffffffff610d9116565b600755600160a060020a038316600090815260026020526040902054610cb6908363ffffffff610da316565b600160a060020a0384166000818152600260205260409081902092909255907f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a779084905190815260200160405180910390a2600160a060020a03831660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a3506001610576565b6000808284811515610d5d57fe5b04949350505050565b6000828202831580610d825750828482811515610d7f57fe5b04145b1515610d8a57fe5b9392505050565b600082821115610d9d57fe5b50900390565b600082820183811015610d8a57fe00a165627a7a72305820c3ea02dd2b06a84c4ad1e6e7b9ed5ab0157af3d007fe1275638d688b92441c330029

Deployed Bytecode

0x6060604052600436106101035763ffffffff60e060020a60003504166306fdde03811461010d578063095ea7b31461019757806318160ddd146101cd57806323b872dd146101f2578063313ce5671461021a5780633ccfd60b1461022d5780633fa4f2451461024057806342966c681461025357806370a082311461026957806395d89b41146102885780639b1cbccc1461029b578063a9059cbb146102ae578063aa6ca80814610103578063c108d542146102d0578063c489744b146102e3578063d8a5436014610308578063dd62ed3e1461031b578063e58fc54c14610340578063efca2eed1461035f578063f2fde38b14610372578063f9f92be414610391575b61010b6103b0565b005b341561011857600080fd5b610120610499565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561015c578082015183820152602001610144565b50505050905090810190601f1680156101895780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101a257600080fd5b6101b9600160a060020a03600435166024356104d0565b604051901515815260200160405180910390f35b34156101d857600080fd5b6101e061057c565b60405190815260200160405180910390f35b34156101fd57600080fd5b6101b9600160a060020a0360043581169060243516604435610582565b341561022557600080fd5b6101e0610712565b341561023857600080fd5b61010b610717565b341561024b57600080fd5b6101e0610771565b341561025e57600080fd5b61010b600435610777565b341561027457600080fd5b6101e0600160a060020a0360043516610865565b341561029357600080fd5b610120610880565b34156102a657600080fd5b6101b96108b7565b34156102b957600080fd5b6101b9600160a060020a0360043516602435610924565b34156102db57600080fd5b6101b9610a2d565b34156102ee57600080fd5b6101e0600160a060020a0360043581169060243516610a36565b341561031357600080fd5b6101e0610aa7565b341561032657600080fd5b6101e0600160a060020a0360043581169060243516610aad565b341561034b57600080fd5b6101b9600160a060020a0360043516610ad8565b341561036a57600080fd5b6101e0610bdc565b341561037d57600080fd5b61010b600160a060020a0360043516610be2565b341561039c57600080fd5b6101b9600160a060020a0360043516610c39565b600954600090819060ff16156103c557600080fd5b600160a060020a03331660009081526004602052604090205460ff16156103eb57600080fd5b60075460085411156103fe576007546008555b600754600854111561040f57600080fd5b505060085433906104208282610c4e565b50600081111561044e57600160a060020a0382166000908152600460205260409020805460ff191660011790555b60055460065410610467576009805460ff191660011790555b6104926201869f610486620186a0600854610d4f90919063ffffffff16565b9063ffffffff610d6616565b6008555050565b60408051908101604052600e81527f457874726120426f782043617368000000000000000000000000000000000000602082015281565b600081158015906105055750600160a060020a0333811660009081526003602090815260408083209387168352929052205415155b1561051257506000610576565b600160a060020a03338116600081815260036020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60055481565b60006060606436101561059157fe5b600160a060020a03841615156105a657600080fd5b600160a060020a0385166000908152600260205260409020548311156105cb57600080fd5b600160a060020a03808616600090815260036020908152604080832033909416835292905220548311156105fe57600080fd5b600160a060020a038516600090815260026020526040902054610627908463ffffffff610d9116565b600160a060020a038087166000908152600260209081526040808320949094556003815283822033909316825291909152205461066a908463ffffffff610d9116565b600160a060020a03808716600090815260036020908152604080832033851684528252808320949094559187168152600290915220546106b0908463ffffffff610da316565b600160a060020a03808616600081815260026020526040908190209390935591908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b601281565b60015460009033600160a060020a0390811691161461073557600080fd5b50600154600160a060020a0330811631911681156108fc0282604051600060405180830381858888f19350505050151561076e57600080fd5b50565b60085481565b60015460009033600160a060020a0390811691161461079557600080fd5b600160a060020a0333166000908152600260205260409020548211156107ba57600080fd5b5033600160a060020a0381166000908152600260205260409020546107df9083610d91565b600160a060020a03821660009081526002602052604090205560055461080b908363ffffffff610d9116565b600555600654610821908363ffffffff610d9116565b600655600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b600160a060020a031660009081526002602052604090205490565b60408051908101604052600481527f4558414300000000000000000000000000000000000000000000000000000000602082015281565b60015460009033600160a060020a039081169116146108d557600080fd5b60095460ff16156108e557600080fd5b6009805460ff191660011790557f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc60405160405180910390a150600190565b60006040604436101561093357fe5b600160a060020a038416151561094857600080fd5b600160a060020a03331660009081526002602052604090205483111561096d57600080fd5b600160a060020a033316600090815260026020526040902054610996908463ffffffff610d9116565b600160a060020a0333811660009081526002602052604080822093909355908616815220546109cb908463ffffffff610da316565b600160a060020a0380861660008181526002602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a35060019392505050565b60095460ff1681565b60008281600160a060020a0382166370a082318560405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610a8857600080fd5b5af11515610a9557600080fd5b50505060405180519695505050505050565b60075481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b6001546000908190819033600160a060020a03908116911614610afa57600080fd5b83915081600160a060020a03166370a082313060405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610b4b57600080fd5b5af11515610b5857600080fd5b5050506040518051600154909250600160a060020a03808516925063a9059cbb91168360405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610bbe57600080fd5b5af11515610bcb57600080fd5b505050604051805195945050505050565b60065481565b60015433600160a060020a03908116911614610bfd57600080fd5b600160a060020a0381161561076e5760018054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff1990911617905550565b60046020526000908152604090205460ff1681565b60095460009060ff1615610c6157600080fd5b600654610c74908363ffffffff610da316565b600655600754610c8a908363ffffffff610d9116565b600755600160a060020a038316600090815260026020526040902054610cb6908363ffffffff610da316565b600160a060020a0384166000818152600260205260409081902092909255907f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a779084905190815260200160405180910390a2600160a060020a03831660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a3506001610576565b6000808284811515610d5d57fe5b04949350505050565b6000828202831580610d825750828482811515610d7f57fe5b04145b1515610d8a57fe5b9392505050565b600082821115610d9d57fe5b50900390565b600082820183811015610d8a57fe00a165627a7a72305820c3ea02dd2b06a84c4ad1e6e7b9ed5ab0157af3d007fe1275638d688b92441c330029

Swarm Source

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