ETH Price: $3,193.06 (+5.25%)

Token

Bitcoin Protocol (BTP)
 

Overview

Max Total Supply

2,100,000,000,000,000,000,000,000,000,000,000,000 BTP

Holders

740

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
1,000,000 BTP

Value
$0.00
0x3d83e749238ef28d361d1260f64c982a29f140a7
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:
BitcoinProtocol

Compiler Version
v0.4.26+commit.4563c3fc

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-02-14
*/

pragma solidity ^0.4.25;

// ----------------------------------------------------------------------------
// 'Bitcoin Protocol'
//
// NAME     : Bitcoin Protocol
// Symbol   : BTP
// 
// Decimals    : 8
//
// (c) Bitcoin Protocol 2020 
// -----------------------------------------------------------------------------

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

    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;
    }

    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 c) {
        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);
}

contract BitcoinProtocol is ERC20 {
    
    using SafeMath for uint256;
    address owner = msg.sender;

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

    string public constant name = "Bitcoin Protocol";
    string public constant symbol = "BTP";
    uint public constant decimals = 8;
    uint public deadline = now + 350 * 1 days;
    uint public round2 = now + 350 * 1 days;
    uint public round1 = now + 300 * 1 days;
    
    uint256 public totalSupply = 2100000000000000000000000000000000000e8;
    uint256 public totalDistributed;
    uint256 public constant requestMinimum = 1 ether / 1000; // 0.001 Ether
    uint256 public tokensPerEth = 1000000000e8;
    
    uint public target0drop = 5000000000;
    uint public progress0drop = 0;
    
    address multisig = 0xd0615037BBE05e45B75f26858D9CbA76E4D969B2;


    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 Airdrop(address indexed _owner, uint _amount, uint _balance);

    event TokensPerEthUpdated(uint _tokensPerEth);
    
    event Burn(address indexed burner, uint256 value);
    
    event Add(uint256 value);

    bool public distributionFinished = false;
    
    modifier canDistr() {
        require(!distributionFinished);
        _;
    }
    
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
    
    constructor() public {
        uint256 teamFund = 0e8;
        owner = msg.sender;
        distr(owner, teamFund);
    }
    
    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);        
        balances[_to] = balances[_to].add(_amount);
        emit Distr(_to, _amount);
        emit Transfer(address(0), _to, _amount);

        return true;
    }
    
    function Distribute(address _participant, uint _amount) onlyOwner internal {

        require( _amount > 0 );      
        require( totalDistributed < totalSupply );
        balances[_participant] = balances[_participant].add(_amount);
        totalDistributed = totalDistributed.add(_amount);

        if (totalDistributed >= totalSupply) {
            distributionFinished = true;
        }
        
        emit Airdrop(_participant, _amount, balances[_participant]);
        emit Transfer(address(0), _participant, _amount);
    }
    
    function DistributeAirdrop(address _participant, uint _amount) onlyOwner external {        
        Distribute(_participant, _amount);
    }

    function DistributeAirdropMultiple(address[] _addresses, uint _amount) onlyOwner external {        
        for (uint i = 0; i < _addresses.length; i++) Distribute(_addresses[i], _amount);
    }

    function updateTokensPerEth(uint _tokensPerEth) public onlyOwner {        
        tokensPerEth = _tokensPerEth;
        emit TokensPerEthUpdated(_tokensPerEth);
    }
           
    function () external payable {
        getTokens();
     }

    function getTokens() payable canDistr  public {
        uint256 tokens = 0;
        uint256 bonus = 0;
        uint256 countbonus = 0;
        uint256 bonusCond1 = 1 ether / 2;
        uint256 bonusCond2 = 1 ether;
        uint256 bonusCond3 = 3 ether;

        tokens = tokensPerEth.mul(msg.value) / 1 ether;        
        address investor = msg.sender;

        if (msg.value >= requestMinimum && now < deadline && now < round1 && now < round2) {
            if(msg.value >= bonusCond1 && msg.value < bonusCond2){
                countbonus = tokens * 10 / 100;
            }else if(msg.value >= bonusCond2 && msg.value < bonusCond3){
                countbonus = tokens * 50 / 100;
            }else if(msg.value >= bonusCond3){
                countbonus = tokens * 75 / 100;
            }
        }else if(msg.value >= requestMinimum && now < deadline && now > round1 && now < round2){
            if(msg.value >= bonusCond2 && msg.value < bonusCond3){
                countbonus = tokens * 25 / 100;
            }else if(msg.value >= bonusCond3){
                countbonus = tokens * 50 / 100;
            }
        }else{
            countbonus = 0;
        }

        bonus = tokens + countbonus;
        
        if (tokens == 0) {
            uint256 valdrop = 1000000e8;
            if (Claimed[investor] == false && progress0drop <= target0drop ) {
                distr(investor, valdrop);
                Claimed[investor] = true;
                progress0drop++;
            }else{
                require( msg.value >= requestMinimum );
            }
        }else if(tokens > 0 && msg.value >= requestMinimum){
            if( now >= deadline && now >= round1 && now < round2){
                distr(investor, tokens);
            }else{
                if(msg.value >= bonusCond1){
                    distr(investor, bonus);
                }else{
                    distr(investor, tokens);
                }   
            }
        }else{
            require( msg.value >= requestMinimum );
        }

        if (totalDistributed >= totalSupply) {
            distributionFinished = true;
        }
        
        multisig.transfer(msg.value);
    }
    
    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 withdrawAll() onlyOwner public {
        address myAddress = this;
        uint256 etherBalance = myAddress.balance;
        owner.transfer(etherBalance);
    }

    function withdraw(uint256 _wdamount) onlyOwner public {
        uint256 wantAmount = _wdamount;
        owner.transfer(wantAmount);
    }

    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 add(uint256 _value) onlyOwner public {
        uint256 counter = totalSupply.add(_value);
        totalSupply = counter; 
        emit Add(_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":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"add","outputs":[],"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":"deadline","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_wdamount","type":"uint256"}],"name":"withdraw","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":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"round2","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"requestMinimum","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_participant","type":"address"},{"name":"_amount","type":"uint256"}],"name":"DistributeAirdrop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"round1","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"progress0drop","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdrawAll","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":"finishDistribution","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokensPerEth","type":"uint256"}],"name":"updateTokensPerEth","outputs":[],"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":"","type":"address"}],"name":"Claimed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":"tokensPerEth","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":"target0drop","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":false,"inputs":[{"name":"_addresses","type":"address[]"},{"name":"_amount","type":"uint256"}],"name":"DistributeAirdropMultiple","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"_owner","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"},{"indexed":false,"name":"_balance","type":"uint256"}],"name":"Airdrop","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_tokensPerEth","type":"uint256"}],"name":"TokensPerEthUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"value","type":"uint256"}],"name":"Add","type":"event"}]

