ETH Price: $3,470.78 (+2.26%)
Gas: 11 Gwei

Token

OpenEye (OEYE)
 

Overview

Max Total Supply

1,000,000 OEYE

Holders

8

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
149,613.374399995 OEYE

Value
$0.00
0x0b92152ffe0caa9b70b0bc079a435ffac1b41fdf
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:
ERC20

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2023-02-06
*/

/**

👁‍🗨 Welcome to OpenEye $OEYE 👁‍🗨

OpenEye is an AI-powered crypto token tracker, leveraging the Ethereum blockchain to provide detailed analytics and deep insights into token holders and transactions


Website: http://www.openeyetoken.com

Telegram: https://t.me/OpenEyeETH

Medium: http://medium.com/@OpenEyeETH
*/

// SPDX-License-Identifier: unlicense

pragma solidity =0.8.17;

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

}
interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
 
contract ERC20 {
    string public constant name = "OpenEye";  //
    string public constant symbol = "OEYE";  //
    uint8 public constant decimals = 9;
    uint256 public constant totalSupply = 1_000_000 * 10**decimals;

    uint256 constant buyTax = 4;
    uint256 constant sellTax = 13;
    uint256 constant swapAmount = totalSupply / 100;

    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;
    
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );

    address immutable pair;
    address constant ETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
    address constant routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    IUniswapV2Router02 constant _uniswapV2Router = IUniswapV2Router02(routerAddress);
    address payable constant deployer = payable(address(0x9276096166952aE9518460bC3cAdb65BBe5D19f0)); // 

    bool private swapping;

    constructor() {
        pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), ETH);
        balanceOf[msg.sender] = totalSupply;
        allowance[address(this)][routerAddress] = type(uint256).max;
        emit Transfer(address(0), msg.sender, totalSupply);
    }

    receive() external payable {}

    function approve(address spender, uint256 amount) external returns (bool){
        allowance[msg.sender][spender] = amount;
        emit Approval(msg.sender, spender, amount);
        return true;
    }

    function transfer(address to, uint256 amount) external returns (bool){
        return _transfer(msg.sender, to, amount);
    }

    function transferFrom(address from, address to, uint256 amount) external returns (bool){
        allowance[from][msg.sender] -= amount;        
        return _transfer(from, to, amount);
    }

    function _transfer(address from, address to, uint256 amount) internal returns (bool){
        balanceOf[from] -= amount;

        if (to == pair && !swapping && balanceOf[address(this)] >= swapAmount){
            swapping = true;
            address[] memory path = new  address[](2);
            path[0] = address(this);
            path[1] = ETH;
            _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
                swapAmount,
                0,
                path,
                address(this),
                block.timestamp
            );
            deployer.transfer(address(this).balance);
            swapping = false;
        }

        if(from != address(this)){
            uint256 taxAmount = amount * (from == pair ? buyTax : sellTax) / 100;
            amount -= taxAmount;
            balanceOf[address(this)] += taxAmount;
        }
        balanceOf[to] += amount;
        emit Transfer(from, to, amount);
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"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":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","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":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b50737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000065573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200008b9190620001d2565b6040516364e329cb60e11b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc260248201526001600160a01b03919091169063c9c65396906044016020604051808303816000875af1158015620000ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001149190620001d2565b6001600160a01b03166080526200012e6009600a62000319565b6200013d90620f42406200032a565b336000818152602081815260408083209490945530825260018152838220737a250d5630b4cf539739df2c5dacb4c659f2488d835290529182206000199055907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620001ac6009600a62000319565b620001bb90620f42406200032a565b60405190815260200160405180910390a362000344565b600060208284031215620001e557600080fd5b81516001600160a01b0381168114620001fd57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200025b5781600019048211156200023f576200023f62000204565b808516156200024d57918102915b93841c93908002906200021f565b509250929050565b600082620002745750600162000313565b81620002835750600062000313565b81600181146200029c5760028114620002a757620002c7565b600191505062000313565b60ff841115620002bb57620002bb62000204565b50506001821b62000313565b5060208310610133831016604e8410600b8410161715620002ec575081810a62000313565b620002f883836200021a565b80600019048211156200030f576200030f62000204565b0290505b92915050565b6000620001fd60ff84168362000263565b808202811582820484141762000313576200031362000204565b6080516109c3620003676000396000818161034c015261056e01526109c36000f3fe60806040526004361061008a5760003560e01c8063313ce56711610059578063313ce5671461015257806370a082311461017957806395d89b41146101a6578063a9059cbb146101d6578063dd62ed3e146101f657600080fd5b806306fdde0314610096578063095ea7b3146100df57806318160ddd1461010f57806323b872dd1461013257600080fd5b3661009157005b600080fd5b3480156100a257600080fd5b506100c9604051806040016040528060078152602001664f70656e45796560c81b81525081565b6040516100d69190610680565b60405180910390f35b3480156100eb57600080fd5b506100ff6100fa3660046106ea565b61022e565b60405190151581526020016100d6565b34801561011b57600080fd5b5061012461029b565b6040519081526020016100d6565b34801561013e57600080fd5b506100ff61014d366004610714565b6102b7565b34801561015e57600080fd5b50610167600981565b60405160ff90911681526020016100d6565b34801561018557600080fd5b50610124610194366004610750565b60006020819052908152604090205481565b3480156101b257600080fd5b506100c9604051806040016040528060048152602001634f45594560e01b81525081565b3480156101e257600080fd5b506100ff6101f13660046106ea565b610305565b34801561020257600080fd5b5061012461021136600461076b565b600160209081526000928352604080842090915290825290205481565b3360008181526001602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906102899086815260200190565b60405180910390a35060015b92915050565b6102a76009600a610898565b6102b490620f42406108a7565b81565b6001600160a01b03831660009081526001602090815260408083203384529091528120805483919083906102ec9084906108be565b909155506102fd9050848484610319565b949350505050565b6000610312338484610319565b9392505050565b6001600160a01b0383166000908152602081905260408120805483919083906103439084906108be565b925050819055507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561038e575060025460ff16155b80156103cd575060646103a36009600a610898565b6103b090620f42406108a7565b6103ba91906108d1565b3060009081526020819052604090205410155b15610558576002805460ff191660011781556040805182815260608101825260009290916020830190803683370190505090503081600081518110610414576104146108f3565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28160018151811061045c5761045c6108f3565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63791ac947606461049c6009600a610898565b6104a990620f42406108a7565b6104b391906108d1565b60008430426040518663ffffffff1660e01b81526004016104d8959493929190610909565b600060405180830381600087803b1580156104f257600080fd5b505af1158015610506573d6000803e3d6000fd5b5050604051739276096166952ae9518460bc3cadb65bbe5d19f092504780156108fc029250906000818181858888f1935050505015801561054b573d6000803e3d6000fd5b50506002805460ff191690555b6001600160a01b03841630146105fa57600060647f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b0316146105ac57600d6105af565b60045b6105b990856108a7565b6105c391906108d1565b90506105cf81846108be565b306000908152602081905260408120805492955083929091906105f390849061097a565b9091555050505b6001600160a01b0383166000908152602081905260408120805484929061062290849061097a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161066e91815260200190565b60405180910390a35060019392505050565b600060208083528351808285015260005b818110156106ad57858101830151858201604001528201610691565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146106e557600080fd5b919050565b600080604083850312156106fd57600080fd5b610706836106ce565b946020939093013593505050565b60008060006060848603121561072957600080fd5b610732846106ce565b9250610740602085016106ce565b9150604084013590509250925092565b60006020828403121561076257600080fd5b610312826106ce565b6000806040838503121561077e57600080fd5b610787836106ce565b9150610795602084016106ce565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156107ef5781600019048211156107d5576107d561079e565b808516156107e257918102915b93841c93908002906107b9565b509250929050565b60008261080657506001610295565b8161081357506000610295565b816001811461082957600281146108335761084f565b6001915050610295565b60ff8411156108445761084461079e565b50506001821b610295565b5060208310610133831016604e8410600b8410161715610872575081810a610295565b61087c83836107b4565b80600019048211156108905761089061079e565b029392505050565b600061031260ff8416836107f7565b80820281158282048414176102955761029561079e565b818103818111156102955761029561079e565b6000826108ee57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156109595784516001600160a01b031683529383019391830191600101610934565b50506001600160a01b03969096166060850152505050608001529392505050565b808201808211156102955761029561079e56fea2646970667358221220c1ac46e314cd571548e6c0c5bfed6c0fb5e8bb23521aca208fc97a9bc6fc029364736f6c63430008110033

