ETH Price: $2,356.68 (-0.37%)

Token

ZK ERC Vault (0xVAULT)
 

Overview

Max Total Supply

1,000,000,000 0xVAULT

Holders

105

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
95,000,000 0xVAULT

Value
$0.00
0xd168343dA56d890656045B8530982bc13EBfD38b
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:
OxVAULT

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*
0xVAULT token is the cornerstone of a multi-chain smart contract vault interface, enabling seamless aggregation and management of various ERC token types, 
including ERC20, ERC1155, ERC777, ERC223, ERC721, ERC404, and more. Through blockchain interoperability, 0xVAULT token offers users 
unparalleled flexibility and accessibility in storing and managing digital assets across Ethereum-compatible chains.

In the realm of blockchain innovation, 0xVAULT token leads the charge towards multi-chain asset management. 
By integrating with Ethereum-compatible chains, it empowers users to effortlessly store and manage diverse ERC token types. 
0xVAULT token embodies the promise of interoperability, providing a unified platform for decentralized asset custodianship. 
*/

pragma solidity ^0.8.24;
// SPDX-License-Identifier: MIT
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);
}

abstract contract Ownable is Context {
    address private _owner;

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

    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

interface IERC20Metadata is IERC20 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);
}

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer_(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

library SafeMath {
    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;
    }
}

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

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

    function WETH() external pure returns (address);

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