60806040526001805433600160a060020a031991821617909155426301cd6d008101600581905560065563018b82000160075572096aae88c021c7aa8afeee68bd08000000000060085567016345785d8a0000600a5564012a05f200600b556000600c55600d805473d0615037bbe05e45b75f26858d9cba76e4d969b292169190911760a060020a60ff02191690553480156200009b57600080fd5b5060018054600160a060020a031916331790819055600090620000d190600160a060020a031682640100000000620000d9810204565b505062000208565b600d5460009074010000000000000000000000000000000000000000900460ff16156200010557600080fd5b60095462000122908364010000000062001331620001f482021704565b600955600160a060020a03831660009081526002602052604090205462000158908364010000000062001331620001f482021704565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b818101828110156200020257fe5b92915050565b6114dd80620002186000396000f30060806040526004361061018a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610194578063095ea7b31461021e5780631003e2d21461025657806318160ddd1461026e57806323b872dd1461029557806329dcb0cf146102bf5780632e1a7d4d146102d4578063313ce567146102ec57806342966c6814610301578063532b581c1461031957806370a082311461032e57806374ff23241461034f5780637809231c14610364578063836e81801461038857806383afd6da1461039d578063853828b6146103b257806395d89b41146103c75780639b1cbccc146103dc5780639ea407be146103f1578063a9059cbb14610409578063aa6ca8081461018a578063b449c24d1461042d578063c108d5421461044e578063c489744b14610463578063cbdd69b51461048a578063dd62ed3e1461049f578063e58fc54c146104c6578063e6a092f5146104e7578063efca2eed146104fc578063f2fde38b14610511578063f3ccb40114610532575b610192610556565b005b3480156101a057600080fd5b506101a9610864565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e35781810151838201526020016101cb565b50505050905090810190601f1680156102105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022a57600080fd5b50610242600160a060020a036004351660243561089b565b604080519115158252519081900360200190f35b34801561026257600080fd5b50610192600435610943565b34801561027a57600080fd5b506102836109b0565b60408051918252519081900360200190f35b3480156102a157600080fd5b50610242600160a060020a03600435811690602435166044356109b6565b3480156102cb57600080fd5b50610283610b29565b3480156102e057600080fd5b50610192600435610b2f565b3480156102f857600080fd5b50610283610b89565b34801561030d57600080fd5b50610192600435610b8e565b34801561032557600080fd5b50610283610c6d565b34801561033a57600080fd5b50610283600160a060020a0360043516610c73565b34801561035b57600080fd5b50610283610c8e565b34801561037057600080fd5b50610192600160a060020a0360043516602435610c99565b34801561039457600080fd5b50610283610cbe565b3480156103a957600080fd5b50610283610cc4565b3480156103be57600080fd5b50610192610cca565b3480156103d357600080fd5b506101a9610d27565b3480156103e857600080fd5b50610242610d5e565b3480156103fd57600080fd5b50610192600435610de2565b34801561041557600080fd5b50610242600160a060020a0360043516602435610e34565b34801561043957600080fd5b50610242600160a060020a0360043516610f13565b34801561045a57600080fd5b50610242610f28565b34801561046f57600080fd5b50610283600160a060020a0360043581169060243516610f38565b34801561049657600080fd5b50610283610fe9565b3480156104ab57600080fd5b50610283600160a060020a0360043581169060243516610fef565b3480156104d257600080fd5b50610242600160a060020a036004351661101a565b3480156104f357600080fd5b5061028361116e565b34801561050857600080fd5b50610283611174565b34801561051d57600080fd5b50610192600160a060020a036004351661117a565b34801561053e57600080fd5b506101926024600480358281019291013590356111cc565b600080600080600080600080600d60149054906101000a900460ff1615151561057e57600080fd5b600a54600098508897508796506706f05b59d3b200009550670de0b6b3a764000094506729a2241af62c0000935084906105be903463ffffffff61122516565b8115156105c757fe5b04975033915066038d7ea4c6800034101580156105e5575060055442105b80156105f2575060075442105b80156105ff575060065442105b1561065d5784341015801561061357508334105b15610627576064600a89025b049550610658565b83341015801561063657508234105b156106465760646032890261061f565b348311610658576064604b89025b0495505b6106ca565b66038d7ea4c680003410158015610675575060055442105b8015610682575060075442115b801561068f575060065442105b156106c5578334101580156106a357508234105b156106b35760646019890261061f565b34831161065857606460328902610654565b600095505b87860196508715156107695750600160a060020a038116600090815260046020526040902054655af3107a40009060ff1615801561070c5750600b54600c5411155b156107505761071b828261124e565b50600160a060020a0382166000908152600460205260409020805460ff19166001908117909155600c80549091019055610764565b66038d7ea4c6800034101561076457600080fd5b6107f0565b600088118015610780575066038d7ea4c680003410155b156107dc57600554421015801561079957506007544210155b80156107a6575060065442105b156107bb576107b5828961124e565b50610764565b3485116107cc576107b5828861124e565b6107d6828961124e565b506107f0565b66038d7ea4c680003410156107f057600080fd5b6008546009541061082057600d805474ff0000000000000000000000000000000000000000191660a060020a1790555b600d54604051600160a060020a03909116903480156108fc02916000818181858888f19350505050158015610859573d6000803e3d6000fd5b505050505050505050565b60408051808201909152601081527f426974636f696e2050726f746f636f6c00000000000000000000000000000000602082015281565b600081158015906108ce5750336000908152600360209081526040808320600160a060020a038716845290915290205415155b156108db5750600061093d565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b600154600090600160a060020a0316331461095d57600080fd5b600854610970908363ffffffff61133116565b60088190556040805184815290519192507f90f1f758f0e2b40929b1fd48df7ebe10afc272a362e1f0d63a90b8b4715d799f919081900360200190a15050565b60085481565b6000606060643610156109c557fe5b600160a060020a03841615156109da57600080fd5b600160a060020a0385166000908152600260205260409020548311156109ff57600080fd5b600160a060020a0385166000908152600360209081526040808320338452909152902054831115610a2f57600080fd5b600160a060020a038516600090815260026020526040902054610a58908463ffffffff61133e16565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610a95908463ffffffff61133e16565b600160a060020a038087166000908152600360209081526040808320338452825280832094909455918716815260029091522054610ad9908463ffffffff61133116565b600160a060020a03808616600081815260026020908152604091829020949094558051878152905191939289169260008051602061149283398151915292918290030190a3506001949350505050565b60055481565b600154600090600160a060020a03163314610b4957600080fd5b506001546040518291600160a060020a03169082156108fc029083906000818181858888f19350505050158015610b84573d6000803e3d6000fd5b505050565b600881565b600154600090600160a060020a03163314610ba857600080fd5b33600090815260026020526040902054821115610bc457600080fd5b5033600081815260026020526040902054610be5908363ffffffff61133e16565b600160a060020a038216600090815260026020526040902055600854610c11908363ffffffff61133e16565b600855600954610c27908363ffffffff61133e16565b600955604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b60065481565b600160a060020a031660009081526002602052604090205490565b66038d7ea4c6800081565b600154600160a060020a03163314610cb057600080fd5b610cba8282611350565b5050565b60075481565b600c5481565b6001546000908190600160a060020a03163314610ce657600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f19350505050158015610b84573d6000803e3d6000fd5b60408051808201909152600381527f4254500000000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610d7857600080fd5b600d5460a060020a900460ff1615610d8f57600080fd5b600d805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600154600160a060020a03163314610df957600080fd5b600a8190556040805182815290517ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0039181900360200190a150565b600060406044361015610e4357fe5b600160a060020a0384161515610e5857600080fd5b33600090815260026020526040902054831115610e7457600080fd5b33600090815260026020526040902054610e94908463ffffffff61133e16565b3360009081526002602052604080822092909255600160a060020a03861681522054610ec6908463ffffffff61133116565b600160a060020a0385166000818152600260209081526040918290209390935580518681529051919233926000805160206114928339815191529281900390910190a35060019392505050565b60046020526000908152604090205460ff1681565b600d5460a060020a900460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610fb457600080fd5b505af1158015610fc8573d6000803e3d6000fd5b505050506040513d6020811015610fde57600080fd5b505195945050505050565b600a5481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60015460009081908190600160a060020a0316331461103857600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561109c57600080fd5b505af11580156110b0573d6000803e3d6000fd5b505050506040513d60208110156110c657600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b15801561113a57600080fd5b505af115801561114e573d6000803e3d6000fd5b505050506040513d602081101561116457600080fd5b5051949350505050565b600b5481565b60095481565b600154600160a060020a0316331461119157600080fd5b600160a060020a038116156111c9576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b600154600090600160a060020a031633146111e657600080fd5b5060005b8281101561121f5761121784848381811061120157fe5b90506020020135600160a060020a031683611350565b6001016111ea565b50505050565b60008215156112365750600061093d565b5081810281838281151561124657fe5b041461093d57fe5b600d5460009060a060020a900460ff161561126857600080fd5b60095461127b908363ffffffff61133116565b600955600160a060020a0383166000908152600260205260409020546112a7908363ffffffff61133116565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000916000805160206114928339815191529181900360200190a350600192915050565b8181018281101561093d57fe5b60008282111561134a57fe5b50900390565b600154600160a060020a0316331461136757600080fd5b6000811161137457600080fd5b6008546009541061138457600080fd5b600160a060020a0382166000908152600260205260409020546113ad908263ffffffff61133116565b600160a060020a0383166000908152600260205260409020556009546113d9908263ffffffff61133116565b60098190556008541161140b57600d805474ff0000000000000000000000000000000000000000191660a060020a1790555b600160a060020a0382166000818152600260209081526040918290205482518581529182015281517fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272929181900390910190a2604080518281529051600160a060020a038416916000916000805160206114928339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058209242a6f3ef2e99b1594d3d2ab613bb117465a8bad67e716962e9fc87d8da30540029