Deployed Bytecode

0x60806040526004361061008a5760003560e01c8063313ce56711610059578063313ce5671461015257806370a082311461017957806395d89b41146101a6578063a9059cbb146101d6578063dd62ed3e146101f657600080fd5b806306fdde0314610096578063095ea7b3146100df57806318160ddd1461010f57806323b872dd1461013257600080fd5b3661009157005b600080fd5b3480156100a257600080fd5b506100c9604051806040016040528060078152602001664f70656e45796560c81b81525081565b6040516100d69190610680565b60405180910390f35b3480156100eb57600080fd5b506100ff6100fa3660046106ea565b61022e565b60405190151581526020016100d6565b34801561011b57600080fd5b5061012461029b565b6040519081526020016100d6565b34801561013e57600080fd5b506100ff61014d366004610714565b6102b7565b34801561015e57600080fd5b50610167600981565b60405160ff90911681526020016100d6565b34801561018557600080fd5b50610124610194366004610750565b60006020819052908152604090205481565b3480156101b257600080fd5b506100c9604051806040016040528060048152602001634f45594560e01b81525081565b3480156101e257600080fd5b506100ff6101f13660046106ea565b610305565b34801561020257600080fd5b5061012461021136600461076b565b600160209081526000928352604080842090915290825290205481565b3360008181526001602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906102899086815260200190565b60405180910390a35060015b92915050565b6102a76009600a610898565b6102b490620f42406108a7565b81565b6001600160a01b03831660009081526001602090815260408083203384529091528120805483919083906102ec9084906108be565b909155506102fd9050848484610319565b949350505050565b6000610312338484610319565b9392505050565b6001600160a01b0383166000908152602081905260408120805483919083906103439084906108be565b925050819055507f0000000000000000000000004eb447eb3e1a5f0c6ff1d38075621c4fb3b62bf06001600160a01b0316836001600160a01b031614801561038e575060025460ff16155b80156103cd575060646103a36009600a610898565b6103b090620f42406108a7565b6103ba91906108d1565b3060009081526020819052604090205410155b15610558576002805460ff191660011781556040805182815260608101825260009290916020830190803683370190505090503081600081518110610414576104146108f3565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28160018151811061045c5761045c6108f3565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63791ac947606461049c6009600a610898565b6104a990620f42406108a7565b6104b391906108d1565b60008430426040518663ffffffff1660e01b81526004016104d8959493929190610909565b600060405180830381600087803b1580156104f257600080fd5b505af1158015610506573d6000803e3d6000fd5b5050604051739276096166952ae9518460bc3cadb65bbe5d19f092504780156108fc029250906000818181858888f1935050505015801561054b573d6000803e3d6000fd5b50506002805460ff191690555b6001600160a01b03841630146105fa57600060647f0000000000000000000000004eb447eb3e1a5f0c6ff1d38075621c4fb3b62bf06001600160a01b0316866001600160a01b0316146105ac57600d6105af565b60045b6105b990856108a7565b6105c391906108d1565b90506105cf81846108be565b306000908152602081905260408120805492955083929091906105f390849061097a565b9091555050505b6001600160a01b0383166000908152602081905260408120805484929061062290849061097a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161066e91815260200190565b60405180910390a35060019392505050565b600060208083528351808285015260005b818110156106ad57858101830151858201604001528201610691565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146106e557600080fd5b919050565b600080604083850312156106fd57600080fd5b610706836106ce565b946020939093013593505050565b60008060006060848603121561072957600080fd5b610732846106ce565b9250610740602085016106ce565b9150604084013590509250925092565b60006020828403121561076257600080fd5b610312826106ce565b6000806040838503121561077e57600080fd5b610787836106ce565b9150610795602084016106ce565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156107ef5781600019048211156107d5576107d561079e565b808516156107e257918102915b93841c93908002906107b9565b509250929050565b60008261080657506001610295565b8161081357506000610295565b816001811461082957600281146108335761084f565b6001915050610295565b60ff8411156108445761084461079e565b50506001821b610295565b5060208310610133831016604e8410600b8410161715610872575081810a610295565b61087c83836107b4565b80600019048211156108905761089061079e565b029392505050565b600061031260ff8416836107f7565b80820281158282048414176102955761029561079e565b818103818111156102955761029561079e565b6000826108ee57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156109595784516001600160a01b031683529383019391830191600101610934565b50506001600160a01b03969096166060850152505050608001529392505050565b808201808211156102955761029561079e56fea2646970667358221220c1ac46e314cd571548e6c0c5bfed6c0fb5e8bb23521aca208fc97a9bc6fc029364736f6c63430008110033