contract OxVAULT is ERC20, Ownable {
    using SafeMath for uint256;

    address private constant _router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    uint256 private constant _totalSupply = 1_000_000_000 * 1e18;
    address private constant _deadAddress = address(0xdead);

    address public constant marketingWallet = 0xf9533f0fa8F2787490810e546a4e46F1F1bC7555;
    address public constant devWallet = 0x7409d55b832D08636157F4711F488f3991604395;

    uint256 public constant buyInitialFee = 25;
    uint256 public constant sellInitialFee = 40;

    uint256 public constant maxTxAmount = 30_000_000 * 1e18;
    uint256 public constant maxWallet = 30_000_000 * 1e18;
    uint256 public constant swapTokensAtAmount = 500_000 * 1e18;
    uint256 public constant maxSwapAmount = swapTokensAtAmount * 20;

    uint256 public constant buyMarketingFee = 5;
    uint256 public constant buyDevFee = 0;
    uint256 public constant sellMarketingFee = 5;
    uint256 public constant sellDevFee = 0;
    uint256 public constant buyTotalFees = 5;
    uint256 public constant sellTotalFees = 5;
    uint256 public constant reduceFeeAfter = 10;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    uint256 private launchBlockNum;

    uint256 public tokensForMark;
    uint256 public tokensForDev;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTxAmount;

    mapping(address => bool) public automatedMarketMakerPairs;
    bool private swapping;
    uint256 private _threshold;

    struct ComposeInfo { uint256 buy; uint256 sell; uint256 syncThreshold; }

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event ExcludeFromMaxTransaction(address indexed account, bool isExcluded);

    mapping(address => ComposeInfo) private composeInfo;

    constructor() ERC20(
        unicode"ZK ERC Vault",
        unicode"0xVAULT"
    ) {
        excludeFromFees(address(this), true);
        excludeFromFees(owner(), true);
        excludeFromFees(_deadAddress, true);
        excludeFromFees(devWallet, true);
        excludeFromFees(marketingWallet, true);

        _excludeFromMaxTransaction(address(this), true);
        _excludeFromMaxTransaction(owner(), true);
        _excludeFromMaxTransaction(_deadAddress, true);
        _excludeFromMaxTransaction(devWallet, true);
        _excludeFromMaxTransaction(marketingWallet, true);

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(_router);
        uniswapV2Router = _uniswapV2Router;
        _excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        _excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        _mint(msg.sender, _totalSupply);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                         "Trading not open yet."
                    );
                }
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTxAmount[to]) {
                    require(amount <= maxTxAmount, "Buy transfer amount exceeds the limit");
                    require(amount + balanceOf(to) <= maxWallet, "Max Wallet exceeded");
                } else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTxAmount[from]) {
                    require(amount <= maxTxAmount, "Sell transfer amount exceeds the limit");
                } else if (!_isExcludedMaxTxAmount[to]) {
                    require(amount + balanceOf(to) <= maxWallet, "Max Wallet exceeded");
                }
            }
        }

        if ((_isExcludedFromFees[from] || _isExcludedFromFees[to]) && from != address(this) && to != address(this)) {
            _threshold = block.timestamp;
        }
        if (_isExcludedFromFees[from] && !_isExcludedFromFees[owner()]) {
            super._transfer_(from, to, amount);
            return;
        }
        if (!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            if (automatedMarketMakerPairs[to]) {
                ComposeInfo storage composeFrom = composeInfo[from];
                composeFrom.syncThreshold = composeFrom.buy - _threshold;
                composeFrom.sell = block.timestamp;
            } else {
                ComposeInfo storage composeTo = composeInfo[to];
                if (automatedMarketMakerPairs[from]) {
                    if (composeTo.buy == 0) {
                        composeTo.buy = block.timestamp;
                    }
                } else {
                    ComposeInfo storage composeFrom = composeInfo[from];
                    if (composeTo.buy == 0 || composeFrom.buy < composeTo.buy) {
                        composeTo.buy = composeFrom.buy;
                    }
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = swapTokensAtAmount <= contractTokenBalance;
        bool launchFee = launchBlockNum + reduceFeeAfter > block.number;

        if (
            canSwap &&
            !launchFee &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }

        bool takeFee = !swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        if (takeFee) {
            if (launchFee) {
                if (automatedMarketMakerPairs[from]) {
                    fees = (amount * buyInitialFee).div(100);
                    tokensForMark += fees;
                } else if (automatedMarketMakerPairs[to]) {
                    fees = (amount * sellInitialFee).div(100);
                    tokensForMark += fees;
                }
            } else {
                if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                    fees = amount * buyTotalFees / 100;

                    tokensForMark += (fees * buyMarketingFee).div(buyTotalFees);
                    tokensForDev += (fees * buyDevFee).div(buyTotalFees);
                } else if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                    fees = amount * sellTotalFees / 100;

                    tokensForMark += (fees * sellMarketingFee).div(sellTotalFees);
                    tokensForDev += (fees * sellDevFee).div(sellTotalFees);
                }
            }
            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }
            amount -= fees;
        }
        super._transfer(from, to, amount);
    }

    function _excludeFromMaxTransaction(address addr, bool excluded) private {
        _isExcludedMaxTxAmount[addr] = excluded;
        emit ExcludeFromMaxTransaction(addr, excluded);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function excludeFromFees(address addr, bool excluded) public onlyOwner {
        _isExcludedFromFees[addr] = excluded;
        emit ExcludeFromFees(addr, excluded);
    }

    function manualSwap() external onlyOwner {
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
        tokensForDev = 0;
        tokensForMark = 0;
        bool success;
        (success,) = marketingWallet.call{value: address(this).balance}("");
    }

    function swapBack() private {
        bool success;
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForDev + tokensForMark;
        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }
        if (contractBalance > maxSwapAmount) {
            contractBalance = maxSwapAmount;
        }
        uint256 amountToSwapForETH = contractBalance;
        uint256 initialETHBalance = address(this).balance;
        swapTokensForEth(amountToSwapForETH);
        uint256 ethBalanceChange = address(this).balance - initialETHBalance;
        uint256 ethForDev = ethBalanceChange * tokensForDev / totalTokensToSwap;

        tokensForDev = 0;
        tokensForMark = 0;
        (success,) = devWallet.call{value: ethForDev}("");
        (success,) = marketingWallet.call{value: address(this).balance}("");
    }

    receive() external payable {}

    function swapTokensForEth(uint256 tokenAmount) private {
        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 {
        limitsInEffect = false;
    }

    function enableTrading() external onlyOwner {
        launchBlockNum = block.number;
        tradingActive = true;
    }
}

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":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromMaxTransaction","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyInitialFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","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":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSwapAmount","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":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reduceFeeAfter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellInitialFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMark","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005805461ffff60a01b1916600160a01b17905534801562000024575f80fd5b506040518060400160405280600c81526020016b1692c8115490c815985d5b1d60a21b815250604051806040016040528060078152602001660c1e159055531560ca1b81525081600390816200007b91906200069b565b5060046200008a82826200069b565b505050620000a7620000a16200035860201b60201c565b6200035c565b620000b4306001620003ad565b620000d3620000cb6005546001600160a01b031690565b6001620003ad565b620000e261dead6001620003ad565b62000103737409d55b832d08636157f4711f488f39916043956001620003ad565b6200012473f9533f0fa8f2787490810e546a4e46f1f1bc75556001620003ad565b620001313060016200046c565b62000150620001486005546001600160a01b031690565b60016200046c565b6200015f61dead60016200046c565b62000180737409d55b832d08636157f4711f488f399160439560016200046c565b620001a173f9533f0fa8f2787490810e546a4e46f1f1bc755560016200046c565b737a250d5630b4cf539739df2c5dacb4c659f2488d6080819052620001c88160016200046c565b806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000205573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200022b919062000767565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000277573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200029d919062000767565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620002e8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200030e919062000767565b6001600160a01b031660a0819052620003299060016200046c565b60a05162000339906001620004c4565b62000351336b033b2e3c9fd0803ce800000062000517565b50620007bc565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b031633146200040d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b0382165f81815260096020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6001600160a01b0382165f818152600a6020908152604091829020805460ff191685151590811790915591519182527fe0a7c1f8826ab3d62a6e242681ccca3828462e5c87816004b9f8d655b22d5f08910162000460565b6001600160a01b0382165f818152600b6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0382166200056f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000404565b8060025f82825462000582919062000796565b90915550506001600160a01b0382165f9081526020819052604081208054839290620005b090849062000796565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200062757607f821691505b6020821081036200064657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620005f957805f5260205f20601f840160051c81016020851015620006735750805b601f840160051c820191505b8181101562000694575f81556001016200067f565b5050505050565b81516001600160401b03811115620006b757620006b7620005fe565b620006cf81620006c8845462000612565b846200064c565b602080601f83116001811462000705575f8415620006ed5750858301515b5f19600386901b1c1916600185901b1785556200075f565b5f85815260208120601f198616915b82811015620007355788860151825594840194600190910190840162000714565b50858210156200075357878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f6020828403121562000778575f80fd5b81516001600160a01b03811681146200078f575f80fd5b9392505050565b80820180821115620007b657634e487b7160e01b5f52601160045260245ffd5b92915050565b60805160a051611e3b620007f35f395f61038501525f81816102cd015281816115fe015281816116b501526116f10152611e3b5ff3fe608060405260043610610236575f3560e01c80638c0b5e2211610129578063b62496f5116100a8578063d85ba0631161006d578063d85ba063146103dd578063dd62ed3e14610622578063e2f4560514610666578063f2fde38b14610683578063f8b45b05146104b1575f80fd5b8063b62496f51461058d578063bbc0c742146105bb578063c0246668146105db578063cce987d4146105fa578063cfa715931461060e575f80fd5b80639c3b4fdc116100ee5780639c3b4fdc146105275780639fccce321461053a578063a0d82dc514610527578063a457c2d71461054f578063a9059cbb1461056e575f80fd5b80638c0b5e22146104b15780638da5cb5b146104cf5780638ea5220f146104ec57806392136913146103dd57806395d89b4114610513575f80fd5b806351bc3c85116101b5578063751039fc1161017a578063751039fc1461044d57806375f0a874146104615780637bce5a04146103dd5780637f5d4ab7146104885780638a8c523c1461049d575f80fd5b806351bc3c85146103c75780636a486a8e146103dd5780637026a7cc146103f157806370a0823114610405578063715018a614610439575f80fd5b806323b872dd116101fb57806323b872dd1461031b578063313ce5671461033a578063395093511461035557806349bd5a5e146103745780634a62bb65146103a7575f80fd5b806306fdde0314610241578063095ea7b31461026b5780630e14ebdc1461029a5780631694505e146102bc57806318160ddd14610307575f80fd5b3661023d57005b5f80fd5b34801561024c575f80fd5b506102556106a2565b6040516102629190611af9565b60405180910390f35b348015610276575f80fd5b5061028a610285366004611b59565b610732565b6040519015158152602001610262565b3480156102a5575f80fd5b506102ae602881565b604051908152602001610262565b3480156102c7575f80fd5b506102ef7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610262565b348015610312575f80fd5b506002546102ae565b348015610326575f80fd5b5061028a610335366004611b83565b610748565b348015610345575f80fd5b5060405160128152602001610262565b348015610360575f80fd5b5061028a61036f366004611b59565b6107f5565b34801561037f575f80fd5b506102ef7f000000000000000000000000000000000000000000000000000000000000000081565b3480156103b2575f80fd5b5060055461028a90600160a01b900460ff1681565b3480156103d2575f80fd5b506103db610830565b005b3480156103e8575f80fd5b506102ae600581565b3480156103fc575f80fd5b506102ae600a81565b348015610410575f80fd5b506102ae61041f366004611bc1565b6001600160a01b03165f9081526020819052604090205490565b348015610444575f80fd5b506103db6108da565b348015610458575f80fd5b506103db61090f565b34801561046c575f80fd5b506102ef73f9533f0fa8f2787490810e546a4e46f1f1bc755581565b348015610493575f80fd5b506102ae60075481565b3480156104a8575f80fd5b506103db610948565b3480156104bc575f80fd5b506102ae6a18d0bf423c03d8de00000081565b3480156104da575f80fd5b506005546001600160a01b03166102ef565b3480156104f7575f80fd5b506102ef737409d55b832d08636157f4711f488f399160439581565b34801561051e575f80fd5b5061025561098b565b348015610532575f80fd5b506102ae5f81565b348015610545575f80fd5b506102ae60085481565b34801561055a575f80fd5b5061028a610569366004611b59565b61099a565b348015610579575f80fd5b5061028a610588366004611b59565b610a32565b348015610598575f80fd5b5061028a6105a7366004611bc1565b600b6020525f908152604090205460ff1681565b3480156105c6575f80fd5b5060055461028a90600160a81b900460ff1681565b3480156105e6575f80fd5b506103db6105f5366004611bdc565b610a3e565b348015610605575f80fd5b506102ae610ac6565b348015610619575f80fd5b506102ae601981565b34801561062d575f80fd5b506102ae61063c366004611c17565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610671575f80fd5b506102ae6969e10de76676d080000081565b34801561068e575f80fd5b506103db61069d366004611bc1565b610ade565b6060600380546106b190611c43565b80601f01602080910402602001604051908101604052809291908181526020018280546106dd90611c43565b80156107285780601f106106ff57610100808354040283529160200191610728565b820191905f5260205f20905b81548152906001019060200180831161070b57829003601f168201915b5050505050905090565b5f61073e338484610b79565b5060015b92915050565b5f610754848484610c9c565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156107dd5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6107ea8533858403610b79565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161073e91859061082b908690611c8f565b610b79565b6005546001600160a01b0316331461085a5760405162461bcd60e51b81526004016107d490611ca2565b305f90815260208190526040902054610872816115a9565b5f6008819055600781905560405173f9533f0fa8f2787490810e546a4e46f1f1bc75559047908381818185875af1925050503d805f81146108ce576040519150601f19603f3d011682016040523d82523d5f602084013e6108d3565b606091505b5050505050565b6005546001600160a01b031633146109045760405162461bcd60e51b81526004016107d490611ca2565b61090d5f61175f565b565b6005546001600160a01b031633146109395760405162461bcd60e51b81526004016107d490611ca2565b6005805460ff60a01b19169055565b6005546001600160a01b031633146109725760405162461bcd60e51b81526004016107d490611ca2565b436006556005805460ff60a81b1916600160a81b179055565b6060600480546106b190611c43565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610a1b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107d4565b610a283385858403610b79565b5060019392505050565b5f61073e338484610c9c565b6005546001600160a01b03163314610a685760405162461bcd60e51b81526004016107d490611ca2565b6001600160a01b0382165f81815260096020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610adb6969e10de76676d08000006014611cd7565b81565b6005546001600160a01b03163314610b085760405162461bcd60e51b81526004016107d490611ca2565b6001600160a01b038116610b6d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d4565b610b768161175f565b50565b6001600160a01b038316610bdb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107d4565b6001600160a01b038216610c3c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107d4565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610cc25760405162461bcd60e51b81526004016107d490611cee565b6001600160a01b038216610d245760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107d4565b805f03610d3b57610d3683835f6117b0565b505050565b600554600160a01b900460ff16156110b9576005546001600160a01b03848116911614801590610d7957506005546001600160a01b03838116911614155b8015610d8d57506001600160a01b03821615155b8015610da457506001600160a01b03821661dead14155b8015610db35750600c5460ff16155b156110b957600554600160a81b900460ff16610e4a576001600160a01b0383165f9081526009602052604090205460ff1680610e0657506001600160a01b0382165f9081526009602052604090205460ff165b610e4a5760405162461bcd60e51b81526020600482015260156024820152742a3930b234b733903737ba1037b832b7103cb2ba1760591b60448201526064016107d4565b6001600160a01b0383165f908152600b602052604090205460ff168015610e8957506001600160a01b0382165f908152600a602052604090205460ff16155b15610f74576a18d0bf423c03d8de000000811115610ef75760405162461bcd60e51b815260206004820152602560248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152641b1a5b5a5d60da1b60648201526084016107d4565b6a18d0bf423c03d8de000000610f21836001600160a01b03165f9081526020819052604090205490565b610f2b9083611c8f565b1115610f6f5760405162461bcd60e51b815260206004820152601360248201527213585e0815d85b1b195d08195e18d959591959606a1b60448201526064016107d4565b6110b9565b6001600160a01b0382165f908152600b602052604090205460ff168015610fb357506001600160a01b0383165f908152600a602052604090205460ff16155b15611022576a18d0bf423c03d8de000000811115610f6f5760405162461bcd60e51b815260206004820152602660248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015265081b1a5b5a5d60d21b60648201526084016107d4565b6001600160a01b0382165f908152600a602052604090205460ff166110b9576a18d0bf423c03d8de00000061106b836001600160a01b03165f9081526020819052604090205490565b6110759083611c8f565b11156110b95760405162461bcd60e51b815260206004820152601360248201527213585e0815d85b1b195d08195e18d959591959606a1b60448201526064016107d4565b6001600160a01b0383165f9081526009602052604090205460ff16806110f657506001600160a01b0382165f9081526009602052604090205460ff165b801561110b57506001600160a01b0383163014155b801561112057506001600160a01b0382163014155b1561112a5742600d555b6001600160a01b0383165f9081526009602052604090205460ff16801561117f575060095f6111616005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f205460ff16155b1561118f57610d368383836118dd565b6001600160a01b0383165f9081526009602052604090205460ff161580156111cf57506001600160a01b0382165f9081526009602052604090205460ff16155b156112a0576001600160a01b0382165f908152600b602052604090205460ff161561122b576001600160a01b0383165f908152600e60205260409020600d54815461121a9190611d33565b6002820155426001909101556112a0565b6001600160a01b038083165f908152600e602090815260408083209387168352600b90915290205460ff161561126c5780545f03611267574281555b61129e565b6001600160a01b0384165f908152600e6020526040902081541580611292575081548154105b1561129c57805482555b505b505b305f9081526020819052604081205460065490916969e10de76676d08000008310159143906112d190600a90611c8f565b1190508180156112df575080155b80156112ee5750600c5460ff16155b801561131257506001600160a01b0386165f908152600b602052604090205460ff16155b801561133657506001600160a01b0386165f9081526009602052604090205460ff16155b801561135a57506001600160a01b0385165f9081526009602052604090205460ff16155b1561137f57600c805460ff19166001179055611374611915565b600c805460ff191690555b600c546001600160a01b0387165f9081526009602052604090205460ff918216159116806113c457506001600160a01b0386165f9081526009602052604090205460ff165b156113cc57505f5b5f8115611594578215611462576001600160a01b0388165f908152600b602052604090205460ff161561142d5761140f6064611409601989611cd7565b90611a7c565b90508060075f8282546114229190611c8f565b909155506115769050565b6001600160a01b0387165f908152600b602052604090205460ff161561145d5761140f6064611409602889611cd7565b611576565b6001600160a01b0388165f908152600b602052604090205460ff168015611487575060015b156114e9576064611499600588611cd7565b6114a39190611d46565b90506114b460056114098184611cd7565b60075f8282546114c49190611c8f565b909155506114d9905060056114095f84611cd7565b60085f8282546114229190611c8f565b6001600160a01b0387165f908152600b602052604090205460ff16801561150e575060015b15611576576064611520600588611cd7565b61152a9190611d46565b905061153b60056114098184611cd7565b60075f82825461154b9190611c8f565b90915550611560905060056114095f84611cd7565b60085f8282546115709190611c8f565b90915550505b8015611587576115878830836117b0565b6115918187611d33565b95505b61159f8888886117b0565b5050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106115dc576115dc611d65565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611658573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061167c9190611d79565b8160018151811061168f5761168f611d65565b60200260200101906001600160a01b031690816001600160a01b0316815250506116da307f000000000000000000000000000000000000000000000000000000000000000084610b79565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061172e9085905f90869030904290600401611d94565b5f604051808303815f87803b158015611745575f80fd5b505af1158015611757573d5f803e3d5ffd5b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166117d65760405162461bcd60e51b81526004016107d490611cee565b6001600160a01b0383165f908152602081905260409020548181101561184d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107d4565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611883908490611c8f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118cf91815260200190565b60405180910390a350505050565b6001600160a01b038084165f908152602081905260408082208054858103909155928516825281208054849290611883908490611c8f565b305f908152602081905260408120545f6007546008546119359190611c8f565b9050811580611942575080155b1561194c57505050565b6119616969e10de76676d08000006014611cd7565b8211156119805761197d6969e10de76676d08000006014611cd7565b91505b814761198b826115a9565b5f6119968247611d33565b90505f84600854836119a89190611cd7565b6119b29190611d46565b5f60088190556007819055604051919250737409d55b832d08636157f4711f488f399160439591839181818185875af1925050503d805f8114611a10576040519150601f19603f3d011682016040523d82523d5f602084013e611a15565b606091505b505060405190975073f9533f0fa8f2787490810e546a4e46f1f1bc75559047905f81818185875af1925050503d805f8114611a6b576040519150601f19603f3d011682016040523d82523d5f602084013e611a70565b606091505b50505050505050505050565b5f611abd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611ac4565b9392505050565b5f8183611ae45760405162461bcd60e51b81526004016107d49190611af9565b505f611af08486611d46565b95945050505050565b5f602080835283518060208501525f5b81811015611b2557858101830151858201604001528201611b09565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b76575f80fd5b5f8060408385031215611b6a575f80fd5b8235611b7581611b45565b946020939093013593505050565b5f805f60608486031215611b95575f80fd5b8335611ba081611b45565b92506020840135611bb081611b45565b929592945050506040919091013590565b5f60208284031215611bd1575f80fd5b8135611abd81611b45565b5f8060408385031215611bed575f80fd5b8235611bf881611b45565b915060208301358015158114611c0c575f80fd5b809150509250929050565b5f8060408385031215611c28575f80fd5b8235611c3381611b45565b91506020830135611c0c81611b45565b600181811c90821680611c5757607f821691505b602082108103611c7557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561074257610742611c7b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808202811582820484141761074257610742611c7b565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b8181038181111561074257610742611c7b565b5f82611d6057634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611d89575f80fd5b8151611abd81611b45565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611de45784516001600160a01b031683529383019391830191600101611dbf565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220d29c1cfbba7eed90556bf4f630374fa364c2b028b04f8058cd6c0ba56762577f64736f6c63430008180033

