ETH Price: $2,604.77 (+0.56%)
Gas: 4.06 Gwei

Token

AVERNUS (AVR)
 

Overview

Max Total Supply

100,000,000 AVR

Holders

35

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
636,709.018046083 AVR

Value
$0.00
0x250d1bfabc3a4c1578a492c27cf8d6695fc51098
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:
Avernus

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
    Website: https://www.avernus.tech/
    Telegram: https://t.me/AvernusCoin
    X: https://twitter.com/AvernusOfficial
    Medium: https://medium.com/@avernusofficial
**/

pragma solidity 0.8.19;
// SPDX-License-Identifier: MIT

library SafeMath {
    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     * @param a The first integer to add.
     * @param b The second integer to add.
     * @return The sum of the two integers.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Subtracts two unsigned integers, reverts on overflow.
     * @param a The integer to subtract from (minuend).
     * @param b The integer to subtract (subtrahend).
     * @return The difference of the two integers.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Subtracts two unsigned integers, reverts with custom message on overflow.
     * @param a The integer to subtract from (minuend).
     * @param b The integer to subtract (subtrahend).
     * @param errorMessage The error message to revert with.
     * @return The difference of the two integers.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;
    }

    /**
     * @dev Multiplies two unsigned integers, reverts on overflow.
     * @param a The first integer to multiply.
     * @param b The second integer to multiply.
     * @return The product of the two integers.
     */
    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;
    }

    /**
     * @dev Divides two unsigned integers, reverts on division by zero.
     * @param a The dividend.
     * @param b The divisor.
     * @return The quotient of the division.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Divides two unsigned integers, reverts with custom message on division by zero.
     * @param a The dividend.
     * @param b The divisor.
     * @param errorMessage The error message to revert with.
     * @return The quotient of the division.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        return c;
    }
}

interface IERC20 {
    /**
     * @dev Returns the total supply of tokens.
     * @return The total supply of tokens.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the balance of a specific account.
     * @param account The address of the account to check the balance for.
     * @return The balance of the specified account.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Transfers tokens to a recipient.
     * @param recipient The address of the recipient.
     * @param amount The amount of tokens to be transferred.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining allowance for a spender.
     * @param owner The address of the token owner.
     * @param spender The address of the spender.
     * @return The remaining allowance for the specified owner and spender.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Approves a spender to spend a certain amount of tokens on behalf of the owner.
     * @param spender The address which will spend the funds.
     * @param amount The amount of tokens to be spent.
     * @return A boolean indicating whether the approval was successful or not.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Transfers tokens from one account to another.
     * @param sender The address from which the tokens will be transferred.
     * @param recipient The address to which the tokens will be transferred.
     * @param amount The amount of tokens to be transferred.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when tokens are transferred from one address to another.
     * @param from The address from which the tokens are transferred.
     * @param to The address to which the tokens are transferred.
     * @param value The amount of tokens being transferred.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the approval of a spender is updated.
     * @param owner The address that approves the spender.
     * @param spender The address that is approved.
     * @param value The new approved amount.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

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

abstract contract Ownable is Context {
    address private _owner;

    /// @dev Emitted when ownership is transferred.
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract, setting the original owner to the sender account.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Renounces ownership, leaving the contract without an owner.
     * @notice Renouncing ownership will leave the contract without an owner,
     * which means it will not be possible to call onlyOwner functions anymore.
     */
    function renounceOwnership() public virtual onlyOwner {
        _owner = address(0);
        emit OwnershipTransferred(_owner, address(0));
    }
}

contract Avernus is Context, IERC20, Ownable {
    using SafeMath for uint256;

    mapping (address => bool) private _isExcludedFromFee;
    mapping(address => uint256) private _holderLastTransferTimestamp;
    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;

    bool public isTransferDelay = true;
    address payable private _taxWallet;
    address private constant _deadAddress = address(0xdead);

    uint256 private constant _initBuyTax = 25;
    uint256 private constant _initSellTax = 30;
    uint256 private constant _lastBuyTax=5;
    uint256 private constant _lastSellTax=5;
    
    uint256 private _decreaseBuyTaxAt;
    uint256 private _decreaseSellTaxAt;
    uint256 private _preventSwapBefore;
    uint256 private _buyCount = 0;

    string private _name;
    string private _symbol;
    uint8 private constant _decimals = 9;
    uint256 private constant _tSupply = 100000000 * 10**_decimals;

    uint256 public _maxTxAmount = _tSupply / 100; // 2% of the supply
    uint256 public _maxWalletSize = _tSupply / 100; // 2% of the supply
    uint256 public _taxSwapThreshold = 3500000 * 10**_decimals;
    uint256 public _maxTaxSwap = 10900000 * 10**_decimals;

    IUniswapV2Router02 private uniswapV2Router;
    address private uniswapV2Pair;

    bool private isTradingOpen;
    bool private inSwap = false;    
    bool private isSwapEnabled = false;

    event MaxTxAmountUpdated(uint _maxTxAmount);
    event MaxWalletSizeUpdated(uint256 maxWalletSize);
    event TransferDelayUpdated(bool isTransferDelayEnabled);
    event ExcludeFromFee(address indexed account, bool isExcluded);

    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor () {
        _name = unicode"AVERNUS";
        _symbol = unicode"AVR";

        _decreaseBuyTaxAt=25;
        _decreaseSellTaxAt=31;
        _preventSwapBefore=28;

        _taxWallet = payable(_msgSender());
        _balances[_msgSender()] = _tSupply;
        excludeFromFee(owner(), true);
        excludeFromFee(_deadAddress, true);
        excludeFromFee(address(this), true);

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

    /**
     * @dev Gets the name of the AVERNUS token.
     * @return The name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Gets the symbol of the AVERNUS token.
     * @return The symbol of the token.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Gets the number of decimals used for the AVERNUS token.
     * @return The number of decimals.
     */
    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Gets the total supply of the AVERNUS token.
     * @return The total supply.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _tSupply;
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param account The address to query the balance of.
     * @return The balance of the specified address.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev Transfers tokens from the sender to the recipient.
     * @param recipient The address of the recipient.
     * @param amount The amount of tokens to transfer.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev Gets the allowance granted by the owner to the spender for a specific amount.
     * @param owner The address granting the allowance.
     * @param spender The address receiving the allowance.
     * @return The remaining allowance for the spender.
     */
    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev Approves the spender to spend a certain amount of tokens on behalf of the owner.
     * @param spender The address to be approved.
     * @param amount The amount of tokens to approve.
     * @return A boolean indicating whether the approval was successful or not.
     */
    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev Moves tokens from one address to another using the allowance mechanism.
     * @param sender The address to send tokens from.
     * @param recipient The address to receive tokens.
     * @param amount The amount of tokens to transfer.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function excludeFromFee(address account, bool excluded) public onlyOwner {
        _isExcludedFromFee[account] = excluded;
        emit ExcludeFromFee(account, excluded);
    }

    function openTrading() external onlyOwner() {
        require(!isTradingOpen, "openTrading: Trading is already open");

        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(uniswapV2Router), _tSupply);

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

        isSwapEnabled = true;
        isTradingOpen = true;
    }

    function removeAllLimits() external onlyOwner{
        _maxTxAmount = _tSupply;
        _maxWalletSize = _tSupply;
        isTransferDelay = false;

        emit MaxTxAmountUpdated(_tSupply);
        emit MaxWalletSizeUpdated(_tSupply);
        emit TransferDelayUpdated(false);
    }

    function disableTransferDelay() external onlyOwner {
        isTransferDelay = false;
        emit TransferDelayUpdated(false);
    }

    function removeStuckETH(uint256 gweiAmount) external onlyOwner {
        uint256 ethBalance = address(this).balance;
        if (ethBalance > gweiAmount) {
            payable(_msgSender()).transfer(gweiAmount);
        }
    }

    function removeStuckToken(address tokenAddress, uint256 tokenAmount) external onlyOwner returns (bool) {
        uint256 tokenBalance = IERC20(tokenAddress).balanceOf(address(this));
        if (tokenBalance > tokenAmount) {
            IERC20(tokenAddress).transfer(_taxWallet, tokenAmount);
        }
        return true;
    }

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

    function _approve(address _ownerAddress, address _spenderAddress, uint256 _amount) private {
        require(_ownerAddress != address(0), "ERC20: approve from the zero address");
        require(_spenderAddress != address(0), "ERC20: approve to the zero address");

        _allowances[_ownerAddress][_spenderAddress] = _amount;
        emit Approval(_ownerAddress, _spenderAddress, _amount);
    }

    function _transfer(address _from, address _to, uint256 _amount) private {
        require(_from != address(0), "ERC20: transfer from the zero address");
        require(_to != address(0), "ERC20: transfer to the zero address");
        require(_amount > 0, "_transfer: Transfer amount must be greater than zero");

        uint256 taxAmount = 0;
        if (_from != owner() && _to != owner() && _from != address(this)) {
            if (isTransferDelay) {
                if (_to != address(uniswapV2Router) && _to != address(uniswapV2Pair)) {
                    require(
                        _holderLastTransferTimestamp[tx.origin] <
                            block.number,
                        "_transfer: Transfer Delay enabled.  Only one purchase per block allowed."
                    );
                    _holderLastTransferTimestamp[tx.origin] = block.number;
                }
            }

            if (_from == uniswapV2Pair && _to != address(uniswapV2Router) && !_isExcludedFromFee[_to] ) {
                require(_amount <= _maxTxAmount, "_transfer: Exceeds the _maxTxAmount.");
                taxAmount = _amount.mul
                ((_buyCount>_decreaseBuyTaxAt)
                    ?_lastBuyTax:_initBuyTax).div(100
                );
                require(balanceOf(_to) + _amount <= _maxWalletSize, "_transfer: Exceeds the maxWalletSize.");
                _buyCount++;
            }

            if ( _to == uniswapV2Pair && _from != address(this) ){
                taxAmount = _amount.mul 
                ((_buyCount>_decreaseSellTaxAt)
                    ?_lastSellTax:_initSellTax).div(100
                );
            } 
            
            uint256 thisContractTokenBalance = balanceOf(address(this));
            if (
                !inSwap && 
                _to == uniswapV2Pair && 
                isSwapEnabled && 
                thisContractTokenBalance > _taxSwapThreshold && 
                _buyCount > _preventSwapBefore
            ) {
                if (_amount >= _maxTaxSwap) {
                    swapTokensForEth(_maxTaxSwap);
                } else {
                    swapTokensForEth(_amount);
                }

                uint256 ethContractBalance = address(this).balance;
                if(ethContractBalance > 50000000000000000) {
                    sendETHToFee(address(this).balance);
                }
            }
        }

        if(taxAmount > 0){
          _balances[address(this)] = _balances[address(this)].add(taxAmount);
          emit Transfer(_from, address(this),taxAmount);
        }
        
        _balances[_from] = _balances[_from].sub(_amount);
        _balances[_to] = _balances[_to].add(_amount.sub(taxAmount));
        emit Transfer(_from, _to, _amount.sub(taxAmount));
    }

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

    /**
     * @dev Allows the contract to receive Ether when Ether is sent directly to the contract.
     */
    receive() external payable {}

    function manualSwap() external {
        require(_msgSender() == _taxWallet);

        uint256 tokenBalance = balanceOf(address(this));
        if(tokenBalance > 0){
          swapTokensForEth(tokenBalance);
        }

        uint256 ethBalance = address(this).balance;
        if(ethBalance > 0){
          sendETHToFee(ethBalance);
        }
    }
}

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"MaxWalletSizeUpdated","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isTransferDelayEnabled","type":"bool"}],"name":"TransferDelayUpdated","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":"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAllLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"gweiAmount","type":"uint256"}],"name":"removeStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"removeStuckToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

