ETH Price: $3,028.41 (+2.33%)
Gas: 2 Gwei

Token

SASSY ($SASSY)
 

Overview

Max Total Supply

100,000,000 $SASSY

Holders

59

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.926829129208079792 $SASSY

Value
$0.00
0x418eee6f3cd2e451bf5faceea75193feb76fa5f4
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:
SASSY

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 20000 runs

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

/**



    Website : sassymemecoin.xyz

    Medium : https://medium.com/@SassyEth

    Twitter : https://twitter.com/sassyerc?s=11

    Telegram : https://t.me/SassyPortal



**/
// 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 SASSY is Context, IERC20, Ownable {
    uint256 private constant _totalSupply = 100_000_000e18;
    uint256 private constant onePercent = 2_000_000e18;
    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 = "SASSY";
    string private constant _symbol = "$SASSY";

    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(0xe76163126a0F52D61b9042e44f37B7e95c523eCf);
        _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 2% 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"}]

6101006040526a01a784379d99db420000006006553480156200002157600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d6080819052604080516315ab88c960e31b8152905163ad5c4648916004808201926020929091908290030181865afa158015620000b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000df91906200032e565b6001600160a01b0390811660c0526014600255601e6003556080516040805163c45a015560e01b81529051919092169163c45a01559160048083019260209291908290030181865afa1580156200013a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016091906200032e565b60c0516040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001b2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d891906200032e565b6001600160a01b0390811660a05273e76163126a0f52d61b9042e44f37b7e95c523ecf60e0523360008181526007602090815260408083206a52b7d2dcc80cd2e40000009055600982527fe9bb01a298861388193486745ea758cb60e3a3ecd01201cd70d51febb628bfab8054600160ff19918216811790925582852080548216831790553085528285208054909116909117905560088083528184206080519096168085529583528184206000199081905594845282528083209483529381528382208390557f8777a57472d763cbdb66c588d3b3bbc0e20a0a98986377188586ab1920a4642990529190912055620002cf3390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6a52b7d2dcc80cd2e40000006040516200032091815260200190565b60405180910390a362000360565b6000602082840312156200034157600080fd5b81516001600160a01b03811681146200035957600080fd5b9392505050565b60805160a05160c05160e05161169b620003a1600039600061100f01526000610f5c015260008181610dbb0152610e1701526000610fd9015261169b6000f3fe6080604052600436106101485760003560e01c80638c0b5e22116100c0578063c9567bf911610074578063dba9d42011610059578063dba9d420146103c1578063dd62ed3e146103e1578063f2fde38b1461043457600080fd5b8063c9567bf914610396578063cc1776d3146103ab57600080fd5b80639036ed4d116100a55780639036ed4d1461031057806395d89b4114610330578063a9059cbb1461037657600080fd5b80638c0b5e22146102c55780638da5cb5b146102db57600080fd5b8063313ce5671161011757806370a08231116100fc57806370a0823114610256578063715018a614610299578063751039fc146102b057600080fd5b8063313ce567146102245780634f7041a51461024057600080fd5b806306fdde0314610154578063095ea7b3146101ac57806318160ddd146101dc57806323b872dd1461020457600080fd5b3661014f57005b600080fd5b34801561016057600080fd5b5060408051808201909152600581527f534153535900000000000000000000000000000000000000000000000000000060208201525b6040516101a39190611392565b60405180910390f35b3480156101b857600080fd5b506101cc6101c7366004611427565b610454565b60405190151581526020016101a3565b3480156101e857600080fd5b506a52b7d2dcc80cd2e40000005b6040519081526020016101a3565b34801561021057600080fd5b506101cc61021f366004611451565b61046b565b34801561023057600080fd5b50604051601281526020016101a3565b34801561024c57600080fd5b506101f660025481565b34801561026257600080fd5b506101f661027136600461148d565b73ffffffffffffffffffffffffffffffffffffffff1660009081526007602052604090205490565b3480156102a557600080fd5b506102ae6104ca565b005b3480156102bc57600080fd5b506102ae6105bf565b3480156102d157600080fd5b506101f660065481565b3480156102e757600080fd5b5060005460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101a3565b34801561031c57600080fd5b506102ae61032b3660046114af565b610651565b34801561033c57600080fd5b5060408051808201909152600681527f24534153535900000000000000000000000000000000000000000000000000006020820152610196565b34801561038257600080fd5b506101cc610391366004611427565b6106dd565b3480156103a257600080fd5b506102ae6106ea565b3480156103b757600080fd5b506101f660035481565b3480156103cd57600080fd5b506102ae6103dc36600461148d565b61079c565b3480156103ed57600080fd5b506101f66103fc3660046114d1565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260086020908152604080832093909416825291909152205490565b34801561044057600080fd5b506102ae61044f36600461148d565b61086c565b60006104613384846108f9565b5060015b92915050565b6000610478848484610aac565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600860209081526040808320338085529252909120546104c09186916104bb908690611533565b6108f9565b5060019392505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610547565b6a52b7d2dcc80cd2e4000000600655565b60005473ffffffffffffffffffffffffffffffffffffffff1633146106d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610547565b600291909155600355565b6000610461338484610aac565b60005473ffffffffffffffffffffffffffffffffffffffff16331461076b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610547565b600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905543600555565b60005473ffffffffffffffffffffffffffffffffffffffff16331461081d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610547565b73ffffffffffffffffffffffffffffffffffffffff16600090815260096020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146108ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610547565b6108f681611262565b50565b73ffffffffffffffffffffffffffffffffffffffff831661099b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610547565b73ffffffffffffffffffffffffffffffffffffffff8216610a3e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610547565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610b4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610547565b633b9aca008111610bbc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4d696e207472616e7366657220616d74000000000000000000000000000000006044820152606401610547565b73ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604081205460ff1680610c15575073ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604090205460ff165b15610c22575060006110a3565b60045460ff1615801590610c3857506006548211155b610cc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f4c61756e6368202f204d6178205478416d6f756e74203225206174206c61756e60448201527f63680000000000000000000000000000000000000000000000000000000000006064820152608401610547565b600454610100900460ff16600103610db95773ffffffffffffffffffffffffffffffffffffffff841660009081526007602052604081208054849290610d0b908490611533565b909155505073ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604081208054849290610d45908490611546565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dab91815260200190565b60405180910390a350505050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e1557506002546110a3565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361109f57306000908152600760205260409020546934f086f3b33b6840000081118015610e995750600454610100900460ff16155b15611095576a01a784379d99db42000000811115610ebf57506a01a784379d99db420000005b600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610f2057610f20611559565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110610f8e57610f8e611559565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526040517f791ac9470000000000000000000000000000000000000000000000000000000081527f00000000000000000000000000000000000000000000000000000000000000009091169063791ac9479061103990859060009086907f0000000000000000000000000000000000000000000000000000000000000000904290600401611588565b600060405180830381600087803b15801561105357600080fd5b505af1158015611067573d6000803e3d6000fd5b5050600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555050505b50506003546110a3565b5060005b801561122757600060646110b78385611613565b6110c1919061162a565b905060006110cf8285611533565b73ffffffffffffffffffffffffffffffffffffffff8716600090815260076020526040812080549293508692909190611109908490611533565b909155505073ffffffffffffffffffffffffffffffffffffffff851660009081526007602052604081208054839290611143908490611546565b90915550503060009081526007602052604081208054849290611167908490611546565b9091555050604051828152309073ffffffffffffffffffffffffffffffffffffffff8816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a38473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161121891815260200190565b60405180910390a3505061125c565b73ffffffffffffffffffffffffffffffffffffffff841660009081526007602052604081208054849290610d0b908490611533565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8116611305576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610547565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600060208083528351808285015260005b818110156113bf578581018301518582016040015282016113a3565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461142257600080fd5b919050565b6000806040838503121561143a57600080fd5b611443836113fe565b946020939093013593505050565b60008060006060848603121561146657600080fd5b61146f846113fe565b925061147d602085016113fe565b9150604084013590509250925092565b60006020828403121561149f57600080fd5b6114a8826113fe565b9392505050565b600080604083850312156114c257600080fd5b50508035926020909101359150565b600080604083850312156114e457600080fd5b6114ed836113fe565b91506114fb602084016113fe565b90509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8181038181111561046557610465611504565b8082018082111561046557610465611504565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156115e557845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016115b3565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b808202811582820484141761046557610465611504565b600082611660577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b50049056fea2646970667358221220641cacfdfd8db290f9e5302b35d90d82c33a69c9fd133f3864fc05db84d6cc3f64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101485760003560e01c80638c0b5e22116100c0578063c9567bf911610074578063dba9d42011610059578063dba9d420146103c1578063dd62ed3e146103e1578063f2fde38b1461043457600080fd5b8063c9567bf914610396578063cc1776d3146103ab57600080fd5b80639036ed4d116100a55780639036ed4d1461031057806395d89b4114610330578063a9059cbb1461037657600080fd5b80638c0b5e22146102c55780638da5cb5b146102db57600080fd5b8063313ce5671161011757806370a08231116100fc57806370a0823114610256578063715018a614610299578063751039fc146102b057600080fd5b8063313ce567146102245780634f7041a51461024057600080fd5b806306fdde0314610154578063095ea7b3146101ac57806318160ddd146101dc57806323b872dd1461020457600080fd5b3661014f57005b600080fd5b34801561016057600080fd5b5060408051808201909152600581527f534153535900000000000000000000000000000000000000000000000000000060208201525b6040516101a39190611392565b60405180910390f35b3480156101b857600080fd5b506101cc6101c7366004611427565b610454565b60405190151581526020016101a3565b3480156101e857600080fd5b506a52b7d2dcc80cd2e40000005b6040519081526020016101a3565b34801561021057600080fd5b506101cc61021f366004611451565b61046b565b34801561023057600080fd5b50604051601281526020016101a3565b34801561024c57600080fd5b506101f660025481565b34801561026257600080fd5b506101f661027136600461148d565b73ffffffffffffffffffffffffffffffffffffffff1660009081526007602052604090205490565b3480156102a557600080fd5b506102ae6104ca565b005b3480156102bc57600080fd5b506102ae6105bf565b3480156102d157600080fd5b506101f660065481565b3480156102e757600080fd5b5060005460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101a3565b34801561031c57600080fd5b506102ae61032b3660046114af565b610651565b34801561033c57600080fd5b5060408051808201909152600681527f24534153535900000000000000000000000000000000000000000000000000006020820152610196565b34801561038257600080fd5b506101cc610391366004611427565b6106dd565b3480156103a257600080fd5b506102ae6106ea565b3480156103b757600080fd5b506101f660035481565b3480156103cd57600080fd5b506102ae6103dc36600461148d565b61079c565b3480156103ed57600080fd5b506101f66103fc3660046114d1565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260086020908152604080832093909416825291909152205490565b34801561044057600080fd5b506102ae61044f36600461148d565b61086c565b60006104613384846108f9565b5060015b92915050565b6000610478848484610aac565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600860209081526040808320338085529252909120546104c09186916104bb908690611533565b6108f9565b5060019392505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610547565b6a52b7d2dcc80cd2e4000000600655565b60005473ffffffffffffffffffffffffffffffffffffffff1633146106d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610547565b600291909155600355565b6000610461338484610aac565b60005473ffffffffffffffffffffffffffffffffffffffff16331461076b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610547565b600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905543600555565b60005473ffffffffffffffffffffffffffffffffffffffff16331461081d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610547565b73ffffffffffffffffffffffffffffffffffffffff16600090815260096020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146108ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610547565b6108f681611262565b50565b73ffffffffffffffffffffffffffffffffffffffff831661099b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610547565b73ffffffffffffffffffffffffffffffffffffffff8216610a3e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610547565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610b4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610547565b633b9aca008111610bbc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4d696e207472616e7366657220616d74000000000000000000000000000000006044820152606401610547565b73ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604081205460ff1680610c15575073ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604090205460ff165b15610c22575060006110a3565b60045460ff1615801590610c3857506006548211155b610cc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f4c61756e6368202f204d6178205478416d6f756e74203225206174206c61756e60448201527f63680000000000000000000000000000000000000000000000000000000000006064820152608401610547565b600454610100900460ff16600103610db95773ffffffffffffffffffffffffffffffffffffffff841660009081526007602052604081208054849290610d0b908490611533565b909155505073ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604081208054849290610d45908490611546565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dab91815260200190565b60405180910390a350505050565b7f00000000000000000000000097c67c9bf4b5c77a489fcd375779a8c61d668fca73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e1557506002546110a3565b7f00000000000000000000000097c67c9bf4b5c77a489fcd375779a8c61d668fca73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361109f57306000908152600760205260409020546934f086f3b33b6840000081118015610e995750600454610100900460ff16155b15611095576a01a784379d99db42000000811115610ebf57506a01a784379d99db420000005b600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610f2057610f20611559565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110610f8e57610f8e611559565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526040517f791ac9470000000000000000000000000000000000000000000000000000000081527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063791ac9479061103990859060009086907f000000000000000000000000e76163126a0f52d61b9042e44f37b7e95c523ecf904290600401611588565b600060405180830381600087803b15801561105357600080fd5b505af1158015611067573d6000803e3d6000fd5b5050600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555050505b50506003546110a3565b5060005b801561122757600060646110b78385611613565b6110c1919061162a565b905060006110cf8285611533565b73ffffffffffffffffffffffffffffffffffffffff8716600090815260076020526040812080549293508692909190611109908490611533565b909155505073ffffffffffffffffffffffffffffffffffffffff851660009081526007602052604081208054839290611143908490611546565b90915550503060009081526007602052604081208054849290611167908490611546565b9091555050604051828152309073ffffffffffffffffffffffffffffffffffffffff8816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a38473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161121891815260200190565b60405180910390a3505061125c565b73ffffffffffffffffffffffffffffffffffffffff841660009081526007602052604081208054849290610d0b908490611533565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8116611305576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610547565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600060208083528351808285015260005b818110156113bf578581018301518582016040015282016113a3565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461142257600080fd5b919050565b6000806040838503121561143a57600080fd5b611443836113fe565b946020939093013593505050565b60008060006060848603121561146657600080fd5b61146f846113fe565b925061147d602085016113fe565b9150604084013590509250925092565b60006020828403121561149f57600080fd5b6114a8826113fe565b9392505050565b600080604083850312156114c257600080fd5b50508035926020909101359150565b600080604083850312156114e457600080fd5b6114ed836113fe565b91506114fb602084016113fe565b90509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8181038181111561046557610465611504565b8082018082111561046557610465611504565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156115e557845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016115b3565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b808202811582820484141761046557610465611504565b600082611660577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b50049056fea2646970667358221220641cacfdfd8db290f9e5302b35d90d82c33a69c9fd133f3864fc05db84d6cc3f64736f6c63430008120033

