ETH Price: $3,417.58 (-0.66%)
Gas: 9 Gwei

Token

GN ($GN)
 

Overview

Max Total Supply

420,690,000 $GN

Holders

299

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,141,633.452327636729688437 $GN

Value
$0.00
0xe90654c658a5aa2901c26a7a17ca8847bbe825d6
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:
GN

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 20000 runs

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

/**


    █▀▀ █▄░█
    █▄█ █░▀█
 
    Telegram: https://t.me/goodnighterc
    Twitter: https://twitter.com/goodnighterc
    Website: http://www.goodnighterc.com/



**/
// SPDX-License-Identifier: Unlicensed

pragma solidity 0.8.18;

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

interface IERC20 {
    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount)
        external
        returns (bool);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
}

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

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function factory() external pure returns (address);

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

contract GN is Context, IERC20, Ownable {
    uint256 private constant _totalSupply = 420_690_000e18;
    uint256 private constant onePercent = 4_206_900e18;
    uint256 private constant minSwap = 250_000e18;
    uint8 private constant _decimals = 18;

    IUniswapV2Router02 immutable uniswapV2Router;
    address immutable uniswapV2Pair;
    address immutable WETH;
    address payable immutable marketingWallet;

    uint256 public buyTax;
    uint256 public sellTax;

    uint8 private launch;
    uint8 private inSwapAndLiquify;

    uint256 private launchBlock;
    uint256 public maxTxAmount = onePercent; //max Tx for first mins after launch

    string private constant _name = "GN";
    string private constant _symbol = "$GN";

    mapping(address => uint256) private _balance;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isExcludedFromFeeWallet;

    constructor() {
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        WETH = uniswapV2Router.WETH();
        buyTax = 20;
        sellTax = 30;

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            WETH
        );

        marketingWallet = payable(0x2EC07f13838C03D2697B4e9Df1811e4f57bBF774);
        _balance[msg.sender] = _totalSupply;
        _isExcludedFromFeeWallet[marketingWallet] = true;
        _isExcludedFromFeeWallet[msg.sender] = true;
        _isExcludedFromFeeWallet[address(this)] = true;
        _allowances[address(this)][address(uniswapV2Router)] = type(uint256)
            .max;
        _allowances[msg.sender][address(uniswapV2Router)] = type(uint256).max;
        _allowances[marketingWallet][address(uniswapV2Router)] = type(uint256)
            .max;

        emit Transfer(address(0), _msgSender(), _totalSupply);
    }

    function name() public pure returns (string memory) {
        return _name;
    }

    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    function decimals() public pure returns (uint8) {
        return _decimals;
    }

    function totalSupply() public pure override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balance[account];
    }

    function transfer(address recipient, uint256 amount)
        public
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        view
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()] - amount
        );
        return true;
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function openTrading() external onlyOwner {
        launch = 1;
        launchBlock = block.number;
    }

    function addExcludedWallet(address wallet) external onlyOwner {
        _isExcludedFromFeeWallet[wallet] = true;
    }

    function removeLimits() external onlyOwner {
        maxTxAmount = _totalSupply;
    }

    function changeTax(uint256 newBuyTax, uint256 newSellTax) external onlyOwner {
        buyTax = newBuyTax;
        sellTax = newSellTax;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(amount > 1e9, "Min transfer amt");

        uint256 _tax;
        if (_isExcludedFromFeeWallet[from] || _isExcludedFromFeeWallet[to]) {
            _tax = 0;
        } else {
            require(
                launch != 0 && amount <= maxTxAmount,
                "Launch / Max TxAmount 1% at launch"
            );

            if (inSwapAndLiquify == 1) {
                //No tax transfer
                _balance[from] -= amount;
                _balance[to] += amount;

                emit Transfer(from, to, amount);
                return;
            }

            if (from == uniswapV2Pair) {
                _tax = buyTax;
            } else if (to == uniswapV2Pair) {
                uint256 tokensToSwap = _balance[address(this)];
                if (tokensToSwap > minSwap && inSwapAndLiquify == 0) {
                    if (tokensToSwap > onePercent) {
                        tokensToSwap = onePercent;
                    }
                    inSwapAndLiquify = 1;
                    address[] memory path = new address[](2);
                    path[0] = address(this);
                    path[1] = WETH;
                    uniswapV2Router
                        .swapExactTokensForETHSupportingFeeOnTransferTokens(
                            tokensToSwap,
                            0,
                            path,
                            marketingWallet,
                            block.timestamp
                        );
                    inSwapAndLiquify = 0;
                }
                _tax = sellTax;
            } else {
                _tax = 0;
            }
        }

        //Is there tax for sender|receiver?
        if (_tax != 0) {
            //Tax transfer
            uint256 taxTokens = (amount * _tax) / 100;
            uint256 transferAmount = amount - taxTokens;

            _balance[from] -= amount;
            _balance[to] += transferAmount;
            _balance[address(this)] += taxTokens;
            emit Transfer(from, address(this), taxTokens);
            emit Transfer(from, to, transferAmount);
        } else {
            //No tax transfer
            _balance[from] -= amount;
            _balance[to] += amount;

            emit Transfer(from, to, amount);
        }
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"wallet","type":"address"}],"name":"addExcludedWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyTax","type":"uint256"},{"internalType":"uint256","name":"newSellTax","type":"uint256"}],"name":"changeTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6101006040526a037ad881875888245000006006553480156200002157600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d6080819052604080516315ab88c960e31b8152905163ad5c4648916004808201926020929091908290030181865afa158015620000b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000df919062000330565b6001600160a01b0390811660c0526014600255601e6003556080516040805163c45a015560e01b81529051919092169163c45a01559160048083019260209291908290030181865afa1580156200013a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000160919062000330565b60c0516040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001b2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d8919062000330565b6001600160a01b0390811660a052732ec07f13838c03d2697b4e9df1811e4f57bbf77460e0523360008181526007602090815260408083206b015bfc9298de952e2f4000009055600982527f835556bd247f73b054e7eeb4f7081604f49c9f9391695e6b3dd91330ad01283b8054600160ff19918216811790925582852080548216831790553085528285208054909116909117905560088083528184206080519096168085529583528184206000199081905594845282528083209483529381528382208390557f0c97933c9cf8b56eb36c03b7a2ef94e4c580f1a906778d758b2d80b6897b9b9c90529190912055620002d03390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6b015bfc9298de952e2f4000006040516200032291815260200190565b60405180910390a362000362565b6000602082840312156200034357600080fd5b81516001600160a01b03811681146200035b57600080fd5b9392505050565b60805160a05160c05160e05161169d620003a3600039600061101101526000610f5e015260008181610dbd0152610e1901526000610fdb015261169d6000f3fe6080604052600436106101485760003560e01c80638c0b5e22116100c0578063c9567bf911610074578063dba9d42011610059578063dba9d420146103c2578063dd62ed3e146103e2578063f2fde38b1461043557600080fd5b8063c9567bf914610397578063cc1776d3146103ac57600080fd5b80639036ed4d116100a55780639036ed4d1461031157806395d89b4114610331578063a9059cbb1461037757600080fd5b80638c0b5e22146102c65780638da5cb5b146102dc57600080fd5b8063313ce5671161011757806370a08231116100fc57806370a0823114610257578063715018a61461029a578063751039fc146102b157600080fd5b8063313ce567146102255780634f7041a51461024157600080fd5b806306fdde0314610154578063095ea7b3146101ac57806318160ddd146101dc57806323b872dd1461020557600080fd5b3661014f57005b600080fd5b34801561016057600080fd5b5060408051808201909152600281527f474e00000000000000000000000000000000000000000000000000000000000060208201525b6040516101a39190611394565b60405180910390f35b3480156101b857600080fd5b506101cc6101c7366004611429565b610455565b60405190151581526020016101a3565b3480156101e857600080fd5b506b015bfc9298de952e2f4000005b6040519081526020016101a3565b34801561021157600080fd5b506101cc610220366004611453565b61046c565b34801561023157600080fd5b50604051601281526020016101a3565b34801561024d57600080fd5b506101f760025481565b34801561026357600080fd5b506101f761027236600461148f565b73ffffffffffffffffffffffffffffffffffffffff1660009081526007602052604090205490565b3480156102a657600080fd5b506102af6104cb565b005b3480156102bd57600080fd5b506102af6105c0565b3480156102d257600080fd5b506101f760065481565b3480156102e857600080fd5b5060005460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101a3565b34801561031d57600080fd5b506102af61032c3660046114b1565b610653565b34801561033d57600080fd5b5060408051808201909152600381527f24474e00000000000000000000000000000000000000000000000000000000006020820152610196565b34801561038357600080fd5b506101cc610392366004611429565b6106df565b3480156103a357600080fd5b506102af6106ec565b3480156103b857600080fd5b506101f760035481565b3480156103ce57600080fd5b506102af6103dd36600461148f565b61079e565b3480156103ee57600080fd5b506101f76103fd3660046114d3565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260086020908152604080832093909416825291909152205490565b34801561044157600080fd5b506102af61045036600461148f565b61086e565b60006104623384846108fb565b5060015b92915050565b6000610479848484610aae565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600860209081526040808320338085529252909120546104c19186916104bc908690611535565b6108fb565b5060019392505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610548565b6b015bfc9298de952e2f400000600655565b60005473ffffffffffffffffffffffffffffffffffffffff1633146106d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610548565b600291909155600355565b6000610462338484610aae565b60005473ffffffffffffffffffffffffffffffffffffffff16331461076d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610548565b600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905543600555565b60005473ffffffffffffffffffffffffffffffffffffffff16331461081f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610548565b73ffffffffffffffffffffffffffffffffffffffff16600090815260096020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146108ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610548565b6108f881611264565b50565b73ffffffffffffffffffffffffffffffffffffffff831661099d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610548565b73ffffffffffffffffffffffffffffffffffffffff8216610a40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610548565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610b51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610548565b633b9aca008111610bbe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4d696e207472616e7366657220616d74000000000000000000000000000000006044820152606401610548565b73ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604081205460ff1680610c17575073ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604090205460ff165b15610c24575060006110a5565b60045460ff1615801590610c3a57506006548211155b610cc6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f4c61756e6368202f204d6178205478416d6f756e74203125206174206c61756e60448201527f63680000000000000000000000000000000000000000000000000000000000006064820152608401610548565b600454610100900460ff16600103610dbb5773ffffffffffffffffffffffffffffffffffffffff841660009081526007602052604081208054849290610d0d908490611535565b909155505073ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604081208054849290610d47908490611548565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dad91815260200190565b60405180910390a350505050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e1757506002546110a5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110a157306000908152600760205260409020546934f086f3b33b6840000081118015610e9b5750600454610100900460ff16155b15611097576a037ad88187588824500000811115610ec157506a037ad881875888245000005b600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610f2257610f2261155b565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110610f9057610f9061155b565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526040517f791ac9470000000000000000000000000000000000000000000000000000000081527f00000000000000000000000000000000000000000000000000000000000000009091169063791ac9479061103b90859060009086907f000000000000000000000000000000000000000000000000000000000000000090429060040161158a565b600060405180830381600087803b15801561105557600080fd5b505af1158015611069573d6000803e3d6000fd5b5050600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555050505b50506003546110a5565b5060005b801561122957600060646110b98385611615565b6110c3919061162c565b905060006110d18285611535565b73ffffffffffffffffffffffffffffffffffffffff871660009081526007602052604081208054929350869290919061110b908490611535565b909155505073ffffffffffffffffffffffffffffffffffffffff851660009081526007602052604081208054839290611145908490611548565b90915550503060009081526007602052604081208054849290611169908490611548565b9091555050604051828152309073ffffffffffffffffffffffffffffffffffffffff8816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a38473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161121a91815260200190565b60405180910390a3505061125e565b73ffffffffffffffffffffffffffffffffffffffff841660009081526007602052604081208054849290610d0d908490611535565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8116611307576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610548565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600060208083528351808285015260005b818110156113c1578581018301518582016040015282016113a5565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461142457600080fd5b919050565b6000806040838503121561143c57600080fd5b61144583611400565b946020939093013593505050565b60008060006060848603121561146857600080fd5b61147184611400565b925061147f60208501611400565b9150604084013590509250925092565b6000602082840312156114a157600080fd5b6114aa82611400565b9392505050565b600080604083850312156114c457600080fd5b50508035926020909101359150565b600080604083850312156114e657600080fd5b6114ef83611400565b91506114fd60208401611400565b90509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8181038181111561046657610466611506565b8082018082111561046657610466611506565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156115e757845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016115b5565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b808202811582820484141761046657610466611506565b600082611662577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b50049056fea2646970667358221220345bcce39851671b066fb746a8bf93bbb254c69c599bfbd5004d0e503de4428664736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101485760003560e01c80638c0b5e22116100c0578063c9567bf911610074578063dba9d42011610059578063dba9d420146103c2578063dd62ed3e146103e2578063f2fde38b1461043557600080fd5b8063c9567bf914610397578063cc1776d3146103ac57600080fd5b80639036ed4d116100a55780639036ed4d1461031157806395d89b4114610331578063a9059cbb1461037757600080fd5b80638c0b5e22146102c65780638da5cb5b146102dc57600080fd5b8063313ce5671161011757806370a08231116100fc57806370a0823114610257578063715018a61461029a578063751039fc146102b157600080fd5b8063313ce567146102255780634f7041a51461024157600080fd5b806306fdde0314610154578063095ea7b3146101ac57806318160ddd146101dc57806323b872dd1461020557600080fd5b3661014f57005b600080fd5b34801561016057600080fd5b5060408051808201909152600281527f474e00000000000000000000000000000000000000000000000000000000000060208201525b6040516101a39190611394565b60405180910390f35b3480156101b857600080fd5b506101cc6101c7366004611429565b610455565b60405190151581526020016101a3565b3480156101e857600080fd5b506b015bfc9298de952e2f4000005b6040519081526020016101a3565b34801561021157600080fd5b506101cc610220366004611453565b61046c565b34801561023157600080fd5b50604051601281526020016101a3565b34801561024d57600080fd5b506101f760025481565b34801561026357600080fd5b506101f761027236600461148f565b73ffffffffffffffffffffffffffffffffffffffff1660009081526007602052604090205490565b3480156102a657600080fd5b506102af6104cb565b005b3480156102bd57600080fd5b506102af6105c0565b3480156102d257600080fd5b506101f760065481565b3480156102e857600080fd5b5060005460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101a3565b34801561031d57600080fd5b506102af61032c3660046114b1565b610653565b34801561033d57600080fd5b5060408051808201909152600381527f24474e00000000000000000000000000000000000000000000000000000000006020820152610196565b34801561038357600080fd5b506101cc610392366004611429565b6106df565b3480156103a357600080fd5b506102af6106ec565b3480156103b857600080fd5b506101f760035481565b3480156103ce57600080fd5b506102af6103dd36600461148f565b61079e565b3480156103ee57600080fd5b506101f76103fd3660046114d3565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260086020908152604080832093909416825291909152205490565b34801561044157600080fd5b506102af61045036600461148f565b61086e565b60006104623384846108fb565b5060015b92915050565b6000610479848484610aae565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600860209081526040808320338085529252909120546104c19186916104bc908690611535565b6108fb565b5060019392505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610548565b6b015bfc9298de952e2f400000600655565b60005473ffffffffffffffffffffffffffffffffffffffff1633146106d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610548565b600291909155600355565b6000610462338484610aae565b60005473ffffffffffffffffffffffffffffffffffffffff16331461076d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610548565b600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905543600555565b60005473ffffffffffffffffffffffffffffffffffffffff16331461081f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610548565b73ffffffffffffffffffffffffffffffffffffffff16600090815260096020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146108ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610548565b6108f881611264565b50565b73ffffffffffffffffffffffffffffffffffffffff831661099d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610548565b73ffffffffffffffffffffffffffffffffffffffff8216610a40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610548565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610b51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610548565b633b9aca008111610bbe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4d696e207472616e7366657220616d74000000000000000000000000000000006044820152606401610548565b73ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604081205460ff1680610c17575073ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604090205460ff165b15610c24575060006110a5565b60045460ff1615801590610c3a57506006548211155b610cc6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f4c61756e6368202f204d6178205478416d6f756e74203125206174206c61756e60448201527f63680000000000000000000000000000000000000000000000000000000000006064820152608401610548565b600454610100900460ff16600103610dbb5773ffffffffffffffffffffffffffffffffffffffff841660009081526007602052604081208054849290610d0d908490611535565b909155505073ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604081208054849290610d47908490611548565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dad91815260200190565b60405180910390a350505050565b7f0000000000000000000000005e13a2aa69dedd30313cf4e85eecd31b38a4ff4073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e1757506002546110a5565b7f0000000000000000000000005e13a2aa69dedd30313cf4e85eecd31b38a4ff4073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110a157306000908152600760205260409020546934f086f3b33b6840000081118015610e9b5750600454610100900460ff16155b15611097576a037ad88187588824500000811115610ec157506a037ad881875888245000005b600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610f2257610f2261155b565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110610f9057610f9061155b565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526040517f791ac9470000000000000000000000000000000000000000000000000000000081527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063791ac9479061103b90859060009086907f0000000000000000000000002ec07f13838c03d2697b4e9df1811e4f57bbf77490429060040161158a565b600060405180830381600087803b15801561105557600080fd5b505af1158015611069573d6000803e3d6000fd5b5050600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555050505b50506003546110a5565b5060005b801561122957600060646110b98385611615565b6110c3919061162c565b905060006110d18285611535565b73ffffffffffffffffffffffffffffffffffffffff871660009081526007602052604081208054929350869290919061110b908490611535565b909155505073ffffffffffffffffffffffffffffffffffffffff851660009081526007602052604081208054839290611145908490611548565b90915550503060009081526007602052604081208054849290611169908490611548565b9091555050604051828152309073ffffffffffffffffffffffffffffffffffffffff8816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a38473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161121a91815260200190565b60405180910390a3505061125e565b73ffffffffffffffffffffffffffffffffffffffff841660009081526007602052604081208054849290610d0d908490611535565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8116611307576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610548565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600060208083528351808285015260005b818110156113c1578581018301518582016040015282016113a5565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461142457600080fd5b919050565b6000806040838503121561143c57600080fd5b61144583611400565b946020939093013593505050565b60008060006060848603121561146857600080fd5b61147184611400565b925061147f60208501611400565b9150604084013590509250925092565b6000602082840312156114a157600080fd5b6114aa82611400565b9392505050565b600080604083850312156114c457600080fd5b50508035926020909101359150565b600080604083850312156114e657600080fd5b6114ef83611400565b91506114fd60208401611400565b90509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8181038181111561046657610466611506565b8082018082111561046657610466611506565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156115e757845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016115b5565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b808202811582820484141761046657610466611506565b600082611662577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b50049056fea2646970667358221220345bcce39851671b066fb746a8bf93bbb254c69c599bfbd5004d0e503de4428664736f6c63430008120033