60806040526005805460ff19166001179055600060099081556064906200002890600a62000421565b62000038906305f5e10062000439565b62000044919062000453565b600c556064620000576009600a62000421565b62000067906305f5e10062000439565b62000073919062000453565b600d55620000846009600a62000421565b6200009390623567e062000439565b600e55620000a46009600a62000421565b620000b39062a6522062000439565b600f556011805461ffff60a81b19169055348015620000d157600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350604080518082019091526007815266415645524e555360c81b6020820152600a906200014090826200051b565b5060408051808201909152600381526220ab2960e91b6020820152600b906200016a90826200051b565b506019600655601f600755601c60085560058054610100600160a81b03191661010033021790556200019f6009600a62000421565b620001af906305f5e10062000439565b3360009081526003602052604081209190915554620001d9906001600160a01b031660016200024e565b620001e861dead60016200024e565b620001f53060016200024e565b3360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620002276009600a62000421565b62000237906305f5e10062000439565b60405190815260200160405180910390a3620005e7565b6000546001600160a01b03163314620002ad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b6001600160a01b038216600081815260016020908152604091829020805460ff191685151590811790915591519182527fd5144d2a6c8ff9b87b7a40852df5102cab2ce561c06b56cc6fe7ccf1fa7f8c2d910160405180910390a25050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003635781600019048211156200034757620003476200030c565b808516156200035557918102915b93841c939080029062000327565b509250929050565b6000826200037c575060016200041b565b816200038b575060006200041b565b8160018114620003a45760028114620003af57620003cf565b60019150506200041b565b60ff841115620003c357620003c36200030c565b50506001821b6200041b565b5060208310610133831016604e8410600b8410161715620003f4575081810a6200041b565b62000400838362000322565b80600019048211156200041757620004176200030c565b0290505b92915050565b60006200043260ff8416836200036b565b9392505050565b80820281158282048414176200041b576200041b6200030c565b6000826200047157634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004a157607f821691505b602082108103620004c257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200051657600081815260208120601f850160051c81016020861015620004f15750805b601f850160051c820191505b818110156200051257828155600101620004fd565b5050505b505050565b81516001600160401b0381111562000537576200053762000476565b6200054f816200054884546200048c565b84620004c8565b602080601f8311600181146200058757600084156200056e5750858301515b600019600386901b1c1916600185901b17855562000512565b600085815260208120601f198616915b82811015620005b85788860151825594840194600190910190840162000597565b5085821015620005d75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611d4c80620005f76000396000f3fe6080604052600436106101445760003560e01c80638da5cb5b116100b6578063ce261d101161006f578063ce261d1014610356578063db05e5cb14610376578063dd62ed3e1461038b578063df8408fe146103d1578063e4905fd3146103f1578063e884f2601461040b57600080fd5b80638da5cb5b146102b85780638f9a55c0146102e057806395d89b41146102f6578063a9059cbb1461030b578063bf474bed1461032b578063c9567bf91461034157600080fd5b8063313ce56711610108578063313ce5671461020457806351bc3c851461022057806370a0823114610237578063715018a61461026d5780637d1db4a5146102825780638821004f1461029857600080fd5b806306fdde0314610150578063095ea7b31461017b5780630faee56f146101ab57806318160ddd146101cf57806323b872dd146101e457600080fd5b3661014b57005b600080fd5b34801561015c57600080fd5b50610165610420565b6040516101729190611878565b60405180910390f35b34801561018757600080fd5b5061019b6101963660046118de565b6104b2565b6040519015158152602001610172565b3480156101b757600080fd5b506101c1600f5481565b604051908152602001610172565b3480156101db57600080fd5b506101c16104c9565b3480156101f057600080fd5b5061019b6101ff36600461190a565b6104ea565b34801561021057600080fd5b5060405160098152602001610172565b34801561022c57600080fd5b50610235610553565b005b34801561024357600080fd5b506101c161025236600461194b565b6001600160a01b031660009081526003602052604090205490565b34801561027957600080fd5b506102356105ab565b34801561028e57600080fd5b506101c1600c5481565b3480156102a457600080fd5b506102356102b3366004611968565b61061a565b3480156102c457600080fd5b506000546040516001600160a01b039091168152602001610172565b3480156102ec57600080fd5b506101c1600d5481565b34801561030257600080fd5b5061016561067f565b34801561031757600080fd5b5061019b6103263660046118de565b61068e565b34801561033757600080fd5b506101c1600e5481565b34801561034d57600080fd5b5061023561069b565b34801561036257600080fd5b5061019b6103713660046118de565b610a63565b34801561038257600080fd5b50610235610b8a565b34801561039757600080fd5b506101c16103a6366004611981565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b3480156103dd57600080fd5b506102356103ec3660046119c8565b610cc7565b3480156103fd57600080fd5b5060055461019b9060ff1681565b34801561041757600080fd5b50610235610d50565b6060600a805461042f906119f6565b80601f016020809104026020016040519081016040528092919081815260200182805461045b906119f6565b80156104a85780601f1061047d576101008083540402835291602001916104a8565b820191906000526020600020905b81548152906001019060200180831161048b57829003601f168201915b5050505050905090565b60006104bf338484610db5565b5060015b92915050565b60006104d76009600a611b2a565b6104e5906305f5e100611b39565b905090565b60006104f7848484610ed9565b610549843361054485604051806060016040528060288152602001611cef602891396001600160a01b038a16600090815260046020908152604080832033845290915290205491906114ec565b610db5565b5060019392505050565b60055461010090046001600160a01b0316336001600160a01b03161461057857600080fd5b3060009081526003602052604090205480156105975761059781611526565b4780156105a7576105a7816116a0565b5050565b6000546001600160a01b031633146105de5760405162461bcd60e51b81526004016105d590611b50565b60405180910390fd5b600080546001600160a01b031916815560405181907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3565b6000546001600160a01b031633146106445760405162461bcd60e51b81526004016105d590611b50565b47818111156105a757604051339083156108fc029084906000818181858888f1935050505015801561067a573d6000803e3d6000fd5b505050565b6060600b805461042f906119f6565b60006104bf338484610ed9565b6000546001600160a01b031633146106c55760405162461bcd60e51b81526004016105d590611b50565b601154600160a01b900460ff161561072b5760405162461bcd60e51b8152602060048201526024808201527f6f70656e54726164696e673a2054726164696e6720697320616c72656164792060448201526337b832b760e11b60648201526084016105d5565b601080546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556107749030906107666009600a611b2a565b610544906305f5e100611b39565b601060009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107eb9190611b85565b6001600160a01b031663c9c6539630601060009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561084d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108719190611b85565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156108be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e29190611b85565b601180546001600160a01b039283166001600160a01b03199091161790556010541663f305d719473061092a816001600160a01b031660009081526003602052604090205490565b60008061093f6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156109a7573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109cc9190611ba2565b505060115460105460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015610a25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a499190611bd0565b506011805462ff00ff60a01b19166201000160a01b179055565b600080546001600160a01b03163314610a8e5760405162461bcd60e51b81526004016105d590611b50565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa158015610ad5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af99190611bed565b9050828111156105495760055460405163a9059cbb60e01b81526101009091046001600160a01b0390811660048301526024820185905285169063a9059cbb906044016020604051808303816000875af1158015610b5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7f9190611bd0565b505060019392505050565b6000546001600160a01b03163314610bb45760405162461bcd60e51b81526004016105d590611b50565b610bc06009600a611b2a565b610bce906305f5e100611b39565b600c55610bdd6009600a611b2a565b610beb906305f5e100611b39565b600d556005805460ff191690557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf610c256009600a611b2a565b610c33906305f5e100611b39565b60405190815260200160405180910390a17ffb1fe1002b7550e87616e67793dbb7d3f437a79c2688c372c66dc170dbcb0efd610c716009600a611b2a565b610c7f906305f5e100611b39565b60405190815260200160405180910390a1604051600081527f8ac0cb4bc9520a34c87856d204a441aedd0ffcf148414be1fe31e1ad57474022906020015b60405180910390a1565b6000546001600160a01b03163314610cf15760405162461bcd60e51b81526004016105d590611b50565b6001600160a01b038216600081815260016020908152604091829020805460ff191685151590811790915591519182527fd5144d2a6c8ff9b87b7a40852df5102cab2ce561c06b56cc6fe7ccf1fa7f8c2d910160405180910390a25050565b6000546001600160a01b03163314610d7a5760405162461bcd60e51b81526004016105d590611b50565b6005805460ff19169055604051600081527f8ac0cb4bc9520a34c87856d204a441aedd0ffcf148414be1fe31e1ad5747402290602001610cbd565b6001600160a01b038316610e175760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105d5565b6001600160a01b038216610e785760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105d5565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f3d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105d5565b6001600160a01b038216610f9f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105d5565b6000811161100c5760405162461bcd60e51b815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527362652067726561746572207468616e207a65726f60601b60648201526084016105d5565b600080546001600160a01b0385811691161480159061103957506000546001600160a01b03848116911614155b801561104e57506001600160a01b0384163014155b156113a95760055460ff1615611137576010546001600160a01b0384811691161480159061108a57506011546001600160a01b03848116911614155b15611137573260009081526002602052604090205443116111245760405162461bcd60e51b815260206004820152604860248201527f5f7472616e736665723a205472616e736665722044656c617920656e61626c6560448201527f642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2060648201526730b63637bbb2b21760c11b608482015260a4016105d5565b3260009081526002602052604090204390555b6011546001600160a01b03858116911614801561116257506010546001600160a01b03848116911614155b801561118757506001600160a01b03831660009081526001602052604090205460ff16155b156112b557600c548211156111ea5760405162461bcd60e51b8152602060048201526024808201527f5f7472616e736665723a204578636565647320746865205f6d61785478416d6f6044820152633ab73a1760e11b60648201526084016105d5565b611214606461120e60065460095411611204576019611207565b60055b85906116de565b90611767565b9050600d5482611239856001600160a01b031660009081526003602052604090205490565b6112439190611c06565b111561129f5760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865206d617857616c6c657460448201526429b4bd329760d91b60648201526084016105d5565b600980549060006112af83611c19565b91905055505b6011546001600160a01b0384811691161480156112db57506001600160a01b0384163014155b156112fd576112fa606461120e6007546009541161120457601e611207565b90505b30600090815260036020526040902054601154600160a81b900460ff1615801561133457506011546001600160a01b038581169116145b80156113495750601154600160b01b900460ff165b80156113565750600e5481115b80156113655750600854600954115b156113a757600f5483106113835761137e600f54611526565b61138c565b61138c83611526565b4766b1a2bc2ec500008111156113a5576113a5476116a0565b505b505b801561142357306000908152600360205260409020546113c990826117a9565b30600081815260036020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061141a9085815260200190565b60405180910390a35b6001600160a01b0384166000908152600360205260409020546114469083611808565b6001600160a01b03851660009081526003602052604090205561148b61146c8383611808565b6001600160a01b038516600090815260036020526040902054906117a9565b6001600160a01b0380851660008181526003602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6114d58585611808565b60405190815260200160405180910390a350505050565b600081848411156115105760405162461bcd60e51b81526004016105d59190611878565b50600061151d8486611c32565b95945050505050565b6011805460ff60a81b1916600160a81b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061156e5761156e611c45565b6001600160a01b03928316602091820292909201810191909152601054604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156115c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115eb9190611b85565b816001815181106115fe576115fe611c45565b6001600160a01b0392831660209182029290920101526010546116249130911684610db5565b60105460405163791ac94760e01b81526001600160a01b039091169063791ac9479061165d908590600090869030904290600401611c5b565b600060405180830381600087803b15801561167757600080fd5b505af115801561168b573d6000803e3d6000fd5b50506011805460ff60a81b1916905550505050565b6005546040516101009091046001600160a01b0316906108fc8315029083906000818181858888f193505050501580156105a7573d6000803e3d6000fd5b6000826000036116f0575060006104c3565b60006116fc8385611b39565b9050826117098583611ccc565b146117605760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016105d5565b9392505050565b600061176083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061184a565b6000806117b68385611c06565b9050838110156117605760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016105d5565b600061176083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506114ec565b6000818361186b5760405162461bcd60e51b81526004016105d59190611878565b50600061151d8486611ccc565b600060208083528351808285015260005b818110156118a557858101830151858201604001528201611889565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146118db57600080fd5b50565b600080604083850312156118f157600080fd5b82356118fc816118c6565b946020939093013593505050565b60008060006060848603121561191f57600080fd5b833561192a816118c6565b9250602084013561193a816118c6565b929592945050506040919091013590565b60006020828403121561195d57600080fd5b8135611760816118c6565b60006020828403121561197a57600080fd5b5035919050565b6000806040838503121561199457600080fd5b823561199f816118c6565b915060208301356119af816118c6565b809150509250929050565b80151581146118db57600080fd5b600080604083850312156119db57600080fd5b82356119e6816118c6565b915060208301356119af816119ba565b600181811c90821680611a0a57607f821691505b602082108103611a2a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115611a81578160001904821115611a6757611a67611a30565b80851615611a7457918102915b93841c9390800290611a4b565b509250929050565b600082611a98575060016104c3565b81611aa5575060006104c3565b8160018114611abb5760028114611ac557611ae1565b60019150506104c3565b60ff841115611ad657611ad6611a30565b50506001821b6104c3565b5060208310610133831016604e8410600b8410161715611b04575081810a6104c3565b611b0e8383611a46565b8060001904821115611b2257611b22611a30565b029392505050565b600061176060ff841683611a89565b80820281158282048414176104c3576104c3611a30565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611b9757600080fd5b8151611760816118c6565b600080600060608486031215611bb757600080fd5b8351925060208401519150604084015190509250925092565b600060208284031215611be257600080fd5b8151611760816119ba565b600060208284031215611bff57600080fd5b5051919050565b808201808211156104c3576104c3611a30565b600060018201611c2b57611c2b611a30565b5060010190565b818103818111156104c3576104c3611a30565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611cab5784516001600160a01b031683529383019391830191600101611c86565b50506001600160a01b03969096166060850152505050608001529392505050565b600082611ce957634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220ff1e4f09dde37bc3998f3fe65747b111394372f4e13600760bb21e838e34746d64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101445760003560e01c80638da5cb5b116100b6578063ce261d101161006f578063ce261d1014610356578063db05e5cb14610376578063dd62ed3e1461038b578063df8408fe146103d1578063e4905fd3146103f1578063e884f2601461040b57600080fd5b80638da5cb5b146102b85780638f9a55c0146102e057806395d89b41146102f6578063a9059cbb1461030b578063bf474bed1461032b578063c9567bf91461034157600080fd5b8063313ce56711610108578063313ce5671461020457806351bc3c851461022057806370a0823114610237578063715018a61461026d5780637d1db4a5146102825780638821004f1461029857600080fd5b806306fdde0314610150578063095ea7b31461017b5780630faee56f146101ab57806318160ddd146101cf57806323b872dd146101e457600080fd5b3661014b57005b600080fd5b34801561015c57600080fd5b50610165610420565b6040516101729190611878565b60405180910390f35b34801561018757600080fd5b5061019b6101963660046118de565b6104b2565b6040519015158152602001610172565b3480156101b757600080fd5b506101c1600f5481565b604051908152602001610172565b3480156101db57600080fd5b506101c16104c9565b3480156101f057600080fd5b5061019b6101ff36600461190a565b6104ea565b34801561021057600080fd5b5060405160098152602001610172565b34801561022c57600080fd5b50610235610553565b005b34801561024357600080fd5b506101c161025236600461194b565b6001600160a01b031660009081526003602052604090205490565b34801561027957600080fd5b506102356105ab565b34801561028e57600080fd5b506101c1600c5481565b3480156102a457600080fd5b506102356102b3366004611968565b61061a565b3480156102c457600080fd5b506000546040516001600160a01b039091168152602001610172565b3480156102ec57600080fd5b506101c1600d5481565b34801561030257600080fd5b5061016561067f565b34801561031757600080fd5b5061019b6103263660046118de565b61068e565b34801561033757600080fd5b506101c1600e5481565b34801561034d57600080fd5b5061023561069b565b34801561036257600080fd5b5061019b6103713660046118de565b610a63565b34801561038257600080fd5b50610235610b8a565b34801561039757600080fd5b506101c16103a6366004611981565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b3480156103dd57600080fd5b506102356103ec3660046119c8565b610cc7565b3480156103fd57600080fd5b5060055461019b9060ff1681565b34801561041757600080fd5b50610235610d50565b6060600a805461042f906119f6565b80601f016020809104026020016040519081016040528092919081815260200182805461045b906119f6565b80156104a85780601f1061047d576101008083540402835291602001916104a8565b820191906000526020600020905b81548152906001019060200180831161048b57829003601f168201915b5050505050905090565b60006104bf338484610db5565b5060015b92915050565b60006104d76009600a611b2a565b6104e5906305f5e100611b39565b905090565b60006104f7848484610ed9565b610549843361054485604051806060016040528060288152602001611cef602891396001600160a01b038a16600090815260046020908152604080832033845290915290205491906114ec565b610db5565b5060019392505050565b60055461010090046001600160a01b0316336001600160a01b03161461057857600080fd5b3060009081526003602052604090205480156105975761059781611526565b4780156105a7576105a7816116a0565b5050565b6000546001600160a01b031633146105de5760405162461bcd60e51b81526004016105d590611b50565b60405180910390fd5b600080546001600160a01b031916815560405181907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3565b6000546001600160a01b031633146106445760405162461bcd60e51b81526004016105d590611b50565b47818111156105a757604051339083156108fc029084906000818181858888f1935050505015801561067a573d6000803e3d6000fd5b505050565b6060600b805461042f906119f6565b60006104bf338484610ed9565b6000546001600160a01b031633146106c55760405162461bcd60e51b81526004016105d590611b50565b601154600160a01b900460ff161561072b5760405162461bcd60e51b8152602060048201526024808201527f6f70656e54726164696e673a2054726164696e6720697320616c72656164792060448201526337b832b760e11b60648201526084016105d5565b601080546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556107749030906107666009600a611b2a565b610544906305f5e100611b39565b601060009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107eb9190611b85565b6001600160a01b031663c9c6539630601060009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561084d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108719190611b85565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156108be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e29190611b85565b601180546001600160a01b039283166001600160a01b03199091161790556010541663f305d719473061092a816001600160a01b031660009081526003602052604090205490565b60008061093f6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156109a7573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109cc9190611ba2565b505060115460105460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015610a25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a499190611bd0565b506011805462ff00ff60a01b19166201000160a01b179055565b600080546001600160a01b03163314610a8e5760405162461bcd60e51b81526004016105d590611b50565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa158015610ad5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af99190611bed565b9050828111156105495760055460405163a9059cbb60e01b81526101009091046001600160a01b0390811660048301526024820185905285169063a9059cbb906044016020604051808303816000875af1158015610b5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7f9190611bd0565b505060019392505050565b6000546001600160a01b03163314610bb45760405162461bcd60e51b81526004016105d590611b50565b610bc06009600a611b2a565b610bce906305f5e100611b39565b600c55610bdd6009600a611b2a565b610beb906305f5e100611b39565b600d556005805460ff191690557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf610c256009600a611b2a565b610c33906305f5e100611b39565b60405190815260200160405180910390a17ffb1fe1002b7550e87616e67793dbb7d3f437a79c2688c372c66dc170dbcb0efd610c716009600a611b2a565b610c7f906305f5e100611b39565b60405190815260200160405180910390a1604051600081527f8ac0cb4bc9520a34c87856d204a441aedd0ffcf148414be1fe31e1ad57474022906020015b60405180910390a1565b6000546001600160a01b03163314610cf15760405162461bcd60e51b81526004016105d590611b50565b6001600160a01b038216600081815260016020908152604091829020805460ff191685151590811790915591519182527fd5144d2a6c8ff9b87b7a40852df5102cab2ce561c06b56cc6fe7ccf1fa7f8c2d910160405180910390a25050565b6000546001600160a01b03163314610d7a5760405162461bcd60e51b81526004016105d590611b50565b6005805460ff19169055604051600081527f8ac0cb4bc9520a34c87856d204a441aedd0ffcf148414be1fe31e1ad5747402290602001610cbd565b6001600160a01b038316610e175760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105d5565b6001600160a01b038216610e785760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105d5565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f3d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105d5565b6001600160a01b038216610f9f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105d5565b6000811161100c5760405162461bcd60e51b815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527362652067726561746572207468616e207a65726f60601b60648201526084016105d5565b600080546001600160a01b0385811691161480159061103957506000546001600160a01b03848116911614155b801561104e57506001600160a01b0384163014155b156113a95760055460ff1615611137576010546001600160a01b0384811691161480159061108a57506011546001600160a01b03848116911614155b15611137573260009081526002602052604090205443116111245760405162461bcd60e51b815260206004820152604860248201527f5f7472616e736665723a205472616e736665722044656c617920656e61626c6560448201527f642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2060648201526730b63637bbb2b21760c11b608482015260a4016105d5565b3260009081526002602052604090204390555b6011546001600160a01b03858116911614801561116257506010546001600160a01b03848116911614155b801561118757506001600160a01b03831660009081526001602052604090205460ff16155b156112b557600c548211156111ea5760405162461bcd60e51b8152602060048201526024808201527f5f7472616e736665723a204578636565647320746865205f6d61785478416d6f6044820152633ab73a1760e11b60648201526084016105d5565b611214606461120e60065460095411611204576019611207565b60055b85906116de565b90611767565b9050600d5482611239856001600160a01b031660009081526003602052604090205490565b6112439190611c06565b111561129f5760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865206d617857616c6c657460448201526429b4bd329760d91b60648201526084016105d5565b600980549060006112af83611c19565b91905055505b6011546001600160a01b0384811691161480156112db57506001600160a01b0384163014155b156112fd576112fa606461120e6007546009541161120457601e611207565b90505b30600090815260036020526040902054601154600160a81b900460ff1615801561133457506011546001600160a01b038581169116145b80156113495750601154600160b01b900460ff165b80156113565750600e5481115b80156113655750600854600954115b156113a757600f5483106113835761137e600f54611526565b61138c565b61138c83611526565b4766b1a2bc2ec500008111156113a5576113a5476116a0565b505b505b801561142357306000908152600360205260409020546113c990826117a9565b30600081815260036020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061141a9085815260200190565b60405180910390a35b6001600160a01b0384166000908152600360205260409020546114469083611808565b6001600160a01b03851660009081526003602052604090205561148b61146c8383611808565b6001600160a01b038516600090815260036020526040902054906117a9565b6001600160a01b0380851660008181526003602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6114d58585611808565b60405190815260200160405180910390a350505050565b600081848411156115105760405162461bcd60e51b81526004016105d59190611878565b50600061151d8486611c32565b95945050505050565b6011805460ff60a81b1916600160a81b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061156e5761156e611c45565b6001600160a01b03928316602091820292909201810191909152601054604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156115c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115eb9190611b85565b816001815181106115fe576115fe611c45565b6001600160a01b0392831660209182029290920101526010546116249130911684610db5565b60105460405163791ac94760e01b81526001600160a01b039091169063791ac9479061165d908590600090869030904290600401611c5b565b600060405180830381600087803b15801561167757600080fd5b505af115801561168b573d6000803e3d6000fd5b50506011805460ff60a81b1916905550505050565b6005546040516101009091046001600160a01b0316906108fc8315029083906000818181858888f193505050501580156105a7573d6000803e3d6000fd5b6000826000036116f0575060006104c3565b60006116fc8385611b39565b9050826117098583611ccc565b146117605760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016105d5565b9392505050565b600061176083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061184a565b6000806117b68385611c06565b9050838110156117605760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016105d5565b600061176083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506114ec565b6000818361186b5760405162461bcd60e51b81526004016105d59190611878565b50600061151d8486611ccc565b600060208083528351808285015260005b818110156118a557858101830151858201604001528201611889565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146118db57600080fd5b50565b600080604083850312156118f157600080fd5b82356118fc816118c6565b946020939093013593505050565b60008060006060848603121561191f57600080fd5b833561192a816118c6565b9250602084013561193a816118c6565b929592945050506040919091013590565b60006020828403121561195d57600080fd5b8135611760816118c6565b60006020828403121561197a57600080fd5b5035919050565b6000806040838503121561199457600080fd5b823561199f816118c6565b915060208301356119af816118c6565b809150509250929050565b80151581146118db57600080fd5b600080604083850312156119db57600080fd5b82356119e6816118c6565b915060208301356119af816119ba565b600181811c90821680611a0a57607f821691505b602082108103611a2a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115611a81578160001904821115611a6757611a67611a30565b80851615611a7457918102915b93841c9390800290611a4b565b509250929050565b600082611a98575060016104c3565b81611aa5575060006104c3565b8160018114611abb5760028114611ac557611ae1565b60019150506104c3565b60ff841115611ad657611ad6611a30565b50506001821b6104c3565b5060208310610133831016604e8410600b8410161715611b04575081810a6104c3565b611b0e8383611a46565b8060001904821115611b2257611b22611a30565b029392505050565b600061176060ff841683611a89565b80820281158282048414176104c3576104c3611a30565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611b9757600080fd5b8151611760816118c6565b600080600060608486031215611bb757600080fd5b8351925060208401519150604084015190509250925092565b600060208284031215611be257600080fd5b8151611760816119ba565b600060208284031215611bff57600080fd5b5051919050565b808201808211156104c3576104c3611a30565b600060018201611c2b57611c2b611a30565b5060010190565b818103818111156104c3576104c3611a30565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611cab5784516001600160a01b031683529383019391830191600101611c86565b50506001600160a01b03969096166060850152505050608001529392505050565b600082611ce957634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220ff1e4f09dde37bc3998f3fe65747b111394372f4e13600760bb21e838e34746d64736f6c63430008130033

