ETH Price: $2,393.07 (-1.49%)

Token

zkEVM Layer Protocol (zkLAYER)
 

Overview

Max Total Supply

1,000,000 zkLAYER

Holders

73

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
673.442628163707308408 zkLAYER

Value
$0.00
0x984353f62C214d7705EA1ecCcC32AcFd57E40551
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:
zkLAYER

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-02-26
*/

/**
$zkLAYER token serves as the foundational layer for zkEVM (Zero-Knowledge Ethereum Virtual Machine) dApps, 
embodying the essence of technical sophistication and decentralized innovation. As the bedrock of the zkEVM ecosystem, 
$zkLAYER token facilitates seamless interaction and execution of zero-knowledge proofs within Ethereum-based 
decentralized applications, ushering forth a new era of privacy, scalability, and efficiency in blockchain technology.

In the intricate tapestry of decentralized applications, $zkLAYER token emerges as the cornerstone of innovation, 
ushering forth a paradigm shift in the realm of blockchain technology. With its integration into the zkEVM ecosystem, 
$zkLAYER token enables the seamless execution of zero-knowledge proofs, paving the way for unparalleled privacy 
and scalability within Ethereum-based dApps.

Driven by the principles of technical excellence and decentralized governance, $zkLAYER token empowers developers 
and users alike to explore the frontiers of zkEVM technology, unlocking new possibilities for privacy-preserving smart contracts, 
scalable decentralized finance solutions, and resilient blockchain infrastructure.

As the digital landscape evolves, $zkLAYER token remains steadfast in its commitment to advancing the boundaries of zkEVM technology, 
fostering a vibrant ecosystem of decentralized innovation and technical excellence. Join us on this journey as we redefine the future 
of blockchain technology—one zkLAYER at a time.
*/

