ETH Price: $2,549.55 (+1.13%)

Token

BitPumps Token (BPT)
 

Overview

Max Total Supply

90,000,000 BPT

Holders

3,877 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$61,785.54

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
49 BPT

Value
$0.03 ( ~1.17668006734753E-05 Eth) [0.0001%]
0x6618a02880a16ba532e4019f52f9d02345d87ff1
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

BPT is BitPumps' native coin (trading coin) aims to be used within BitPumps' ecosystem.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BitPumpsToken

Compiler Version
v0.4.26+commit.4563c3fc

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2020-10-08
*/

pragma solidity ^0.4.18;

contract owned {
    address public owner;

    function owned() public {
        owner = msg.sender;
    }

    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    function transferOwnership(address newOwner) onlyOwner public {
        owner = newOwner;
    }
}

interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; }

contract BitPumpsTokenBase {
    string public constant _myTokeName = 'BitPumps Token';
    string public constant _mySymbol = 'BPT';
    uint public constant _myinitialSupply = 90000000;
    // Public variables of the token
    string public name;
    string public symbol;
    uint256 public decimals = 18;
    uint256 public totalSupply;

    // This creates an array with all balances
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

    // This generates a public event on the blockchain that will notify clients
    event Transfer(address indexed from, address indexed to, uint256 value);

    // This notifies clients about the amount burnt
    event Burn(address indexed from, uint256 value);

    /**
     * Constrctor function
     *
     * Initializes contract with initial supply tokens to the creator of the contract
     */
    function BitPumpsTokenBase() public {
        totalSupply = _myinitialSupply * (10 ** uint256(decimals));
        balanceOf[msg.sender] = totalSupply;                // Give the creator all initial tokens
        name = _myTokeName;                                   // Set the name for display purposes
        symbol = _mySymbol;                               // Set the symbol for display purposes
    }

    /**
     * Internal transfer, only can be called by this contract
     */
    function _transfer(address _from, address _to, uint _value) internal {
        // Prevent transfer to 0x0 address. Use burn() instead
        require(_to != 0x0);
        // Check if the sender has enough
        require(balanceOf[_from] >= _value);
        // Check for overflows
        require(balanceOf[_to] + _value > balanceOf[_to]);
        // Save this for an assertion in the future
        uint previousBalances = balanceOf[_from] + balanceOf[_to];
        // Subtract from the sender
        balanceOf[_from] -= _value;
        // Add the same to the recipient
        balanceOf[_to] += _value;
        Transfer(_from, _to, _value);
        // Asserts are used to use static analysis to find bugs in your code. They should never fail
        assert(balanceOf[_from] + balanceOf[_to] == previousBalances);
    }

    /**
     * Transfer tokens
     *
     * Send `_value` tokens to `_to` from your account
     *
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transfer(address _to, uint256 _value) public {
        _transfer(msg.sender, _to, _value);
    }

    /**
     * Transfer tokens from other address
     *
     * Send `_value` tokens to `_to` in behalf of `_from`
     *
     * @param _from The address of the sender
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        require(_value <= allowance[_from][msg.sender]);     // Check allowance
        allowance[_from][msg.sender] -= _value;
        _transfer(_from, _to, _value);
        return true;
    }

    /**
     * Set allowance for other address
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     */
    function approve(address _spender, uint256 _value) public
        returns (bool success) {
        allowance[msg.sender][_spender] = _value;
        return true;
    }

    /**
     * Set allowance for other address and notify
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     * @param _extraData some extra information to send to the approved contract
     */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData)
        public
        returns (bool success) {
        tokenRecipient spender = tokenRecipient(_spender);
        if (approve(_spender, _value)) {
            spender.receiveApproval(msg.sender, _value, this, _extraData);
            return true;
        }
    }
}


contract BitPumpsToken is owned, BitPumpsTokenBase {


    mapping (address => bool) public frozenAccount;

    /* This generates a public event on the blockchain that will notify clients */
    event FrozenFunds(address target, bool frozen);

    /* Initializes contract with initial supply tokens to the creator of the contract */
    function BitPumpsToken() BitPumpsTokenBase() public {}

    /* Internal transfer, only can be called by this contract */
    function _transfer(address _from, address _to, uint _value) internal {
        require (_to != 0x0);                               // Prevent transfer to 0x0 address. Use burn() instead
        require (balanceOf[_from] >= _value);               // Check if the sender has enough
        require (balanceOf[_to] + _value > balanceOf[_to]); // Check for overflows
        require(!frozenAccount[_from]);                     // Check if sender is frozen
        require(!frozenAccount[_to]);                       // Check if recipient is frozen
        balanceOf[_from] -= _value;                         // Subtract from the sender
        balanceOf[_to] += _value;                           // Add the same to the recipient
        Transfer(_from, _to, _value);
    }

    /// @notice `freeze? Prevent | Allow` `target` from sending & receiving tokens
    /// @param target Address to be frozen
    /// @param freeze either to freeze it or not
    function freezeAccount(address target, bool freeze) onlyOwner public {
        frozenAccount[target] = freeze;
        FrozenFunds(target, freeze);
    }
}

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":"_value","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":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_myTokeName","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_mySymbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_myinitialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","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":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