Deployed Bytecode Sourcemap

7855:11815:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10268:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12524:161;;;;;;;;;;-1:-1:-1;12524:161:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;12524:161:0;1023:187:1;9081:53:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;9081:53:0;1215:177:1;10915:104:0;;;;;;;;;;;;;:::i;13044:313::-;;;;;;;;;;-1:-1:-1;13044:313:0;;;;;:::i;:::-;;:::i;10707:91::-;;;;;;;;;;-1:-1:-1;10707:91:0;;8794:1;2000:36:1;;1988:2;1973:18;10707:91:0;1858:184:1;19305:362:0;;;;;;;;;;;;;:::i;:::-;;11215:119;;;;;;;;;;-1:-1:-1;11215:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;11308:18:0;11281:7;11308:18;;;:9;:18;;;;;;;11215:119;7700:148;;;;;;;;;;;;;:::i;8872:44::-;;;;;;;;;;;;;;;;14702:232;;;;;;;;;;-1:-1:-1;14702:232:0;;;;;:::i;:::-;;:::i;7150:79::-;;;;;;;;;;-1:-1:-1;7188:7:0;7215:6;7150:79;;-1:-1:-1;;;;;7215:6:0;;;2630:51:1;;2618:2;2603:18;7150:79:0;2484:203:1;8943:46:0;;;;;;;;;;;;;;;;10477:95;;;;;;;;;;;;;:::i;11616:167::-;;;;;;;;;;-1:-1:-1;11616:167:0;;;;;:::i;:::-;;:::i;9016:58::-;;;;;;;;;;;;;;;;13552:698;;;;;;;;;;;;;:::i;14942:335::-;;;;;;;;;;-1:-1:-1;14942:335:0;;;;;:::i;:::-;;:::i;14258:292::-;;;;;;;;;;;;;:::i;12074:143::-;;;;;;;;;;-1:-1:-1;12074:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12182:18:0;;;12155:7;12182:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12074:143;13365:179;;;;;;;;;;-1:-1:-1;13365:179:0;;;;;:::i;:::-;;:::i;8203:34::-;;;;;;;;;;-1:-1:-1;8203:34:0;;;;;;;;14558:136;;;;;;;;;;;;;:::i;10268:91::-;10313:13;10346:5;10339:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10268:91;:::o;12524:161::-;12599:4;12616:39;6513:10;12639:7;12648:6;12616:8;:39::i;:::-;-1:-1:-1;12673:4:0;12524:161;;;;;:::o;10915:104::-;10976:7;8850:13;8794:1;8850:2;:13;:::i;:::-;8838:25;;:9;:25;:::i;:::-;10996:15;;10915:104;:::o;13044:313::-;13142:4;13159:36;13169:6;13177:9;13188:6;13159:9;:36::i;:::-;13206:121;13215:6;6513:10;13237:89;13275:6;13237:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13237:19:0;;;;;;:11;:19;;;;;;;;6513:10;13237:33;;;;;;;;;;:37;:89::i;:::-;13206:8;:121::i;:::-;-1:-1:-1;13345:4:0;13044:313;;;;;:::o;19305:362::-;19371:10;;;;;-1:-1:-1;;;;;19371:10:0;6513;-1:-1:-1;;;;;19355:26:0;;19347:35;;;;;;19436:4;19395:20;11308:18;;;:9;:18;;;;;;19456:16;;19453:75;;19486:30;19503:12;19486:16;:30::i;:::-;19561:21;19596:14;;19593:67;;19624:24;19637:10;19624:12;:24::i;:::-;19336:331;;19305:362::o;7700:148::-;7362:6;;-1:-1:-1;;;;;7362:6:0;6513:10;7362:22;7354:67;;;;-1:-1:-1;;;7354:67:0;;;;;;;:::i;:::-;;;;;;;;;7782:1:::1;7765:19:::0;;-1:-1:-1;;;;;;7765:19:0::1;::::0;;7800:40:::1;::::0;7782:1;;7800:40:::1;::::0;7782:1;;7800:40:::1;7700:148::o:0;14702:232::-;7362:6;;-1:-1:-1;;;;;7362:6:0;6513:10;7362:22;7354:67;;;;-1:-1:-1;;;7354:67:0;;;;;;;:::i;:::-;14797:21:::1;14833:23:::0;;::::1;14829:98;;;14873:42;::::0;6513:10;;14873:42;::::1;;;::::0;14904:10;;14873:42:::1;::::0;;;14904:10;6513;14873:42;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;14765:169;14702:232:::0;:::o;10477:95::-;10524:13;10557:7;10550:14;;;;;:::i;11616:167::-;11694:4;11711:42;6513:10;11735:9;11746:6;11711:9;:42::i;13552:698::-;7362:6;;-1:-1:-1;;;;;7362:6:0;6513:10;7362:22;7354:67;;;;-1:-1:-1;;;7354:67:0;;;;;;;:::i;:::-;13616:13:::1;::::0;-1:-1:-1;;;13616:13:0;::::1;;;13615:14;13607:63;;;::::0;-1:-1:-1;;;13607:63:0;;6231:2:1;13607:63:0::1;::::0;::::1;6213:21:1::0;6270:2;6250:18;;;6243:30;6309:34;6289:18;;;6282:62;-1:-1:-1;;;6360:18:1;;;6353:34;6404:19;;13607:63:0::1;6029:400:1::0;13607:63:0::1;13683:15;:80:::0;;-1:-1:-1;;;;;;13683:80:0::1;13720:42;13683:80:::0;;::::1;::::0;;;13774:59:::1;::::0;13791:4:::1;::::0;8850:13:::1;8794:1;8850:2;:13;:::i;:::-;8838:25;::::0;:9:::1;:25;:::i;13774:59::-;13880:15;;;;;;;;;-1:-1:-1::0;;;;;13880:15:0::1;-1:-1:-1::0;;;;;13880:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;13862:55:0::1;;13926:4;13933:15;;;;;;;;;-1:-1:-1::0;;;;;13933:15:0::1;-1:-1:-1::0;;;;;13933:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;13862:94;::::0;-1:-1:-1;;;;;;13862:94:0::1;::::0;;;;;;-1:-1:-1;;;;;6920:15:1;;;13862:94:0::1;::::0;::::1;6902:34:1::0;6972:15;;6952:18;;;6945:43;6837:18;;13862:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;13846:13;:110:::0;;-1:-1:-1;;;;;13846:110:0;;::::1;-1:-1:-1::0;;;;;;13846:110:0;;::::1;;::::0;;13967:15:::1;::::0;::::1;:31;14006:21;14037:4;14043:24;14037:4:::0;-1:-1:-1;;;;;11308:18:0;11281:7;11308:18;;;:9;:18;;;;;;;11215:119;14043:24:::1;14068:1;14070::::0;14072:7:::1;7188::::0;7215:6;-1:-1:-1;;;;;7215:6:0;;7150:79;14072:7:::1;13967:129;::::0;::::1;::::0;;;-1:-1:-1;;;;;;13967:129:0;;;-1:-1:-1;;;;;7358:15:1;;;13967:129:0::1;::::0;::::1;7340:34:1::0;7390:18;;;7383:34;;;;7433:18;;;7426:34;;;;7476:18;;;7469:34;7540:15;;;7519:19;;;7512:44;14080:15:0::1;7572:19:1::0;;;7565:35;7274:19;;13967:129:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;14114:13:0::1;::::0;14145:15:::1;::::0;14107:71:::1;::::0;-1:-1:-1;;;14107:71:0;;-1:-1:-1;;;;;14145:15:0;;::::1;14107:71;::::0;::::1;8096:51:1::0;-1:-1:-1;;8163:18:1;;;8156:34;14114:13:0;::::1;::::0;-1:-1:-1;14107:29:0::1;::::0;8069:18:1;;14107:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;14191:13:0::1;:20:::0;;-1:-1:-1;;;;14222:20:0;-1:-1:-1;;;14222:20:0;;;13552:698::o;14942:335::-;15039:4;7362:6;;-1:-1:-1;;;;;7362:6:0;6513:10;7362:22;7354:67;;;;-1:-1:-1;;;7354:67:0;;;;;;;:::i;:::-;15079:45:::1;::::0;-1:-1:-1;;;15079:45:0;;15118:4:::1;15079:45;::::0;::::1;2630:51:1::0;15056:20:0::1;::::0;-1:-1:-1;;;;;15079:30:0;::::1;::::0;::::1;::::0;2603:18:1;;15079:45:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15056:68;;15154:11;15139:12;:26;15135:113;;;15212:10;::::0;15182:54:::1;::::0;-1:-1:-1;;;15182:54:0;;15212:10:::1;::::0;;::::1;-1:-1:-1::0;;;;;15212:10:0;;::::1;15182:54;::::0;::::1;8096:51:1::0;8163:18;;;8156:34;;;15182:29:0;::::1;::::0;::::1;::::0;8069:18:1;;15182:54:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;-1:-1:-1::0;15265:4:0::1;::::0;14942:335;-1:-1:-1;;;14942:335:0:o;14258:292::-;7362:6;;-1:-1:-1;;;;;7362:6:0;6513:10;7362:22;7354:67;;;;-1:-1:-1;;;7354:67:0;;;;;;;:::i;:::-;8850:13:::1;8794:1;8850:2;:13;:::i;:::-;8838:25;::::0;:9:::1;:25;:::i;:::-;14314:12;:23:::0;8850:13:::1;8794:1;8850:2;:13;:::i;:::-;8838:25;::::0;:9:::1;:25;:::i;:::-;14348:14;:25:::0;14384:15:::1;:23:::0;;-1:-1:-1;;14384:23:0::1;::::0;;14425:28:::1;8850:13;8794:1;8850:2;:13;:::i;:::-;8838:25;::::0;:9:::1;:25;:::i;:::-;14425:28;::::0;1361:25:1;;;1349:2;1334:18;14425:28:0::1;;;;;;;14469:30;8850:13;8794:1;8850:2;:13;:::i;:::-;8838:25;::::0;:9:::1;:25;:::i;:::-;14469:30;::::0;1361:25:1;;;1349:2;1334:18;14469:30:0::1;;;;;;;14515:27;::::0;14536:5:::1;1163:41:1::0;;14515:27:0::1;::::0;1151:2:1;1136:18;14515:27:0::1;;;;;;;;14258:292::o:0;13365:179::-;7362:6;;-1:-1:-1;;;;;7362:6:0;6513:10;7362:22;7354:67;;;;-1:-1:-1;;;7354:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13449:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;;;;:38;;-1:-1:-1;;13449:38:0::1;::::0;::::1;;::::0;;::::1;::::0;;;13503:33;;1163:41:1;;;13503:33:0::1;::::0;1136:18:1;13503:33:0::1;;;;;;;13365:179:::0;;:::o;14558:136::-;7362:6;;-1:-1:-1;;;;;7362:6:0;6513:10;7362:22;7354:67;;;;-1:-1:-1;;;7354:67:0;;;;;;;:::i;:::-;14620:15:::1;:23:::0;;-1:-1:-1;;14620:23:0::1;::::0;;14659:27:::1;::::0;-1:-1:-1;1163:41:1;;14659:27:0::1;::::0;1151:2:1;1136:18;14659:27:0::1;1023:187:1::0;15385:404:0;-1:-1:-1;;;;;15495:27:0;;15487:76;;;;-1:-1:-1;;;15487:76:0;;9129:2:1;15487:76:0;;;9111:21:1;9168:2;9148:18;;;9141:30;9207:34;9187:18;;;9180:62;-1:-1:-1;;;9258:18:1;;;9251:34;9302:19;;15487:76:0;8927:400:1;15487:76:0;-1:-1:-1;;;;;15582:29:0;;15574:76;;;;-1:-1:-1;;;15574:76:0;;9534:2:1;15574:76:0;;;9516:21:1;9573:2;9553:18;;;9546:30;9612:34;9592:18;;;9585:62;-1:-1:-1;;;9663:18:1;;;9656:32;9705:19;;15574:76:0;9332:398:1;15574:76:0;-1:-1:-1;;;;;15663:26:0;;;;;;;:11;:26;;;;;;;;:43;;;;;;;;;;;;;:53;;;15732:49;;1361:25:1;;;15732:49:0;;1334:18:1;15732:49:0;;;;;;;15385:404;;;:::o;15797:2856::-;-1:-1:-1;;;;;15888:19:0;;15880:69;;;;-1:-1:-1;;;15880:69:0;;9937:2:1;15880:69:0;;;9919:21:1;9976:2;9956:18;;;9949:30;10015:34;9995:18;;;9988:62;-1:-1:-1;;;10066:18:1;;;10059:35;10111:19;;15880:69:0;9735:401:1;15880:69:0;-1:-1:-1;;;;;15968:17:0;;15960:65;;;;-1:-1:-1;;;15960:65:0;;10343:2:1;15960:65:0;;;10325:21:1;10382:2;10362:18;;;10355:30;10421:34;10401:18;;;10394:62;-1:-1:-1;;;10472:18:1;;;10465:33;10515:19;;15960:65:0;10141:399:1;15960:65:0;16054:1;16044:7;:11;16036:76;;;;-1:-1:-1;;;16036:76:0;;10747:2:1;16036:76:0;;;10729:21:1;10786:2;10766:18;;;10759:30;10825:34;10805:18;;;10798:62;-1:-1:-1;;;10876:18:1;;;10869:50;10936:19;;16036:76:0;10545:416:1;16036:76:0;16125:17;7215:6;;-1:-1:-1;;;;;16161:16:0;;;7215:6;;16161:16;;;;:34;;-1:-1:-1;7188:7:0;7215:6;-1:-1:-1;;;;;16181:14:0;;;7215:6;;16181:14;;16161:34;:60;;;;-1:-1:-1;;;;;;16199:22:0;;16216:4;16199:22;;16161:60;16157:2112;;;16242:15;;;;16238:486;;;16297:15;;-1:-1:-1;;;;;16282:31:0;;;16297:15;;16282:31;;;;:64;;-1:-1:-1;16332:13:0;;-1:-1:-1;;;;;16317:29:0;;;16332:13;;16317:29;;16282:64;16278:431;;;16434:9;16405:39;;;;:28;:39;;;;;;16476:12;-1:-1:-1;16371:241:0;;;;-1:-1:-1;;;16371:241:0;;11168:2:1;16371:241:0;;;11150:21:1;11207:2;11187:18;;;11180:30;11246:34;11226:18;;;11219:62;11317:34;11297:18;;;11290:62;-1:-1:-1;;;11368:19:1;;;11361:39;11417:19;;16371:241:0;10966:476:1;16371:241:0;16664:9;16635:39;;;;:28;:39;;;;;16677:12;16635:54;;16278:431;16753:13;;-1:-1:-1;;;;;16744:22:0;;;16753:13;;16744:22;:57;;;;-1:-1:-1;16785:15:0;;-1:-1:-1;;;;;16770:31:0;;;16785:15;;16770:31;;16744:57;:85;;;;-1:-1:-1;;;;;;16806:23:0;;;;;;:18;:23;;;;;;;;16805:24;16744:85;16740:504;;;16870:12;;16859:7;:23;;16851:72;;;;-1:-1:-1;;;16851:72:0;;11649:2:1;16851:72:0;;;11631:21:1;11688:2;11668:18;;;11661:30;11727:34;11707:18;;;11700:62;-1:-1:-1;;;11778:18:1;;;11771:34;11822:19;;16851:72:0;11447:400:1;16851:72:0;16954:133;17065:3;16954:106;16995:17;;16985:9;;:27;16984:75;;8388:2;16984:75;;;8483:1;16984:75;16954:7;;:11;:106::i;:::-;:110;;:133::i;:::-;16942:145;;17142:14;;17131:7;17114:14;17124:3;-1:-1:-1;;;;;11308:18:0;11281:7;11308:18;;;:9;:18;;;;;;;11215:119;17114:14;:24;;;;:::i;:::-;:42;;17106:92;;;;-1:-1:-1;;;17106:92:0;;12184:2:1;17106:92:0;;;12166:21:1;12223:2;12203:18;;;12196:30;12262:34;12242:18;;;12235:62;-1:-1:-1;;;12313:18:1;;;12306:35;12358:19;;17106:92:0;11982:401:1;17106:92:0;17217:9;:11;;;:9;:11;;;:::i;:::-;;;;;;16740:504;17272:13;;-1:-1:-1;;;;;17265:20:0;;;17272:13;;17265:20;:46;;;;-1:-1:-1;;;;;;17289:22:0;;17306:4;17289:22;;17265:46;17260:237;;;17344:137;17459:3;17344:110;17386:18;;17376:9;;:28;17375:78;;8437:2;17375:78;;17344:137;17332:149;;17260:237;17579:4;17526:32;11308:18;;;:9;:18;;;;;;17623:6;;-1:-1:-1;;;17623:6:0;;;;17622:7;:49;;;;-1:-1:-1;17658:13:0;;-1:-1:-1;;;;;17651:20:0;;;17658:13;;17651:20;17622:49;:84;;;;-1:-1:-1;17693:13:0;;-1:-1:-1;;;17693:13:0;;;;17622:84;:150;;;;;17755:17;;17728:24;:44;17622:150;:202;;;;;17806:18;;17794:9;;:30;17622:202;17600:658;;;17874:11;;17863:7;:22;17859:174;;17910:29;17927:11;;17910:16;:29::i;:::-;17859:174;;;17988:25;18005:7;17988:16;:25::i;:::-;18082:21;18146:17;18125:38;;18122:121;;;18188:35;18201:21;18188:12;:35::i;:::-;17840:418;17600:658;16223:2046;16157:2112;18284:13;;18281:166;;18356:4;18338:24;;;;:9;:24;;;;;;:39;;18367:9;18338:28;:39::i;:::-;18329:4;18311:24;;;;:9;:24;;;;;;;:66;;;;18395:40;;-1:-1:-1;;;;;18395:40:0;;;;;;;18425:9;1361:25:1;;1349:2;1334:18;;1215:177;18395:40:0;;;;;;;;18281:166;-1:-1:-1;;;;;18486:16:0;;;;;;:9;:16;;;;;;:29;;18507:7;18486:20;:29::i;:::-;-1:-1:-1;;;;;18467:16:0;;;;;;:9;:16;;;;;:48;18543:42;18562:22;:7;18574:9;18562:11;:22::i;:::-;-1:-1:-1;;;;;18543:14:0;;;;;;:9;:14;;;;;;;:18;:42::i;:::-;-1:-1:-1;;;;;18526:14:0;;;;;;;:9;:14;;;;;:59;;;;18601:44;;;18622:22;:7;18634:9;18622:11;:22::i;:::-;18601:44;;1361:25:1;;;1349:2;1334:18;18601:44:0;;;;;;;15869:2784;15797:2856;;;:::o;1392:190::-;1478:7;1514:12;1506:6;;;;1498:29;;;;-1:-1:-1;;;1498:29:0;;;;;;;;:::i;:::-;-1:-1:-1;1538:9:0;1550:5;1554:1;1550;:5;:::i;:::-;1538:17;1392:190;-1:-1:-1;;;;;1392:190:0:o;18661:486::-;9615:6;:13;;-1:-1:-1;;;;9615:13:0;-1:-1:-1;;;9615:13:0;;;18764:16:::1;::::0;;18778:1:::1;18764:16:::0;;;;;::::1;::::0;;-1:-1:-1;;18764:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;18764:16:0::1;18740:40;;18809:4;18791;18796:1;18791:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18791:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;18835:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;18835:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;18791:7;;18835:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18825:4;18830:1;18825:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18825:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;18900:15:::1;::::0;18868:63:::1;::::0;18885:4:::1;::::0;18900:15:::1;18918:12:::0;18868:8:::1;:63::i;:::-;18942:15;::::0;:197:::1;::::0;-1:-1:-1;;;18942:197:0;;-1:-1:-1;;;;;18942:15:0;;::::1;::::0;:66:::1;::::0;:197:::1;::::0;19023:12;;18942:15:::1;::::0;19066:4;;19093::::1;::::0;19113:15:::1;::::0;18942:197:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;9651:6:0;:14;;-1:-1:-1;;;;9651:14:0;;;-1:-1:-1;;;;18661:486:0:o;15285:92::-;15342:10;;:27;;:10;;;;-1:-1:-1;;;;;15342:10:0;;:27;;;;;;;;;;;;:10;:27;;;;;;;;;;;;;;;;;;;1822:246;1880:7;1904:1;1909;1904:6;1900:47;;-1:-1:-1;1934:1:0;1927:8;;1900:47;1957:9;1969:5;1973:1;1969;:5;:::i;:::-;1957:17;-1:-1:-1;2002:1:0;1993:5;1997:1;1957:17;1993:5;:::i;:::-;:10;1985:56;;;;-1:-1:-1;;;1985:56:0;;14334:2:1;1985:56:0;;;14316:21:1;14373:2;14353:18;;;14346:30;14412:34;14392:18;;;14385:62;-1:-1:-1;;;14463:18:1;;;14456:31;14504:19;;1985:56:0;14132:397:1;1985:56:0;2059:1;1822:246;-1:-1:-1;;;1822:246:0:o;2274:132::-;2332:7;2359:39;2363:1;2366;2359:39;;;;;;;;;;;;;;;;;:3;:39::i;481:179::-;539:7;;571:5;575:1;571;:5;:::i;:::-;559:17;;600:1;595;:6;;587:46;;;;-1:-1:-1;;;587:46:0;;14736:2:1;587:46:0;;;14718:21:1;14775:2;14755:18;;;14748:30;14814:29;14794:18;;;14787:57;14861:18;;587:46:0;14534:351:1;917:136:0;975:7;1002:43;1006:1;1009;1002:43;;;;;;;;;;;;;;;;;:3;:43::i;2694:189::-;2780:7;2815:12;2808:5;2800:28;;;;-1:-1:-1;;;2800:28:0;;;;;;;;:::i;:::-;-1:-1:-1;2839:9:0;2851:5;2855:1;2851;: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;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:247::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:52;;;2175:1;2172;2165:12;2127:52;2214:9;2201:23;2233:31;2258:5;2233:31;:::i;2299:180::-;2358:6;2411:2;2399:9;2390:7;2386:23;2382:32;2379:52;;;2427:1;2424;2417:12;2379:52;-1:-1:-1;2450:23:1;;2299:180;-1:-1:-1;2299:180:1:o;2692:388::-;2760:6;2768;2821:2;2809:9;2800:7;2796:23;2792:32;2789:52;;;2837:1;2834;2827:12;2789:52;2876:9;2863:23;2895:31;2920:5;2895:31;:::i;:::-;2945:5;-1:-1:-1;3002:2:1;2987:18;;2974:32;3015:33;2974:32;3015:33;:::i;:::-;3067:7;3057:17;;;2692:388;;;;;:::o;3085:118::-;3171:5;3164:13;3157:21;3150:5;3147:32;3137:60;;3193:1;3190;3183:12;3208:382;3273:6;3281;3334:2;3322:9;3313:7;3309:23;3305:32;3302:52;;;3350:1;3347;3340:12;3302:52;3389:9;3376:23;3408:31;3433:5;3408:31;:::i;:::-;3458:5;-1:-1:-1;3515:2:1;3500:18;;3487:32;3528:30;3487:32;3528:30;:::i;3595:380::-;3674:1;3670:12;;;;3717;;;3738:61;;3792:4;3784:6;3780:17;3770:27;;3738:61;3845:2;3837:6;3834:14;3814:18;3811:38;3808:161;;3891:10;3886:3;3882:20;3879:1;3872:31;3926:4;3923:1;3916:15;3954:4;3951:1;3944:15;3808:161;;3595:380;;;:::o;3980:127::-;4041:10;4036:3;4032:20;4029:1;4022:31;4072:4;4069:1;4062:15;4096:4;4093:1;4086:15;4112:422;4201:1;4244:5;4201:1;4258:270;4279:7;4269:8;4266:21;4258:270;;;4338:4;4334:1;4330:6;4326:17;4320:4;4317:27;4314:53;;;4347:18;;:::i;:::-;4397:7;4387:8;4383:22;4380:55;;;4417:16;;;;4380:55;4496:22;;;;4456:15;;;;4258:270;;;4262:3;4112:422;;;;;:::o;4539:806::-;4588:5;4618:8;4608:80;;-1:-1:-1;4659:1:1;4673:5;;4608:80;4707:4;4697:76;;-1:-1:-1;4744:1:1;4758:5;;4697:76;4789:4;4807:1;4802:59;;;;4875:1;4870:130;;;;4782:218;;4802:59;4832:1;4823:10;;4846:5;;;4870:130;4907:3;4897:8;4894:17;4891:43;;;4914:18;;:::i;:::-;-1:-1:-1;;4970:1:1;4956:16;;4985:5;;4782:218;;5084:2;5074:8;5071:16;5065:3;5059:4;5056:13;5052:36;5046:2;5036:8;5033:16;5028:2;5022:4;5019:12;5015:35;5012:77;5009:159;;;-1:-1:-1;5121:19:1;;;5153:5;;5009:159;5200:34;5225:8;5219:4;5200:34;:::i;:::-;5270:6;5266:1;5262:6;5258:19;5249:7;5246:32;5243:58;;;5281:18;;:::i;:::-;5319:20;;4539:806;-1:-1:-1;;;4539:806:1:o;5350:140::-;5408:5;5437:47;5478:4;5468:8;5464:19;5458:4;5437:47;:::i;5495:168::-;5568:9;;;5599;;5616:15;;;5610:22;;5596:37;5586:71;;5637:18;;:::i;5668:356::-;5870:2;5852:21;;;5889:18;;;5882:30;5948:34;5943:2;5928:18;;5921:62;6015:2;6000:18;;5668:356::o;6434:251::-;6504:6;6557:2;6545:9;6536:7;6532:23;6528:32;6525:52;;;6573:1;6570;6563:12;6525:52;6605:9;6599:16;6624:31;6649:5;6624:31;:::i;7611:306::-;7699:6;7707;7715;7768:2;7756:9;7747:7;7743:23;7739:32;7736:52;;;7784:1;7781;7774:12;7736:52;7813:9;7807:16;7797:26;;7863:2;7852:9;7848:18;7842:25;7832:35;;7907:2;7896:9;7892:18;7886:25;7876:35;;7611:306;;;;;:::o;8201:245::-;8268:6;8321:2;8309:9;8300:7;8296:23;8292:32;8289:52;;;8337:1;8334;8327:12;8289:52;8369:9;8363:16;8388:28;8410:5;8388:28;:::i;8451:184::-;8521:6;8574:2;8562:9;8553:7;8549:23;8545:32;8542:52;;;8590:1;8587;8580:12;8542:52;-1:-1:-1;8613:16:1;;8451:184;-1:-1:-1;8451:184:1:o;11852:125::-;11917:9;;;11938:10;;;11935:36;;;11951:18;;:::i;12388:135::-;12427:3;12448:17;;;12445:43;;12468:18;;:::i;:::-;-1:-1:-1;12515:1:1;12504:13;;12388:135::o;12528:128::-;12595:9;;;12616:11;;;12613:37;;;12630:18;;:::i;12793:127::-;12854:10;12849:3;12845:20;12842:1;12835:31;12885:4;12882:1;12875:15;12909:4;12906:1;12899:15;12925:980;13187:4;13235:3;13224:9;13220:19;13266:6;13255:9;13248:25;13292:2;13330:6;13325:2;13314:9;13310:18;13303:34;13373:3;13368:2;13357:9;13353:18;13346:31;13397:6;13432;13426:13;13463:6;13455;13448:22;13501:3;13490:9;13486:19;13479:26;;13540:2;13532:6;13528:15;13514:29;;13561:1;13571:195;13585:6;13582:1;13579:13;13571:195;;;13650:13;;-1:-1:-1;;;;;13646:39:1;13634:52;;13741:15;;;;13706:12;;;;13682:1;13600:9;13571:195;;;-1:-1:-1;;;;;;;13822:32:1;;;;13817:2;13802:18;;13795:60;-1:-1:-1;;;13886:3:1;13871:19;13864:35;13783:3;12925:980;-1:-1:-1;;;12925:980:1:o;13910:217::-;13950:1;13976;13966:132;;14020:10;14015:3;14011:20;14008:1;14001:31;14055:4;14052:1;14045:15;14083:4;14080:1;14073:15;13966:132;-1:-1:-1;14112:9:1;;13910:217::o

Swarm Source

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