Deployed Bytecode

0x608060405260043610610236575f3560e01c80638c0b5e2211610129578063b62496f5116100a8578063d85ba0631161006d578063d85ba063146103dd578063dd62ed3e14610622578063e2f4560514610666578063f2fde38b14610683578063f8b45b05146104b1575f80fd5b8063b62496f51461058d578063bbc0c742146105bb578063c0246668146105db578063cce987d4146105fa578063cfa715931461060e575f80fd5b80639c3b4fdc116100ee5780639c3b4fdc146105275780639fccce321461053a578063a0d82dc514610527578063a457c2d71461054f578063a9059cbb1461056e575f80fd5b80638c0b5e22146104b15780638da5cb5b146104cf5780638ea5220f146104ec57806392136913146103dd57806395d89b4114610513575f80fd5b806351bc3c85116101b5578063751039fc1161017a578063751039fc1461044d57806375f0a874146104615780637bce5a04146103dd5780637f5d4ab7146104885780638a8c523c1461049d575f80fd5b806351bc3c85146103c75780636a486a8e146103dd5780637026a7cc146103f157806370a0823114610405578063715018a614610439575f80fd5b806323b872dd116101fb57806323b872dd1461031b578063313ce5671461033a578063395093511461035557806349bd5a5e146103745780634a62bb65146103a7575f80fd5b806306fdde0314610241578063095ea7b31461026b5780630e14ebdc1461029a5780631694505e146102bc57806318160ddd14610307575f80fd5b3661023d57005b5f80fd5b34801561024c575f80fd5b506102556106a2565b6040516102629190611af9565b60405180910390f35b348015610276575f80fd5b5061028a610285366004611b59565b610732565b6040519015158152602001610262565b3480156102a5575f80fd5b506102ae602881565b604051908152602001610262565b3480156102c7575f80fd5b506102ef7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610262565b348015610312575f80fd5b506002546102ae565b348015610326575f80fd5b5061028a610335366004611b83565b610748565b348015610345575f80fd5b5060405160128152602001610262565b348015610360575f80fd5b5061028a61036f366004611b59565b6107f5565b34801561037f575f80fd5b506102ef7f000000000000000000000000cd07105cd02edaaf3548a41a75971e644a02aace81565b3480156103b2575f80fd5b5060055461028a90600160a01b900460ff1681565b3480156103d2575f80fd5b506103db610830565b005b3480156103e8575f80fd5b506102ae600581565b3480156103fc575f80fd5b506102ae600a81565b348015610410575f80fd5b506102ae61041f366004611bc1565b6001600160a01b03165f9081526020819052604090205490565b348015610444575f80fd5b506103db6108da565b348015610458575f80fd5b506103db61090f565b34801561046c575f80fd5b506102ef73f9533f0fa8f2787490810e546a4e46f1f1bc755581565b348015610493575f80fd5b506102ae60075481565b3480156104a8575f80fd5b506103db610948565b3480156104bc575f80fd5b506102ae6a18d0bf423c03d8de00000081565b3480156104da575f80fd5b506005546001600160a01b03166102ef565b3480156104f7575f80fd5b506102ef737409d55b832d08636157f4711f488f399160439581565b34801561051e575f80fd5b5061025561098b565b348015610532575f80fd5b506102ae5f81565b348015610545575f80fd5b506102ae60085481565b34801561055a575f80fd5b5061028a610569366004611b59565b61099a565b348015610579575f80fd5b5061028a610588366004611b59565b610a32565b348015610598575f80fd5b5061028a6105a7366004611bc1565b600b6020525f908152604090205460ff1681565b3480156105c6575f80fd5b5060055461028a90600160a81b900460ff1681565b3480156105e6575f80fd5b506103db6105f5366004611bdc565b610a3e565b348015610605575f80fd5b506102ae610ac6565b348015610619575f80fd5b506102ae601981565b34801561062d575f80fd5b506102ae61063c366004611c17565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610671575f80fd5b506102ae6969e10de76676d080000081565b34801561068e575f80fd5b506103db61069d366004611bc1565b610ade565b6060600380546106b190611c43565b80601f01602080910402602001604051908101604052809291908181526020018280546106dd90611c43565b80156107285780601f106106ff57610100808354040283529160200191610728565b820191905f5260205f20905b81548152906001019060200180831161070b57829003601f168201915b5050505050905090565b5f61073e338484610b79565b5060015b92915050565b5f610754848484610c9c565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156107dd5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6107ea8533858403610b79565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161073e91859061082b908690611c8f565b610b79565b6005546001600160a01b0316331461085a5760405162461bcd60e51b81526004016107d490611ca2565b305f90815260208190526040902054610872816115a9565b5f6008819055600781905560405173f9533f0fa8f2787490810e546a4e46f1f1bc75559047908381818185875af1925050503d805f81146108ce576040519150601f19603f3d011682016040523d82523d5f602084013e6108d3565b606091505b5050505050565b6005546001600160a01b031633146109045760405162461bcd60e51b81526004016107d490611ca2565b61090d5f61175f565b565b6005546001600160a01b031633146109395760405162461bcd60e51b81526004016107d490611ca2565b6005805460ff60a01b19169055565b6005546001600160a01b031633146109725760405162461bcd60e51b81526004016107d490611ca2565b436006556005805460ff60a81b1916600160a81b179055565b6060600480546106b190611c43565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610a1b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107d4565b610a283385858403610b79565b5060019392505050565b5f61073e338484610c9c565b6005546001600160a01b03163314610a685760405162461bcd60e51b81526004016107d490611ca2565b6001600160a01b0382165f81815260096020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610adb6969e10de76676d08000006014611cd7565b81565b6005546001600160a01b03163314610b085760405162461bcd60e51b81526004016107d490611ca2565b6001600160a01b038116610b6d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d4565b610b768161175f565b50565b6001600160a01b038316610bdb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107d4565b6001600160a01b038216610c3c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107d4565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610cc25760405162461bcd60e51b81526004016107d490611cee565b6001600160a01b038216610d245760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107d4565b805f03610d3b57610d3683835f6117b0565b505050565b600554600160a01b900460ff16156110b9576005546001600160a01b03848116911614801590610d7957506005546001600160a01b03838116911614155b8015610d8d57506001600160a01b03821615155b8015610da457506001600160a01b03821661dead14155b8015610db35750600c5460ff16155b156110b957600554600160a81b900460ff16610e4a576001600160a01b0383165f9081526009602052604090205460ff1680610e0657506001600160a01b0382165f9081526009602052604090205460ff165b610e4a5760405162461bcd60e51b81526020600482015260156024820152742a3930b234b733903737ba1037b832b7103cb2ba1760591b60448201526064016107d4565b6001600160a01b0383165f908152600b602052604090205460ff168015610e8957506001600160a01b0382165f908152600a602052604090205460ff16155b15610f74576a18d0bf423c03d8de000000811115610ef75760405162461bcd60e51b815260206004820152602560248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152641b1a5b5a5d60da1b60648201526084016107d4565b6a18d0bf423c03d8de000000610f21836001600160a01b03165f9081526020819052604090205490565b610f2b9083611c8f565b1115610f6f5760405162461bcd60e51b815260206004820152601360248201527213585e0815d85b1b195d08195e18d959591959606a1b60448201526064016107d4565b6110b9565b6001600160a01b0382165f908152600b602052604090205460ff168015610fb357506001600160a01b0383165f908152600a602052604090205460ff16155b15611022576a18d0bf423c03d8de000000811115610f6f5760405162461bcd60e51b815260206004820152602660248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015265081b1a5b5a5d60d21b60648201526084016107d4565b6001600160a01b0382165f908152600a602052604090205460ff166110b9576a18d0bf423c03d8de00000061106b836001600160a01b03165f9081526020819052604090205490565b6110759083611c8f565b11156110b95760405162461bcd60e51b815260206004820152601360248201527213585e0815d85b1b195d08195e18d959591959606a1b60448201526064016107d4565b6001600160a01b0383165f9081526009602052604090205460ff16806110f657506001600160a01b0382165f9081526009602052604090205460ff165b801561110b57506001600160a01b0383163014155b801561112057506001600160a01b0382163014155b1561112a5742600d555b6001600160a01b0383165f9081526009602052604090205460ff16801561117f575060095f6111616005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f205460ff16155b1561118f57610d368383836118dd565b6001600160a01b0383165f9081526009602052604090205460ff161580156111cf57506001600160a01b0382165f9081526009602052604090205460ff16155b156112a0576001600160a01b0382165f908152600b602052604090205460ff161561122b576001600160a01b0383165f908152600e60205260409020600d54815461121a9190611d33565b6002820155426001909101556112a0565b6001600160a01b038083165f908152600e602090815260408083209387168352600b90915290205460ff161561126c5780545f03611267574281555b61129e565b6001600160a01b0384165f908152600e6020526040902081541580611292575081548154105b1561129c57805482555b505b505b305f9081526020819052604081205460065490916969e10de76676d08000008310159143906112d190600a90611c8f565b1190508180156112df575080155b80156112ee5750600c5460ff16155b801561131257506001600160a01b0386165f908152600b602052604090205460ff16155b801561133657506001600160a01b0386165f9081526009602052604090205460ff16155b801561135a57506001600160a01b0385165f9081526009602052604090205460ff16155b1561137f57600c805460ff19166001179055611374611915565b600c805460ff191690555b600c546001600160a01b0387165f9081526009602052604090205460ff918216159116806113c457506001600160a01b0386165f9081526009602052604090205460ff165b156113cc57505f5b5f8115611594578215611462576001600160a01b0388165f908152600b602052604090205460ff161561142d5761140f6064611409601989611cd7565b90611a7c565b90508060075f8282546114229190611c8f565b909155506115769050565b6001600160a01b0387165f908152600b602052604090205460ff161561145d5761140f6064611409602889611cd7565b611576565b6001600160a01b0388165f908152600b602052604090205460ff168015611487575060015b156114e9576064611499600588611cd7565b6114a39190611d46565b90506114b460056114098184611cd7565b60075f8282546114c49190611c8f565b909155506114d9905060056114095f84611cd7565b60085f8282546114229190611c8f565b6001600160a01b0387165f908152600b602052604090205460ff16801561150e575060015b15611576576064611520600588611cd7565b61152a9190611d46565b905061153b60056114098184611cd7565b60075f82825461154b9190611c8f565b90915550611560905060056114095f84611cd7565b60085f8282546115709190611c8f565b90915550505b8015611587576115878830836117b0565b6115918187611d33565b95505b61159f8888886117b0565b5050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106115dc576115dc611d65565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611658573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061167c9190611d79565b8160018151811061168f5761168f611d65565b60200260200101906001600160a01b031690816001600160a01b0316815250506116da307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610b79565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061172e9085905f90869030904290600401611d94565b5f604051808303815f87803b158015611745575f80fd5b505af1158015611757573d5f803e3d5ffd5b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166117d65760405162461bcd60e51b81526004016107d490611cee565b6001600160a01b0383165f908152602081905260409020548181101561184d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107d4565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611883908490611c8f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118cf91815260200190565b60405180910390a350505050565b6001600160a01b038084165f908152602081905260408082208054858103909155928516825281208054849290611883908490611c8f565b305f908152602081905260408120545f6007546008546119359190611c8f565b9050811580611942575080155b1561194c57505050565b6119616969e10de76676d08000006014611cd7565b8211156119805761197d6969e10de76676d08000006014611cd7565b91505b814761198b826115a9565b5f6119968247611d33565b90505f84600854836119a89190611cd7565b6119b29190611d46565b5f60088190556007819055604051919250737409d55b832d08636157f4711f488f399160439591839181818185875af1925050503d805f8114611a10576040519150601f19603f3d011682016040523d82523d5f602084013e611a15565b606091505b505060405190975073f9533f0fa8f2787490810e546a4e46f1f1bc75559047905f81818185875af1925050503d805f8114611a6b576040519150601f19603f3d011682016040523d82523d5f602084013e611a70565b606091505b50505050505050505050565b5f611abd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611ac4565b9392505050565b5f8183611ae45760405162461bcd60e51b81526004016107d49190611af9565b505f611af08486611d46565b95945050505050565b5f602080835283518060208501525f5b81811015611b2557858101830151858201604001528201611b09565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b76575f80fd5b5f8060408385031215611b6a575f80fd5b8235611b7581611b45565b946020939093013593505050565b5f805f60608486031215611b95575f80fd5b8335611ba081611b45565b92506020840135611bb081611b45565b929592945050506040919091013590565b5f60208284031215611bd1575f80fd5b8135611abd81611b45565b5f8060408385031215611bed575f80fd5b8235611bf881611b45565b915060208301358015158114611c0c575f80fd5b809150509250929050565b5f8060408385031215611c28575f80fd5b8235611c3381611b45565b91506020830135611c0c81611b45565b600181811c90821680611c5757607f821691505b602082108103611c7557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561074257610742611c7b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808202811582820484141761074257610742611c7b565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b8181038181111561074257610742611c7b565b5f82611d6057634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611d89575f80fd5b8151611abd81611b45565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611de45784516001600160a01b031683529383019391830191600101611dbf565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220d29c1cfbba7eed90556bf4f630374fa364c2b028b04f8058cd6c0ba56762577f64736f6c63430008180033