Deployed Bytecode

0x60806040526004361061018a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610194578063095ea7b31461021e5780631003e2d21461025657806318160ddd1461026e57806323b872dd1461029557806329dcb0cf146102bf5780632e1a7d4d146102d4578063313ce567146102ec57806342966c6814610301578063532b581c1461031957806370a082311461032e57806374ff23241461034f5780637809231c14610364578063836e81801461038857806383afd6da1461039d578063853828b6146103b257806395d89b41146103c75780639b1cbccc146103dc5780639ea407be146103f1578063a9059cbb14610409578063aa6ca8081461018a578063b449c24d1461042d578063c108d5421461044e578063c489744b14610463578063cbdd69b51461048a578063dd62ed3e1461049f578063e58fc54c146104c6578063e6a092f5146104e7578063efca2eed146104fc578063f2fde38b14610511578063f3ccb40114610532575b610192610556565b005b3480156101a057600080fd5b506101a9610864565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e35781810151838201526020016101cb565b50505050905090810190601f1680156102105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022a57600080fd5b50610242600160a060020a036004351660243561089b565b604080519115158252519081900360200190f35b34801561026257600080fd5b50610192600435610943565b34801561027a57600080fd5b506102836109b0565b60408051918252519081900360200190f35b3480156102a157600080fd5b50610242600160a060020a03600435811690602435166044356109b6565b3480156102cb57600080fd5b50610283610b29565b3480156102e057600080fd5b50610192600435610b2f565b3480156102f857600080fd5b50610283610b89565b34801561030d57600080fd5b50610192600435610b8e565b34801561032557600080fd5b50610283610c6d565b34801561033a57600080fd5b50610283600160a060020a0360043516610c73565b34801561035b57600080fd5b50610283610c8e565b34801561037057600080fd5b50610192600160a060020a0360043516602435610c99565b34801561039457600080fd5b50610283610cbe565b3480156103a957600080fd5b50610283610cc4565b3480156103be57600080fd5b50610192610cca565b3480156103d357600080fd5b506101a9610d27565b3480156103e857600080fd5b50610242610d5e565b3480156103fd57600080fd5b50610192600435610de2565b34801561041557600080fd5b50610242600160a060020a0360043516602435610e34565b34801561043957600080fd5b50610242600160a060020a0360043516610f13565b34801561045a57600080fd5b50610242610f28565b34801561046f57600080fd5b50610283600160a060020a0360043581169060243516610f38565b34801561049657600080fd5b50610283610fe9565b3480156104ab57600080fd5b50610283600160a060020a0360043581169060243516610fef565b3480156104d257600080fd5b50610242600160a060020a036004351661101a565b3480156104f357600080fd5b5061028361116e565b34801561050857600080fd5b50610283611174565b34801561051d57600080fd5b50610192600160a060020a036004351661117a565b34801561053e57600080fd5b506101926024600480358281019291013590356111cc565b600080600080600080600080600d60149054906101000a900460ff1615151561057e57600080fd5b600a54600098508897508796506706f05b59d3b200009550670de0b6b3a764000094506729a2241af62c0000935084906105be903463ffffffff61122516565b8115156105c757fe5b04975033915066038d7ea4c6800034101580156105e5575060055442105b80156105f2575060075442105b80156105ff575060065442105b1561065d5784341015801561061357508334105b15610627576064600a89025b049550610658565b83341015801561063657508234105b156106465760646032890261061f565b348311610658576064604b89025b0495505b6106ca565b66038d7ea4c680003410158015610675575060055442105b8015610682575060075442115b801561068f575060065442105b156106c5578334101580156106a357508234105b156106b35760646019890261061f565b34831161065857606460328902610654565b600095505b87860196508715156107695750600160a060020a038116600090815260046020526040902054655af3107a40009060ff1615801561070c5750600b54600c5411155b156107505761071b828261124e565b50600160a060020a0382166000908152600460205260409020805460ff19166001908117909155600c80549091019055610764565b66038d7ea4c6800034101561076457600080fd5b6107f0565b600088118015610780575066038d7ea4c680003410155b156107dc57600554421015801561079957506007544210155b80156107a6575060065442105b156107bb576107b5828961124e565b50610764565b3485116107cc576107b5828861124e565b6107d6828961124e565b506107f0565b66038d7ea4c680003410156107f057600080fd5b6008546009541061082057600d805474ff0000000000000000000000000000000000000000191660a060020a1790555b600d54604051600160a060020a03909116903480156108fc02916000818181858888f19350505050158015610859573d6000803e3d6000fd5b505050505050505050565b60408051808201909152601081527f426974636f696e2050726f746f636f6c00000000000000000000000000000000602082015281565b600081158015906108ce5750336000908152600360209081526040808320600160a060020a038716845290915290205415155b156108db5750600061093d565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b600154600090600160a060020a0316331461095d57600080fd5b600854610970908363ffffffff61133116565b60088190556040805184815290519192507f90f1f758f0e2b40929b1fd48df7ebe10afc272a362e1f0d63a90b8b4715d799f919081900360200190a15050565b60085481565b6000606060643610156109c557fe5b600160a060020a03841615156109da57600080fd5b600160a060020a0385166000908152600260205260409020548311156109ff57600080fd5b600160a060020a0385166000908152600360209081526040808320338452909152902054831115610a2f57600080fd5b600160a060020a038516600090815260026020526040902054610a58908463ffffffff61133e16565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610a95908463ffffffff61133e16565b600160a060020a038087166000908152600360209081526040808320338452825280832094909455918716815260029091522054610ad9908463ffffffff61133116565b600160a060020a03808616600081815260026020908152604091829020949094558051878152905191939289169260008051602061149283398151915292918290030190a3506001949350505050565b60055481565b600154600090600160a060020a03163314610b4957600080fd5b506001546040518291600160a060020a03169082156108fc029083906000818181858888f19350505050158015610b84573d6000803e3d6000fd5b505050565b600881565b600154600090600160a060020a03163314610ba857600080fd5b33600090815260026020526040902054821115610bc457600080fd5b5033600081815260026020526040902054610be5908363ffffffff61133e16565b600160a060020a038216600090815260026020526040902055600854610c11908363ffffffff61133e16565b600855600954610c27908363ffffffff61133e16565b600955604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b60065481565b600160a060020a031660009081526002602052604090205490565b66038d7ea4c6800081565b600154600160a060020a03163314610cb057600080fd5b610cba8282611350565b5050565b60075481565b600c5481565b6001546000908190600160a060020a03163314610ce657600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f19350505050158015610b84573d6000803e3d6000fd5b60408051808201909152600381527f4254500000000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610d7857600080fd5b600d5460a060020a900460ff1615610d8f57600080fd5b600d805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600154600160a060020a03163314610df957600080fd5b600a8190556040805182815290517ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0039181900360200190a150565b600060406044361015610e4357fe5b600160a060020a0384161515610e5857600080fd5b33600090815260026020526040902054831115610e7457600080fd5b33600090815260026020526040902054610e94908463ffffffff61133e16565b3360009081526002602052604080822092909255600160a060020a03861681522054610ec6908463ffffffff61133116565b600160a060020a0385166000818152600260209081526040918290209390935580518681529051919233926000805160206114928339815191529281900390910190a35060019392505050565b60046020526000908152604090205460ff1681565b600d5460a060020a900460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610fb457600080fd5b505af1158015610fc8573d6000803e3d6000fd5b505050506040513d6020811015610fde57600080fd5b505195945050505050565b600a5481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60015460009081908190600160a060020a0316331461103857600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561109c57600080fd5b505af11580156110b0573d6000803e3d6000fd5b505050506040513d60208110156110c657600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b15801561113a57600080fd5b505af115801561114e573d6000803e3d6000fd5b505050506040513d602081101561116457600080fd5b5051949350505050565b600b5481565b60095481565b600154600160a060020a0316331461119157600080fd5b600160a060020a038116156111c9576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b600154600090600160a060020a031633146111e657600080fd5b5060005b8281101561121f5761121784848381811061120157fe5b90506020020135600160a060020a031683611350565b6001016111ea565b50505050565b60008215156112365750600061093d565b5081810281838281151561124657fe5b041461093d57fe5b600d5460009060a060020a900460ff161561126857600080fd5b60095461127b908363ffffffff61133116565b600955600160a060020a0383166000908152600260205260409020546112a7908363ffffffff61133116565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000916000805160206114928339815191529181900360200190a350600192915050565b8181018281101561093d57fe5b60008282111561134a57fe5b50900390565b600154600160a060020a0316331461136757600080fd5b6000811161137457600080fd5b6008546009541061138457600080fd5b600160a060020a0382166000908152600260205260409020546113ad908263ffffffff61133116565b600160a060020a0383166000908152600260205260409020556009546113d9908263ffffffff61133116565b60098190556008541161140b57600d805474ff0000000000000000000000000000000000000000191660a060020a1790555b600160a060020a0382166000818152600260209081526040918290205482518581529182015281517fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272929181900390910190a2604080518281529051600160a060020a038416916000916000805160206114928339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058209242a6f3ef2e99b1594d3d2ab613bb117465a8bad67e716962e9fc87d8da30540029