6080604052601260035534801561001557600080fd5b506000805433600160a060020a031990911681178255600354600a0a63055d4a8002600481905590825260056020908152604092839020919091558151808301909252600e8083527f42697450756d707320546f6b656e00000000000000000000000000000000000092909101918252610091916001916100dc565b506040805180820190915260038082527f425054000000000000000000000000000000000000000000000000000000000060209092019182526100d6916002916100dc565b50610177565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061011d57805160ff191683800117855561014a565b8280016001018555821561014a579182015b8281111561014a57825182559160200191906001019061012f565b5061015692915061015a565b5090565b61017491905b808211156101565760008155600101610160565b90565b610964806101866000396000f3006080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b757806323b872dd146101de578063313ce5671461020857806370a082311461021d5780638a3db05f1461023e5780638da5cb5b1461025357806395d89b4114610284578063a9059cbb14610299578063b414d4b6146102bf578063bc77b919146102e0578063cae9ca51146102f5578063dc9c6e151461035e578063dd62ed3e14610373578063e724529c1461039a578063f2fde38b146103c0575b600080fd5b34801561010157600080fd5b5061010a6103e1565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101a3600160a060020a036004351660243561046e565b604080519115158252519081900360200190f35b3480156101c357600080fd5b506101cc61049b565b60408051918252519081900360200190f35b3480156101ea57600080fd5b506101a3600160a060020a03600435811690602435166044356104a1565b34801561021457600080fd5b506101cc610510565b34801561022957600080fd5b506101cc600160a060020a0360043516610516565b34801561024a57600080fd5b5061010a610528565b34801561025f57600080fd5b5061026861055f565b60408051600160a060020a039092168252519081900360200190f35b34801561029057600080fd5b5061010a61056e565b3480156102a557600080fd5b506102bd600160a060020a03600435166024356105c6565b005b3480156102cb57600080fd5b506101a3600160a060020a03600435166105d5565b3480156102ec57600080fd5b5061010a6105ea565b34801561030157600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101a3948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506106219650505050505050565b34801561036a57600080fd5b506101cc61073a565b34801561037f57600080fd5b506101cc600160a060020a0360043581169060243516610742565b3480156103a657600080fd5b506102bd600160a060020a0360043516602435151561075f565b3480156103cc57600080fd5b506102bd600160a060020a03600435166107da565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104665780601f1061043b57610100808354040283529160200191610466565b820191906000526020600020905b81548152906001019060200180831161044957829003601f168201915b505050505081565b336000908152600660209081526040808320600160a060020a039590951683529390529190912055600190565b60045481565b600160a060020a03831660009081526006602090815260408083203384529091528120548211156104d157600080fd5b600160a060020a0384166000908152600660209081526040808320338452909152902080548390039055610506848484610820565b5060019392505050565b60035481565b60056020526000908152604090205481565b60408051808201909152600e81527f42697450756d707320546f6b656e000000000000000000000000000000000000602082015281565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156104665780601f1061043b57610100808354040283529160200191610466565b6105d1338383610820565b5050565b60076020526000908152604090205460ff1681565b60408051808201909152600381527f4250540000000000000000000000000000000000000000000000000000000000602082015281565b60008361062e818561046e565b15610732576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b838110156106c65781810151838201526020016106ae565b50505050905090810190601f1680156106f35780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561071557600080fd5b505af1158015610729573d6000803e3d6000fd5b50505050600191505b509392505050565b63055d4a8081565b600660209081526000928352604080842090915290825290205481565b600054600160a060020a0316331461077657600080fd5b600160a060020a038216600081815260076020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b600054600160a060020a031633146107f157600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a038216151561083557600080fd5b600160a060020a03831660009081526005602052604090205481111561085a57600080fd5b600160a060020a0382166000908152600560205260409020548181011161088057600080fd5b600160a060020a03831660009081526007602052604090205460ff16156108a657600080fd5b600160a060020a03821660009081526007602052604090205460ff16156108cc57600080fd5b600160a060020a03808416600081815260056020908152604080832080548790039055938616808352918490208054860190558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050505600a165627a7a723058201891a07e73a78cea80be09d5822d6ed27b9902df9c48a1c29458e7b01381a84e0029