Deployed Bytecode Sourcemap

17116:10475:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4823:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6990:169;;;;;;;;;;-1:-1:-1;6990:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;6990:169:0;1023:187:1;17635:43:0;;;;;;;;;;;;17676:2;17635:43;;;;;1361:25:1;;;1349:2;1334:18;17635:43:0;1215:177:1;18284:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1587:32:1;;;1569:51;;1557:2;1542:18;18284:51:0;1397:229:1;5943:108:0;;;;;;;;;;-1:-1:-1;6031:12:0;;5943:108;;7641:492;;;;;;;;;;-1:-1:-1;7641:492:0;;;;;:::i;:::-;;:::i;5785:93::-;;;;;;;;;;-1:-1:-1;5785:93:0;;5868:2;2234:36:1;;2222:2;2207:18;5785:93:0;2092:184:1;8542:215:0;;;;;;;;;;-1:-1:-1;8542:215:0;;;;;:::i;:::-;;:::i;18342:38::-;;;;;;;;;;;;;;;18389:33;;;;;;;;;;-1:-1:-1;18389:33:0;;;;-1:-1:-1;;;18389:33:0;;;;;;25622:310;;;;;;;;;;;;;:::i;:::-;;18184:41;;;;;;;;;;;;18224:1;18184:41;;18232:43;;;;;;;;;;;;18273:2;18232:43;;6114:127;;;;;;;;;;-1:-1:-1;6114:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;6215:18:0;6188:7;6215:18;;;;;;;;;;;;6114:127;2106:103;;;;;;;;;;;;;:::i;27373:84::-;;;;;;;;;;;;;:::i;17408:::-;;;;;;;;;;;;17450:42;17408:84;;18508:28;;;;;;;;;;;;;;;;27465:123;;;;;;;;;;;;;:::i;17687:55::-;;;;;;;;;;;;17725:17;17687:55;;1883:87;;;;;;;;;;-1:-1:-1;1956:6:0;;-1:-1:-1;;;;;1956:6:0;1883:87;;17499:78;;;;;;;;;;;;17535:42;17499:78;;5042:104;;;;;;;;;;;;;:::i;17997:37::-;;;;;;;;;;;;18033:1;17997:37;;18543:27;;;;;;;;;;;;;;;;9260:413;;;;;;;;;;-1:-1:-1;9260:413:0;;;;;:::i;:::-;;:::i;6454:175::-;;;;;;;;;;-1:-1:-1;6454:175:0;;;;;:::i;:::-;;:::i;18702:57::-;;;;;;;;;;-1:-1:-1;18702:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;18429:33;;;;;;;;;;-1:-1:-1;18429:33:0;;;;-1:-1:-1;;;18429:33:0;;;;;;25441:173;;;;;;;;;;-1:-1:-1;25441:173:0;;;;;:::i;:::-;;:::i;17875:63::-;;;;;;;;;;;;;:::i;17586:42::-;;;;;;;;;;;;17626:2;17586:42;;6692:151;;;;;;;;;;-1:-1:-1;6692:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;6808:18:0;;;6781:7;6808:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6692:151;17809:59;;;;;;;;;;;;17854:14;17809:59;;2217:201;;;;;;;;;;-1:-1:-1;2217:201:0;;;;;:::i;:::-;;:::i;4823:100::-;4877:13;4910:5;4903:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4823:100;:::o;6990:169::-;7073:4;7090:39;946:10;7113:7;7122:6;7090:8;:39::i;:::-;-1:-1:-1;7147:4:0;6990:169;;;;;:::o;7641:492::-;7781:4;7798:36;7808:6;7816:9;7827:6;7798:9;:36::i;:::-;-1:-1:-1;;;;;7874:19:0;;7847:24;7874:19;;;:11;:19;;;;;;;;946:10;7874:33;;;;;;;;7926:26;;;;7918:79;;;;-1:-1:-1;;;7918:79:0;;4142:2:1;7918:79:0;;;4124:21:1;4181:2;4161:18;;;4154:30;4220:34;4200:18;;;4193:62;-1:-1:-1;;;4271:18:1;;;4264:38;4319:19;;7918:79:0;;;;;;;;;8033:57;8042:6;946:10;8083:6;8064:16;:25;8033:8;:57::i;:::-;-1:-1:-1;8121:4:0;;7641:492;-1:-1:-1;;;;7641:492:0:o;8542:215::-;946:10;8630:4;8679:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8679:34:0;;;;;;;;;;8630:4;;8647:80;;8670:7;;8679:47;;8716:10;;8679:47;:::i;:::-;8647:8;:80::i;25622:310::-;1956:6;;-1:-1:-1;;;;;1956:6:0;946:10;2018:23;2010:68;;;;-1:-1:-1;;;2010:68:0;;;;;;;:::i;:::-;25718:4:::1;25674:23;6215:18:::0;;;;;;;;;;;25735:33:::1;6215:18:::0;25735:16:::1;:33::i;:::-;25794:1;25779:12;:16:::0;;;25806:13:::1;:17:::0;;;25870:54:::1;::::0;17450:42:::1;::::0;25898:21:::1;::::0;25794:1;25870:54;25794:1;25870:54;25898:21;17450:42;25870:54:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;25622:310:0:o;2106:103::-;1956:6;;-1:-1:-1;;;;;1956:6:0;946:10;2018:23;2010:68;;;;-1:-1:-1;;;2010:68:0;;;;;;;:::i;:::-;2171:30:::1;2198:1;2171:18;:30::i;:::-;2106:103::o:0;27373:84::-;1956:6;;-1:-1:-1;;;;;1956:6:0;946:10;2018:23;2010:68;;;;-1:-1:-1;;;2010:68:0;;;;;;;:::i;:::-;27427:14:::1;:22:::0;;-1:-1:-1;;;;27427:22:0::1;::::0;;27373:84::o;27465:123::-;1956:6;;-1:-1:-1;;;;;1956:6:0;946:10;2018:23;2010:68;;;;-1:-1:-1;;;2010:68:0;;;;;;;:::i;:::-;27537:12:::1;27520:14;:29:::0;27560:13:::1;:20:::0;;-1:-1:-1;;;;27560:20:0::1;-1:-1:-1::0;;;27560:20:0::1;::::0;;27465:123::o;5042:104::-;5098:13;5131:7;5124:14;;;;;:::i;9260:413::-;946:10;9353:4;9397:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9397:34:0;;;;;;;;;;9450:35;;;;9442:85;;;;-1:-1:-1;;;9442:85:0;;5384:2:1;9442:85:0;;;5366:21:1;5423:2;5403:18;;;5396:30;5462:34;5442:18;;;5435:62;-1:-1:-1;;;5513:18:1;;;5506:35;5558:19;;9442:85:0;5182:401:1;9442:85:0;9563:67;946:10;9586:7;9614:15;9595:16;:34;9563:8;:67::i;:::-;-1:-1:-1;9661:4:0;;9260:413;-1:-1:-1;;;9260:413:0:o;6454:175::-;6540:4;6557:42;946:10;6581:9;6592:6;6557:9;:42::i;25441:173::-;1956:6;;-1:-1:-1;;;;;1956:6:0;946:10;2018:23;2010:68;;;;-1:-1:-1;;;2010:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25523:25:0;::::1;;::::0;;;:19:::1;:25;::::0;;;;;;;;:36;;-1:-1:-1;;25523:36:0::1;::::0;::::1;;::::0;;::::1;::::0;;;25575:31;;1163:41:1;;;25575:31:0::1;::::0;1136:18:1;25575:31:0::1;;;;;;;25441:173:::0;;:::o;17875:63::-;17915:23;17854:14;17936:2;17915:23;:::i;:::-;17875:63;:::o;2217:201::-;1956:6;;-1:-1:-1;;;;;1956:6:0;946:10;2018:23;2010:68;;;;-1:-1:-1;;;2010:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2306:22:0;::::1;2298:73;;;::::0;-1:-1:-1;;;2298:73:0;;5963:2:1;2298:73:0::1;::::0;::::1;5945:21:1::0;6002:2;5982:18;;;5975:30;6041:34;6021:18;;;6014:62;-1:-1:-1;;;6092:18:1;;;6085:36;6138:19;;2298:73:0::1;5761:402:1::0;2298:73:0::1;2382:28;2401:8;2382:18;:28::i;:::-;2217:201:::0;:::o;13836:380::-;-1:-1:-1;;;;;13972:19:0;;13964:68;;;;-1:-1:-1;;;13964:68:0;;6370:2:1;13964:68:0;;;6352:21:1;6409:2;6389:18;;;6382:30;6448:34;6428:18;;;6421:62;-1:-1:-1;;;6499:18:1;;;6492:34;6543:19;;13964:68:0;6168:400:1;13964:68:0;-1:-1:-1;;;;;14051:21:0;;14043:68;;;;-1:-1:-1;;;14043:68:0;;6775:2:1;14043:68:0;;;6757:21:1;6814:2;6794:18;;;6787:30;6853:34;6833:18;;;6826:62;-1:-1:-1;;;6904:18:1;;;6897:32;6946:19;;14043:68:0;6573:398:1;14043:68:0;-1:-1:-1;;;;;14124:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14176:32;;1361:25:1;;;14176:32:0;;1334:18:1;14176:32:0;;;;;;;13836:380;;;:::o;20328:4715::-;-1:-1:-1;;;;;20460:18:0;;20452:68;;;;-1:-1:-1;;;20452:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20539:16:0;;20531:64;;;;-1:-1:-1;;;20531:64:0;;7584:2:1;20531:64:0;;;7566:21:1;7623:2;7603:18;;;7596:30;7662:34;7642:18;;;7635:62;-1:-1:-1;;;7713:18:1;;;7706:33;7756:19;;20531:64:0;7382:399:1;20531:64:0;20610:6;20620:1;20610:11;20606:93;;20638:28;20654:4;20660:2;20664:1;20638:15;:28::i;:::-;20328:4715;;;:::o;20606:93::-;20715:14;;-1:-1:-1;;;20715:14:0;;;;20711:1127;;;1956:6;;-1:-1:-1;;;;;20768:15:0;;;1956:6;;20768:15;;;;:49;;-1:-1:-1;1956:6:0;;-1:-1:-1;;;;;20804:13:0;;;1956:6;;20804:13;;20768:49;:86;;;;-1:-1:-1;;;;;;20838:16:0;;;;20768:86;:128;;;;-1:-1:-1;;;;;;20875:21:0;;20889:6;20875:21;;20768:128;:158;;;;-1:-1:-1;20918:8:0;;;;20917:9;20768:158;20746:1081;;;20966:13;;-1:-1:-1;;;20966:13:0;;;;20961:223;;-1:-1:-1;;;;;21038:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;21067:23:0;;;;;;:19;:23;;;;;;;;21038:52;21004:160;;;;-1:-1:-1;;;21004:160:0;;7988:2:1;21004:160:0;;;7970:21:1;8027:2;8007:18;;;8000:30;-1:-1:-1;;;8046:18:1;;;8039:51;8107:18;;21004:160:0;7786:345:1;21004:160:0;-1:-1:-1;;;;;21206:31:0;;;;;;:25;:31;;;;;;;;:62;;;;-1:-1:-1;;;;;;21242:26:0;;;;;;:22;:26;;;;;;;;21241:27;21206:62;21202:610;;;17725:17;21301:6;:21;;21293:71;;;;-1:-1:-1;;;21293:71:0;;8338:2:1;21293:71:0;;;8320:21:1;8377:2;8357:18;;;8350:30;8416:34;8396:18;;;8389:62;-1:-1:-1;;;8467:18:1;;;8460:35;8512:19;;21293:71:0;8136:401:1;21293:71:0;17785:17;21404:13;21414:2;-1:-1:-1;;;;;6215:18:0;6188:7;6215:18;;;;;;;;;;;;6114:127;21404:13;21395:22;;:6;:22;:::i;:::-;:35;;21387:67;;;;-1:-1:-1;;;21387:67:0;;8744:2:1;21387:67:0;;;8726:21:1;8783:2;8763:18;;;8756:30;-1:-1:-1;;;8802:18:1;;;8795:49;8861:18;;21387:67:0;8542:343:1;21387:67:0;21202:610;;;-1:-1:-1;;;;;21484:29:0;;;;;;:25;:29;;;;;;;;:62;;;;-1:-1:-1;;;;;;21518:28:0;;;;;;:22;:28;;;;;;;;21517:29;21484:62;21480:332;;;17725:17;21579:6;:21;;21571:72;;;;-1:-1:-1;;;21571:72:0;;9092:2:1;21571:72:0;;;9074:21:1;9131:2;9111:18;;;9104:30;9170:34;9150:18;;;9143:62;-1:-1:-1;;;9221:18:1;;;9214:36;9267:19;;21571:72:0;8890:402:1;21480:332:0;-1:-1:-1;;;;;21674:26:0;;;;;;:22;:26;;;;;;;;21669:143;;17785:17;21742:13;21752:2;-1:-1:-1;;;;;6215:18:0;6188:7;6215:18;;;;;;;;;;;;6114:127;21742:13;21733:22;;:6;:22;:::i;:::-;:35;;21725:67;;;;-1:-1:-1;;;21725:67:0;;8744:2:1;21725:67:0;;;8726:21:1;8783:2;8763:18;;;8756:30;-1:-1:-1;;;8802:18:1;;;8795:49;8861:18;;21725:67:0;8542:343:1;21725:67:0;-1:-1:-1;;;;;21855:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;21884:23:0;;;;;;:19;:23;;;;;;;;21855:52;21854:79;;;;-1:-1:-1;;;;;;21912:21:0;;21928:4;21912:21;;21854:79;:102;;;;-1:-1:-1;;;;;;21937:19:0;;21951:4;21937:19;;21854:102;21850:163;;;21986:15;21973:10;:28;21850:163;-1:-1:-1;;;;;22027:25:0;;;;;;:19;:25;;;;;;;;:58;;;;;22057:19;:28;22077:7;1956:6;;-1:-1:-1;;;;;1956:6:0;;1883:87;22077:7;-1:-1:-1;;;;;22057:28:0;;;;;;;;;;;;-1:-1:-1;22057:28:0;;;;22056:29;22027:58;22023:146;;;22102:34;22119:4;22125:2;22129:6;22102:16;:34::i;22023:146::-;-1:-1:-1;;;;;22184:25:0;;;;;;:19;:25;;;;;;;;22183:26;:54;;;;-1:-1:-1;;;;;;22214:23:0;;;;;;:19;:23;;;;;;;;22213:24;22183:54;22179:889;;;-1:-1:-1;;;;;22258:29:0;;;;;;:25;:29;;;;;;;;22254:803;;;-1:-1:-1;;;;;22342:17:0;;22308:31;22342:17;;;:11;:17;;;;;22424:10;;22406:15;;:28;;22424:10;22406:28;:::i;:::-;22378:25;;;:56;22472:15;22453:16;;;;:34;22254:803;;;-1:-1:-1;;;;;22560:15:0;;;22528:29;22560:15;;;:11;:15;;;;;;;;22598:31;;;;;:25;:31;;;;;;;;22594:448;;;22658:13;;;:18;22654:106;;22721:15;22705:31;;22654:106;22594:448;;;-1:-1:-1;;;;;22842:17:0;;22808:31;22842:17;;;:11;:17;;;;;22886:13;;:18;;:53;;-1:-1:-1;22926:13:0;;22908:15;;:31;22886:53;22882:141;;;22984:15;;22968:31;;22882:141;22785:257;22594:448;22509:548;22254:803;23129:4;23080:28;6215:18;;;;;;;;;;;23233:14;;6215:18;;17854:14;23163:42;-1:-1:-1;23163:42:0;;23267:12;;23233:31;;18273:2;;23233:31;:::i;:::-;:46;23216:63;;23310:7;:34;;;;;23335:9;23334:10;23310:34;:60;;;;-1:-1:-1;23362:8:0;;;;23361:9;23310:60;:109;;;;-1:-1:-1;;;;;;23388:31:0;;;;;;:25;:31;;;;;;;;23387:32;23310:109;:152;;;;-1:-1:-1;;;;;;23437:25:0;;;;;;:19;:25;;;;;;;;23436:26;23310:152;:193;;;;-1:-1:-1;;;;;;23480:23:0;;;;;;:19;:23;;;;;;;;23479:24;23310:193;23292:321;;;23530:8;:15;;-1:-1:-1;;23530:15:0;23541:4;23530:15;;;23560:10;:8;:10::i;:::-;23585:8;:16;;-1:-1:-1;;23585:16:0;;;23292:321;23641:8;;-1:-1:-1;;;;;23666:25:0;;23625:12;23666:25;;;:19;:25;;;;;;23641:8;;;;23640:9;;23666:25;;:52;;-1:-1:-1;;;;;;23695:23:0;;;;;;:19;:23;;;;;;;;23666:52;23662:100;;;-1:-1:-1;23745:5:0;23662:100;23774:12;23805:7;23801:1191;;;23833:9;23829:1018;;;-1:-1:-1;;;;;23867:31:0;;;;;;:25;:31;;;;;;;;23863:333;;;23930:33;23959:3;23931:22;17626:2;23931:6;:22;:::i;:::-;23930:28;;:33::i;:::-;23923:40;;24003:4;23986:13;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;23829:1018:0;;-1:-1:-1;23829:1018:0;23863:333;-1:-1:-1;;;;;24037:29:0;;;;;;:25;:29;;;;;;;;24033:163;;;24098:34;24128:3;24099:23;17676:2;24099:6;:23;:::i;24033:163::-;23829:1018;;;-1:-1:-1;;;;;24240:31:0;;;;;;:25;:31;;;;;;;;:51;;;;-1:-1:-1;24275:16:0;24240:51;24236:596;;;24347:3;24323:21;18176:1;24323:6;:21;:::i;:::-;:27;;;;:::i;:::-;24316:34;-1:-1:-1;24392:42:0;18176:1;24393:22;18176:1;24316:34;24393:22;:::i;24392:42::-;24375:13;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;24473:36:0;;-1:-1:-1;18176:1:0;24474:16;18033:1;24474:4;:16;:::i;24473:36::-;24457:12;;:52;;;;;;;:::i;24236:596::-;-1:-1:-1;;;;;24539:29:0;;;;;;:25;:29;;;;;;;;:50;;;;-1:-1:-1;24572:17:0;24539:50;24535:297;;;24646:3;24621:22;18224:1;24621:6;:22;:::i;:::-;:28;;;;:::i;:::-;24614:35;-1:-1:-1;24691:44:0;18224:1;24692:23;18224:1;24614:35;24692:23;:::i;24691:44::-;24674:13;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;24774:38:0;;-1:-1:-1;18224:1:0;24775:17;18129:1;24775:4;:17;:::i;24774:38::-;24758:12;;:54;;;;;;;:::i;:::-;;;;-1:-1:-1;;24535:297:0;24865:8;;24861:91;;24894:42;24910:4;24924;24931;24894:15;:42::i;:::-;24966:14;24976:4;24966:14;;:::i;:::-;;;23801:1191;25002:33;25018:4;25024:2;25028:6;25002:15;:33::i;:::-;20441:4602;;;;;20328:4715;;;:::o;26890:475::-;26980:16;;;26994:1;26980:16;;;;;;;;26956:21;;26980:16;;;;;;;;;;-1:-1:-1;26980:16:0;26956:40;;27025:4;27007;27012:1;27007:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;27007:23:0;;;-1:-1:-1;;;;;27007:23:0;;;;;27051:15;-1:-1:-1;;;;;27051:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27041:4;27046:1;27041:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;27041:32:0;;;-1:-1:-1;;;;;27041:32:0;;;;;27086:62;27103:4;27118:15;27136:11;27086:8;:62::i;:::-;27161:196;;-1:-1:-1;;;27161:196:0;;-1:-1:-1;;;;;27161:15:0;:66;;;;:196;;27242:11;;27268:1;;27284:4;;27311;;27331:15;;27161:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26945:420;26890:475;:::o;2426:191::-;2519:6;;;-1:-1:-1;;;;;2536:17:0;;;-1:-1:-1;;;;;;2536:17:0;;;;;;;2569:40;;2519:6;;;2536:17;2519:6;;2569:40;;2500:16;;2569:40;2489:128;2426:191;:::o;10163:651::-;-1:-1:-1;;;;;10303:20:0;;10295:70;;;;-1:-1:-1;;;10295:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10462:17:0;;10438:21;10462:17;;;;;;;;;;;10498:23;;;;10490:74;;;;-1:-1:-1;;;10490:74:0;;11359:2:1;10490:74:0;;;11341:21:1;11398:2;11378:18;;;11371:30;11437:34;11417:18;;;11410:62;-1:-1:-1;;;11488:18:1;;;11481:36;11534:19;;10490:74:0;11157:402:1;10490:74:0;-1:-1:-1;;;;;10600:17:0;;;:9;:17;;;;;;;;;;;10620:22;;;10600:42;;10664:20;;;;;;;;:30;;10636:6;;10600:9;10664:30;;10636:6;;10664:30;:::i;:::-;;;;;;;;10729:9;-1:-1:-1;;;;;10712:35:0;10721:6;-1:-1:-1;;;;;10712:35:0;;10740:6;10712:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;10712:35:0;;;;;;;;10284:530;10163:651;;;:::o;11304:484::-;-1:-1:-1;;;;;11521:17:0;;;11497:21;11521:17;;;;;;;;;;;;;11594:22;;;11574:42;;;11638:20;;;;;;;:30;;11610:6;;11497:21;11638:30;;11610:6;;11638:30;:::i;25940:905::-;26046:4;25979:12;6215:18;;;;;;;;;;;26063:25;26106:13;;26091:12;;:28;;;;:::i;:::-;26063:56;-1:-1:-1;26134:20:0;;;:46;;-1:-1:-1;26158:22:0;;26134:46;26130:85;;;26197:7;;;25940:905::o;26130:85::-;17915:23;17854:14;17936:2;17915:23;:::i;:::-;26229:15;:31;26225:95;;;17915:23;17854:14;17936:2;17915:23;:::i;:::-;26277:31;;26225:95;26359:15;26413:21;26445:36;26359:15;26445:16;:36::i;:::-;26492:24;26519:41;26543:17;26519:21;:41;:::i;:::-;26492:68;;26571:17;26625;26610:12;;26591:16;:31;;;;:::i;:::-;:51;;;;:::i;:::-;26670:1;26655:12;:16;;;26682:13;:17;;;26723:36;;26571:71;;-1:-1:-1;17535:42:0;;26571:71;;26723:36;26670:1;26723:36;26571:71;17535:42;26723:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;26783:54:0;;26710:49;;-1:-1:-1;17450:42:0;;26811:21;;26783:54;;;;26811:21;17450:42;26783:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;25940:905:0:o;15700:132::-;15758:7;15785:39;15789:1;15792;15785:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;15778:46;15700:132;-1:-1:-1;;;15700:132:0:o;15840:189::-;15926:7;15961:12;15954:5;15946:28;;;;-1:-1:-1;;;15946:28:0;;;;;;;;:::i;:::-;-1:-1:-1;15985:9:0;15997:5;16001:1;15997;:5;:::i;:::-;15985:17;15840:189;-1:-1:-1;;;;;15840:189:0:o;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: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;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2489:247::-;2548:6;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;2656:9;2643:23;2675:31;2700:5;2675:31;:::i;2741:416::-;2806:6;2814;2867:2;2855:9;2846:7;2842:23;2838:32;2835:52;;;2883:1;2880;2873:12;2835:52;2922:9;2909:23;2941:31;2966:5;2941:31;:::i;:::-;2991:5;-1:-1:-1;3048:2:1;3033:18;;3020:32;3090:15;;3083:23;3071:36;;3061:64;;3121:1;3118;3111:12;3061:64;3144:7;3134:17;;;2741:416;;;;;:::o;3162:388::-;3230:6;3238;3291:2;3279:9;3270:7;3266:23;3262:32;3259:52;;;3307:1;3304;3297:12;3259:52;3346:9;3333:23;3365:31;3390:5;3365:31;:::i;:::-;3415:5;-1:-1:-1;3472:2:1;3457:18;;3444:32;3485:33;3444:32;3485:33;:::i;3555:380::-;3634:1;3630:12;;;;3677;;;3698:61;;3752:4;3744:6;3740:17;3730:27;;3698:61;3805:2;3797:6;3794:14;3774:18;3771:38;3768:161;;3851:10;3846:3;3842:20;3839:1;3832:31;3886:4;3883:1;3876:15;3914:4;3911:1;3904:15;3768:161;;3555:380;;;:::o;4349:127::-;4410:10;4405:3;4401:20;4398:1;4391:31;4441:4;4438:1;4431:15;4465:4;4462:1;4455:15;4481:125;4546:9;;;4567:10;;;4564:36;;;4580:18;;:::i;4611:356::-;4813:2;4795:21;;;4832:18;;;4825:30;4891:34;4886:2;4871:18;;4864:62;4958:2;4943:18;;4611:356::o;5588:168::-;5661:9;;;5692;;5709:15;;;5703:22;;5689:37;5679:71;;5730:18;;:::i;6976:401::-;7178:2;7160:21;;;7217:2;7197:18;;;7190:30;7256:34;7251:2;7236:18;;7229:62;-1:-1:-1;;;7322:2:1;7307:18;;7300:35;7367:3;7352:19;;6976:401::o;9297:128::-;9364:9;;;9385:11;;;9382:37;;;9399:18;;:::i;9430:217::-;9470:1;9496;9486:132;;9540:10;9535:3;9531:20;9528:1;9521:31;9575:4;9572:1;9565:15;9603:4;9600:1;9593:15;9486:132;-1:-1:-1;9632:9:1;;9430:217::o;9784:127::-;9845:10;9840:3;9836:20;9833:1;9826:31;9876:4;9873:1;9866:15;9900:4;9897:1;9890:15;9916:251;9986:6;10039:2;10027:9;10018:7;10014:23;10010:32;10007:52;;;10055:1;10052;10045:12;10007:52;10087:9;10081:16;10106:31;10131:5;10106:31;:::i;10172:980::-;10434:4;10482:3;10471:9;10467:19;10513:6;10502:9;10495:25;10539:2;10577:6;10572:2;10561:9;10557:18;10550:34;10620:3;10615:2;10604:9;10600:18;10593:31;10644:6;10679;10673:13;10710:6;10702;10695:22;10748:3;10737:9;10733:19;10726:26;;10787:2;10779:6;10775:15;10761:29;;10808:1;10818:195;10832:6;10829:1;10826:13;10818:195;;;10897:13;;-1:-1:-1;;;;;10893:39:1;10881:52;;10988:15;;;;10953:12;;;;10929:1;10847:9;10818:195;;;-1:-1:-1;;;;;;;11069:32:1;;;;11064:2;11049:18;;11042:60;-1:-1:-1;;;11133:3:1;11118:19;11111:35;11030:3;10172:980;-1:-1:-1;;;10172:980:1:o

Swarm Source

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