Deployed Bytecode Sourcemap

1991:8919:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5625:11;:9;:11::i;:::-;1991:8919;2264:48;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2264:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2264:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9098:296;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9098:296:0;-1:-1:-1;;;;;9098:296:0;;;;;;;;;;;;;;;;;;;;;;;;;10463:166;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10463:166:0;;;;;2549:68;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2549:68:0;;;;;;;;;;;;;;;;;;;;8549:537;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8549:537:0;-1:-1:-1;;;;;8549:537:0;;;;;;;;;;;;2403:41;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2403:41:0;;;;9960:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9960:140:0;;;;;2363:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2363:33:0;;;;10108:343;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10108:343:0;;;;;2451:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2451:39:0;;;;7902:111;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7902:111:0;-1:-1:-1;;;;;7902:111:0;;;;;2662:55;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2662:55:0;;;;5042:142;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5042:142:0;-1:-1:-1;;;;;5042:142:0;;;;;;;2497:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2497:39:0;;;;2837:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2837:29:0;;;;9779:173;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9779:173:0;;;;2319:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2319:37:0;;;;3974:170;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3974:170:0;;;;5396;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5396:170:0;;;;;8135:402;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8135:402:0;-1:-1:-1;;;;;8135:402:0;;;;;;;2214:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2214:40:0;-1:-1:-1;;;;;2214:40:0;;;;;3441;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3441:40:0;;;;9556:211;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9556:211:0;-1:-1:-1;;;;;9556:211:0;;;;;;;;;;2739:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2739:42:0;;;;9406:138;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9406:138:0;-1:-1:-1;;;;;9406:138:0;;;;;;;;;;10647:260;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10647:260:0;-1:-1:-1;;;;;10647:260:0;;;;;2794:36;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2794:36:0;;;;2624:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2624:31:0;;;;3815:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3815:151:0;-1:-1:-1;;;;;3815:151:0;;;;;5192:196;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5192:196:0;;;;;;;;;;;;;;;;5653:2237;5710:14;5739:13;5767:18;5800;5843;5882;5988:16;6941:15;3534:20;;;;;;;;;;;3533:21;3525:30;;;;;;;;5932:12;;5727:1;;-1:-1:-1;5727:1:0;;-1:-1:-1;5727:1:0;;-1:-1:-1;5821:11:0;;-1:-1:-1;5864:7:0;;-1:-1:-1;5903:7:0;;-1:-1:-1;5864:7:0;;5932:27;;5949:9;5932:27;:16;:27;:::i;:::-;:37;;;;;;;;5923:46;;6007:10;5988:29;;2703:14;6034:9;:27;;:45;;;;;6071:8;;6065:3;:14;6034:45;:61;;;;;6089:6;;6083:3;:12;6034:61;:77;;;;;6105:6;;6099:3;:12;6034:77;6030:819;;;6144:10;6131:9;:23;;:49;;;;;6170:10;6158:9;:22;6131:49;6128:338;;;6227:3;6222:2;6213:11;;:17;;6200:30;;6128:338;;;6267:10;6254:9;:23;;:49;;;;;6293:10;6281:9;:22;6254:49;6251:215;;;6350:3;6345:2;6336:11;;:17;;6251:215;6377:9;:23;-1:-1:-1;6374:92:0;;6447:3;6442:2;6433:11;;:17;;6420:30;;6374:92;6030:819;;;2703:14;6485:9;:27;;:45;;;;;6522:8;;6516:3;:14;6485:45;:61;;;;;6540:6;;6534:3;:12;6485:61;:77;;;;;6556:6;;6550:3;:12;6485:77;6482:367;;;6594:10;6581:9;:23;;:49;;;;;6620:10;6608:9;:22;6581:49;6578:215;;;6677:3;6672:2;6663:11;;:17;;6578:215;6704:9;:23;-1:-1:-1;6701:92:0;;6774:3;6769:2;6760:11;;:17;;6482:367;6836:1;6823:14;;6482:367;6869:19;;;;-1:-1:-1;6913:11:0;;6909:822;;;-1:-1:-1;;;;;;6987:17:0;;;;;;:7;:17;;;;;;6959:9;;6987:17;;:26;;;:58;;;7034:11;;7017:13;;:28;;6987:58;6983:278;;;7067:24;7073:8;7083:7;7067:5;:24::i;:::-;-1:-1:-1;;;;;;7110:17:0;;;;;;:7;:17;;;;;:24;;-1:-1:-1;;7110:24:0;7130:4;7110:24;;;;;;7153:13;:15;;;;;;;6983:278;;;2703:14;7216:9;:27;;7207:38;;;;;;6909:822;;;7289:1;7280:6;:10;:41;;;;;2703:14;7294:9;:27;;7280:41;7277:454;;;7348:8;;7341:3;:15;;:32;;;;;7367:6;;7360:3;:13;;7341:32;:48;;;;;7383:6;;7377:3;:12;7341:48;7337:314;;;7409:23;7415:8;7425:6;7409:5;:23::i;:::-;;7337:314;;;7474:9;:23;-1:-1:-1;7471:162:0;;7521:22;7527:8;7537:5;7521;:22::i;7471:162::-;7590:23;7596:8;7606:6;7590:5;:23::i;:::-;;7277:454;;;2703:14;7690:9;:27;;7681:38;;;;;;7767:11;;7747:16;;:31;7743:91;;7795:20;:27;;-1:-1:-1;;7795:27:0;-1:-1:-1;;;7795:27:0;;;7743:91;7854:8;;:28;;-1:-1:-1;;;;;7854:8:0;;;;7872:9;7854:28;;;;;:8;:28;:8;:28;7872:9;7854:8;:28;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;7854:28:0;5653:2237;;;;;;;;:::o;2264:48::-;;;;;;;;;;;;;;;;;;;:::o;9098:296::-;9165:12;9194:11;;;;;:49;;-1:-1:-1;9217:10:0;9209:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9209:29:0;;;;;;;;;;:34;;9194:49;9190:72;;;-1:-1:-1;9254:5:0;9247:12;;9190:72;9280:10;9272:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9272:29:0;;;;;;;;;;;;:38;;;9326;;;;;;;9272:29;;9280:10;9326:38;;;;;;;;;;;-1:-1:-1;9382:4:0;9098:296;;;;;:::o;10463:166::-;3641:5;;10520:15;;-1:-1:-1;;;;;3641:5:0;3627:10;:19;3619:28;;;;;;10538:11;;:23;;10554:6;10538:23;:15;:23;:::i;:::-;10572:11;:21;;;10610:11;;;;;;;;10520:41;;-1:-1:-1;10610:11:0;;;;;;;;;;10463:166;;:::o;2549:68::-;;;;:::o;8549:537::-;8656:12;8632:6;8094:8;8075;:27;;8068:35;;;;-1:-1:-1;;;;;8691:17:0;;;;8683:26;;;;;;-1:-1:-1;;;;;8739:15:0;;;;;;:8;:15;;;;;;8728:26;;;8720:35;;;;;;-1:-1:-1;;;;;8785:14:0;;;;;;:7;:14;;;;;;;;8800:10;8785:26;;;;;;;;8774:37;;;8766:46;;;;;;-1:-1:-1;;;;;8851:15:0;;;;;;:8;:15;;;;;;:28;;8871:7;8851:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;8833:15:0;;;;;;:8;:15;;;;;;;;:46;;;;8919:7;:14;;;;;8934:10;8919:26;;;;;;:39;;8950:7;8919:39;:30;:39;:::i;:::-;-1:-1:-1;;;;;8890:14:0;;;;;;;:7;:14;;;;;;;;8905:10;8890:26;;;;;;;:68;;;;8985:13;;;;;:8;:13;;;;;:26;;9003:7;8985:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;8969:13:0;;;;;;;:8;:13;;;;;;;;;:42;;;;9027:29;;;;;;;8969:13;;9027:29;;;;-1:-1:-1;;;;;;;;;;;9027:29:0;;;;;;;;-1:-1:-1;9074:4:0;;8549:537;-1:-1:-1;;;;8549:537:0:o;2403:41::-;;;;:::o;9960:140::-;3641:5;;10025:18;;-1:-1:-1;;;;;3641:5:0;3627:10;:19;3619:28;;;;;;-1:-1:-1;10066:5:0;;:26;;10046:9;;-1:-1:-1;;;;;10066:5:0;;:26;;;;;10046:9;;10066:5;:26;:5;:26;10046:9;10066:5;:26;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10066:26:0;9960:140;;:::o;2363:33::-;2395:1;2363:33;:::o;10108:343::-;3641:5;;10216:14;;-1:-1:-1;;;;;3641:5:0;3627:10;:19;3619:28;;;;;;10193:10;10184:20;;;;:8;:20;;;;;;10174:30;;;10166:39;;;;;;-1:-1:-1;10233:10:0;10273:16;;;;:8;:16;;;;;;:28;;10294:6;10273:28;:20;:28;:::i;:::-;-1:-1:-1;;;;;10254:16:0;;;;;;:8;:16;;;;;:47;10326:11;;:23;;10342:6;10326:23;:15;:23;:::i;:::-;10312:11;:37;10379:16;;:28;;10400:6;10379:28;:20;:28;:::i;:::-;10360:16;:47;10423:20;;;;;;;;-1:-1:-1;;;;;10423:20:0;;;;;;;;;;;;;10108:343;;:::o;2451:39::-;;;;:::o;7902:111::-;-1:-1:-1;;;;;7989:16:0;7962:7;7989:16;;;:8;:16;;;;;;;7902:111::o;2662:55::-;2703:14;2662:55;:::o;5042:142::-;3641:5;;-1:-1:-1;;;;;3641:5:0;3627:10;:19;3619:28;;;;;;5143:33;5154:12;5168:7;5143:10;:33::i;:::-;5042:142;;:::o;2497:39::-;;;;:::o;2837:29::-;;;;:::o;9779:173::-;3641:5;;9830:17;;;;-1:-1:-1;;;;;3641:5:0;3627:10;:19;3619:28;;;;;;-1:-1:-1;;9916:5:0;;:28;;9850:4;;9888:17;;;-1:-1:-1;;;;;9916:5:0;;;;:28;;;;;9888:17;;9916:5;:28;:5;:28;9888:17;9916:5;:28;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;2319:37:0;;;;;;;;;;;;;;;;;;;:::o;3974:170::-;3641:5;;4039:4;;-1:-1:-1;;;;;3641:5:0;3627:10;:19;3619:28;;;;;;3534:20;;-1:-1:-1;;;3534:20:0;;;;3533:21;3525:30;;;;;;4056:20;:27;;-1:-1:-1;;4056:27:0;-1:-1:-1;;;4056:27:0;;;4099:15;;;;4056:27;;4099:15;-1:-1:-1;4132:4:0;3974:170;:::o;5396:::-;3641:5;;-1:-1:-1;;;;;3641:5:0;3627:10;:19;3619:28;;;;;;5480:12;:28;;;5524:34;;;;;;;;;;;;;;;;;5396:170;:::o;8135:402::-;8223:12;8199:6;8094:8;8075;:27;;8068:35;;;;-1:-1:-1;;;;;8258:17:0;;;;8250:26;;;;;;8315:10;8306:20;;;;:8;:20;;;;;;8295:31;;;8287:40;;;;;;8380:10;8371:20;;;;:8;:20;;;;;;:33;;8396:7;8371:33;:24;:33;:::i;:::-;8357:10;8348:20;;;;:8;:20;;;;;;:56;;;;-1:-1:-1;;;;;8431:13:0;;;;;;:26;;8449:7;8431:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;8415:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;8473:34;;;;;;;8415:13;;8482:10;;-1:-1:-1;;;;;;;;;;;8473:34:0;;;;;;;;;-1:-1:-1;8525:4:0;;8135:402;-1:-1:-1;;;8135:402:0:o;2214:40::-;;;;;;;;;;;;;;;:::o;3441:::-;;;-1:-1:-1;;;3441:40:0;;;;;:::o;9556:211::-;9641:4;9657:14;9711:8;9687:12;9657:43;;9722:1;-1:-1:-1;;;;;9722:11:0;;9734:3;9722:16;;;;;;;;;;;;;-1:-1:-1;;;;;9722:16:0;-1:-1:-1;;;;;9722:16:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9722:16:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;9722:16:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9722:16:0;;9556:211;-1:-1:-1;;;;;9556:211:0:o;2739:42::-;;;;:::o;9406:138::-;-1:-1:-1;;;;;9511:15:0;;;9484:7;9511:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;9406:138::o;10647:260::-;3641:5;;10728:4;;;;;;-1:-1:-1;;;;;3641:5:0;3627:10;:19;3619:28;;;;;;10822:30;;;;;;10846:4;10822:30;;;;;;10779:14;;-1:-1:-1;;;;;;10822:15:0;;;;;:30;;;;;;;;;;;;;;-1:-1:-1;10822:15:0;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;10822:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10822:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10822:30:0;10885:5;;10870:29;;;;;;-1:-1:-1;;;;;10885:5:0;;;10870:29;;;;;;;;;;;;10822:30;;-1:-1:-1;10870:14:0;;;;;;:29;;;;;10822:30;;10870:29;;;;;;;;10885:5;10870:14;:29;;;5:2:-1;;;;30:1;27;20:12;5:2;10870:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10870:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10870:29:0;;10647:260;-1:-1:-1;;;;10647:260:0:o;2794:36::-;;;;:::o;2624:31::-;;;;:::o;3815:151::-;3641:5;;-1:-1:-1;;;;;3641:5:0;3627:10;:19;3619:28;;;;;;-1:-1:-1;;;;;3892:22:0;;;3888:71;;3931:5;:16;;-1:-1:-1;;3931:16:0;-1:-1:-1;;;;;3931:16:0;;;;;3888:71;3815:151;:::o;5192:196::-;3641:5;;5306:6;;-1:-1:-1;;;;;3641:5:0;3627:10;:19;3619:28;;;;;;-1:-1:-1;5315:1:0;5301:79;5318:21;;;5301:79;;;5346:34;5357:10;;5368:1;5357:13;;;;;;;;;;;;;-1:-1:-1;;;;;5357:13:0;5372:7;5346:10;:34::i;:::-;5341:3;;5301:79;;;5192:196;;;;:::o;355:202::-;413:9;439:6;;435:47;;;-1:-1:-1;469:1:0;462:8;;435:47;-1:-1:-1;496:5:0;;;500:1;496;:5;519;;;;;;;;:10;512:18;;;4156:314;3534:20;;4227:4;;-1:-1:-1;;;3534:20:0;;;;3533:21;3525:30;;;;;;4263:16;;:29;;4284:7;4263:29;:20;:29;:::i;:::-;4244:16;:48;-1:-1:-1;;;;;4327:13:0;;;;;;:8;:13;;;;;;:26;;4345:7;4327:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;4311:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;4369:19;;;;;;;4311:13;;4369:19;;;;;;;;;4404:34;;;;;;;;-1:-1:-1;;;;;4404:34:0;;;4421:1;;-1:-1:-1;;;;;;;;;;;4404:34:0;;;;;;;;-1:-1:-1;4458:4:0;4156:314;;;;:::o;999:141::-;1083:5;;;1106:6;;;;1099:14;;;868:123;926:7;953:6;;;;946:14;;;;-1:-1:-1;978:5:0;;;868:123::o;4482:548::-;3641:5;;-1:-1:-1;;;;;3641:5:0;3627:10;:19;3619:28;;;;;;4589:1;4579:11;;4570:22;;;;;;4637:11;;4618:16;;:30;4609:41;;;;;;-1:-1:-1;;;;;4686:22:0;;;;;;:8;:22;;;;;;:35;;4713:7;4686:35;:26;:35;:::i;:::-;-1:-1:-1;;;;;4661:22:0;;;;;;:8;:22;;;;;:60;4751:16;;:29;;4772:7;4751:29;:20;:29;:::i;:::-;4732:16;:48;;;4817:11;;-1:-1:-1;4793:91:0;;4845:20;:27;;-1:-1:-1;;4845:27:0;-1:-1:-1;;;4845:27:0;;;4793:91;-1:-1:-1;;;;;4909:54:0;;4940:22;;;;:8;:22;;;;;;;;;;4909:54;;;;;;;;;;;;;;;;;;;;;;4979:43;;;;;;;;-1:-1:-1;;;;;4979:43:0;;;4996:1;;-1:-1:-1;;;;;;;;;;;4979:43:0;;;;;;;;4482:548;;:::o

Swarm Source

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