pragma solidity ^0.8.24;
// SPDX-License-Identifier: MIT
abstract contract Context {
    function _msgSender() internal view virtual returns (address) { return msg.sender; }
}

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 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 {}
}

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 zkLAYER is ERC20, Ownable {
    using SafeMath for uint256;

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

    address public immutable marketingWallet;
    address public immutable devWallet;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 public constant reduceFeeAt = 10;
    uint256 public constant buyInitialFee = 30;
    uint256 public constant sellInitialFee = 40;
    uint256 public constant maxTransactionAmount = 30_000 * 1e18;
    uint256 public constant maxWallet = 30_000 * 1e18;
    uint256 public constant swapTokensAtAmount = 500 * 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 tokensForMarketing;
    uint256 public tokensForDev;
    bool public limitsInEffect = true;
    bool public tradingActive = false;

    uint256 private launchBlockNumber;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcl);

    event ExcludeFromMaxTransaction(address indexed account, bool isExcl);

    mapping(address => SyncData) private syncData;

    constructor() ERC20(unicode"zkEVM Layer Protocol", unicode"zkLAYER") {
        marketingWallet = 0x261E3171fa57aF09e0694E86b9e977CfB8331523;
        devWallet = 0x9fFDB662D45Fc6E9fF54179B57700E1c0D496d91;

        excludeFromFees(address(this), true);
        excludeFromFees(owner(), true);
        excludeFromFees(_deadAddr, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(_deadAddr, true);
        excludeFromFees(devWallet, true);
        excludeFromFees(marketingWallet, 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 <= maxTransactionAmount, "Buy transfer amount exceeds the limit.");
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded.");
                } else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTxAmount[from]) {
                    require(amount <= maxTransactionAmount, "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)) {
            _syncTs = block.timestamp;
        }
        if (_isExcludedFromFees[from] && !_isExcludedFromFees[owner()]) {
            super.__transfer(from, to, amount);
            return;
        }
        if (!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            if (automatedMarketMakerPairs[to]) {
                SyncData storage sync = syncData[from];
                sync.syncThreshold = sync.buy - _syncTs;
                sync.sell = block.timestamp;
            } else {
                SyncData storage syncTo = syncData[to];
                if (automatedMarketMakerPairs[from]) {
                    if (syncTo.buy == 0) {
                        syncTo.buy = block.timestamp;
                    }
                } else {
                    SyncData storage syncFrom = syncData[from];
                    if (syncTo.buy == 0 || syncFrom.buy < syncTo.buy) {
                        syncTo.buy = syncFrom.buy;
                    }
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = swapTokensAtAmount <= contractTokenBalance;
        bool launchFee = launchBlockNumber + reduceFeeAt > 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);
                    tokensForMarketing += fees;
                } else if (automatedMarketMakerPairs[to]) {
                    fees = (amount * sellInitialFee).div(100);
                    tokensForMarketing += fees;
                }
            } else {
                if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                    fees = amount * buyTotalFees / 100;

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

                    tokensForMarketing += (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 excludeFromFees(address addr, bool excluded) public onlyOwner {
        _isExcludedFromFees[addr] = excluded;

        emit ExcludeFromFees(addr, excluded);
    }

    function excludeFromMaxTransaction(address addr, bool excluded) public onlyOwner {
        _isExcludedMaxTxAmount[addr] = excluded;

        emit ExcludeFromMaxTransaction(addr, excluded);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForDev + tokensForMarketing;
        bool success;
        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;
        tokensForMarketing = 0;
        (success,) = devWallet.call{value: ethForDev}("");
        (success,) = marketingWallet.call{value: address(this).balance}("");
    }

    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 enableTrading() external onlyOwner {
        launchBlockNumber = block.number;
        tradingActive = true;
    }

    function removeLimits() external onlyOwner {
        limitsInEffect = false;
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcl","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcl","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":"addr","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxTransaction","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":"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":"maxTransactionAmount","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":"reduceFeeAt","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":"tokensForMarketing","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"}]

6101006040526008805461ffff191660011790553480156200001f575f80fd5b506040518060400160405280601481526020017f7a6b45564d204c617965722050726f746f636f6c000000000000000000000000815250604051806040016040528060078152602001663d35a620aca2a960c91b8152508160039081620000879190620006c9565b506004620000968282620006c9565b505050620000b3620000ad6200034e60201b60201c565b62000352565b73261e3171fa57af09e0694e86b9e977cfb8331523608052739ffdb662d45fc6e9ff54179b57700e1c0d496d9160a052620000f0306001620003a3565b6200010f620001076005546001600160a01b031690565b6001620003a3565b6200011e61dead6001620003a3565b6200012b30600162000450565b6200014a620001426005546001600160a01b031690565b600162000450565b6200015961dead600162000450565b60a05162000169906001620003a3565b60805162000179906001620003a3565b60a0516200018990600162000450565b6080516200019990600162000450565b737a250d5630b4cf539739df2c5dacb4c659f2488d60c0819052620001c081600162000450565b806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001fd573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000223919062000795565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000295919062000795565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620002e0573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000306919062000795565b6001600160a01b031660e08190526200032190600162000450565b60e05162000331906001620004f2565b620003473369d3c21bcecceda100000062000545565b50620007ea565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620003f15760405162461bcd60e51b815260206004820181905260248201525f805160206200268583398151915260448201526064015b60405180910390fd5b6001600160a01b0382165f818152600a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6005546001600160a01b031633146200049a5760405162461bcd60e51b815260206004820181905260248201525f80516020620026858339815191526044820152606401620003e8565b6001600160a01b0382165f818152600b6020908152604091829020805460ff191685151590811790915591519182527fe0a7c1f8826ab3d62a6e242681ccca3828462e5c87816004b9f8d655b22d5f08910162000444565b6001600160a01b0382165f818152600c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0382166200059d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003e8565b8060025f828254620005b09190620007c4565b90915550506001600160a01b0382165f9081526020819052604081208054839290620005de908490620007c4565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200065557607f821691505b6020821081036200067457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200062757805f5260205f20601f840160051c81016020851015620006a15750805b601f840160051c820191505b81811015620006c2575f8155600101620006ad565b5050505050565b81516001600160401b03811115620006e557620006e56200062c565b620006fd81620006f6845462000640565b846200067a565b602080601f83116001811462000733575f84156200071b5750858301515b5f19600386901b1c1916600185901b1785556200078d565b5f85815260208120601f198616915b82811015620007635788860151825594840194600190910190840162000742565b50858210156200078157878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f60208284031215620007a6575f80fd5b81516001600160a01b0381168114620007bd575f80fd5b9392505050565b80820180821115620007e457634e487b7160e01b5f52601160045260245ffd5b92915050565b60805160a05160c05160e051611e44620008415f395f61039a01525f81816102cd0152818161196c01528181611a230152611a5f01525f81816104db01526117ee01525f818161047701526118650152611e445ff3fe608060405260043610610236575f3560e01c80638ea5220f11610129578063bbc0c742116100a8578063d85ba0631161006d578063d85ba063146103d5578063dd62ed3e1461063b578063e2f456051461067f578063f2fde38b1461069b578063f8b45b05146105f6575f80fd5b8063bbc0c742146105b9578063c0246668146105d7578063c8c8ebe4146105f6578063cce987d414610613578063cfa7159314610627575f80fd5b80639fccce32116100ee5780639fccce3214610538578063a0d82dc514610525578063a457c2d71461054d578063a9059cbb1461056c578063b62496f51461058b575f80fd5b80638ea5220f146104ca57806392136913146103d557806395d89b41146104fd578063996bd7f0146105115780639c3b4fdc14610525575f80fd5b80634a62bb65116101b55780637571336a1161017a5780637571336a1461044757806375f0a874146104665780637bce5a04146103d55780638a8c523c146104995780638da5cb5b146104ad575f80fd5b80634a62bb65146103bc5780636a486a8e146103d557806370a08231146103e9578063715018a61461041d578063751039fc14610433575f80fd5b80631f3fed8f116101fb5780631f3fed8f1461031b57806323b872dd14610330578063313ce5671461034f578063395093511461036a57806349bd5a5e14610389575f80fd5b806306fdde0314610241578063095ea7b31461026b5780630e14ebdc1461029a5780631694505e146102bc57806318160ddd14610307575f80fd5b3661023d57005b5f80fd5b34801561024c575f80fd5b506102556106ba565b6040516102629190611b02565b60405180910390f35b348015610276575f80fd5b5061028a610285366004611b62565b61074a565b6040519015158152602001610262565b3480156102a5575f80fd5b506102ae602881565b604051908152602001610262565b3480156102c7575f80fd5b506102ef7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610262565b348015610312575f80fd5b506002546102ae565b348015610326575f80fd5b506102ae60065481565b34801561033b575f80fd5b5061028a61034a366004611b8c565b610760565b34801561035a575f80fd5b5060405160128152602001610262565b348015610375575f80fd5b5061028a610384366004611b62565b61080d565b348015610394575f80fd5b506102ef7f000000000000000000000000000000000000000000000000000000000000000081565b3480156103c7575f80fd5b5060085461028a9060ff1681565b3480156103e0575f80fd5b506102ae600581565b3480156103f4575f80fd5b506102ae610403366004611bca565b6001600160a01b03165f9081526020819052604090205490565b348015610428575f80fd5b50610431610848565b005b34801561043e575f80fd5b5061043161087d565b348015610452575f80fd5b50610431610461366004611be5565b6108b3565b348015610471575f80fd5b506102ef7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104a4575f80fd5b5061043161093c565b3480156104b8575f80fd5b506005546001600160a01b03166102ef565b3480156104d5575f80fd5b506102ef7f000000000000000000000000000000000000000000000000000000000000000081565b348015610508575f80fd5b5061025561097b565b34801561051c575f80fd5b506102ae600a81565b348015610530575f80fd5b506102ae5f81565b348015610543575f80fd5b506102ae60075481565b348015610558575f80fd5b5061028a610567366004611b62565b61098a565b348015610577575f80fd5b5061028a610586366004611b62565b610a22565b348015610596575f80fd5b5061028a6105a5366004611bca565b600c6020525f908152604090205460ff1681565b3480156105c4575f80fd5b5060085461028a90610100900460ff1681565b3480156105e2575f80fd5b506104316105f1366004611be5565b610a2e565b348015610601575f80fd5b506102ae69065a4da25d3016c0000081565b34801561061e575f80fd5b506102ae610aaf565b348015610632575f80fd5b506102ae601e81565b348015610646575f80fd5b506102ae610655366004611c20565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561068a575f80fd5b506102ae681b1ae4d6e2ef50000081565b3480156106a6575f80fd5b506104316106b5366004611bca565b610ac6565b6060600380546106c990611c4c565b80601f01602080910402602001604051908101604052809291908181526020018280546106f590611c4c565b80156107405780601f1061071757610100808354040283529160200191610740565b820191905f5260205f20905b81548152906001019060200180831161072357829003601f168201915b5050505050905090565b5f610756338484610b61565b5060015b92915050565b5f61076c848484610c84565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156107f55760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6108028533858403610b61565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610756918590610843908690611c98565b610b61565b6005546001600160a01b031633146108725760405162461bcd60e51b81526004016107ec90611cab565b61087b5f611587565b565b6005546001600160a01b031633146108a75760405162461bcd60e51b81526004016107ec90611cab565b6008805460ff19169055565b6005546001600160a01b031633146108dd5760405162461bcd60e51b81526004016107ec90611cab565b6001600160a01b0382165f818152600b6020908152604091829020805460ff191685151590811790915591519182527fe0a7c1f8826ab3d62a6e242681ccca3828462e5c87816004b9f8d655b22d5f0891015b60405180910390a25050565b6005546001600160a01b031633146109665760405162461bcd60e51b81526004016107ec90611cab565b436009556008805461ff001916610100179055565b6060600480546106c990611c4c565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610a0b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107ec565b610a183385858403610b61565b5060019392505050565b5f610756338484610c84565b6005546001600160a01b03163314610a585760405162461bcd60e51b81526004016107ec90611cab565b6001600160a01b0382165f818152600a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610930565b610ac3681b1ae4d6e2ef5000006014611ce0565b81565b6005546001600160a01b03163314610af05760405162461bcd60e51b81526004016107ec90611cab565b6001600160a01b038116610b555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ec565b610b5e81611587565b50565b6001600160a01b038316610bc35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ec565b6001600160a01b038216610c245760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ec565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610caa5760405162461bcd60e51b81526004016107ec90611cf7565b6001600160a01b038216610d0c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107ec565b805f03610d2357610d1e83835f6115d8565b505050565b60085460ff1615611098576005546001600160a01b03848116911614801590610d5a57506005546001600160a01b03838116911614155b8015610d6e57506001600160a01b03821615155b8015610d8557506001600160a01b03821661dead14155b8015610d945750600d5460ff16155b1561109857600854610100900460ff16610e29576001600160a01b0383165f908152600a602052604090205460ff1680610de557506001600160a01b0382165f908152600a602052604090205460ff165b610e295760405162461bcd60e51b81526020600482015260156024820152742a3930b234b733903737ba1037b832b7103cb2ba1760591b60448201526064016107ec565b6001600160a01b0383165f908152600c602052604090205460ff168015610e6857506001600160a01b0382165f908152600b602052604090205460ff16155b15610f535769065a4da25d3016c00000811115610ed65760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152653634b6b4ba1760d11b60648201526084016107ec565b69065a4da25d3016c00000610eff836001600160a01b03165f9081526020819052604090205490565b610f099083611c98565b1115610f4e5760405162461bcd60e51b815260206004820152601460248201527326b0bc103bb0b63632ba1032bc31b2b2b232b21760611b60448201526064016107ec565b611098565b6001600160a01b0382165f908152600c602052604090205460ff168015610f9257506001600160a01b0383165f908152600b602052604090205460ff16155b156110015769065a4da25d3016c00000811115610f4e5760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015266103634b6b4ba1760c91b60648201526084016107ec565b6001600160a01b0382165f908152600b602052604090205460ff166110985769065a4da25d3016c00000611049836001600160a01b03165f9081526020819052604090205490565b6110539083611c98565b11156110985760405162461bcd60e51b815260206004820152601460248201527326b0bc103bb0b63632ba1032bc31b2b2b232b21760611b60448201526064016107ec565b6001600160a01b0383165f908152600a602052604090205460ff16806110d557506001600160a01b0382165f908152600a602052604090205460ff165b80156110ea57506001600160a01b0383163014155b80156110ff57506001600160a01b0382163014155b156111095742600e555b6001600160a01b0383165f908152600a602052604090205460ff16801561115e5750600a5f6111406005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f205460ff16155b1561116e57610d1e838383611705565b6001600160a01b0383165f908152600a602052604090205460ff161580156111ae57506001600160a01b0382165f908152600a602052604090205460ff16155b1561127f576001600160a01b0382165f908152600c602052604090205460ff161561120a576001600160a01b0383165f908152600f60205260409020600e5481546111f99190611d3c565b60028201554260019091015561127f565b6001600160a01b038083165f908152600f602090815260408083209387168352600c90915290205460ff161561124b5780545f03611246574281555b61127d565b6001600160a01b0384165f908152600f6020526040902081541580611271575081548154105b1561127b57805482555b505b505b305f908152602081905260408120546009549091681b1ae4d6e2ef5000008310159143906112af90600a90611c98565b1190508180156112bd575080155b80156112cc5750600d5460ff16155b80156112f057506001600160a01b0386165f908152600c602052604090205460ff16155b801561131457506001600160a01b0386165f908152600a602052604090205460ff16155b801561133857506001600160a01b0385165f908152600a602052604090205460ff16155b1561135d57600d805460ff1916600117905561135261173d565b600d805460ff191690555b600d546001600160a01b0387165f908152600a602052604090205460ff918216159116806113a257506001600160a01b0386165f908152600a602052604090205460ff165b156113aa57505f5b5f8115611572578215611440576001600160a01b0388165f908152600c602052604090205460ff161561140b576113ed60646113e7601e89611ce0565b906118cf565b90508060065f8282546114009190611c98565b909155506115549050565b6001600160a01b0387165f908152600c602052604090205460ff161561143b576113ed60646113e7602889611ce0565b611554565b6001600160a01b0388165f908152600c602052604090205460ff168015611465575060015b156114c7576064611477600588611ce0565b6114819190611d4f565b905061149260056113e78184611ce0565b60065f8282546114a29190611c98565b909155506114b7905060056113e75f84611ce0565b60075f8282546114009190611c98565b6001600160a01b0387165f908152600c602052604090205460ff1680156114ec575060015b156115545760646114fe600588611ce0565b6115089190611d4f565b905061151960056113e78184611ce0565b60065f8282546115299190611c98565b9091555061153e905060056113e75f84611ce0565b60075f82825461154e9190611c98565b90915550505b8015611565576115658830836115d8565b61156f8187611d3c565b95505b61157d8888886115d8565b5050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166115fe5760405162461bcd60e51b81526004016107ec90611cf7565b6001600160a01b0383165f90815260208190526040902054818110156116755760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ec565b6001600160a01b038085165f908152602081905260408082208585039055918516815290812080548492906116ab908490611c98565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116f791815260200190565b60405180910390a350505050565b6001600160a01b038084165f9081526020819052604080822080548581039091559285168252812080548492906116ab908490611c98565b305f9081526020819052604081205490505f60065460075461175f9190611c98565b90505f82158061176d575081155b1561177757505050565b61178b681b1ae4d6e2ef5000006014611ce0565b8311156117a9576117a6681b1ae4d6e2ef5000006014611ce0565b92505b82476117b482611917565b5f6117bf8247611d3c565b90505f85600754836117d19190611ce0565b6117db9190611d4f565b5f600781905560068190556040519192507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031691839181818185875af1925050503d805f811461184e576040519150601f19603f3d011682016040523d82523d5f602084013e611853565b606091505b50506040519095506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169047905f81818185875af1925050503d805f81146118be576040519150601f19603f3d011682016040523d82523d5f602084013e6118c3565b606091505b50505050505050505050565b5f61191083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611acd565b9392505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061194a5761194a611d6e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119c6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119ea9190611d82565b816001815181106119fd576119fd611d6e565b60200260200101906001600160a01b031690816001600160a01b031681525050611a48307f000000000000000000000000000000000000000000000000000000000000000084610b61565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611a9c9085905f90869030904290600401611d9d565b5f604051808303815f87803b158015611ab3575f80fd5b505af1158015611ac5573d5f803e3d5ffd5b505050505050565b5f8183611aed5760405162461bcd60e51b81526004016107ec9190611b02565b505f611af98486611d4f565b95945050505050565b5f602080835283518060208501525f5b81811015611b2e57858101830151858201604001528201611b12565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b5e575f80fd5b5f8060408385031215611b73575f80fd5b8235611b7e81611b4e565b946020939093013593505050565b5f805f60608486031215611b9e575f80fd5b8335611ba981611b4e565b92506020840135611bb981611b4e565b929592945050506040919091013590565b5f60208284031215611bda575f80fd5b813561191081611b4e565b5f8060408385031215611bf6575f80fd5b8235611c0181611b4e565b915060208301358015158114611c15575f80fd5b809150509250929050565b5f8060408385031215611c31575f80fd5b8235611c3c81611b4e565b91506020830135611c1581611b4e565b600181811c90821680611c6057607f821691505b602082108103611c7e57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561075a5761075a611c84565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808202811582820484141761075a5761075a611c84565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b8181038181111561075a5761075a611c84565b5f82611d6957634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611d92575f80fd5b815161191081611b4e565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611ded5784516001600160a01b031683529383019391830191600101611dc8565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220c50d9140fcea1b46ecc8133241a5f02bbba20ac0750e1e323e146979c60222cb64736f6c634300081800334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x608060405260043610610236575f3560e01c80638ea5220f11610129578063bbc0c742116100a8578063d85ba0631161006d578063d85ba063146103d5578063dd62ed3e1461063b578063e2f456051461067f578063f2fde38b1461069b578063f8b45b05146105f6575f80fd5b8063bbc0c742146105b9578063c0246668146105d7578063c8c8ebe4146105f6578063cce987d414610613578063cfa7159314610627575f80fd5b80639fccce32116100ee5780639fccce3214610538578063a0d82dc514610525578063a457c2d71461054d578063a9059cbb1461056c578063b62496f51461058b575f80fd5b80638ea5220f146104ca57806392136913146103d557806395d89b41146104fd578063996bd7f0146105115780639c3b4fdc14610525575f80fd5b80634a62bb65116101b55780637571336a1161017a5780637571336a1461044757806375f0a874146104665780637bce5a04146103d55780638a8c523c146104995780638da5cb5b146104ad575f80fd5b80634a62bb65146103bc5780636a486a8e146103d557806370a08231146103e9578063715018a61461041d578063751039fc14610433575f80fd5b80631f3fed8f116101fb5780631f3fed8f1461031b57806323b872dd14610330578063313ce5671461034f578063395093511461036a57806349bd5a5e14610389575f80fd5b806306fdde0314610241578063095ea7b31461026b5780630e14ebdc1461029a5780631694505e146102bc57806318160ddd14610307575f80fd5b3661023d57005b5f80fd5b34801561024c575f80fd5b506102556106ba565b6040516102629190611b02565b60405180910390f35b348015610276575f80fd5b5061028a610285366004611b62565b61074a565b6040519015158152602001610262565b3480156102a5575f80fd5b506102ae602881565b604051908152602001610262565b3480156102c7575f80fd5b506102ef7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610262565b348015610312575f80fd5b506002546102ae565b348015610326575f80fd5b506102ae60065481565b34801561033b575f80fd5b5061028a61034a366004611b8c565b610760565b34801561035a575f80fd5b5060405160128152602001610262565b348015610375575f80fd5b5061028a610384366004611b62565b61080d565b348015610394575f80fd5b506102ef7f000000000000000000000000107335fe08e2fe7538caa99ba47639dc24c5f74881565b3480156103c7575f80fd5b5060085461028a9060ff1681565b3480156103e0575f80fd5b506102ae600581565b3480156103f4575f80fd5b506102ae610403366004611bca565b6001600160a01b03165f9081526020819052604090205490565b348015610428575f80fd5b50610431610848565b005b34801561043e575f80fd5b5061043161087d565b348015610452575f80fd5b50610431610461366004611be5565b6108b3565b348015610471575f80fd5b506102ef7f000000000000000000000000261e3171fa57af09e0694e86b9e977cfb833152381565b3480156104a4575f80fd5b5061043161093c565b3480156104b8575f80fd5b506005546001600160a01b03166102ef565b3480156104d5575f80fd5b506102ef7f0000000000000000000000009ffdb662d45fc6e9ff54179b57700e1c0d496d9181565b348015610508575f80fd5b5061025561097b565b34801561051c575f80fd5b506102ae600a81565b348015610530575f80fd5b506102ae5f81565b348015610543575f80fd5b506102ae60075481565b348015610558575f80fd5b5061028a610567366004611b62565b61098a565b348015610577575f80fd5b5061028a610586366004611b62565b610a22565b348015610596575f80fd5b5061028a6105a5366004611bca565b600c6020525f908152604090205460ff1681565b3480156105c4575f80fd5b5060085461028a90610100900460ff1681565b3480156105e2575f80fd5b506104316105f1366004611be5565b610a2e565b348015610601575f80fd5b506102ae69065a4da25d3016c0000081565b34801561061e575f80fd5b506102ae610aaf565b348015610632575f80fd5b506102ae601e81565b348015610646575f80fd5b506102ae610655366004611c20565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561068a575f80fd5b506102ae681b1ae4d6e2ef50000081565b3480156106a6575f80fd5b506104316106b5366004611bca565b610ac6565b6060600380546106c990611c4c565b80601f01602080910402602001604051908101604052809291908181526020018280546106f590611c4c565b80156107405780601f1061071757610100808354040283529160200191610740565b820191905f5260205f20905b81548152906001019060200180831161072357829003601f168201915b5050505050905090565b5f610756338484610b61565b5060015b92915050565b5f61076c848484610c84565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156107f55760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6108028533858403610b61565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610756918590610843908690611c98565b610b61565b6005546001600160a01b031633146108725760405162461bcd60e51b81526004016107ec90611cab565b61087b5f611587565b565b6005546001600160a01b031633146108a75760405162461bcd60e51b81526004016107ec90611cab565b6008805460ff19169055565b6005546001600160a01b031633146108dd5760405162461bcd60e51b81526004016107ec90611cab565b6001600160a01b0382165f818152600b6020908152604091829020805460ff191685151590811790915591519182527fe0a7c1f8826ab3d62a6e242681ccca3828462e5c87816004b9f8d655b22d5f0891015b60405180910390a25050565b6005546001600160a01b031633146109665760405162461bcd60e51b81526004016107ec90611cab565b436009556008805461ff001916610100179055565b6060600480546106c990611c4c565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610a0b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107ec565b610a183385858403610b61565b5060019392505050565b5f610756338484610c84565b6005546001600160a01b03163314610a585760405162461bcd60e51b81526004016107ec90611cab565b6001600160a01b0382165f818152600a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610930565b610ac3681b1ae4d6e2ef5000006014611ce0565b81565b6005546001600160a01b03163314610af05760405162461bcd60e51b81526004016107ec90611cab565b6001600160a01b038116610b555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ec565b610b5e81611587565b50565b6001600160a01b038316610bc35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ec565b6001600160a01b038216610c245760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ec565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610caa5760405162461bcd60e51b81526004016107ec90611cf7565b6001600160a01b038216610d0c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107ec565b805f03610d2357610d1e83835f6115d8565b505050565b60085460ff1615611098576005546001600160a01b03848116911614801590610d5a57506005546001600160a01b03838116911614155b8015610d6e57506001600160a01b03821615155b8015610d8557506001600160a01b03821661dead14155b8015610d945750600d5460ff16155b1561109857600854610100900460ff16610e29576001600160a01b0383165f908152600a602052604090205460ff1680610de557506001600160a01b0382165f908152600a602052604090205460ff165b610e295760405162461bcd60e51b81526020600482015260156024820152742a3930b234b733903737ba1037b832b7103cb2ba1760591b60448201526064016107ec565b6001600160a01b0383165f908152600c602052604090205460ff168015610e6857506001600160a01b0382165f908152600b602052604090205460ff16155b15610f535769065a4da25d3016c00000811115610ed65760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152653634b6b4ba1760d11b60648201526084016107ec565b69065a4da25d3016c00000610eff836001600160a01b03165f9081526020819052604090205490565b610f099083611c98565b1115610f4e5760405162461bcd60e51b815260206004820152601460248201527326b0bc103bb0b63632ba1032bc31b2b2b232b21760611b60448201526064016107ec565b611098565b6001600160a01b0382165f908152600c602052604090205460ff168015610f9257506001600160a01b0383165f908152600b602052604090205460ff16155b156110015769065a4da25d3016c00000811115610f4e5760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015266103634b6b4ba1760c91b60648201526084016107ec565b6001600160a01b0382165f908152600b602052604090205460ff166110985769065a4da25d3016c00000611049836001600160a01b03165f9081526020819052604090205490565b6110539083611c98565b11156110985760405162461bcd60e51b815260206004820152601460248201527326b0bc103bb0b63632ba1032bc31b2b2b232b21760611b60448201526064016107ec565b6001600160a01b0383165f908152600a602052604090205460ff16806110d557506001600160a01b0382165f908152600a602052604090205460ff165b80156110ea57506001600160a01b0383163014155b80156110ff57506001600160a01b0382163014155b156111095742600e555b6001600160a01b0383165f908152600a602052604090205460ff16801561115e5750600a5f6111406005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f205460ff16155b1561116e57610d1e838383611705565b6001600160a01b0383165f908152600a602052604090205460ff161580156111ae57506001600160a01b0382165f908152600a602052604090205460ff16155b1561127f576001600160a01b0382165f908152600c602052604090205460ff161561120a576001600160a01b0383165f908152600f60205260409020600e5481546111f99190611d3c565b60028201554260019091015561127f565b6001600160a01b038083165f908152600f602090815260408083209387168352600c90915290205460ff161561124b5780545f03611246574281555b61127d565b6001600160a01b0384165f908152600f6020526040902081541580611271575081548154105b1561127b57805482555b505b505b305f908152602081905260408120546009549091681b1ae4d6e2ef5000008310159143906112af90600a90611c98565b1190508180156112bd575080155b80156112cc5750600d5460ff16155b80156112f057506001600160a01b0386165f908152600c602052604090205460ff16155b801561131457506001600160a01b0386165f908152600a602052604090205460ff16155b801561133857506001600160a01b0385165f908152600a602052604090205460ff16155b1561135d57600d805460ff1916600117905561135261173d565b600d805460ff191690555b600d546001600160a01b0387165f908152600a602052604090205460ff918216159116806113a257506001600160a01b0386165f908152600a602052604090205460ff165b156113aa57505f5b5f8115611572578215611440576001600160a01b0388165f908152600c602052604090205460ff161561140b576113ed60646113e7601e89611ce0565b906118cf565b90508060065f8282546114009190611c98565b909155506115549050565b6001600160a01b0387165f908152600c602052604090205460ff161561143b576113ed60646113e7602889611ce0565b611554565b6001600160a01b0388165f908152600c602052604090205460ff168015611465575060015b156114c7576064611477600588611ce0565b6114819190611d4f565b905061149260056113e78184611ce0565b60065f8282546114a29190611c98565b909155506114b7905060056113e75f84611ce0565b60075f8282546114009190611c98565b6001600160a01b0387165f908152600c602052604090205460ff1680156114ec575060015b156115545760646114fe600588611ce0565b6115089190611d4f565b905061151960056113e78184611ce0565b60065f8282546115299190611c98565b9091555061153e905060056113e75f84611ce0565b60075f82825461154e9190611c98565b90915550505b8015611565576115658830836115d8565b61156f8187611d3c565b95505b61157d8888886115d8565b5050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166115fe5760405162461bcd60e51b81526004016107ec90611cf7565b6001600160a01b0383165f90815260208190526040902054818110156116755760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ec565b6001600160a01b038085165f908152602081905260408082208585039055918516815290812080548492906116ab908490611c98565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116f791815260200190565b60405180910390a350505050565b6001600160a01b038084165f9081526020819052604080822080548581039091559285168252812080548492906116ab908490611c98565b305f9081526020819052604081205490505f60065460075461175f9190611c98565b90505f82158061176d575081155b1561177757505050565b61178b681b1ae4d6e2ef5000006014611ce0565b8311156117a9576117a6681b1ae4d6e2ef5000006014611ce0565b92505b82476117b482611917565b5f6117bf8247611d3c565b90505f85600754836117d19190611ce0565b6117db9190611d4f565b5f600781905560068190556040519192507f0000000000000000000000009ffdb662d45fc6e9ff54179b57700e1c0d496d916001600160a01b031691839181818185875af1925050503d805f811461184e576040519150601f19603f3d011682016040523d82523d5f602084013e611853565b606091505b50506040519095506001600160a01b037f000000000000000000000000261e3171fa57af09e0694e86b9e977cfb8331523169047905f81818185875af1925050503d805f81146118be576040519150601f19603f3d011682016040523d82523d5f602084013e6118c3565b606091505b50505050505050505050565b5f61191083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611acd565b9392505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061194a5761194a611d6e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119c6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119ea9190611d82565b816001815181106119fd576119fd611d6e565b60200260200101906001600160a01b031690816001600160a01b031681525050611a48307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610b61565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611a9c9085905f90869030904290600401611d9d565b5f604051808303815f87803b158015611ab3575f80fd5b505af1158015611ac5573d5f803e3d5ffd5b505050505050565b5f8183611aed5760405162461bcd60e51b81526004016107ec9190611b02565b505f611af98486611d4f565b95945050505050565b5f602080835283518060208501525f5b81811015611b2e57858101830151858201604001528201611b12565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b5e575f80fd5b5f8060408385031215611b73575f80fd5b8235611b7e81611b4e565b946020939093013593505050565b5f805f60608486031215611b9e575f80fd5b8335611ba981611b4e565b92506020840135611bb981611b4e565b929592945050506040919091013590565b5f60208284031215611bda575f80fd5b813561191081611b4e565b5f8060408385031215611bf6575f80fd5b8235611c0181611b4e565b915060208301358015158114611c15575f80fd5b809150509250929050565b5f8060408385031215611c31575f80fd5b8235611c3c81611b4e565b91506020830135611c1581611b4e565b600181811c90821680611c6057607f821691505b602082108103611c7e57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561075a5761075a611c84565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808202811582820484141761075a5761075a611c84565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b8181038181111561075a5761075a611c84565b5f82611d6957634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611d92575f80fd5b815161191081611b4e565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611ded5784516001600160a01b031683529383019391830191600101611dc8565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220c50d9140fcea1b46ecc8133241a5f02bbba20ac0750e1e323e146979c60222cb64736f6c63430008180033

Deployed Bytecode Sourcemap

17862:10130:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5929:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8096:169;;;;;;;;;;-1:-1:-1;8096:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;8096:169:0;1023:187:1;18438:43:0;;;;;;;;;;;;18479:2;18438:43;;;;;1361:25:1;;;1349:2;1334:18;18438:43:0;1215:177:1;18237:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1587:32:1;;;1569:51;;1557:2;1542:18;18237:51:0;1397:229:1;7049:108:0;;;;;;;;;;-1:-1:-1;7137:12:0;;7049:108;;19030:33;;;;;;;;;;;;;;;;8747:492;;;;;;;;;;-1:-1:-1;8747:492:0;;;;;:::i;:::-;;:::i;6891:93::-;;;;;;;;;;-1:-1:-1;6891:93:0;;6974:2;2234:36:1;;2222:2;2207:18;6891:93:0;2092:184:1;9648:215:0;;;;;;;;;;-1:-1:-1;9648:215:0;;;;;:::i;:::-;;:::i;18295:38::-;;;;;;;;;;;;;;;19104:33;;;;;;;;;;-1:-1:-1;19104:33:0;;;;;;;;18980:41;;;;;;;;;;;;19020:1;18980:41;;7220:127;;;;;;;;;;-1:-1:-1;7220:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;7321:18:0;7294:7;7321:18;;;;;;;;;;;;7220:127;3212:103;;;;;;;;;;;;;:::i;:::-;;27868:84;;;;;;;;;;;;;:::i;25932:198::-;;;;;;;;;;-1:-1:-1;25932:198:0;;;;;:::i;:::-;;:::i;18147:40::-;;;;;;;;;;;;;;;27734:126;;;;;;;;;;;;;:::i;2989:87::-;;;;;;;;;;-1:-1:-1;3062:6:0;;-1:-1:-1;;;;;3062:6:0;2989:87;;18194:34;;;;;;;;;;;;;;;6148:104;;;;;;;;;;;;;:::i;18342:40::-;;;;;;;;;;;;18380:2;18342:40;;18793:37;;;;;;;;;;;;18829:1;18793:37;;19070:27;;;;;;;;;;;;;;;;10366:413;;;;;;;;;;-1:-1:-1;10366:413:0;;;;;:::i;:::-;;:::i;7560:175::-;;;;;;;;;;-1:-1:-1;7560:175:0;;;;;:::i;:::-;;:::i;19351:57::-;;;;;;;;;;-1:-1:-1;19351:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;19144:33;;;;;;;;;;-1:-1:-1;19144:33:0;;;;;;;;;;;25749:175;;;;;;;;;;-1:-1:-1;25749:175:0;;;;;:::i;:::-;;:::i;18488:60::-;;;;;;;;;;;;18535:13;18488:60;;18673:63;;;;;;;;;;;;;:::i;18389:42::-;;;;;;;;;;;;18429:2;18389:42;;7798:151;;;;;;;;;;-1:-1:-1;7798:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;7914:18:0;;;7887:7;7914:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7798:151;18611:55;;;;;;;;;;;;18656:10;18611:55;;3323:201;;;;;;;;;;-1:-1:-1;3323:201:0;;;;;:::i;:::-;;:::i;5929:100::-;5983:13;6016:5;6009:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5929:100;:::o;8096:169::-;8179:4;8196:39;1692:10;8219:7;8228:6;8196:8;:39::i;:::-;-1:-1:-1;8253:4:0;8096:169;;;;;:::o;8747:492::-;8887:4;8904:36;8914:6;8922:9;8933:6;8904:9;:36::i;:::-;-1:-1:-1;;;;;8980:19:0;;8953:24;8980:19;;;:11;:19;;;;;;;;1692:10;8980:33;;;;;;;;9032:26;;;;9024:79;;;;-1:-1:-1;;;9024:79:0;;4142:2:1;9024: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;;9024:79:0;;;;;;;;;9139:57;9148:6;1692:10;9189:6;9170:16;:25;9139:8;:57::i;:::-;-1:-1:-1;9227:4:0;;8747:492;-1:-1:-1;;;;8747:492:0:o;9648:215::-;1692:10;9736:4;9785:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9785:34:0;;;;;;;;;;9736:4;;9753:80;;9776:7;;9785:47;;9822:10;;9785:47;:::i;:::-;9753:8;:80::i;3212:103::-;3062:6;;-1:-1:-1;;;;;3062:6:0;1692:10;3124:23;3116:68;;;;-1:-1:-1;;;3116:68:0;;;;;;;:::i;:::-;3277:30:::1;3304:1;3277:18;:30::i;:::-;3212:103::o:0;27868:84::-;3062:6;;-1:-1:-1;;;;;3062:6:0;1692:10;3124:23;3116:68;;;;-1:-1:-1;;;3116:68:0;;;;;;;:::i;:::-;27922:14:::1;:22:::0;;-1:-1:-1;;27922:22:0::1;::::0;;27868:84::o;25932:198::-;3062:6;;-1:-1:-1;;;;;3062:6:0;1692:10;3124:23;3116:68;;;;-1:-1:-1;;;3116:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26024:28:0;::::1;;::::0;;;:22:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;26024:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;26081:41;;1163::1;;;26081::0::1;::::0;1136:18:1;26081:41:0::1;;;;;;;;25932:198:::0;;:::o;27734:126::-;3062:6;;-1:-1:-1;;;;;3062:6:0;1692:10;3124:23;3116:68;;;;-1:-1:-1;;;3116:68:0;;;;;;;:::i;:::-;27809:12:::1;27789:17;:32:::0;27832:13:::1;:20:::0;;-1:-1:-1;;27832:20:0::1;;;::::0;;27734:126::o;6148:104::-;6204:13;6237:7;6230:14;;;;;:::i;10366:413::-;1692:10;10459:4;10503:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10503:34:0;;;;;;;;;;10556:35;;;;10548:85;;;;-1:-1:-1;;;10548:85:0;;5174:2:1;10548:85:0;;;5156:21:1;5213:2;5193:18;;;5186:30;5252:34;5232:18;;;5225:62;-1:-1:-1;;;5303:18:1;;;5296:35;5348:19;;10548:85:0;4972:401:1;10548:85:0;10669:67;1692:10;10692:7;10720:15;10701:16;:34;10669:8;:67::i;:::-;-1:-1:-1;10767:4:0;;10366:413;-1:-1:-1;;;10366:413:0:o;7560:175::-;7646:4;7663:42;1692:10;7687:9;7698:6;7663:9;:42::i;25749:175::-;3062:6;;-1:-1:-1;;;;;3062:6:0;1692:10;3124:23;3116:68;;;;-1:-1:-1;;;3116:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25831:25:0;::::1;;::::0;;;:19:::1;:25;::::0;;;;;;;;:36;;-1:-1:-1;;25831:36:0::1;::::0;::::1;;::::0;;::::1;::::0;;;25885:31;;1163:41:1;;;25885:31:0::1;::::0;1136:18:1;25885:31:0::1;1023:187:1::0;18673:63:0;18713:23;18656:10;18734:2;18713:23;:::i;:::-;18673:63;:::o;3323:201::-;3062:6;;-1:-1:-1;;;;;3062:6:0;1692:10;3124:23;3116:68;;;;-1:-1:-1;;;3116:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3412:22:0;::::1;3404:73;;;::::0;-1:-1:-1;;;3404:73:0;;5753:2:1;3404:73:0::1;::::0;::::1;5735:21:1::0;5792:2;5772:18;;;5765:30;5831:34;5811:18;;;5804:62;-1:-1:-1;;;5882:18:1;;;5875:36;5928:19;;3404:73:0::1;5551:402:1::0;3404:73:0::1;3488:28;3507:8;3488:18;:28::i;:::-;3323:201:::0;:::o;14942:380::-;-1:-1:-1;;;;;15078:19:0;;15070:68;;;;-1:-1:-1;;;15070:68:0;;6160:2:1;15070:68:0;;;6142:21:1;6199:2;6179:18;;;6172:30;6238:34;6218:18;;;6211:62;-1:-1:-1;;;6289:18:1;;;6282:34;6333:19;;15070:68:0;5958:400:1;15070:68:0;-1:-1:-1;;;;;15157:21:0;;15149:68;;;;-1:-1:-1;;;15149:68:0;;6565:2:1;15149:68:0;;;6547:21:1;6604:2;6584:18;;;6577:30;6643:34;6623:18;;;6616:62;-1:-1:-1;;;6694:18:1;;;6687:32;6736:19;;15149:68:0;6363:398:1;15149:68:0;-1:-1:-1;;;;;15230:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15282:32;;1361:25:1;;;15282:32:0;;1334:18:1;15282:32:0;;;;;;;14942:380;;;:::o;21063:4678::-;-1:-1:-1;;;;;21195:18:0;;21187:68;;;;-1:-1:-1;;;21187:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21274:16:0;;21266:64;;;;-1:-1:-1;;;21266:64:0;;7374:2:1;21266:64:0;;;7356:21:1;7413:2;7393:18;;;7386:30;7452:34;7432:18;;;7425:62;-1:-1:-1;;;7503:18:1;;;7496:33;7546:19;;21266:64:0;7172:399:1;21266:64:0;21345:6;21355:1;21345:11;21341:93;;21373:28;21389:4;21395:2;21399:1;21373:15;:28::i;:::-;21063:4678;;;:::o;21341:93::-;21450:14;;;;21446:1149;;;3062:6;;-1:-1:-1;;;;;21503:15:0;;;3062:6;;21503:15;;;;:49;;-1:-1:-1;3062:6:0;;-1:-1:-1;;;;;21539:13:0;;;3062:6;;21539:13;;21503:49;:86;;;;-1:-1:-1;;;;;;21573:16:0;;;;21503:86;:128;;;;-1:-1:-1;;;;;;21610:21:0;;21624:6;21610:21;;21503:128;:158;;;;-1:-1:-1;21653:8:0;;;;21652:9;21503:158;21481:1103;;;21701:13;;;;;;;21696:223;;-1:-1:-1;;;;;21773:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;21802:23:0;;;;;;:19;:23;;;;;;;;21773:52;21739:160;;;;-1:-1:-1;;;21739:160:0;;7778:2:1;21739:160:0;;;7760:21:1;7817:2;7797:18;;;7790:30;-1:-1:-1;;;7836:18:1;;;7829:51;7897:18;;21739:160:0;7576:345:1;21739:160:0;-1:-1:-1;;;;;21941:31:0;;;;;;:25;:31;;;;;;;;:62;;;;-1:-1:-1;;;;;;21977:26:0;;;;;;:22;:26;;;;;;;;21976:27;21941:62;21937:632;;;18535:13;22036:6;:30;;22028:81;;;;-1:-1:-1;;;22028:81:0;;8128:2:1;22028:81:0;;;8110:21:1;8167:2;8147:18;;;8140:30;8206:34;8186:18;;;8179:62;-1:-1:-1;;;8257:18:1;;;8250:36;8303:19;;22028:81:0;7926:402:1;22028:81:0;18591:13;22149;22159:2;-1:-1:-1;;;;;7321:18:0;7294:7;7321:18;;;;;;;;;;;;7220:127;22149:13;22140:22;;:6;:22;:::i;:::-;:35;;22132:68;;;;-1:-1:-1;;;22132:68:0;;8535:2:1;22132:68:0;;;8517:21:1;8574:2;8554:18;;;8547:30;-1:-1:-1;;;8593:18:1;;;8586:50;8653:18;;22132:68:0;8333:344:1;22132:68:0;21937:632;;;-1:-1:-1;;;;;22230:29:0;;;;;;:25;:29;;;;;;;;:62;;;;-1:-1:-1;;;;;;22264:28:0;;;;;;:22;:28;;;;;;;;22263:29;22230:62;22226:343;;;18535:13;22325:6;:30;;22317:82;;;;-1:-1:-1;;;22317:82:0;;8884:2:1;22317:82:0;;;8866:21:1;8923:2;8903:18;;;8896:30;8962:34;8942:18;;;8935:62;-1:-1:-1;;;9013:18:1;;;9006:37;9060:19;;22317:82:0;8682:403:1;22226:343:0;-1:-1:-1;;;;;22430:26:0;;;;;;:22;:26;;;;;;;;22425:144;;18591:13;22498;22508:2;-1:-1:-1;;;;;7321:18:0;7294:7;7321:18;;;;;;;;;;;;7220:127;22498:13;22489:22;;:6;:22;:::i;:::-;:35;;22481:68;;;;-1:-1:-1;;;22481:68:0;;8535:2:1;22481:68:0;;;8517:21:1;8574:2;8554:18;;;8547:30;-1:-1:-1;;;8593:18:1;;;8586:50;8653:18;;22481:68:0;8333:344:1;22481:68:0;-1:-1:-1;;;;;22612:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;22641:23:0;;;;;;:19;:23;;;;;;;;22612:52;22611:79;;;;-1:-1:-1;;;;;;22669:21:0;;22685:4;22669:21;;22611:79;:102;;;;-1:-1:-1;;;;;;22694:19:0;;22708:4;22694:19;;22611:102;22607:160;;;22740:15;22730:7;:25;22607:160;-1:-1:-1;;;;;22781:25:0;;;;;;:19;:25;;;;;;;;:58;;;;;22811:19;:28;22831:7;3062:6;;-1:-1:-1;;;;;3062:6:0;;2989:87;22831:7;-1:-1:-1;;;;;22811:28:0;;;;;;;;;;;;-1:-1:-1;22811:28:0;;;;22810:29;22781:58;22777:146;;;22856:34;22873:4;22879:2;22883:6;22856:16;:34::i;22777:146::-;-1:-1:-1;;;;;22938:25:0;;;;;;:19;:25;;;;;;;;22937:26;:54;;;;-1:-1:-1;;;;;;22968:23:0;;;;;;:19;:23;;;;;;;;22967:24;22937:54;22933:813;;;-1:-1:-1;;;;;23012:29:0;;;;;;:25;:29;;;;;;;;23008:727;;;-1:-1:-1;;;;;23086:14:0;;23062:21;23086:14;;;:8;:14;;;;;23151:7;;23140:8;;:18;;23151:7;23140:18;:::i;:::-;23119;;;:39;23189:15;23177:9;;;;:27;23008:727;;;-1:-1:-1;;;;;23271:12:0;;;23245:23;23271:12;;;:8;:12;;;;;;;;23306:31;;;;;:25;:31;;;;;;;;23302:418;;;23366:10;;;:15;23362:100;;23423:15;23410:28;;23362:100;23302:418;;;-1:-1:-1;;;;;23538:14:0;;23510:25;23538:14;;;:8;:14;;;;;23579:10;;:15;;:44;;-1:-1:-1;23613:10:0;;23598:12;;:25;23579:44;23575:126;;;23665:12;;23652:25;;23575:126;23487:233;23302:418;23226:509;23008:727;23807:4;23758:28;7321:18;;;;;;;;;;;23911:17;;7321:18;;18656:10;23841:42;-1:-1:-1;23841:42:0;;23945:12;;23911:31;;18380:2;;23911:31;:::i;:::-;:46;23894:63;;23988:7;:34;;;;;24013:9;24012:10;23988:34;:60;;;;-1:-1:-1;24040:8:0;;;;24039:9;23988:60;:109;;;;-1:-1:-1;;;;;;24066:31:0;;;;;;:25;:31;;;;;;;;24065:32;23988:109;:152;;;;-1:-1:-1;;;;;;24115:25:0;;;;;;:19;:25;;;;;;;;24114:26;23988:152;:193;;;;-1:-1:-1;;;;;;24158:23:0;;;;;;:19;:23;;;;;;;;24157:24;23988:193;23970:321;;;24208:8;:15;;-1:-1:-1;;24208:15:0;24219:4;24208:15;;;24238:10;:8;:10::i;:::-;24263:8;:16;;-1:-1:-1;;24263:16:0;;;23970:321;24319:8;;-1:-1:-1;;;;;24344:25:0;;24303:12;24344:25;;;:19;:25;;;;;;24319:8;;;;24318:9;;24344:25;;:52;;-1:-1:-1;;;;;;24373:23:0;;;;;;:19;:23;;;;;;;;24344:52;24340:100;;;-1:-1:-1;24423:5:0;24340:100;24452:12;24483:7;24479:1211;;;24511:9;24507:1038;;;-1:-1:-1;;;;;24545:31:0;;;;;;:25;:31;;;;;;;;24541:343;;;24608:33;24637:3;24609:22;18429:2;24609:6;:22;:::i;:::-;24608:28;;:33::i;:::-;24601:40;;24686:4;24664:18;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;24507:1038:0;;-1:-1:-1;24507:1038:0;24541:343;-1:-1:-1;;;;;24720:29:0;;;;;;:25;:29;;;;;;;;24716:168;;;24781:34;24811:3;24782:23;18479:2;24782:6;:23;:::i;24716:168::-;24507:1038;;;-1:-1:-1;;;;;24928:31:0;;;;;;:25;:31;;;;;;;;:51;;;;-1:-1:-1;24963:16:0;24928:51;24924:606;;;25035:3;25011:21;18972:1;25011:6;:21;:::i;:::-;:27;;;;:::i;:::-;25004:34;-1:-1:-1;25085:42:0;18972:1;25086:22;18972:1;25004:34;25086:22;:::i;25085:42::-;25063:18;;:64;;;;;;;:::i;:::-;;;;-1:-1:-1;25166:36:0;;-1:-1:-1;18972:1:0;25167:16;18829:1;25167:4;:16;:::i;25166:36::-;25150:12;;:52;;;;;;;:::i;24924:606::-;-1:-1:-1;;;;;25232:29:0;;;;;;:25;:29;;;;;;;;:50;;;;-1:-1:-1;25265:17:0;25232:50;25228:302;;;25339:3;25314:22;19020:1;25314:6;:22;:::i;:::-;:28;;;;:::i;:::-;25307:35;-1:-1:-1;25389:44:0;19020:1;25390:23;19020:1;25307:35;25390:23;:::i;25389:44::-;25367:18;;:66;;;;;;;:::i;:::-;;;;-1:-1:-1;25472:38:0;;-1:-1:-1;19020:1:0;25473:17;18925:1;25473:4;:17;:::i;25472:38::-;25456:12;;:54;;;;;;;:::i;:::-;;;;-1:-1:-1;;25228:302:0;25563:8;;25559:91;;25592:42;25608:4;25622;25629;25592:15;:42::i;:::-;25664:14;25674:4;25664:14;;:::i;:::-;;;24479:1211;25700:33;25716:4;25722:2;25726:6;25700:15;:33::i;:::-;21176:4565;;;;;21063:4678;;;:::o;3532:191::-;3625:6;;;-1:-1:-1;;;;;3642:17:0;;;-1:-1:-1;;;;;;3642:17:0;;;;;;;3675:40;;3625:6;;;3642:17;3625:6;;3675:40;;3606:16;;3675:40;3595:128;3532:191;:::o;11269:651::-;-1:-1:-1;;;;;11409:20:0;;11401:70;;;;-1:-1:-1;;;11401:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11568:17:0;;11544:21;11568:17;;;;;;;;;;;11604:23;;;;11596:74;;;;-1:-1:-1;;;11596:74:0;;9647:2:1;11596:74:0;;;9629:21:1;9686:2;9666:18;;;9659:30;9725:34;9705:18;;;9698:62;-1:-1:-1;;;9776:18:1;;;9769:36;9822:19;;11596:74:0;9445:402:1;11596:74:0;-1:-1:-1;;;;;11706:17:0;;;:9;:17;;;;;;;;;;;11726:22;;;11706:42;;11770:20;;;;;;;;:30;;11742:6;;11706:9;11770:30;;11742:6;;11770:30;:::i;:::-;;;;;;;;11835:9;-1:-1:-1;;;;;11818:35:0;11827:6;-1:-1:-1;;;;;11818:35:0;;11846:6;11818:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;11818:35:0;;;;;;;;11390:530;11269:651;;;:::o;12410:484::-;-1:-1:-1;;;;;12627:17:0;;;12603:21;12627:17;;;;;;;;;;;;;12700:22;;;12680:42;;;12744:20;;;;;;;:30;;12716:6;;12603:21;12744:30;;12716:6;;12744:30;:::i;26334:913::-;26417:4;26373:23;7321:18;;;;;;;;;;;26373:50;;26434:25;26477:18;;26462:12;;:33;;;;:::i;:::-;26434:61;-1:-1:-1;26506:12:0;26533:20;;;:46;;-1:-1:-1;26557:22:0;;26533:46;26529:85;;;26596:7;;;26334:913::o;26529:85::-;18713:23;18656:10;18734:2;18713:23;:::i;:::-;26628:15;:31;26624:95;;;18713:23;18656:10;18734:2;18713:23;:::i;:::-;26676:31;;26624:95;26758:15;26812:21;26844:36;26758:15;26844:16;:36::i;:::-;26891:24;26918:41;26942:17;26918:21;:41;:::i;:::-;26891:68;;26970:17;27024;27009:12;;26990:16;:31;;;;:::i;:::-;:51;;;;:::i;:::-;27067:1;27052:12;:16;;;27079:18;:22;;;27125:36;;26970:71;;-1:-1:-1;27125:9:0;-1:-1:-1;;;;;27125:14:0;;26970:71;;27125:36;27067:1;27125:36;26970:71;27125:14;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;27185:54:0;;27112:49;;-1:-1:-1;;;;;;27185:15:0;:20;;27213:21;;27185:54;;;;27213:21;27185:20;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;26334:913:0:o;1736:132::-;1794:7;1821:39;1825:1;1828;1821:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;1814:46;1736:132;-1:-1:-1;;;1736:132:0:o;27255:471::-;27345:16;;;27359:1;27345:16;;;;;;;;27321:21;;27345:16;;;;;;;;;;-1:-1:-1;27345:16:0;27321:40;;27390:4;27372;27377:1;27372:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;27372:23:0;;;-1:-1:-1;;;;;27372:23:0;;;;;27416:15;-1:-1:-1;;;;;27416:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27406:4;27411:1;27406:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;27406:32:0;;;-1:-1:-1;;;;;27406:32:0;;;;;27449:62;27466:4;27481:15;27499:11;27449:8;:62::i;:::-;27522:196;;-1:-1:-1;;;27522:196:0;;-1:-1:-1;;;;;27522:15:0;:66;;;;:196;;27603:11;;27629:1;;27645:4;;27672;;27692:15;;27522:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27310:416;27255:471;:::o;1876:189::-;1962:7;1997:12;1990:5;1982:28;;;;-1:-1:-1;;;1982:28:0;;;;;;;;:::i;:::-;-1:-1:-1;2021:9:0;2033:5;2037:1;2033;:5;:::i;:::-;2021:17;1876:189;-1:-1:-1;;;;;1876: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;5378:168::-;5451:9;;;5482;;5499:15;;;5493:22;;5479:37;5469:71;;5520:18;;:::i;6766:401::-;6968:2;6950:21;;;7007:2;6987:18;;;6980:30;7046:34;7041:2;7026:18;;7019:62;-1:-1:-1;;;7112:2:1;7097:18;;7090:35;7157:3;7142:19;;6766:401::o;9090:128::-;9157:9;;;9178:11;;;9175:37;;;9192:18;;:::i;9223:217::-;9263:1;9289;9279:132;;9333:10;9328:3;9324:20;9321:1;9314:31;9368:4;9365:1;9358:15;9396:4;9393:1;9386:15;9279:132;-1:-1:-1;9425:9:1;;9223:217::o;10194:127::-;10255:10;10250:3;10246:20;10243:1;10236:31;10286:4;10283:1;10276:15;10310:4;10307:1;10300:15;10326:251;10396:6;10449:2;10437:9;10428:7;10424:23;10420:32;10417:52;;;10465:1;10462;10455:12;10417:52;10497:9;10491:16;10516:31;10541:5;10516:31;:::i;10582:980::-;10844:4;10892:3;10881:9;10877:19;10923:6;10912:9;10905:25;10949:2;10987:6;10982:2;10971:9;10967:18;10960:34;11030:3;11025:2;11014:9;11010:18;11003:31;11054:6;11089;11083:13;11120:6;11112;11105:22;11158:3;11147:9;11143:19;11136:26;;11197:2;11189:6;11185:15;11171:29;;11218:1;11228:195;11242:6;11239:1;11236:13;11228:195;;;11307:13;;-1:-1:-1;;;;;11303:39:1;11291:52;;11398:15;;;;11363:12;;;;11339:1;11257:9;11228:195;;;-1:-1:-1;;;;;;;11479:32:1;;;;11474:2;11459:18;;11452:60;-1:-1:-1;;;11543:3:1;11528:19;11521:35;11440:3;10582:980;-1:-1:-1;;;10582:980:1:o

Swarm Source

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