Deployed Bytecode

0x6080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b757806323b872dd146101de578063313ce5671461020857806370a082311461021d5780638a3db05f1461023e5780638da5cb5b1461025357806395d89b4114610284578063a9059cbb14610299578063b414d4b6146102bf578063bc77b919146102e0578063cae9ca51146102f5578063dc9c6e151461035e578063dd62ed3e14610373578063e724529c1461039a578063f2fde38b146103c0575b600080fd5b34801561010157600080fd5b5061010a6103e1565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101a3600160a060020a036004351660243561046e565b604080519115158252519081900360200190f35b3480156101c357600080fd5b506101cc61049b565b60408051918252519081900360200190f35b3480156101ea57600080fd5b506101a3600160a060020a03600435811690602435166044356104a1565b34801561021457600080fd5b506101cc610510565b34801561022957600080fd5b506101cc600160a060020a0360043516610516565b34801561024a57600080fd5b5061010a610528565b34801561025f57600080fd5b5061026861055f565b60408051600160a060020a039092168252519081900360200190f35b34801561029057600080fd5b5061010a61056e565b3480156102a557600080fd5b506102bd600160a060020a03600435166024356105c6565b005b3480156102cb57600080fd5b506101a3600160a060020a03600435166105d5565b3480156102ec57600080fd5b5061010a6105ea565b34801561030157600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101a3948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506106219650505050505050565b34801561036a57600080fd5b506101cc61073a565b34801561037f57600080fd5b506101cc600160a060020a0360043581169060243516610742565b3480156103a657600080fd5b506102bd600160a060020a0360043516602435151561075f565b3480156103cc57600080fd5b506102bd600160a060020a03600435166107da565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104665780601f1061043b57610100808354040283529160200191610466565b820191906000526020600020905b81548152906001019060200180831161044957829003601f168201915b505050505081565b336000908152600660209081526040808320600160a060020a039590951683529390529190912055600190565b60045481565b600160a060020a03831660009081526006602090815260408083203384529091528120548211156104d157600080fd5b600160a060020a0384166000908152600660209081526040808320338452909152902080548390039055610506848484610820565b5060019392505050565b60035481565b60056020526000908152604090205481565b60408051808201909152600e81527f42697450756d707320546f6b656e000000000000000000000000000000000000602082015281565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156104665780601f1061043b57610100808354040283529160200191610466565b6105d1338383610820565b5050565b60076020526000908152604090205460ff1681565b60408051808201909152600381527f4250540000000000000000000000000000000000000000000000000000000000602082015281565b60008361062e818561046e565b15610732576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b838110156106c65781810151838201526020016106ae565b50505050905090810190601f1680156106f35780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561071557600080fd5b505af1158015610729573d6000803e3d6000fd5b50505050600191505b509392505050565b63055d4a8081565b600660209081526000928352604080842090915290825290205481565b600054600160a060020a0316331461077657600080fd5b600160a060020a038216600081815260076020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b600054600160a060020a031633146107f157600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a038216151561083557600080fd5b600160a060020a03831660009081526005602052604090205481111561085a57600080fd5b600160a060020a0382166000908152600560205260409020548181011161088057600080fd5b600160a060020a03831660009081526007602052604090205460ff16156108a657600080fd5b600160a060020a03821660009081526007602052604090205460ff16156108cc57600080fd5b600160a060020a03808416600081815260056020908152604080832080548790039055938616808352918490208054860190558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050505600a165627a7a723058201891a07e73a78cea80be09d5822d6ed27b9902df9c48a1c29458e7b01381a84e0029

Deployed Bytecode Sourcemap