Deployed Bytecode Sourcemap

927:3017:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;949:39;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;949:39:0;;;;;;;;;;;;:::i;:::-;;;;;;;;2376:206;;;;;;;;;;-1:-1:-1;2376:206:0;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;2376:206:0;1004:187:1;1089:62:0;;;;;;;;;;;;;:::i;:::-;;;1342:25:1;;;1330:2;1315:18;1089:62:0;1196:177:1;2726:196:0;;;;;;;;;;-1:-1:-1;2726:196:0;;;;;:::i;:::-;;:::i;1048:34::-;;;;;;;;;;;;1081:1;1048:34;;;;;1883:4:1;1871:17;;;1853:36;;1841:2;1826:18;1048:34:0;1711:184:1;1286:45:0;;;;;;;;;;-1:-1:-1;1286:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;999:38;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;999:38:0;;;;;2590:128;;;;;;;;;;-1:-1:-1;2590:128:0;;;;;:::i;:::-;;:::i;1338:66::-;;;;;;;;;;-1:-1:-1;1338:66:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;2376:206;2470:10;2444:4;2460:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;2460:30:0;;;;;;;;;;:39;;;2515:37;2444:4;;2460:30;;2515:37;;;;2493:6;1342:25:1;;1330:2;1315:18;;1196:177;2515:37:0;;;;;;;;-1:-1:-1;2570:4:0;2376:206;;;;;:::o;1089:62::-;1139:12;1081:1;1139:2;:12;:::i;:::-;1127:24;;:9;:24;:::i;:::-;1089:62;:::o;2726:196::-;-1:-1:-1;;;;;2824:15:0;;2808:4;2824:15;;;:9;:15;;;;;;;;2840:10;2824:27;;;;;;;:37;;2855:6;;2824:27;2808:4;;2824:37;;2855:6;;2824:37;:::i;:::-;;;;-1:-1:-1;2887:27:0;;-1:-1:-1;2897:4:0;2903:2;2907:6;2887:9;:27::i;:::-;2880:34;2726:196;-1:-1:-1;;;;2726:196:0:o;2590:128::-;2654:4;2677:33;2687:10;2699:2;2703:6;2677:9;:33::i;:::-;2670:40;2590:128;-1:-1:-1;;;2590:128:0:o;2930:1011::-;-1:-1:-1;;;;;3025:15:0;;3009:4;3025:15;;;;;;;;;;:25;;3044:6;;3025:15;3009:4;;3025:25;;3044:6;;3025:25;:::i;:::-;;;;;;;;3073:4;-1:-1:-1;;;;;3067:10:0;:2;-1:-1:-1;;;;;3067:10:0;;:23;;;;-1:-1:-1;3082:8:0;;;;3081:9;3067:23;:65;;;;-1:-1:-1;1274:3:0;1139:12;1081:1;1139:2;:12;:::i;:::-;1127:24;;:9;:24;:::i;:::-;1260:17;;;;:::i;:::-;3112:4;3094:9;:24;;;;;;;;;;;:38;;3067:65;3063:555;;;3148:8;:15;;-1:-1:-1;;3148:15:0;3159:4;3148:15;;;3202:17;;;;;;;;;;;-1:-1:-1;;3202:17:0;;;;;;;;;;;;-1:-1:-1;3202:17:0;3178:41;;3252:4;3234;3239:1;3234:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;3234:23:0;;;-1:-1:-1;;;;;3234:23:0;;;;;1667:42;3272:4;3277:1;3272:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;3272:13:0;;;:7;;;;;;;;;;;:13;1749:42;3300:67;1274:3;1139:12;1081:1;1139:2;:12;:::i;:::-;1127:24;;:9;:24;:::i;:::-;1260:17;;;;:::i;:::-;3415:1;3435:4;3466;3490:15;3300:220;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3535:40:0;;1937:42;;-1:-1:-1;3553:21:0;3535:40;;;;;-1:-1:-1;3553:21:0;3535:40;;;;3553:21;1937:42;3535:40;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3590:8:0;:16;;-1:-1:-1;;3590:16:0;;;3063:555;-1:-1:-1;;;;;3633:21:0;;3649:4;3633:21;3630:206;;3670:17;3735:3;3708:4;-1:-1:-1;;;;;3700:12:0;:4;-1:-1:-1;;;;;3700:12:0;;:31;;1221:2;3700:31;;;1186:1;3700:31;3690:42;;:6;:42;:::i;:::-;:48;;;;:::i;:::-;3670:68;-1:-1:-1;3753:19:0;3670:68;3753:19;;:::i;:::-;3805:4;3787:9;:24;;;;;;;;;;:37;;3753:19;;-1:-1:-1;3815:9:0;;3787:24;;:9;:37;;3815:9;;3787:37;:::i;:::-;;;;-1:-1:-1;;;3630:206:0;-1:-1:-1;;;;;3846:13:0;;:9;:13;;;;;;;;;;:23;;3863:6;;3846:9;:23;;3863:6;;3846:23;:::i;:::-;;;;;;;;3900:2;-1:-1:-1;;;;;3885:26:0;3894:4;-1:-1:-1;;;;;3885:26:0;;3904:6;3885:26;;;;1342:25:1;;1330:2;1315:18;;1196:177;3885:26:0;;;;;;;;-1:-1:-1;3929:4:0;2930:1011;;;;;:::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;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;2091:260::-;2159:6;2167;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;;2307:38;2341:2;2330:9;2326:18;2307:38;:::i;:::-;2297:48;;2091:260;;;;;:::o;2356:127::-;2417:10;2412:3;2408:20;2405:1;2398:31;2448:4;2445:1;2438:15;2472:4;2469:1;2462:15;2488:422;2577:1;2620:5;2577:1;2634:270;2655:7;2645:8;2642:21;2634:270;;;2714:4;2710:1;2706:6;2702:17;2696:4;2693:27;2690:53;;;2723:18;;:::i;:::-;2773:7;2763:8;2759:22;2756:55;;;2793:16;;;;2756:55;2872:22;;;;2832:15;;;;2634:270;;;2638:3;2488:422;;;;;:::o;2915:806::-;2964:5;2994:8;2984:80;;-1:-1:-1;3035:1:1;3049:5;;2984:80;3083:4;3073:76;;-1:-1:-1;3120:1:1;3134:5;;3073:76;3165:4;3183:1;3178:59;;;;3251:1;3246:130;;;;3158:218;;3178:59;3208:1;3199:10;;3222:5;;;3246:130;3283:3;3273:8;3270:17;3267:43;;;3290:18;;:::i;:::-;-1:-1:-1;;3346:1:1;3332:16;;3361:5;;3158:218;;3460:2;3450:8;3447:16;3441:3;3435:4;3432:13;3428:36;3422:2;3412:8;3409:16;3404:2;3398:4;3395:12;3391:35;3388:77;3385:159;;;-1:-1:-1;3497:19:1;;;3529:5;;3385:159;3576:34;3601:8;3595:4;3576:34;:::i;:::-;3646:6;3642:1;3638:6;3634:19;3625:7;3622:32;3619:58;;;3657:18;;:::i;:::-;3695:20;;2915:806;-1:-1:-1;;;2915:806:1:o;3726:140::-;3784:5;3813:47;3854:4;3844:8;3840:19;3834:4;3813:47;:::i;3871:168::-;3944:9;;;3975;;3992:15;;;3986:22;;3972:37;3962:71;;4013:18;;:::i;4044:128::-;4111:9;;;4132:11;;;4129:37;;;4146:18;;:::i;4177:217::-;4217:1;4243;4233:132;;4287:10;4282:3;4278:20;4275:1;4268:31;4322:4;4319:1;4312:15;4350:4;4347:1;4340:15;4233:132;-1:-1:-1;4379:9:1;;4177:217::o;4531:127::-;4592:10;4587:3;4583:20;4580:1;4573:31;4623:4;4620:1;4613:15;4647:4;4644:1;4637:15;4663:980;4925:4;4973:3;4962:9;4958:19;5004:6;4993:9;4986:25;5030:2;5068:6;5063:2;5052:9;5048:18;5041:34;5111:3;5106:2;5095:9;5091:18;5084:31;5135:6;5170;5164:13;5201:6;5193;5186:22;5239:3;5228:9;5224:19;5217:26;;5278:2;5270:6;5266:15;5252:29;;5299:1;5309:195;5323:6;5320:1;5317:13;5309:195;;;5388:13;;-1:-1:-1;;;;;5384:39:1;5372:52;;5479:15;;;;5444:12;;;;5420:1;5338:9;5309:195;;;-1:-1:-1;;;;;;;5560:32:1;;;;5555:2;5540:18;;5533:60;-1:-1:-1;;;5624:3:1;5609:19;5602:35;5521:3;4663:980;-1:-1:-1;;;4663:980:1:o;5648:125::-;5713:9;;;5734:10;;;5731:36;;;5747:18;;:::i

Swarm Source

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