Deployed Bytecode Sourcemap

2880:6879:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4849:83;;;;;;;;;;-1:-1:-1;4919:5:0;;;;;;;;;;;;;;;;;4849:83;;;;;;;:::i;:::-;;;;;;;;5759:193;;;;;;;;;;-1:-1:-1;5759:193:0;;;;;:::i;:::-;;:::i;:::-;;;1251:14:1;;1244:22;1226:41;;1214:2;1199:18;5759:193:0;1086:187:1;5126:100:0;;;;;;;;;;-1:-1:-1;2967:14:0;5126:100;;;1424:25:1;;;1412:2;1397:18;5126:100:0;1278:177:1;5960:350:0;;;;;;;;;;-1:-1:-1;5960:350:0;;;;;:::i;:::-;;:::i;5035:83::-;;;;;;;;;;-1:-1:-1;5035:83:0;;3132:2;1935:36:1;;1923:2;1908:18;5035:83:0;1793:184:1;3311:21:0;;;;;;;;;;;;;;;;5234:118;;;;;;;;;;-1:-1:-1;5234:118:0;;;;;:::i;:::-;5327:17;;5300:7;5327:17;;;:8;:17;;;;;;;5234:118;2207:148;;;;;;;;;;;;;:::i;:::-;;6939:88;;;;;;;;;;;;;:::i;3470:39::-;;;;;;;;;;;;;;;;1602:79;;;;;;;;;;-1:-1:-1;1640:7:0;1667:6;1602:79;;1667:6;;;;2319:74:1;;2307:2;2292:18;1602:79:0;2173:226:1;7035:145:0;;;;;;;;;;-1:-1:-1;7035:145:0;;;;;:::i;:::-;;:::i;4940:87::-;;;;;;;;;;-1:-1:-1;5012:7:0;;;;;;;;;;;;;;;;;4940:87;;5360:199;;;;;;;;;;-1:-1:-1;5360:199:0;;;;;:::i;:::-;;:::i;6695:108::-;;;;;;;;;;;;;:::i;3339:22::-;;;;;;;;;;;;;;;;6811:120;;;;;;;;;;-1:-1:-1;6811:120:0;;;;;:::i;:::-;;:::i;5567:184::-;;;;;;;;;;-1:-1:-1;5567:184:0;;;;;:::i;:::-;5716:18;;;;5684:7;5716:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;5567:184;1816:109;;;;;;;;;;-1:-1:-1;1816:109:0;;;;;:::i;:::-;;:::i;5759:193::-;5861:4;5883:39;396:10;5906:7;5915:6;5883:8;:39::i;:::-;-1:-1:-1;5940:4:0;5759:193;;;;;:::o;5960:350::-;6092:4;6109:36;6119:6;6127:9;6138:6;6109:9;:36::i;:::-;6227:19;;;;;;;:11;:19;;;;;;;;396:10;6227:33;;;;;;;;;6156:124;;6179:6;;6227:42;;6263:6;;6227:42;:::i;:::-;6156:8;:124::i;:::-;-1:-1:-1;6298:4:0;5960:350;;;;;:::o;2207:148::-;1729:6;;:22;:6;396:10;1729:22;1721:67;;;;;;;3446:2:1;1721:67:0;;;3428:21:1;;;3465:18;;;3458:30;3524:34;3504:18;;;3497:62;3576:18;;1721:67:0;;;;;;;;;2314:1:::1;2298:6:::0;;2277:40:::1;::::0;::::1;2298:6:::0;;::::1;::::0;2277:40:::1;::::0;2314:1;;2277:40:::1;2345:1;2328:19:::0;;;::::1;::::0;;2207:148::o;6939:88::-;1729:6;;:22;:6;396:10;1729:22;1721:67;;;;;;;3446:2:1;1721:67:0;;;3428:21:1;;;3465:18;;;3458:30;3524:34;3504:18;;;3497:62;3576:18;;1721:67:0;3244:356:1;1721:67:0;2967:14:::1;6993:11;:26:::0;6939:88::o;7035:145::-;1729:6;;:22;:6;396:10;1729:22;1721:67;;;;;;;3446:2:1;1721:67:0;;;3428:21:1;;;3465:18;;;3458:30;3524:34;3504:18;;;3497:62;3576:18;;1721:67:0;3244:356:1;1721:67:0;7123:6:::1;:18:::0;;;;7152:7:::1;:20:::0;7035:145::o;5360:199::-;5465:4;5487:42;396:10;5511:9;5522:6;5487:9;:42::i;6695:108::-;1729:6;;:22;:6;396:10;1729:22;1721:67;;;;;;;3446:2:1;1721:67:0;;;3428:21:1;;;3465:18;;;3458:30;3524:34;3504:18;;;3497:62;3576:18;;1721:67:0;3244:356:1;1721:67:0;6748:6:::1;:10:::0;;;::::1;6757:1;6748:10;::::0;;6783:12:::1;6769:11;:26:::0;6695:108::o;6811:120::-;1729:6;;:22;:6;396:10;1729:22;1721:67;;;;;;;3446:2:1;1721:67:0;;;3428:21:1;;;3465:18;;;3458:30;3524:34;3504:18;;;3497:62;3576:18;;1721:67:0;3244:356:1;1721:67:0;6884:32:::1;;;::::0;;;:24:::1;:32;::::0;;;;:39;;;::::1;6919:4;6884:39;::::0;;6811:120::o;1816:109::-;1729:6;;:22;:6;396:10;1729:22;1721:67;;;;;;;3446:2:1;1721:67:0;;;3428:21:1;;;3465:18;;;3458:30;3524:34;3504:18;;;3497:62;3576:18;;1721:67:0;3244:356:1;1721:67:0;1889:28:::1;1908:8;1889:18;:28::i;:::-;1816:109:::0;:::o;6318:369::-;6445:19;;;6437:68;;;;;;;3807:2:1;6437:68:0;;;3789:21:1;3846:2;3826:18;;;3819:30;3885:34;3865:18;;;3858:62;3956:6;3936:18;;;3929:34;3980:19;;6437:68:0;3605:400:1;6437:68:0;6524:21;;;6516:68;;;;;;;4212:2:1;6516:68:0;;;4194:21:1;4251:2;4231:18;;;4224:30;4290:34;4270:18;;;4263:62;4361:4;4341:18;;;4334:32;4383:19;;6516:68:0;4010:398:1;6516:68:0;6595:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;6647:32;;1424:25:1;;;6647:32:0;;1397:18:1;6647:32:0;;;;;;;6318:369;;;:::o;7188:2531::-;7310:18;;;7302:68;;;;;;;4615:2:1;7302:68:0;;;4597:21:1;4654:2;4634:18;;;4627:30;4693:34;4673:18;;;4666:62;4764:7;4744:18;;;4737:35;4789:19;;7302:68:0;4413:401:1;7302:68:0;7398:3;7389:6;:12;7381:41;;;;;;;5021:2:1;7381:41:0;;;5003:21:1;5060:2;5040:18;;;5033:30;5099:18;5079;;;5072:46;5135:18;;7381:41:0;4819:340:1;7381:41:0;7462:30;;;7435:12;7462:30;;;:24;:30;;;;;;;;;:62;;-1:-1:-1;7496:28:0;;;;;;;:24;:28;;;;;;;;7462:62;7458:1604;;;-1:-1:-1;7548:1:0;7458:1604;;;7608:6;;;;:11;;;;:36;;;7633:11;;7623:6;:21;;7608:36;7582:132;;;;;;;5366:2:1;7582:132:0;;;5348:21:1;5405:2;5385:18;;;5378:30;5444:34;5424:18;;;5417:62;5515:4;5495:18;;;5488:32;5537:19;;7582:132:0;5164:398:1;7582:132:0;7735:16;;;;;;;;:21;7731:239;;7812:14;;;;;;;:8;:14;;;;;:24;;7830:6;;7812:14;:24;;7830:6;;7812:24;:::i;:::-;;;;-1:-1:-1;;7855:12:0;;;;;;;:8;:12;;;;;:22;;7871:6;;7855:12;:22;;7871:6;;7855:22;:::i;:::-;;;;;;;;7918:2;7903:26;;7912:4;7903:26;;;7922:6;7903:26;;;;1424:25:1;;1412:2;1397:18;;1278:177;7903:26:0;;;;;;;;7948:7;7188:2531;;;:::o;7731:239::-;7998:13;7990:21;;:4;:21;;;7986:1065;;-1:-1:-1;8039:6:0;;7986:1065;;;8077:13;8071:19;;:2;:19;;;8067:984;;8151:4;8111:20;8134:23;;;:8;:23;;;;;;3080:10;8180:22;;:47;;;;-1:-1:-1;8206:16:0;;;;;;;:21;8180:47;8176:778;;;3026:12;8256;:25;8252:107;;;-1:-1:-1;3026:12:0;8252:107;8381:16;:20;;;;;;;;8448:16;;;8462:1;8448:16;;;;;;;;-1:-1:-1;;8448:16:0;;;;;;;;;;-1:-1:-1;8448:16:0;8424:40;;8505:4;8487;8492:1;8487:7;;;;;;;;:::i;:::-;;;;;;:23;;;;;;;;;;;8543:4;8533;8538:1;8533:7;;;;;;;;:::i;:::-;:14;;;;:7;;;;;;;;;:14;8570:321;;;;;:15;:92;;;;;;:321;;8693:12;;8736:1;;8768:4;;8803:15;;8849;;8570:321;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8914:16:0;:20;;;;;;-1:-1:-1;;;8176:778:0;-1:-1:-1;;8979:7:0;;8067:984;;;-1:-1:-1;9034:1:0;8067:984;9123:9;;9119:593;;9177:17;9215:3;9198:13;9207:4;9198:6;:13;:::i;:::-;9197:21;;;;:::i;:::-;9177:41;-1:-1:-1;9233:22:0;9258:18;9177:41;9258:6;:18;:::i;:::-;9293:14;;;;;;;:8;:14;;;;;:24;;9233:43;;-1:-1:-1;9311:6:0;;9293:14;;;:24;;9311:6;;9293:24;:::i;:::-;;;;-1:-1:-1;;9332:12:0;;;;;;;:8;:12;;;;;:30;;9348:14;;9332:12;:30;;9348:14;;9332:30;:::i;:::-;;;;-1:-1:-1;;9394:4:0;9377:23;;;;:8;:23;;;;;:36;;9404:9;;9377:23;:36;;9404:9;;9377:36;:::i;:::-;;;;-1:-1:-1;;9433:40:0;;1424:25:1;;;9456:4:0;;9433:40;;;;;;1412:2:1;1397:18;9433:40:0;;;;;;;9508:2;9493:34;;9502:4;9493:34;;;9512:14;9493:34;;;;1424:25:1;;1412:2;1397:18;;1278:177;9493:34:0;;;;;;;;9134:405;;9119:593;;;9591:14;;;;;;;:8;:14;;;;;:24;;9609:6;;9591:14;:24;;9609:6;;9591:24;:::i;9119:593::-;7291:2428;7188:2531;;;:::o;1933:266::-;2021:22;;;1999:110;;;;;;;7768:2:1;1999:110:0;;;7750:21:1;7807:2;7787:18;;;7780:30;7846:34;7826:18;;;7819:62;7917:8;7897:18;;;7890:36;7943:19;;1999:110:0;7566:402:1;1999:110:0;2146:6;;;2125:38;;;;;;;2146:6;;;2125:38;;;2174:6;:17;;;;;;;;;;;;;;;1933:266::o;14:607: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;612:2;542:66;537:2;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:196::-;694:20;;754:42;743:54;;733:65;;723:93;;812:1;809;802:12;723:93;626:196;;;:::o;827:254::-;895:6;903;956:2;944:9;935:7;931:23;927:32;924:52;;;972:1;969;962:12;924:52;995:29;1014:9;995:29;:::i;:::-;985:39;1071:2;1056:18;;;;1043:32;;-1:-1:-1;;;827:254:1:o;1460:328::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1645:29;1664:9;1645:29;:::i;:::-;1635:39;;1693:38;1727:2;1716:9;1712:18;1693:38;:::i;:::-;1683:48;;1778:2;1767:9;1763:18;1750:32;1740:42;;1460:328;;;;;:::o;1982:186::-;2041:6;2094:2;2082:9;2073:7;2069:23;2065:32;2062:52;;;2110:1;2107;2100:12;2062:52;2133:29;2152:9;2133:29;:::i;:::-;2123:39;1982:186;-1:-1:-1;;;1982:186:1:o;2404:248::-;2472:6;2480;2533:2;2521:9;2512:7;2508:23;2504:32;2501:52;;;2549:1;2546;2539:12;2501:52;-1:-1:-1;;2572:23:1;;;2642:2;2627:18;;;2614:32;;-1:-1:-1;2404:248:1:o;2657:260::-;2725:6;2733;2786:2;2774:9;2765:7;2761:23;2757:32;2754:52;;;2802:1;2799;2792:12;2754:52;2825:29;2844:9;2825:29;:::i;:::-;2815:39;;2873:38;2907:2;2896:9;2892:18;2873:38;:::i;:::-;2863:48;;2657:260;;;;;:::o;2922:184::-;2974:77;2971:1;2964:88;3071:4;3068:1;3061:15;3095:4;3092:1;3085:15;3111:128;3178:9;;;3199:11;;;3196:37;;;3213:18;;:::i;5567:125::-;5632:9;;;5653:10;;;5650:36;;;5666:18;;:::i;5886:184::-;5938:77;5935:1;5928:88;6035:4;6032:1;6025:15;6059:4;6056:1;6049:15;6075:1034;6345:4;6393:3;6382:9;6378:19;6424:6;6413:9;6406:25;6450:2;6488:6;6483:2;6472:9;6468:18;6461:34;6531:3;6526:2;6515:9;6511:18;6504:31;6555:6;6590;6584:13;6621:6;6613;6606:22;6659:3;6648:9;6644:19;6637:26;;6698:2;6690:6;6686:15;6672:29;;6719:1;6729:218;6743:6;6740:1;6737:13;6729:218;;;6808:13;;6823:42;6804:62;6792:75;;6922:15;;;;6887:12;;;;6765:1;6758:9;6729:218;;;-1:-1:-1;;7015:42:1;7003:55;;;;6998:2;6983:18;;6976:83;-1:-1:-1;;;7090:3:1;7075:19;7068:35;6964:3;6075:1034;-1:-1:-1;;;6075:1034:1:o;7114:168::-;7187:9;;;7218;;7235:15;;;7229:22;;7215:37;7205:71;;7256:18;;:::i;7287:274::-;7327:1;7353;7343:189;;7388:77;7385:1;7378:88;7489:4;7486:1;7479:15;7517:4;7514:1;7507:15;7343:189;-1:-1:-1;7546:9:1;;7287:274::o

Swarm Source

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