4836:1596:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;702:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;702:18: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;702:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3910:171;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3910:171:0;-1:-1:-1;;;;;3910:171:0;;;;;;;;;;;;;;;;;;;;;;;;;789:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;789:26:0;;;;;;;;;;;;;;;;;;;;3345:296;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3345:296:0;-1:-1:-1;;;;;3345:296:0;;;;;;;;;;;;754:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;754:28:0;;;;872:45;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;872:45:0;-1:-1:-1;;;;;872:45:0;;;;;502:53;;8:9:-1;5:2;;;30:1;27;20:12;5:2;502:53:0;;;;50:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50:20:0;;;;;;;;-1:-1:-1;;;;;50:20:0;;;;;;;;;;;;;;727;;8:9:-1;5:2;;;30:1;27;20:12;5:2;727:20:0;;;;2958:107;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2958:107:0;-1:-1:-1;;;;;2958:107:0;;;;;;;;;4898:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4898:46:0;-1:-1:-1;;;;;4898:46:0;;;;;562:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;562:40:0;;;;4480:347;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4480:347:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4480:347:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4480:347:0;;-1:-1:-1;4480:347:0;;-1:-1:-1;;;;;;;4480:347:0;609:48;;8:9:-1;5:2;;;30:1;27;20:12;5:2;609:48:0;;;;924:66;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;924:66:0;-1:-1:-1;;;;;924:66:0;;;;;;;;;;6273:156;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6273:156:0;-1:-1:-1;;;;;6273:156:0;;;;;;;;;234:97;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;234:97:0;-1:-1:-1;;;;;234:97:0;;;;;702:18;;;;;;;;;;;;;;;-1:-1:-1;;702:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3910:171::-;4021:10;3986:12;4011:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;4011:31:0;;;;;;;;;;;;;:40;4069:4;;3910:171::o;789:26::-;;;;:::o;3345:296::-;-1:-1:-1;;;;;3470:16:0;;3427:12;3470:16;;;:9;:16;;;;;;;;3487:10;3470:28;;;;;;;;3460:38;;;3452:47;;;;;;-1:-1:-1;;;;;3533:16:0;;;;;;:9;:16;;;;;;;;3550:10;3533:28;;;;;;;:38;;;;;;;3582:29;3543:5;3599:3;3565:6;3582:9;:29::i;:::-;-1:-1:-1;3629:4:0;3345:296;;;;;:::o;754:28::-;;;;:::o;872:45::-;;;;;;;;;;;;;:::o;502:53::-;;;;;;;;;;;;;;;;;;;:::o;50:20::-;;;-1:-1:-1;;;;;50:20:0;;:::o;727:::-;;;;;;;;;;;;;;-1:-1:-1;;727:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2958:107;3023:34;3033:10;3045:3;3050:6;3023:9;:34::i;:::-;2958:107;;:::o;4898:46::-;;;;;;;;;;;;;;;:::o;562:40::-;;;;;;;;;;;;;;;;;;;:::o;4480:347::-;4590:12;4655:8;4679:25;4655:8;4697:6;4679:7;:25::i;:::-;4675:145;;;4721:61;;;;;4745:10;4721:61;;;;;;;;;;;;4765:4;4721:61;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4721:23:0;;;;;4745:10;4757:6;;4765:4;4771:10;;4721:61;;;;;;;;;;;;;;;;-1:-1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;4721:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4721:61:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;4721:61:0;;;;4804:4;4797:11;;4675:145;4480:347;;;;;;:::o;609:48::-;649:8;609:48;:::o;924:66::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;6273:156::-;200:5;;-1:-1:-1;;;;;200:5:0;186:10;:19;178:28;;;;;;-1:-1:-1;;;;;6353:21:0;;;;;;:13;:21;;;;;;;;;:30;;-1:-1:-1;;6353:30:0;;;;;;;;;;6394:27;;;;;;;;;;;;;;;;;;;;;6273:156;;:::o;234:97::-;200:5;;-1:-1:-1;;;;;200:5:0;186:10;:19;178:28;;;;;;307:5;:16;;-1:-1:-1;;307:16:0;-1:-1:-1;;;;;307:16:0;;;;;;;;;;234:97::o;5310:777::-;-1:-1:-1;;;;;5399:10:0;;;;5390:20;;;;;;-1:-1:-1;;;;;5515:16:0;;;;;;:9;:16;;;;;;:26;-1:-1:-1;5515:26:0;5506:36;;;;;;-1:-1:-1;;;;;5636:14:0;;;;;;:9;:14;;;;;;5610:23;;;:40;5601:50;;;;;;-1:-1:-1;;;;;5694:20:0;;;;;;:13;:20;;;;;;;;5693:21;5685:30;;;;;;-1:-1:-1;;;;;5784:18:0;;;;;;:13;:18;;;;;;;;5783:19;5775:28;;;;;;-1:-1:-1;;;;;5868:16:0;;;;;;;:9;:16;;;;;;;;:26;;;;;;;5957:14;;;;;;;;;;:24;;;;;;6051:28;;;;;;;5957:14;;6051:28;;;;;;;;;;;5310:777;;;:::o

Swarm Source

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