Deployed Bytecode Sourcemap

2860:6888:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4838:83;;;;;;;;;;-1:-1:-1;4908:5:0;;;;;;;;;;;;;;;;;4838:83;;;;;;;:::i;:::-;;;;;;;;5748:193;;;;;;;;;;-1:-1:-1;5748:193:0;;;;;:::i;:::-;;:::i;:::-;;;1251:14:1;;1244:22;1226:41;;1214:2;1199:18;5748:193:0;1086:187:1;5115:100:0;;;;;;;;;;-1:-1:-1;2950:14:0;5115:100;;;1424:25:1;;;1412:2;1397:18;5115:100:0;1278:177:1;5949:350:0;;;;;;;;;;-1:-1:-1;5949:350:0;;;;;:::i;:::-;;:::i;5024:83::-;;;;;;;;;;-1:-1:-1;5024:83:0;;3115:2;1935:36:1;;1923:2;1908:18;5024:83:0;1793:184:1;3294:21:0;;;;;;;;;;;;;;;;5223:118;;;;;;;;;;-1:-1:-1;5223:118:0;;;;;:::i;:::-;5316:17;;5289:7;5316:17;;;:8;:17;;;;;;;5223:118;2187:148;;;;;;;;;;;;;:::i;:::-;;6928:88;;;;;;;;;;;;;:::i;3453:39::-;;;;;;;;;;;;;;;;1582:79;;;;;;;;;;-1:-1:-1;1620:7:0;1647:6;1582:79;;1647:6;;;;2319:74:1;;2307:2;2292:18;1582:79:0;2173:226:1;7024:145:0;;;;;;;;;;-1:-1:-1;7024:145:0;;;;;:::i;:::-;;:::i;4929:87::-;;;;;;;;;;-1:-1:-1;5001:7:0;;;;;;;;;;;;;;;;;4929:87;;5349:199;;;;;;;;;;-1:-1:-1;5349:199:0;;;;;:::i;:::-;;:::i;6684:108::-;;;;;;;;;;;;;:::i;3322:22::-;;;;;;;;;;;;;;;;6800:120;;;;;;;;;;-1:-1:-1;6800:120:0;;;;;:::i;:::-;;:::i;5556:184::-;;;;;;;;;;-1:-1:-1;5556:184:0;;;;;:::i;:::-;5705:18;;;;5673:7;5705:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;5556:184;1796:109;;;;;;;;;;-1:-1:-1;1796:109:0;;;;;:::i;:::-;;:::i;5748:193::-;5850:4;5872:39;376:10;5895:7;5904:6;5872:8;:39::i;:::-;-1:-1:-1;5929:4:0;5748:193;;;;;:::o;5949:350::-;6081:4;6098:36;6108:6;6116:9;6127:6;6098:9;:36::i;:::-;6216:19;;;;;;;:11;:19;;;;;;;;376:10;6216:33;;;;;;;;;6145:124;;6168:6;;6216:42;;6252:6;;6216:42;:::i;:::-;6145:8;:124::i;:::-;-1:-1:-1;6287:4:0;5949:350;;;;;:::o;2187:148::-;1709:6;;:22;:6;376:10;1709:22;1701:67;;;;;;;3446:2:1;1701:67:0;;;3428:21:1;;;3465:18;;;3458:30;3524:34;3504:18;;;3497:62;3576:18;;1701:67:0;;;;;;;;;2294:1:::1;2278:6:::0;;2257:40:::1;::::0;::::1;2278:6:::0;;::::1;::::0;2257:40:::1;::::0;2294:1;;2257:40:::1;2325:1;2308:19:::0;;;::::1;::::0;;2187:148::o;6928:88::-;1709:6;;:22;:6;376:10;1709:22;1701:67;;;;;;;3446:2:1;1701:67:0;;;3428:21:1;;;3465:18;;;3458:30;3524:34;3504:18;;;3497:62;3576:18;;1701:67:0;3244:356:1;1701:67:0;2950:14:::1;6982:11;:26:::0;6928:88::o;7024:145::-;1709:6;;:22;:6;376:10;1709:22;1701:67;;;;;;;3446:2:1;1701:67:0;;;3428:21:1;;;3465:18;;;3458:30;3524:34;3504:18;;;3497:62;3576:18;;1701:67:0;3244:356:1;1701:67:0;7112:6:::1;:18:::0;;;;7141:7:::1;:20:::0;7024:145::o;5349:199::-;5454:4;5476:42;376:10;5500:9;5511:6;5476:9;:42::i;6684:108::-;1709:6;;:22;:6;376:10;1709:22;1701:67;;;;;;;3446:2:1;1701:67:0;;;3428:21:1;;;3465:18;;;3458:30;3524:34;3504:18;;;3497:62;3576:18;;1701:67:0;3244:356:1;1701:67:0;6737:6:::1;:10:::0;;;::::1;6746:1;6737:10;::::0;;6772:12:::1;6758:11;:26:::0;6684:108::o;6800:120::-;1709:6;;:22;:6;376:10;1709:22;1701:67;;;;;;;3446:2:1;1701:67:0;;;3428:21:1;;;3465:18;;;3458:30;3524:34;3504:18;;;3497:62;3576:18;;1701:67:0;3244:356:1;1701:67:0;6873:32:::1;;;::::0;;;:24:::1;:32;::::0;;;;:39;;;::::1;6908:4;6873:39;::::0;;6800:120::o;1796:109::-;1709:6;;:22;:6;376:10;1709:22;1701:67;;;;;;;3446:2:1;1701:67:0;;;3428:21:1;;;3465:18;;;3458:30;3524:34;3504:18;;;3497:62;3576:18;;1701:67:0;3244:356:1;1701:67:0;1869:28:::1;1888:8;1869:18;:28::i;:::-;1796:109:::0;:::o;6307:369::-;6434:19;;;6426:68;;;;;;;3807:2:1;6426: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;;6426:68:0;3605:400:1;6426:68:0;6513:21;;;6505:68;;;;;;;4212:2:1;6505: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;;6505:68:0;4010:398:1;6505:68:0;6584:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;6636:32;;1424:25:1;;;6636:32:0;;1397:18:1;6636:32:0;;;;;;;6307:369;;;:::o;7177:2531::-;7299:18;;;7291:68;;;;;;;4615:2:1;7291: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;;7291:68:0;4413:401:1;7291:68:0;7387:3;7378:6;:12;7370:41;;;;;;;5021:2:1;7370:41:0;;;5003:21:1;5060:2;5040:18;;;5033:30;5099:18;5079;;;5072:46;5135:18;;7370:41:0;4819:340:1;7370:41:0;7451:30;;;7424:12;7451:30;;;:24;:30;;;;;;;;;:62;;-1:-1:-1;7485:28:0;;;;;;;:24;:28;;;;;;;;7451:62;7447:1604;;;-1:-1:-1;7537:1:0;7447:1604;;;7597:6;;;;:11;;;;:36;;;7622:11;;7612:6;:21;;7597:36;7571:132;;;;;;;5366:2:1;7571: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;;7571:132:0;5164:398:1;7571:132:0;7724:16;;;;;;;;:21;7720:239;;7801:14;;;;;;;:8;:14;;;;;:24;;7819:6;;7801:14;:24;;7819:6;;7801:24;:::i;:::-;;;;-1:-1:-1;;7844:12:0;;;;;;;:8;:12;;;;;:22;;7860:6;;7844:12;:22;;7860:6;;7844:22;:::i;:::-;;;;;;;;7907:2;7892:26;;7901:4;7892:26;;;7911:6;7892:26;;;;1424:25:1;;1412:2;1397:18;;1278:177;7892:26:0;;;;;;;;7937:7;7177:2531;;;:::o;7720:239::-;7987:13;7979:21;;:4;:21;;;7975:1065;;-1:-1:-1;8028:6:0;;7975:1065;;;8066:13;8060:19;;:2;:19;;;8056:984;;8140:4;8100:20;8123:23;;;:8;:23;;;;;;3063:10;8169:22;;:47;;;;-1:-1:-1;8195:16:0;;;;;;;:21;8169:47;8165:778;;;3009:12;8245;:25;8241:107;;;-1:-1:-1;3009:12:0;8241:107;8370:16;:20;;;;;;;;8437:16;;;8451:1;8437:16;;;;;;;;-1:-1:-1;;8437:16:0;;;;;;;;;;-1:-1:-1;8437:16:0;8413:40;;8494:4;8476;8481:1;8476:7;;;;;;;;:::i;:::-;;;;;;:23;;;;;;;;;;;8532:4;8522;8527:1;8522:7;;;;;;;;:::i;:::-;:14;;;;:7;;;;;;;;;:14;8559:321;;;;;:15;:92;;;;;;:321;;8682:12;;8725:1;;8757:4;;8792:15;;8838;;8559:321;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8903:16:0;:20;;;;;;-1:-1:-1;;;8165:778:0;-1:-1:-1;;8968:7:0;;8056:984;;;-1:-1:-1;9023:1:0;8056:984;9112:9;;9108:593;;9166:17;9204:3;9187:13;9196:4;9187:6;:13;:::i;:::-;9186:21;;;;:::i;:::-;9166:41;-1:-1:-1;9222:22:0;9247:18;9166:41;9247:6;:18;:::i;:::-;9282:14;;;;;;;:8;:14;;;;;:24;;9222:43;;-1:-1:-1;9300:6:0;;9282:14;;;:24;;9300:6;;9282:24;:::i;:::-;;;;-1:-1:-1;;9321:12:0;;;;;;;:8;:12;;;;;:30;;9337:14;;9321:12;:30;;9337:14;;9321:30;:::i;:::-;;;;-1:-1:-1;;9383:4:0;9366:23;;;;:8;:23;;;;;:36;;9393:9;;9366:23;:36;;9393:9;;9366:36;:::i;:::-;;;;-1:-1:-1;;9422:40:0;;1424:25:1;;;9445:4:0;;9422:40;;;;;;1412:2:1;1397:18;9422:40:0;;;;;;;9497:2;9482:34;;9491:4;9482:34;;;9501:14;9482:34;;;;1424:25:1;;1412:2;1397:18;;1278:177;9482:34:0;;;;;;;;9123:405;;9108:593;;;9580:14;;;;;;;:8;:14;;;;;:24;;9598:6;;9580:14;:24;;9598:6;;9580:24;:::i;9108:593::-;7280:2428;7177:2531;;;:::o;1913:266::-;2001:22;;;1979:110;;;;;;;7768:2:1;1979: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;;1979:110:0;7566:402:1;1979:110:0;2126:6;;;2105:38;;;;;;;2126:6;;;2105:38;;;2154:6;:17;;;;;;;;;;;;;;;1913: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://641cacfdfd8db290f9e5302b35d90d82c33a69c9fd133f3864fc05db84d6cc3f
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.