ETH Price: $3,268.97 (+0.69%)
Gas: 2 Gwei

Token

AcceptCrypto (ACEPT)
 

Overview

Max Total Supply

1,000,000,000,000 ACEPT

Holders

773

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,829,918,540.02194593702976488 ACEPT

Value
$0.00
0xB7BB4454eb4DDcA78C17b2911a0d0183984985B9
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:
AcceptCrypto

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, _allowances[owner][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) {
        address owner = _msgSender();
        uint256 currentAllowance = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

contract AcceptCrypto is ERC20, Ownable {

    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private swapping;

    bool public isTradingEnabled;
    bool public isBuyFeeDisabled;
    bool public isSellFeeDisabled;
    uint256 public startBlock;

    uint256 public maxTxAmount = 3 * 10**9 * (10**18); //0.3% of total supply
    uint256 public maxWalletSize = 10**10 * (10**18); //1% of total supply

    uint256 public swapTokensAtAmount = 10**9 * (10**18);

    mapping (address => bool) private _isExcluded;
    mapping (address => bool) private _isBlacklisted;

    uint256 public buybackBuyFee;
    uint256 public liquidityBuyFee;
    uint256 public devBuyFee;
    uint256 public marketingBuyFee;
    uint256 public totalBuyFees;

    uint256 public buybackSellFee;
    uint256 public liquiditySellFee;
    uint256 public devSellFee;
    uint256 public marketingSellFee;
    uint256 public totalSellFees;

    uint256 public buybackTokens;
    uint256 public liquidityTokens;
    uint256 public devTokens;
    uint256 public marketingTokens;

    address public marketingWallet = 0x17c0490B57254e80DD5F7e24E0BC383faA349dc0;
    address public devWallet = 0x125F0f61800E5e34a76313EFDd4FD5aa9A8Aed39;
    address constant deadAddress = 0x000000000000000000000000000000000000dEaD;

    event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity);

    constructor() ERC20("AcceptCrypto", "ACEPT") {
    	IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _isExcluded[owner()] = true;
        _isExcluded[address(this)] = true;
        _isExcluded[marketingWallet] = true;
        _isExcluded[devWallet] = true;

        _isBlacklisted[address(0)] = true;

        buybackBuyFee = 200;
        liquidityBuyFee = 200;
        devBuyFee = 300;
        marketingBuyFee = 300;
        totalBuyFees = 1000;

        buybackSellFee = 200;
        liquiditySellFee = 200;
        devSellFee = 300;
        marketingSellFee = 300;
        totalSellFees = 1000;

        _mint(owner(), 10**12 * (10**18));
    }

    receive() external payable {

  	}

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(!_isBlacklisted[from] && !_isBlacklisted[to], "To or From address is blacklisted.");

        if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (!isTradingEnabled) {
            require(_isExcluded[to] || _isExcluded[from], "Trading is not yet enabled. Be patient!");
            if (to == uniswapV2Pair) {
                isTradingEnabled = true;
                startBlock = block.number;
            }
        } else if (!_isExcluded[to] && !_isExcluded[from]) {
            require(amount <= maxTxAmount, "Over max tx amt.");
            if (to != address(uniswapV2Router) && to != uniswapV2Pair) {
                require(balanceOf(to) + amount <= maxWalletSize, "Transfer amount too high. Cannot exceed max wallet size.");
            }
        }

		    bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount;

        if(
            canSwap &&
            !swapping &&
            from != uniswapV2Pair &&
            from != owner() &&
            to != owner()
        ) {

            swapping = true;

            swapAndLiquify(liquidityTokens);
            swapAndSendDividends(buybackTokens + devTokens + marketingTokens);

            swapping = false;
        }

        bool takeFee = !swapping;

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

        if(takeFee) {
            uint256 fees;
            if (to == uniswapV2Pair && !isSellFeeDisabled) { //sell
                if (block.number <= startBlock + 2 ){ //within the first 2 blocks of trading
                    fees = amount * 10000 / 11000;
                } else {
                    fees = amount * totalSellFees / 10000;
                }
                buybackTokens += fees * buybackSellFee / totalSellFees;
                liquidityTokens += fees * liquiditySellFee / totalSellFees;
                devTokens += fees * devSellFee / totalSellFees;
                marketingTokens += fees * marketingSellFee / totalSellFees;
            } else if (from == uniswapV2Pair && !isBuyFeeDisabled) { //buy
                if (block.number <= startBlock + 2 ){ //within the first 2 blocks of trading
                    fees = amount * 10000 / 11000;
                } else {
                    fees = amount * totalBuyFees / 10000;
                }
                buybackTokens += fees * buybackBuyFee / totalBuyFees;
                liquidityTokens += fees * liquidityBuyFee / totalBuyFees;
                devTokens += fees * devBuyFee / totalBuyFees;
                marketingTokens += fees * marketingBuyFee / totalBuyFees;
            }

            amount -= fees;
            super._transfer(from, address(this), fees);
        }

        super._transfer(from, to, amount);

    }

    function swapAndLiquify(uint256 tokens) private {
        uint256 half = tokens / 2;
        uint256 otherHalf = tokens - half;
        uint256 initialBalance = address(this).balance;
        liquidityTokens = 0;
        swapTokensForEth(half);
        uint256 newBalance = address(this).balance - initialBalance;
        addLiquidity(otherHalf, newBalance);
        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    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 addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            deadAddress,
            block.timestamp
        );
    }

    function swapAndSendDividends(uint256 tokens) private {
        swapTokensForEth(tokens);
        uint256 buyback = address(this).balance * buybackTokens / tokens;
        uint256 dev = address(this).balance * devTokens / tokens;
        uint256 marketing = address(this).balance - buyback - dev;
        buybackTokens = 0;
        buyBackAndBurn(buyback);
        devTokens = 0;
        payable(devWallet).transfer(dev);
        marketingTokens = 0;
        payable(marketingWallet).transfer(marketing);
    }

    function buyBackAndBurn(uint256 amount) private {
        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = address(this);
        uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(
            0,
            path,
            deadAddress,
            block.timestamp
        );

    }

    function setExcluded(address account, bool value) external onlyOwner {
        _isExcluded[account] = value;
    }

    function setBlacklist(address account, bool value) external onlyOwner {
        _isBlacklisted[account] = value;
    }

    function setSellFeeDisabled(bool value) external onlyOwner {
        isSellFeeDisabled = value;
    }

    function setBuyFeeDisabled(bool value) external onlyOwner {
        isBuyFeeDisabled = value;
    }

    function setMaxWalletSize(uint256 amount) external onlyOwner {
        maxWalletSize = amount;
    }

    function setMaxTxAmount(uint256 amount) external onlyOwner {
        maxTxAmount = amount;
    }

    function setSwapAtAmount(uint256 amount) external onlyOwner {
        swapTokensAtAmount = amount;
    }

    function setMarketingWallet(address account) external onlyOwner {
        marketingWallet = account;
    }

    function setDevWallet(address account) external onlyOwner {
        devWallet = account;
    }

    function setSellFees(uint256 buyback, uint256 liquidity, uint256 dev, uint256 marketing) external onlyOwner {
        uint256 total = buyback + liquidity + dev + marketing;
        require(total <= 1200, "The total tax cannot be more than 12%.");
        buybackSellFee = buyback;
        liquiditySellFee = liquidity;
        devSellFee = dev;
        marketingSellFee = marketing;
        totalSellFees = total;
    }

    function setBuyFees(uint256 buyback, uint256 liquidity, uint256 dev, uint256 marketing) external onlyOwner {
        uint256 total = buyback + liquidity + dev + marketing;
        require(total <= 1000, "The total tax cannot be more than 10%.");
        buybackBuyFee = buyback;
        liquidityBuyFee = liquidity;
        devBuyFee = dev;
        marketingBuyFee = marketing;
        totalBuyFees = total;
    }

    function transferOwnership(address newOwner) public override onlyOwner {
        _isExcluded[owner()] = false;
        _isExcluded[newOwner] = true;
        super.transferOwnership(newOwner);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buybackBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buybackSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buybackTokens","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":"devBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"isBuyFeeDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSellFeeDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquiditySellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setBuyFeeDisabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyback","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"dev","type":"uint256"},{"internalType":"uint256","name":"marketing","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExcluded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setSellFeeDisabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyback","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"dev","type":"uint256"},{"internalType":"uint256","name":"marketing","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","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":"totalBuyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"}]

60a06040526b09b18ab5df7180b6b80000006008556b204fce5e3e250261100000006009556b033b2e3c9fd0803ce8000000600a557317c0490b57254e80dd5f7e24e0bc383faa349dc0601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073125f0f61800e5e34a76313efdd4fd5aa9a8aed39601c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000eb57600080fd5b506040518060400160405280600c81526020017f41636365707443727970746f00000000000000000000000000000000000000008152506040518060400160405280600581526020017f4143455054000000000000000000000000000000000000000000000000000000815250816003908051906020019062000170929190620008e8565b50806004908051906020019062000189929190620008e8565b505050620001ac620001a06200066d60201b60201c565b6200067560201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200020e57600080fd5b505afa15801562000223573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002499190620009af565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002ac57600080fd5b505afa158015620002c1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e79190620009af565b6040518363ffffffff1660e01b81526004016200030692919062000a2a565b602060405180830381600087803b1580156200032157600080fd5b505af115801562000336573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200035c9190620009af565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506001600b6000620003ec6200073b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060c8600d8190555060c8600e8190555061012c600f8190555061012c6010819055506103e860118190555060c860128190555060c860138190555061012c60148190555061012c6015819055506103e8601681905550620006656200064b6200073b60201b60201c565b6c0c9f2c9cd04674edea400000006200076560201b60201c565b505062000c1e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620007d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007cf9062000a57565b60405180910390fd5b620007ec60008383620008de60201b60201c565b806002600082825462000800919062000aa7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000857919062000aa7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008be919062000a79565b60405180910390a3620008da60008383620008e360201b60201c565b5050565b505050565b505050565b828054620008f69062000b42565b90600052602060002090601f0160209004810192826200091a576000855562000966565b82601f106200093557805160ff191683800117855562000966565b8280016001018555821562000966579182015b828111156200096557825182559160200191906001019062000948565b5b50905062000975919062000979565b5090565b5b80821115620009945760008160009055506001016200097a565b5090565b600081519050620009a98162000c04565b92915050565b600060208284031215620009c857620009c762000bd6565b5b6000620009d88482850162000998565b91505092915050565b620009ec8162000b04565b82525050565b600062000a01601f8362000a96565b915062000a0e8262000bdb565b602082019050919050565b62000a248162000b38565b82525050565b600060408201905062000a416000830185620009e1565b62000a506020830184620009e1565b9392505050565b6000602082019050818103600083015262000a7281620009f2565b9050919050565b600060208201905062000a90600083018462000a19565b92915050565b600082825260208201905092915050565b600062000ab48262000b38565b915062000ac18362000b38565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000af95762000af862000b78565b5b828201905092915050565b600062000b118262000b18565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000b5b57607f821691505b6020821081141562000b725762000b7162000ba7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b62000c0f8162000b04565b811462000c1b57600080fd5b50565b60805160601c6144b262000c60600039600081816111aa01528181611f32015281816120f5015281816121d9015281816123dc015261256f01526144b26000f3fe6080604052600436106102cd5760003560e01c806370a0823111610175578063ae637f88116100dc578063d0a3981411610095578063e7f444b31161006f578063e7f444b314610aeb578063ea1644d514610b16578063ec28438a14610b3f578063f2fde38b14610b68576102d4565b8063d0a3981414610a58578063dd62ed3e14610a83578063e2f4560514610ac0576102d4565b8063ae637f8814610958578063b2b250ec14610983578063b45e83f8146109ae578063b9e93700146109d9578063ca7a0e2814610a04578063ccb6135814610a2d576102d4565b80638da5cb5b1161012e5780638da5cb5b146108325780638ea5220f1461085d5780638f3fa8601461088857806395d89b41146108b3578063a457c2d7146108de578063a9059cbb1461091b576102d4565b806370a0823114610732578063715018a61461076f57806375f0a8741461078657806382d76619146107b15780638b27306d146107dc5780638c0b5e2214610807576102d4565b80632836be24116102345780634b8ce602116101ed5780636402511e116101c75780636402511e1461068a5780636630d471146106b357806368078952146106de5780636c5b285514610709576102d4565b80634b8ce6021461060b57806355648209146106365780635d098b3814610661576102d4565b80632836be24146104f9578063313ce56714610522578063395093511461054d57806346bac0101461058a57806348cd4cb1146105b557806349bd5a5e146105e0576102d4565b8063153b0d1e11610286578063153b0d1e146103eb5780631694505e14610414578063178d9b8e1461043f57806318160ddd146104685780631f53ac021461049357806323b872dd146104bc576102d4565b806301143fea146102d9578063064a59d014610304578063067a7c771461032f57806306fdde0314610358578063095ea7b314610383578063099d0d30146103c0576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610b91565b6040516102fb9190613bd4565b60405180910390f35b34801561031057600080fd5b50610319610b97565b6040516103269190613950565b60405180910390f35b34801561033b57600080fd5b506103566004803603810190610351919061349b565b610baa565b005b34801561036457600080fd5b5061036d610c43565b60405161037a91906139d2565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a5919061345b565b610cd5565b6040516103b79190613950565b60405180910390f35b3480156103cc57600080fd5b506103d5610cf8565b6040516103e29190613bd4565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d919061341b565b610cfe565b005b34801561042057600080fd5b50610429610dd5565b604051610436919061396b565b60405180910390f35b34801561044b57600080fd5b5061046660048036038101906104619190613548565b610dfb565b005b34801561047457600080fd5b5061047d610f0c565b60405161048a9190613bd4565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b5919061332e565b610f16565b005b3480156104c857600080fd5b506104e360048036038101906104de91906133c8565b610fd6565b6040516104f09190613950565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b919061341b565b611005565b005b34801561052e57600080fd5b506105376110dc565b6040516105449190613c80565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f919061345b565b6110e5565b6040516105819190613950565b60405180910390f35b34801561059657600080fd5b5061059f61118f565b6040516105ac9190613950565b60405180910390f35b3480156105c157600080fd5b506105ca6111a2565b6040516105d79190613bd4565b60405180910390f35b3480156105ec57600080fd5b506105f56111a8565b60405161060291906138d4565b60405180910390f35b34801561061757600080fd5b506106206111cc565b60405161062d9190613bd4565b60405180910390f35b34801561064257600080fd5b5061064b6111d2565b6040516106589190613bd4565b60405180910390f35b34801561066d57600080fd5b506106886004803603810190610683919061332e565b6111d8565b005b34801561069657600080fd5b506106b160048036038101906106ac91906134c8565b611298565b005b3480156106bf57600080fd5b506106c861131e565b6040516106d59190613bd4565b60405180910390f35b3480156106ea57600080fd5b506106f3611324565b6040516107009190613bd4565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190613548565b61132a565b005b34801561073e57600080fd5b506107596004803603810190610754919061332e565b61143b565b6040516107669190613bd4565b60405180910390f35b34801561077b57600080fd5b50610784611483565b005b34801561079257600080fd5b5061079b61150b565b6040516107a891906138d4565b60405180910390f35b3480156107bd57600080fd5b506107c6611531565b6040516107d39190613bd4565b60405180910390f35b3480156107e857600080fd5b506107f1611537565b6040516107fe9190613bd4565b60405180910390f35b34801561081357600080fd5b5061081c61153d565b6040516108299190613bd4565b60405180910390f35b34801561083e57600080fd5b50610847611543565b60405161085491906138d4565b60405180910390f35b34801561086957600080fd5b5061087261156d565b60405161087f91906138d4565b60405180910390f35b34801561089457600080fd5b5061089d611593565b6040516108aa9190613bd4565b60405180910390f35b3480156108bf57600080fd5b506108c8611599565b6040516108d591906139d2565b60405180910390f35b3480156108ea57600080fd5b506109056004803603810190610900919061345b565b61162b565b6040516109129190613950565b60405180910390f35b34801561092757600080fd5b50610942600480360381019061093d919061345b565b611715565b60405161094f9190613950565b60405180910390f35b34801561096457600080fd5b5061096d611738565b60405161097a9190613950565b60405180910390f35b34801561098f57600080fd5b5061099861174b565b6040516109a59190613bd4565b60405180910390f35b3480156109ba57600080fd5b506109c3611751565b6040516109d09190613bd4565b60405180910390f35b3480156109e557600080fd5b506109ee611757565b6040516109fb9190613bd4565b60405180910390f35b348015610a1057600080fd5b50610a2b6004803603810190610a26919061349b565b61175d565b005b348015610a3957600080fd5b50610a426117f6565b604051610a4f9190613bd4565b60405180910390f35b348015610a6457600080fd5b50610a6d6117fc565b604051610a7a9190613bd4565b60405180910390f35b348015610a8f57600080fd5b50610aaa6004803603810190610aa59190613388565b611802565b604051610ab79190613bd4565b60405180910390f35b348015610acc57600080fd5b50610ad5611889565b604051610ae29190613bd4565b60405180910390f35b348015610af757600080fd5b50610b0061188f565b604051610b0d9190613bd4565b60405180910390f35b348015610b2257600080fd5b50610b3d6004803603810190610b3891906134c8565b611895565b005b348015610b4b57600080fd5b50610b666004803603810190610b6191906134c8565b61191b565b005b348015610b7457600080fd5b50610b8f6004803603810190610b8a919061332e565b6119a1565b005b600f5481565b600660159054906101000a900460ff1681565b610bb2611ae0565b73ffffffffffffffffffffffffffffffffffffffff16610bd0611543565b73ffffffffffffffffffffffffffffffffffffffff1614610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d90613b14565b60405180910390fd5b80600660166101000a81548160ff02191690831515021790555050565b606060038054610c5290613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7e90613ed5565b8015610ccb5780601f10610ca057610100808354040283529160200191610ccb565b820191906000526020600020905b815481529060010190602001808311610cae57829003601f168201915b5050505050905090565b600080610ce0611ae0565b9050610ced818585611ae8565b600191505092915050565b60135481565b610d06611ae0565b73ffffffffffffffffffffffffffffffffffffffff16610d24611543565b73ffffffffffffffffffffffffffffffffffffffff1614610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190613b14565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e03611ae0565b73ffffffffffffffffffffffffffffffffffffffff16610e21611543565b73ffffffffffffffffffffffffffffffffffffffff1614610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e90613b14565b60405180910390fd5b600081838587610e879190613cf0565b610e919190613cf0565b610e9b9190613cf0565b90506103e8811115610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed990613a34565b60405180910390fd5b84600d8190555083600e8190555082600f8190555081601081905550806011819055505050505050565b6000600254905090565b610f1e611ae0565b73ffffffffffffffffffffffffffffffffffffffff16610f3c611543565b73ffffffffffffffffffffffffffffffffffffffff1614610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990613b14565b60405180910390fd5b80601c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610fe1611ae0565b9050610fee858285611cb3565b610ff9858585611d3f565b60019150509392505050565b61100d611ae0565b73ffffffffffffffffffffffffffffffffffffffff1661102b611543565b73ffffffffffffffffffffffffffffffffffffffff1614611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107890613b14565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b6000806110f0611ae0565b9050611184818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461117f9190613cf0565b611ae8565b600191505092915050565b600660179054906101000a900460ff1681565b60075481565b7f000000000000000000000000000000000000000000000000000000000000000081565b60185481565b60195481565b6111e0611ae0565b73ffffffffffffffffffffffffffffffffffffffff166111fe611543565b73ffffffffffffffffffffffffffffffffffffffff1614611254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124b90613b14565b60405180910390fd5b80601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6112a0611ae0565b73ffffffffffffffffffffffffffffffffffffffff166112be611543565b73ffffffffffffffffffffffffffffffffffffffff1614611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90613b14565b60405180910390fd5b80600a8190555050565b60125481565b60105481565b611332611ae0565b73ffffffffffffffffffffffffffffffffffffffff16611350611543565b73ffffffffffffffffffffffffffffffffffffffff16146113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d90613b14565b60405180910390fd5b6000818385876113b69190613cf0565b6113c09190613cf0565b6113ca9190613cf0565b90506104b0811115611411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140890613af4565b60405180910390fd5b84601281905550836013819055508260148190555081601581905550806016819055505050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61148b611ae0565b73ffffffffffffffffffffffffffffffffffffffff166114a9611543565b73ffffffffffffffffffffffffffffffffffffffff16146114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f690613b14565b60405180910390fd5b611509600061272b565b565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b601a5481565b60085481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095481565b6060600480546115a890613ed5565b80601f01602080910402602001604051908101604052809291908181526020018280546115d490613ed5565b80156116215780601f106115f657610100808354040283529160200191611621565b820191906000526020600020905b81548152906001019060200180831161160457829003601f168201915b5050505050905090565b600080611636611ae0565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f390613bb4565b60405180910390fd5b6117098286868403611ae8565b60019250505092915050565b600080611720611ae0565b905061172d818585611d3f565b600191505092915050565b600660169054906101000a900460ff1681565b600d5481565b60145481565b60115481565b611765611ae0565b73ffffffffffffffffffffffffffffffffffffffff16611783611543565b73ffffffffffffffffffffffffffffffffffffffff16146117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090613b14565b60405180910390fd5b80600660176101000a81548160ff02191690831515021790555050565b600e5481565b60165481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b60155481565b61189d611ae0565b73ffffffffffffffffffffffffffffffffffffffff166118bb611543565b73ffffffffffffffffffffffffffffffffffffffff1614611911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190890613b14565b60405180910390fd5b8060098190555050565b611923611ae0565b73ffffffffffffffffffffffffffffffffffffffff16611941611543565b73ffffffffffffffffffffffffffffffffffffffff1614611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e90613b14565b60405180910390fd5b8060088190555050565b6119a9611ae0565b73ffffffffffffffffffffffffffffffffffffffff166119c7611543565b73ffffffffffffffffffffffffffffffffffffffff1614611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1490613b14565b60405180910390fd5b6000600b6000611a2b611543565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611add816127f1565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f90613b74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf90613a74565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611ca69190613bd4565b60405180910390a3505050565b6000611cbf8484611802565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611d395781811015611d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2290613ab4565b60405180910390fd5b611d388484848403611ae8565b5b50505050565b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611de35750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1990613b94565b60405180910390fd5b6000811415611e3c57611e37838360006128e9565b612726565b600660159054906101000a900460ff16611fac57600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611ef15750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2790613b34565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fa7576001600660156101000a81548160ff021916908315150217905550436007819055505b6121a4565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156120505750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156121a35760085481111561209a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209190613a14565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561214457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156121a257600954816121568461143b565b6121609190613cf0565b11156121a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219890613a94565b60405180910390fd5b5b5b5b6000600a546121b23061143b565b101590508080156121d05750600660149054906101000a900460ff16155b801561222857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156122675750612237611543565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156122a65750612276611543565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15612312576001600660146101000a81548160ff0219169083151502179055506122d1601854612b6a565b6122f6601a546019546017546122e79190613cf0565b6122f19190613cf0565b612bfd565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123c85750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156123d257600090505b80156127185760007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156124425750600660179054906101000a900460ff16155b1561256d5760026007546124569190613cf0565b431161247e57612af86127108561246d9190613d77565b6124779190613d46565b905061249c565b6127106016548561248f9190613d77565b6124999190613d46565b90505b601654601254826124ad9190613d77565b6124b79190613d46565b601760008282546124c89190613cf0565b92505081905550601654601354826124e09190613d77565b6124ea9190613d46565b601860008282546124fb9190613cf0565b92505081905550601654601454826125139190613d77565b61251d9190613d46565b6019600082825461252e9190613cf0565b92505081905550601654601554826125469190613d77565b6125509190613d46565b601a60008282546125619190613cf0565b925050819055506126fd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480156125d55750600660169054906101000a900460ff16155b156126fc5760026007546125e99190613cf0565b431161261157612af8612710856126009190613d77565b61260a9190613d46565b905061262f565b612710601154856126229190613d77565b61262c9190613d46565b90505b601154600d54826126409190613d77565b61264a9190613d46565b6017600082825461265b9190613cf0565b92505081905550601154600e54826126739190613d77565b61267d9190613d46565b6018600082825461268e9190613cf0565b92505081905550601154600f54826126a69190613d77565b6126b09190613d46565b601960008282546126c19190613cf0565b92505081905550601154601054826126d99190613d77565b6126e39190613d46565b601a60008282546126f49190613cf0565b925050819055505b5b80846127099190613dd1565b93506127168630836128e9565b505b6127238585856128e9565b50505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127f9611ae0565b73ffffffffffffffffffffffffffffffffffffffff16612817611543565b73ffffffffffffffffffffffffffffffffffffffff161461286d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286490613b14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d490613a54565b60405180910390fd5b6128e68161272b565b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295090613b54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c0906139f4565b60405180910390fd5b6129d4838383612d54565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5190613ad4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aed9190613cf0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b519190613bd4565b60405180910390a3612b64848484612d59565b50505050565b6000600282612b799190613d46565b905060008183612b899190613dd1565b905060004790506000601881905550612ba183612d5e565b60008147612baf9190613dd1565b9050612bbb8382612fb0565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051612bee93929190613c49565b60405180910390a15050505050565b612c0681612d5e565b60008160175447612c179190613d77565b612c219190613d46565b905060008260195447612c349190613d77565b612c3e9190613d46565b90506000818347612c4f9190613dd1565b612c599190613dd1565b90506000601781905550612c6c8361309f565b6000601981905550601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015612cdc573d6000803e3d6000fd5b506000601a81905550601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612d4d573d6000803e3d6000fd5b5050505050565b505050565b505050565b6000600267ffffffffffffffff811115612d7b57612d7a613fc3565b5b604051908082528060200260200182016040528015612da95781602001602082028036833780820191505090505b5090503081600081518110612dc157612dc0613f94565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612e6357600080fd5b505afa158015612e77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e9b919061335b565b81600181518110612eaf57612eae613f94565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612f1630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611ae8565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612f7a959493929190613bef565b600060405180830381600087803b158015612f9457600080fd5b505af1158015612fa8573d6000803e3d6000fd5b505050505050565b612fdd30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611ae8565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613046969594939291906138ef565b6060604051808303818588803b15801561305f57600080fd5b505af1158015613073573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061309891906134f5565b5050505050565b6000600267ffffffffffffffff8111156130bc576130bb613fc3565b5b6040519080825280602002602001820160405280156130ea5781602001602082028036833780820191505090505b509050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561315557600080fd5b505afa158015613169573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061318d919061335b565b816000815181106131a1576131a0613f94565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505030816001815181106131f0576131ef613f94565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b6f9de958360008461dead426040518663ffffffff1660e01b815260040161328f9493929190613986565b6000604051808303818588803b1580156132a857600080fd5b505af11580156132bc573d6000803e3d6000fd5b50505050505050565b6000813590506132d481614437565b92915050565b6000815190506132e981614437565b92915050565b6000813590506132fe8161444e565b92915050565b60008135905061331381614465565b92915050565b60008151905061332881614465565b92915050565b60006020828403121561334457613343613ff2565b5b6000613352848285016132c5565b91505092915050565b60006020828403121561337157613370613ff2565b5b600061337f848285016132da565b91505092915050565b6000806040838503121561339f5761339e613ff2565b5b60006133ad858286016132c5565b92505060206133be858286016132c5565b9150509250929050565b6000806000606084860312156133e1576133e0613ff2565b5b60006133ef868287016132c5565b9350506020613400868287016132c5565b925050604061341186828701613304565b9150509250925092565b6000806040838503121561343257613431613ff2565b5b6000613440858286016132c5565b9250506020613451858286016132ef565b9150509250929050565b6000806040838503121561347257613471613ff2565b5b6000613480858286016132c5565b925050602061349185828601613304565b9150509250929050565b6000602082840312156134b1576134b0613ff2565b5b60006134bf848285016132ef565b91505092915050565b6000602082840312156134de576134dd613ff2565b5b60006134ec84828501613304565b91505092915050565b60008060006060848603121561350e5761350d613ff2565b5b600061351c86828701613319565b935050602061352d86828701613319565b925050604061353e86828701613319565b9150509250925092565b6000806000806080858703121561356257613561613ff2565b5b600061357087828801613304565b945050602061358187828801613304565b935050604061359287828801613304565b92505060606135a387828801613304565b91505092959194509250565b60006135bb83836135c7565b60208301905092915050565b6135d081613e05565b82525050565b6135df81613e05565b82525050565b60006135f082613cab565b6135fa8185613cce565b935061360583613c9b565b8060005b8381101561363657815161361d88826135af565b975061362883613cc1565b925050600181019050613609565b5085935050505092915050565b61364c81613e17565b82525050565b61365b81613e5a565b82525050565b61366a81613e6c565b82525050565b600061367b82613cb6565b6136858185613cdf565b9350613695818560208601613ea2565b61369e81613ff7565b840191505092915050565b60006136b6602383613cdf565b91506136c182614008565b604082019050919050565b60006136d9601083613cdf565b91506136e482614057565b602082019050919050565b60006136fc602683613cdf565b915061370782614080565b604082019050919050565b600061371f602683613cdf565b915061372a826140cf565b604082019050919050565b6000613742602283613cdf565b915061374d8261411e565b604082019050919050565b6000613765603883613cdf565b91506137708261416d565b604082019050919050565b6000613788601d83613cdf565b9150613793826141bc565b602082019050919050565b60006137ab602683613cdf565b91506137b6826141e5565b604082019050919050565b60006137ce602683613cdf565b91506137d982614234565b604082019050919050565b60006137f1602083613cdf565b91506137fc82614283565b602082019050919050565b6000613814602783613cdf565b915061381f826142ac565b604082019050919050565b6000613837602583613cdf565b9150613842826142fb565b604082019050919050565b600061385a602483613cdf565b91506138658261434a565b604082019050919050565b600061387d602283613cdf565b915061388882614399565b604082019050919050565b60006138a0602583613cdf565b91506138ab826143e8565b604082019050919050565b6138bf81613e43565b82525050565b6138ce81613e4d565b82525050565b60006020820190506138e960008301846135d6565b92915050565b600060c08201905061390460008301896135d6565b61391160208301886138b6565b61391e6040830187613661565b61392b6060830186613661565b61393860808301856135d6565b61394560a08301846138b6565b979650505050505050565b60006020820190506139656000830184613643565b92915050565b60006020820190506139806000830184613652565b92915050565b600060808201905061399b6000830187613661565b81810360208301526139ad81866135e5565b90506139bc60408301856135d6565b6139c960608301846138b6565b95945050505050565b600060208201905081810360008301526139ec8184613670565b905092915050565b60006020820190508181036000830152613a0d816136a9565b9050919050565b60006020820190508181036000830152613a2d816136cc565b9050919050565b60006020820190508181036000830152613a4d816136ef565b9050919050565b60006020820190508181036000830152613a6d81613712565b9050919050565b60006020820190508181036000830152613a8d81613735565b9050919050565b60006020820190508181036000830152613aad81613758565b9050919050565b60006020820190508181036000830152613acd8161377b565b9050919050565b60006020820190508181036000830152613aed8161379e565b9050919050565b60006020820190508181036000830152613b0d816137c1565b9050919050565b60006020820190508181036000830152613b2d816137e4565b9050919050565b60006020820190508181036000830152613b4d81613807565b9050919050565b60006020820190508181036000830152613b6d8161382a565b9050919050565b60006020820190508181036000830152613b8d8161384d565b9050919050565b60006020820190508181036000830152613bad81613870565b9050919050565b60006020820190508181036000830152613bcd81613893565b9050919050565b6000602082019050613be960008301846138b6565b92915050565b600060a082019050613c0460008301886138b6565b613c116020830187613661565b8181036040830152613c2381866135e5565b9050613c3260608301856135d6565b613c3f60808301846138b6565b9695505050505050565b6000606082019050613c5e60008301866138b6565b613c6b60208301856138b6565b613c7860408301846138b6565b949350505050565b6000602082019050613c9560008301846138c5565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613cfb82613e43565b9150613d0683613e43565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d3b57613d3a613f07565b5b828201905092915050565b6000613d5182613e43565b9150613d5c83613e43565b925082613d6c57613d6b613f36565b5b828204905092915050565b6000613d8282613e43565b9150613d8d83613e43565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dc657613dc5613f07565b5b828202905092915050565b6000613ddc82613e43565b9150613de783613e43565b925082821015613dfa57613df9613f07565b5b828203905092915050565b6000613e1082613e23565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000613e6582613e7e565b9050919050565b6000613e7782613e43565b9050919050565b6000613e8982613e90565b9050919050565b6000613e9b82613e23565b9050919050565b60005b83811015613ec0578082015181840152602081019050613ea5565b83811115613ecf576000848401525b50505050565b60006002820490506001821680613eed57607f821691505b60208210811415613f0157613f00613f65565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f766572206d617820747820616d742e00000000000000000000000000000000600082015250565b7f54686520746f74616c207461782063616e6e6f74206265206d6f72652074686160008201527f6e203130252e0000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220616d6f756e7420746f6f20686967682e2043616e6e6f7460008201527f20657863656564206d61782077616c6c65742073697a652e0000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f54686520746f74616c207461782063616e6e6f74206265206d6f72652074686160008201527f6e203132252e0000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54726164696e67206973206e6f742079657420656e61626c65642e204265207060008201527f617469656e742100000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f546f206f722046726f6d206164647265737320697320626c61636b6c6973746560008201527f642e000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61444081613e05565b811461444b57600080fd5b50565b61445781613e17565b811461446257600080fd5b50565b61446e81613e43565b811461447957600080fd5b5056fea26469706673582212200453db19fca6a70ee4824bbdc7037489d6df9db176c425d7e106f7809274cafa64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c806370a0823111610175578063ae637f88116100dc578063d0a3981411610095578063e7f444b31161006f578063e7f444b314610aeb578063ea1644d514610b16578063ec28438a14610b3f578063f2fde38b14610b68576102d4565b8063d0a3981414610a58578063dd62ed3e14610a83578063e2f4560514610ac0576102d4565b8063ae637f8814610958578063b2b250ec14610983578063b45e83f8146109ae578063b9e93700146109d9578063ca7a0e2814610a04578063ccb6135814610a2d576102d4565b80638da5cb5b1161012e5780638da5cb5b146108325780638ea5220f1461085d5780638f3fa8601461088857806395d89b41146108b3578063a457c2d7146108de578063a9059cbb1461091b576102d4565b806370a0823114610732578063715018a61461076f57806375f0a8741461078657806382d76619146107b15780638b27306d146107dc5780638c0b5e2214610807576102d4565b80632836be24116102345780634b8ce602116101ed5780636402511e116101c75780636402511e1461068a5780636630d471146106b357806368078952146106de5780636c5b285514610709576102d4565b80634b8ce6021461060b57806355648209146106365780635d098b3814610661576102d4565b80632836be24146104f9578063313ce56714610522578063395093511461054d57806346bac0101461058a57806348cd4cb1146105b557806349bd5a5e146105e0576102d4565b8063153b0d1e11610286578063153b0d1e146103eb5780631694505e14610414578063178d9b8e1461043f57806318160ddd146104685780631f53ac021461049357806323b872dd146104bc576102d4565b806301143fea146102d9578063064a59d014610304578063067a7c771461032f57806306fdde0314610358578063095ea7b314610383578063099d0d30146103c0576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610b91565b6040516102fb9190613bd4565b60405180910390f35b34801561031057600080fd5b50610319610b97565b6040516103269190613950565b60405180910390f35b34801561033b57600080fd5b506103566004803603810190610351919061349b565b610baa565b005b34801561036457600080fd5b5061036d610c43565b60405161037a91906139d2565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a5919061345b565b610cd5565b6040516103b79190613950565b60405180910390f35b3480156103cc57600080fd5b506103d5610cf8565b6040516103e29190613bd4565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d919061341b565b610cfe565b005b34801561042057600080fd5b50610429610dd5565b604051610436919061396b565b60405180910390f35b34801561044b57600080fd5b5061046660048036038101906104619190613548565b610dfb565b005b34801561047457600080fd5b5061047d610f0c565b60405161048a9190613bd4565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b5919061332e565b610f16565b005b3480156104c857600080fd5b506104e360048036038101906104de91906133c8565b610fd6565b6040516104f09190613950565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b919061341b565b611005565b005b34801561052e57600080fd5b506105376110dc565b6040516105449190613c80565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f919061345b565b6110e5565b6040516105819190613950565b60405180910390f35b34801561059657600080fd5b5061059f61118f565b6040516105ac9190613950565b60405180910390f35b3480156105c157600080fd5b506105ca6111a2565b6040516105d79190613bd4565b60405180910390f35b3480156105ec57600080fd5b506105f56111a8565b60405161060291906138d4565b60405180910390f35b34801561061757600080fd5b506106206111cc565b60405161062d9190613bd4565b60405180910390f35b34801561064257600080fd5b5061064b6111d2565b6040516106589190613bd4565b60405180910390f35b34801561066d57600080fd5b506106886004803603810190610683919061332e565b6111d8565b005b34801561069657600080fd5b506106b160048036038101906106ac91906134c8565b611298565b005b3480156106bf57600080fd5b506106c861131e565b6040516106d59190613bd4565b60405180910390f35b3480156106ea57600080fd5b506106f3611324565b6040516107009190613bd4565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190613548565b61132a565b005b34801561073e57600080fd5b506107596004803603810190610754919061332e565b61143b565b6040516107669190613bd4565b60405180910390f35b34801561077b57600080fd5b50610784611483565b005b34801561079257600080fd5b5061079b61150b565b6040516107a891906138d4565b60405180910390f35b3480156107bd57600080fd5b506107c6611531565b6040516107d39190613bd4565b60405180910390f35b3480156107e857600080fd5b506107f1611537565b6040516107fe9190613bd4565b60405180910390f35b34801561081357600080fd5b5061081c61153d565b6040516108299190613bd4565b60405180910390f35b34801561083e57600080fd5b50610847611543565b60405161085491906138d4565b60405180910390f35b34801561086957600080fd5b5061087261156d565b60405161087f91906138d4565b60405180910390f35b34801561089457600080fd5b5061089d611593565b6040516108aa9190613bd4565b60405180910390f35b3480156108bf57600080fd5b506108c8611599565b6040516108d591906139d2565b60405180910390f35b3480156108ea57600080fd5b506109056004803603810190610900919061345b565b61162b565b6040516109129190613950565b60405180910390f35b34801561092757600080fd5b50610942600480360381019061093d919061345b565b611715565b60405161094f9190613950565b60405180910390f35b34801561096457600080fd5b5061096d611738565b60405161097a9190613950565b60405180910390f35b34801561098f57600080fd5b5061099861174b565b6040516109a59190613bd4565b60405180910390f35b3480156109ba57600080fd5b506109c3611751565b6040516109d09190613bd4565b60405180910390f35b3480156109e557600080fd5b506109ee611757565b6040516109fb9190613bd4565b60405180910390f35b348015610a1057600080fd5b50610a2b6004803603810190610a26919061349b565b61175d565b005b348015610a3957600080fd5b50610a426117f6565b604051610a4f9190613bd4565b60405180910390f35b348015610a6457600080fd5b50610a6d6117fc565b604051610a7a9190613bd4565b60405180910390f35b348015610a8f57600080fd5b50610aaa6004803603810190610aa59190613388565b611802565b604051610ab79190613bd4565b60405180910390f35b348015610acc57600080fd5b50610ad5611889565b604051610ae29190613bd4565b60405180910390f35b348015610af757600080fd5b50610b0061188f565b604051610b0d9190613bd4565b60405180910390f35b348015610b2257600080fd5b50610b3d6004803603810190610b3891906134c8565b611895565b005b348015610b4b57600080fd5b50610b666004803603810190610b6191906134c8565b61191b565b005b348015610b7457600080fd5b50610b8f6004803603810190610b8a919061332e565b6119a1565b005b600f5481565b600660159054906101000a900460ff1681565b610bb2611ae0565b73ffffffffffffffffffffffffffffffffffffffff16610bd0611543565b73ffffffffffffffffffffffffffffffffffffffff1614610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d90613b14565b60405180910390fd5b80600660166101000a81548160ff02191690831515021790555050565b606060038054610c5290613ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7e90613ed5565b8015610ccb5780601f10610ca057610100808354040283529160200191610ccb565b820191906000526020600020905b815481529060010190602001808311610cae57829003601f168201915b5050505050905090565b600080610ce0611ae0565b9050610ced818585611ae8565b600191505092915050565b60135481565b610d06611ae0565b73ffffffffffffffffffffffffffffffffffffffff16610d24611543565b73ffffffffffffffffffffffffffffffffffffffff1614610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190613b14565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e03611ae0565b73ffffffffffffffffffffffffffffffffffffffff16610e21611543565b73ffffffffffffffffffffffffffffffffffffffff1614610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e90613b14565b60405180910390fd5b600081838587610e879190613cf0565b610e919190613cf0565b610e9b9190613cf0565b90506103e8811115610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed990613a34565b60405180910390fd5b84600d8190555083600e8190555082600f8190555081601081905550806011819055505050505050565b6000600254905090565b610f1e611ae0565b73ffffffffffffffffffffffffffffffffffffffff16610f3c611543565b73ffffffffffffffffffffffffffffffffffffffff1614610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990613b14565b60405180910390fd5b80601c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610fe1611ae0565b9050610fee858285611cb3565b610ff9858585611d3f565b60019150509392505050565b61100d611ae0565b73ffffffffffffffffffffffffffffffffffffffff1661102b611543565b73ffffffffffffffffffffffffffffffffffffffff1614611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107890613b14565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b6000806110f0611ae0565b9050611184818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461117f9190613cf0565b611ae8565b600191505092915050565b600660179054906101000a900460ff1681565b60075481565b7f0000000000000000000000000e5ec5aeef218b5448376885c631bc523abb071781565b60185481565b60195481565b6111e0611ae0565b73ffffffffffffffffffffffffffffffffffffffff166111fe611543565b73ffffffffffffffffffffffffffffffffffffffff1614611254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124b90613b14565b60405180910390fd5b80601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6112a0611ae0565b73ffffffffffffffffffffffffffffffffffffffff166112be611543565b73ffffffffffffffffffffffffffffffffffffffff1614611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90613b14565b60405180910390fd5b80600a8190555050565b60125481565b60105481565b611332611ae0565b73ffffffffffffffffffffffffffffffffffffffff16611350611543565b73ffffffffffffffffffffffffffffffffffffffff16146113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d90613b14565b60405180910390fd5b6000818385876113b69190613cf0565b6113c09190613cf0565b6113ca9190613cf0565b90506104b0811115611411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140890613af4565b60405180910390fd5b84601281905550836013819055508260148190555081601581905550806016819055505050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61148b611ae0565b73ffffffffffffffffffffffffffffffffffffffff166114a9611543565b73ffffffffffffffffffffffffffffffffffffffff16146114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f690613b14565b60405180910390fd5b611509600061272b565b565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b601a5481565b60085481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095481565b6060600480546115a890613ed5565b80601f01602080910402602001604051908101604052809291908181526020018280546115d490613ed5565b80156116215780601f106115f657610100808354040283529160200191611621565b820191906000526020600020905b81548152906001019060200180831161160457829003601f168201915b5050505050905090565b600080611636611ae0565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f390613bb4565b60405180910390fd5b6117098286868403611ae8565b60019250505092915050565b600080611720611ae0565b905061172d818585611d3f565b600191505092915050565b600660169054906101000a900460ff1681565b600d5481565b60145481565b60115481565b611765611ae0565b73ffffffffffffffffffffffffffffffffffffffff16611783611543565b73ffffffffffffffffffffffffffffffffffffffff16146117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090613b14565b60405180910390fd5b80600660176101000a81548160ff02191690831515021790555050565b600e5481565b60165481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b60155481565b61189d611ae0565b73ffffffffffffffffffffffffffffffffffffffff166118bb611543565b73ffffffffffffffffffffffffffffffffffffffff1614611911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190890613b14565b60405180910390fd5b8060098190555050565b611923611ae0565b73ffffffffffffffffffffffffffffffffffffffff16611941611543565b73ffffffffffffffffffffffffffffffffffffffff1614611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e90613b14565b60405180910390fd5b8060088190555050565b6119a9611ae0565b73ffffffffffffffffffffffffffffffffffffffff166119c7611543565b73ffffffffffffffffffffffffffffffffffffffff1614611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1490613b14565b60405180910390fd5b6000600b6000611a2b611543565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611add816127f1565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f90613b74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf90613a74565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611ca69190613bd4565b60405180910390a3505050565b6000611cbf8484611802565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611d395781811015611d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2290613ab4565b60405180910390fd5b611d388484848403611ae8565b5b50505050565b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611de35750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1990613b94565b60405180910390fd5b6000811415611e3c57611e37838360006128e9565b612726565b600660159054906101000a900460ff16611fac57600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611ef15750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2790613b34565b60405180910390fd5b7f0000000000000000000000000e5ec5aeef218b5448376885c631bc523abb071773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fa7576001600660156101000a81548160ff021916908315150217905550436007819055505b6121a4565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156120505750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156121a35760085481111561209a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209190613a14565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561214457507f0000000000000000000000000e5ec5aeef218b5448376885c631bc523abb071773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156121a257600954816121568461143b565b6121609190613cf0565b11156121a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219890613a94565b60405180910390fd5b5b5b5b6000600a546121b23061143b565b101590508080156121d05750600660149054906101000a900460ff16155b801561222857507f0000000000000000000000000e5ec5aeef218b5448376885c631bc523abb071773ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156122675750612237611543565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156122a65750612276611543565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15612312576001600660146101000a81548160ff0219169083151502179055506122d1601854612b6a565b6122f6601a546019546017546122e79190613cf0565b6122f19190613cf0565b612bfd565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123c85750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156123d257600090505b80156127185760007f0000000000000000000000000e5ec5aeef218b5448376885c631bc523abb071773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156124425750600660179054906101000a900460ff16155b1561256d5760026007546124569190613cf0565b431161247e57612af86127108561246d9190613d77565b6124779190613d46565b905061249c565b6127106016548561248f9190613d77565b6124999190613d46565b90505b601654601254826124ad9190613d77565b6124b79190613d46565b601760008282546124c89190613cf0565b92505081905550601654601354826124e09190613d77565b6124ea9190613d46565b601860008282546124fb9190613cf0565b92505081905550601654601454826125139190613d77565b61251d9190613d46565b6019600082825461252e9190613cf0565b92505081905550601654601554826125469190613d77565b6125509190613d46565b601a60008282546125619190613cf0565b925050819055506126fd565b7f0000000000000000000000000e5ec5aeef218b5448376885c631bc523abb071773ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480156125d55750600660169054906101000a900460ff16155b156126fc5760026007546125e99190613cf0565b431161261157612af8612710856126009190613d77565b61260a9190613d46565b905061262f565b612710601154856126229190613d77565b61262c9190613d46565b90505b601154600d54826126409190613d77565b61264a9190613d46565b6017600082825461265b9190613cf0565b92505081905550601154600e54826126739190613d77565b61267d9190613d46565b6018600082825461268e9190613cf0565b92505081905550601154600f54826126a69190613d77565b6126b09190613d46565b601960008282546126c19190613cf0565b92505081905550601154601054826126d99190613d77565b6126e39190613d46565b601a60008282546126f49190613cf0565b925050819055505b5b80846127099190613dd1565b93506127168630836128e9565b505b6127238585856128e9565b50505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127f9611ae0565b73ffffffffffffffffffffffffffffffffffffffff16612817611543565b73ffffffffffffffffffffffffffffffffffffffff161461286d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286490613b14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d490613a54565b60405180910390fd5b6128e68161272b565b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295090613b54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c0906139f4565b60405180910390fd5b6129d4838383612d54565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5190613ad4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aed9190613cf0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b519190613bd4565b60405180910390a3612b64848484612d59565b50505050565b6000600282612b799190613d46565b905060008183612b899190613dd1565b905060004790506000601881905550612ba183612d5e565b60008147612baf9190613dd1565b9050612bbb8382612fb0565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051612bee93929190613c49565b60405180910390a15050505050565b612c0681612d5e565b60008160175447612c179190613d77565b612c219190613d46565b905060008260195447612c349190613d77565b612c3e9190613d46565b90506000818347612c4f9190613dd1565b612c599190613dd1565b90506000601781905550612c6c8361309f565b6000601981905550601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015612cdc573d6000803e3d6000fd5b506000601a81905550601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612d4d573d6000803e3d6000fd5b5050505050565b505050565b505050565b6000600267ffffffffffffffff811115612d7b57612d7a613fc3565b5b604051908082528060200260200182016040528015612da95781602001602082028036833780820191505090505b5090503081600081518110612dc157612dc0613f94565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612e6357600080fd5b505afa158015612e77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e9b919061335b565b81600181518110612eaf57612eae613f94565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612f1630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611ae8565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612f7a959493929190613bef565b600060405180830381600087803b158015612f9457600080fd5b505af1158015612fa8573d6000803e3d6000fd5b505050505050565b612fdd30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611ae8565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613046969594939291906138ef565b6060604051808303818588803b15801561305f57600080fd5b505af1158015613073573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061309891906134f5565b5050505050565b6000600267ffffffffffffffff8111156130bc576130bb613fc3565b5b6040519080825280602002602001820160405280156130ea5781602001602082028036833780820191505090505b509050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561315557600080fd5b505afa158015613169573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061318d919061335b565b816000815181106131a1576131a0613f94565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505030816001815181106131f0576131ef613f94565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b6f9de958360008461dead426040518663ffffffff1660e01b815260040161328f9493929190613986565b6000604051808303818588803b1580156132a857600080fd5b505af11580156132bc573d6000803e3d6000fd5b50505050505050565b6000813590506132d481614437565b92915050565b6000815190506132e981614437565b92915050565b6000813590506132fe8161444e565b92915050565b60008135905061331381614465565b92915050565b60008151905061332881614465565b92915050565b60006020828403121561334457613343613ff2565b5b6000613352848285016132c5565b91505092915050565b60006020828403121561337157613370613ff2565b5b600061337f848285016132da565b91505092915050565b6000806040838503121561339f5761339e613ff2565b5b60006133ad858286016132c5565b92505060206133be858286016132c5565b9150509250929050565b6000806000606084860312156133e1576133e0613ff2565b5b60006133ef868287016132c5565b9350506020613400868287016132c5565b925050604061341186828701613304565b9150509250925092565b6000806040838503121561343257613431613ff2565b5b6000613440858286016132c5565b9250506020613451858286016132ef565b9150509250929050565b6000806040838503121561347257613471613ff2565b5b6000613480858286016132c5565b925050602061349185828601613304565b9150509250929050565b6000602082840312156134b1576134b0613ff2565b5b60006134bf848285016132ef565b91505092915050565b6000602082840312156134de576134dd613ff2565b5b60006134ec84828501613304565b91505092915050565b60008060006060848603121561350e5761350d613ff2565b5b600061351c86828701613319565b935050602061352d86828701613319565b925050604061353e86828701613319565b9150509250925092565b6000806000806080858703121561356257613561613ff2565b5b600061357087828801613304565b945050602061358187828801613304565b935050604061359287828801613304565b92505060606135a387828801613304565b91505092959194509250565b60006135bb83836135c7565b60208301905092915050565b6135d081613e05565b82525050565b6135df81613e05565b82525050565b60006135f082613cab565b6135fa8185613cce565b935061360583613c9b565b8060005b8381101561363657815161361d88826135af565b975061362883613cc1565b925050600181019050613609565b5085935050505092915050565b61364c81613e17565b82525050565b61365b81613e5a565b82525050565b61366a81613e6c565b82525050565b600061367b82613cb6565b6136858185613cdf565b9350613695818560208601613ea2565b61369e81613ff7565b840191505092915050565b60006136b6602383613cdf565b91506136c182614008565b604082019050919050565b60006136d9601083613cdf565b91506136e482614057565b602082019050919050565b60006136fc602683613cdf565b915061370782614080565b604082019050919050565b600061371f602683613cdf565b915061372a826140cf565b604082019050919050565b6000613742602283613cdf565b915061374d8261411e565b604082019050919050565b6000613765603883613cdf565b91506137708261416d565b604082019050919050565b6000613788601d83613cdf565b9150613793826141bc565b602082019050919050565b60006137ab602683613cdf565b91506137b6826141e5565b604082019050919050565b60006137ce602683613cdf565b91506137d982614234565b604082019050919050565b60006137f1602083613cdf565b91506137fc82614283565b602082019050919050565b6000613814602783613cdf565b915061381f826142ac565b604082019050919050565b6000613837602583613cdf565b9150613842826142fb565b604082019050919050565b600061385a602483613cdf565b91506138658261434a565b604082019050919050565b600061387d602283613cdf565b915061388882614399565b604082019050919050565b60006138a0602583613cdf565b91506138ab826143e8565b604082019050919050565b6138bf81613e43565b82525050565b6138ce81613e4d565b82525050565b60006020820190506138e960008301846135d6565b92915050565b600060c08201905061390460008301896135d6565b61391160208301886138b6565b61391e6040830187613661565b61392b6060830186613661565b61393860808301856135d6565b61394560a08301846138b6565b979650505050505050565b60006020820190506139656000830184613643565b92915050565b60006020820190506139806000830184613652565b92915050565b600060808201905061399b6000830187613661565b81810360208301526139ad81866135e5565b90506139bc60408301856135d6565b6139c960608301846138b6565b95945050505050565b600060208201905081810360008301526139ec8184613670565b905092915050565b60006020820190508181036000830152613a0d816136a9565b9050919050565b60006020820190508181036000830152613a2d816136cc565b9050919050565b60006020820190508181036000830152613a4d816136ef565b9050919050565b60006020820190508181036000830152613a6d81613712565b9050919050565b60006020820190508181036000830152613a8d81613735565b9050919050565b60006020820190508181036000830152613aad81613758565b9050919050565b60006020820190508181036000830152613acd8161377b565b9050919050565b60006020820190508181036000830152613aed8161379e565b9050919050565b60006020820190508181036000830152613b0d816137c1565b9050919050565b60006020820190508181036000830152613b2d816137e4565b9050919050565b60006020820190508181036000830152613b4d81613807565b9050919050565b60006020820190508181036000830152613b6d8161382a565b9050919050565b60006020820190508181036000830152613b8d8161384d565b9050919050565b60006020820190508181036000830152613bad81613870565b9050919050565b60006020820190508181036000830152613bcd81613893565b9050919050565b6000602082019050613be960008301846138b6565b92915050565b600060a082019050613c0460008301886138b6565b613c116020830187613661565b8181036040830152613c2381866135e5565b9050613c3260608301856135d6565b613c3f60808301846138b6565b9695505050505050565b6000606082019050613c5e60008301866138b6565b613c6b60208301856138b6565b613c7860408301846138b6565b949350505050565b6000602082019050613c9560008301846138c5565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613cfb82613e43565b9150613d0683613e43565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d3b57613d3a613f07565b5b828201905092915050565b6000613d5182613e43565b9150613d5c83613e43565b925082613d6c57613d6b613f36565b5b828204905092915050565b6000613d8282613e43565b9150613d8d83613e43565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dc657613dc5613f07565b5b828202905092915050565b6000613ddc82613e43565b9150613de783613e43565b925082821015613dfa57613df9613f07565b5b828203905092915050565b6000613e1082613e23565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000613e6582613e7e565b9050919050565b6000613e7782613e43565b9050919050565b6000613e8982613e90565b9050919050565b6000613e9b82613e23565b9050919050565b60005b83811015613ec0578082015181840152602081019050613ea5565b83811115613ecf576000848401525b50505050565b60006002820490506001821680613eed57607f821691505b60208210811415613f0157613f00613f65565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f766572206d617820747820616d742e00000000000000000000000000000000600082015250565b7f54686520746f74616c207461782063616e6e6f74206265206d6f72652074686160008201527f6e203130252e0000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220616d6f756e7420746f6f20686967682e2043616e6e6f7460008201527f20657863656564206d61782077616c6c65742073697a652e0000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f54686520746f74616c207461782063616e6e6f74206265206d6f72652074686160008201527f6e203132252e0000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54726164696e67206973206e6f742079657420656e61626c65642e204265207060008201527f617469656e742100000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f546f206f722046726f6d206164647265737320697320626c61636b6c6973746560008201527f642e000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61444081613e05565b811461444b57600080fd5b50565b61445781613e17565b811461446257600080fd5b50565b61446e81613e43565b811461447957600080fd5b5056fea26469706673582212200453db19fca6a70ee4824bbdc7037489d6df9db176c425d7e106f7809274cafa64736f6c63430008070033

Deployed Bytecode Sourcemap

24789:9788:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25502:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24963:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32848:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13994:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16345:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25642:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32609:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24838:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33942:421;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15114:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33403:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17126:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32485:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14956:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17830:240;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25033:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25069:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24886:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25822:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25859:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33287:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33173:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25606:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25533:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33507:427;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15285:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1337:103;;;;;;;;;;;;;:::i;:::-;;25929:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25787:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25890:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25103:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;686:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26011:69;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25182:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14213:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18573:438;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15618:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24998:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25430;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25680:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25570:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32737:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25465:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25750:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15874:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25260:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25712:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32957:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33067:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34371:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25502:24;;;;:::o;24963:28::-;;;;;;;;;;;;;:::o;32848:101::-;917:12;:10;:12::i;:::-;906:23;;:7;:5;:7::i;:::-;:23;;;898:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32936:5:::1;32917:16;;:24;;;;;;;;;;;;;;;;;;32848:101:::0;:::o;13994:100::-;14048:13;14081:5;14074:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13994:100;:::o;16345:201::-;16428:4;16445:13;16461:12;:10;:12::i;:::-;16445:28;;16484:32;16493:5;16500:7;16509:6;16484:8;:32::i;:::-;16534:4;16527:11;;;16345:201;;;;:::o;25642:31::-;;;;:::o;32609:120::-;917:12;:10;:12::i;:::-;906:23;;:7;:5;:7::i;:::-;:23;;;898:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32716:5:::1;32690:14;:23;32705:7;32690:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;32609:120:::0;;:::o;24838:41::-;;;;;;;;;;;;;:::o;33942:421::-;917:12;:10;:12::i;:::-;906:23;;:7;:5;:7::i;:::-;:23;;;898:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34060:13:::1;34104:9;34098:3;34086:9;34076:7;:19;;;;:::i;:::-;:25;;;;:::i;:::-;:37;;;;:::i;:::-;34060:53;;34141:4;34132:5;:13;;34124:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;34215:7;34199:13;:23;;;;34251:9;34233:15;:27;;;;34283:3;34271:9;:15;;;;34315:9;34297:15;:27;;;;34350:5;34335:12;:20;;;;34049:314;33942:421:::0;;;;:::o;15114:108::-;15175:7;15202:12;;15195:19;;15114:108;:::o;33403:96::-;917:12;:10;:12::i;:::-;906:23;;:7;:5;:7::i;:::-;:23;;;898:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33484:7:::1;33472:9;;:19;;;;;;;;;;;;;;;;;;33403:96:::0;:::o;17126:295::-;17257:4;17274:15;17292:12;:10;:12::i;:::-;17274:30;;17315:38;17331:4;17337:7;17346:6;17315:15;:38::i;:::-;17364:27;17374:4;17380:2;17384:6;17364:9;:27::i;:::-;17409:4;17402:11;;;17126:295;;;;;:::o;32485:116::-;917:12;:10;:12::i;:::-;906:23;;:7;:5;:7::i;:::-;:23;;;898:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32588:5:::1;32565:11;:20;32577:7;32565:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;32485:116:::0;;:::o;14956:93::-;15014:5;15039:2;15032:9;;14956:93;:::o;17830:240::-;17918:4;17935:13;17951:12;:10;:12::i;:::-;17935:28;;17974:66;17983:5;17990:7;18029:10;17999:11;:18;18011:5;17999:18;;;;;;;;;;;;;;;:27;18018:7;17999:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;17974:8;:66::i;:::-;18058:4;18051:11;;;17830:240;;;;:::o;25033:29::-;;;;;;;;;;;;;:::o;25069:25::-;;;;:::o;24886:38::-;;;:::o;25822:30::-;;;;:::o;25859:24::-;;;;:::o;33287:108::-;917:12;:10;:12::i;:::-;906:23;;:7;:5;:7::i;:::-;:23;;;898:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33380:7:::1;33362:15;;:25;;;;;;;;;;;;;;;;;;33287:108:::0;:::o;33173:106::-;917:12;:10;:12::i;:::-;906:23;;:7;:5;:7::i;:::-;:23;;;898:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33265:6:::1;33244:18;:27;;;;33173:106:::0;:::o;25606:29::-;;;;:::o;25533:30::-;;;;:::o;33507:427::-;917:12;:10;:12::i;:::-;906:23;;:7;:5;:7::i;:::-;:23;;;898:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33626:13:::1;33670:9;33664:3;33652:9;33642:7;:19;;;;:::i;:::-;:25;;;;:::i;:::-;:37;;;;:::i;:::-;33626:53;;33707:4;33698:5;:13;;33690:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33782:7;33765:14;:24;;;;33819:9;33800:16;:28;;;;33852:3;33839:10;:16;;;;33885:9;33866:16;:28;;;;33921:5;33905:13;:21;;;;33615:319;33507:427:::0;;;;:::o;15285:127::-;15359:7;15386:9;:18;15396:7;15386:18;;;;;;;;;;;;;;;;15379:25;;15285:127;;;:::o;1337:103::-;917:12;:10;:12::i;:::-;906:23;;:7;:5;:7::i;:::-;:23;;;898:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1402:30:::1;1429:1;1402:18;:30::i;:::-;1337:103::o:0;25929:75::-;;;;;;;;;;;;;:::o;25787:28::-;;;;:::o;25890:30::-;;;;:::o;25103:49::-;;;;:::o;686:87::-;732:7;759:6;;;;;;;;;;;752:13;;686:87;:::o;26011:69::-;;;;;;;;;;;;;:::o;25182:48::-;;;;:::o;14213:104::-;14269:13;14302:7;14295:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14213:104;:::o;18573:438::-;18666:4;18683:13;18699:12;:10;:12::i;:::-;18683:28;;18722:24;18749:11;:18;18761:5;18749:18;;;;;;;;;;;;;;;:27;18768:7;18749:27;;;;;;;;;;;;;;;;18722:54;;18815:15;18795:16;:35;;18787:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;18908:60;18917:5;18924:7;18952:15;18933:16;:34;18908:8;:60::i;:::-;18999:4;18992:11;;;;18573:438;;;;:::o;15618:193::-;15697:4;15714:13;15730:12;:10;:12::i;:::-;15714:28;;15753;15763:5;15770:2;15774:6;15753:9;:28::i;:::-;15799:4;15792:11;;;15618:193;;;;:::o;24998:28::-;;;;;;;;;;;;;:::o;25430:::-;;;;:::o;25680:25::-;;;;:::o;25570:27::-;;;;:::o;32737:103::-;917:12;:10;:12::i;:::-;906:23;;:7;:5;:7::i;:::-;:23;;;898:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32827:5:::1;32807:17;;:25;;;;;;;;;;;;;;;;;;32737:103:::0;:::o;25465:30::-;;;;:::o;25750:28::-;;;;:::o;15874:151::-;15963:7;15990:11;:18;16002:5;15990:18;;;;;;;;;;;;;;;:27;16009:7;15990:27;;;;;;;;;;;;;;;;15983:34;;15874:151;;;;:::o;25260:52::-;;;;:::o;25712:31::-;;;;:::o;32957:102::-;917:12;:10;:12::i;:::-;906:23;;:7;:5;:7::i;:::-;:23;;;898:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33045:6:::1;33029:13;:22;;;;32957:102:::0;:::o;33067:98::-;917:12;:10;:12::i;:::-;906:23;;:7;:5;:7::i;:::-;:23;;;898:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33151:6:::1;33137:11;:20;;;;33067:98:::0;:::o;34371:201::-;917:12;:10;:12::i;:::-;906:23;;:7;:5;:7::i;:::-;:23;;;898:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34476:5:::1;34453:11;:20;34465:7;:5;:7::i;:::-;34453:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;34516:4;34492:11;:21;34504:8;34492:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;34531:33;34555:8;34531:23;:33::i;:::-;34371:201:::0;:::o;60:98::-;113:7;140:10;133:17;;60:98;:::o;22209:380::-;22362:1;22345:19;;:5;:19;;;;22337:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22443:1;22424:21;;:7;:21;;;;22416:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22527:6;22497:11;:18;22509:5;22497:18;;;;;;;;;;;;;;;:27;22516:7;22497:27;;;;;;;;;;;;;;;:36;;;;22565:7;22549:32;;22558:5;22549:32;;;22574:6;22549:32;;;;;;:::i;:::-;;;;;;;;22209:380;;;:::o;22876:453::-;23011:24;23038:25;23048:5;23055:7;23038:9;:25::i;:::-;23011:52;;23098:17;23078:16;:37;23074:248;;23160:6;23140:16;:26;;23132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23244:51;23253:5;23260:7;23288:6;23269:16;:25;23244:8;:51::i;:::-;23074:248;23000:329;22876:453;;;:::o;27288:2980::-;27421:14;:20;27436:4;27421:20;;;;;;;;;;;;;;;;;;;;;;;;;27420:21;:44;;;;;27446:14;:18;27461:2;27446:18;;;;;;;;;;;;;;;;;;;;;;;;;27445:19;27420:44;27412:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;27529:1;27519:6;:11;27516:92;;;27547:28;27563:4;27569:2;27573:1;27547:15;:28::i;:::-;27590:7;;27516:92;27625:16;;;;;;;;;;;27620:622;;27666:11;:15;27678:2;27666:15;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;27685:11;:17;27697:4;27685:17;;;;;;;;;;;;;;;;;;;;;;;;;27666:36;27658:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;27771:13;27765:19;;:2;:19;;;27761:127;;;27824:4;27805:16;;:23;;;;;;;;;;;;;;;;;;27860:12;27847:10;:25;;;;27761:127;27620:622;;;27910:11;:15;27922:2;27910:15;;;;;;;;;;;;;;;;;;;;;;;;;27909:16;:38;;;;;27930:11;:17;27942:4;27930:17;;;;;;;;;;;;;;;;;;;;;;;;;27929:18;27909:38;27905:337;;;27982:11;;27972:6;:21;;27964:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;28047:15;;;;;;;;;;;28033:30;;:2;:30;;;;:53;;;;;28073:13;28067:19;;:2;:19;;;;28033:53;28029:202;;;28141:13;;28131:6;28115:13;28125:2;28115:9;:13::i;:::-;:22;;;;:::i;:::-;:39;;28107:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;28029:202;27905:337;27620:622;28252:12;28295:18;;28267:24;28285:4;28267:9;:24::i;:::-;:46;;28252:61;;28343:7;:33;;;;;28368:8;;;;;;;;;;;28367:9;28343:33;:71;;;;;28401:13;28393:21;;:4;:21;;;;28343:71;:103;;;;;28439:7;:5;:7::i;:::-;28431:15;;:4;:15;;;;28343:103;:133;;;;;28469:7;:5;:7::i;:::-;28463:13;;:2;:13;;;;28343:133;28326:367;;;28516:4;28505:8;;:15;;;;;;;;;;;;;;;;;;28537:31;28552:15;;28537:14;:31::i;:::-;28583:65;28632:15;;28620:9;;28604:13;;:25;;;;:::i;:::-;:43;;;;:::i;:::-;28583:20;:65::i;:::-;28676:5;28665:8;;:16;;;;;;;;;;;;;;;;;;28326:367;28705:12;28721:8;;;;;;;;;;;28720:9;28705:24;;28745:11;:17;28757:4;28745:17;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;28766:11;:15;28778:2;28766:15;;;;;;;;;;;;;;;;;;;;;;;;;28745:36;28742:83;;;28808:5;28798:15;;28742:83;28840:7;28837:1376;;;28864:12;28901:13;28895:19;;:2;:19;;;:41;;;;;28919:17;;;;;;;;;;;28918:18;28895:41;28891:1223;;;28997:1;28984:10;;:14;;;;:::i;:::-;28968:12;:30;28964:233;;29086:5;29078;29069:6;:14;;;;:::i;:::-;:22;;;;:::i;:::-;29062:29;;28964:233;;;29172:5;29156:13;;29147:6;:22;;;;:::i;:::-;:30;;;;:::i;:::-;29140:37;;28964:233;29256:13;;29239:14;;29232:4;:21;;;;:::i;:::-;:37;;;;:::i;:::-;29215:13;;:54;;;;;;;:::i;:::-;;;;;;;;29333:13;;29314:16;;29307:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;29288:15;;:58;;;;;;;:::i;:::-;;;;;;;;29398:13;;29385:10;;29378:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;29365:9;;:46;;;;;;;:::i;:::-;;;;;;;;29475:13;;29456:16;;29449:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;29430:15;;:58;;;;;;;:::i;:::-;;;;;;;;28891:1223;;;29522:13;29514:21;;:4;:21;;;:42;;;;;29540:16;;;;;;;;;;;29539:17;29514:42;29510:604;;;29616:1;29603:10;;:14;;;;:::i;:::-;29587:12;:30;29583:232;;29705:5;29697;29688:6;:14;;;;:::i;:::-;:22;;;;:::i;:::-;29681:29;;29583:232;;;29790:5;29775:12;;29766:6;:21;;;;:::i;:::-;:29;;;;:::i;:::-;29759:36;;29583:232;29873:12;;29857:13;;29850:4;:20;;;;:::i;:::-;:35;;;;:::i;:::-;29833:13;;:52;;;;;;;:::i;:::-;;;;;;;;29948:12;;29930:15;;29923:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;29904:15;;:56;;;;;;;:::i;:::-;;;;;;;;30011:12;;29999:9;;29992:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;29979:9;;:44;;;;;;;:::i;:::-;;;;;;;;30086:12;;30068:15;;30061:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;30042:15;;:56;;;;;;;:::i;:::-;;;;;;;;29510:604;28891:1223;30140:4;30130:14;;;;;:::i;:::-;;;30159:42;30175:4;30189;30196;30159:15;:42::i;:::-;28849:1364;28837:1376;30225:33;30241:4;30247:2;30251:6;30225:15;:33::i;:::-;27401:2867;;27288:2980;;;;:::o;1956:191::-;2030:16;2049:6;;;;;;;;;;;2030:25;;2075:8;2066:6;;:17;;;;;;;;;;;;;;;;;;2130:8;2099:40;;2120:8;2099:40;;;;;;;;;;;;2019:128;1956:191;:::o;1595:201::-;917:12;:10;:12::i;:::-;906:23;;:7;:5;:7::i;:::-;:23;;;898:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1704:1:::1;1684:22;;:8;:22;;;;1676:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;1760:28;1779:8;1760:18;:28::i;:::-;1595:201:::0;:::o;19490:671::-;19637:1;19621:18;;:4;:18;;;;19613:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19714:1;19700:16;;:2;:16;;;;19692:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;19769:38;19790:4;19796:2;19800:6;19769:20;:38::i;:::-;19820:19;19842:9;:15;19852:4;19842:15;;;;;;;;;;;;;;;;19820:37;;19891:6;19876:11;:21;;19868:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;20008:6;19994:11;:20;19976:9;:15;19986:4;19976:15;;;;;;;;;;;;;;;:38;;;;20053:6;20036:9;:13;20046:2;20036:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;20092:2;20077:26;;20086:4;20077:26;;;20096:6;20077:26;;;;;;:::i;:::-;;;;;;;;20116:37;20136:4;20142:2;20146:6;20116:19;:37::i;:::-;19602:559;19490:671;;;:::o;30276:431::-;30335:12;30359:1;30350:6;:10;;;;:::i;:::-;30335:25;;30371:17;30400:4;30391:6;:13;;;;:::i;:::-;30371:33;;30415:22;30440:21;30415:46;;30490:1;30472:15;:19;;;;30502:22;30519:4;30502:16;:22::i;:::-;30535:18;30580:14;30556:21;:38;;;;:::i;:::-;30535:59;;30605:35;30618:9;30629:10;30605:12;:35::i;:::-;30656:43;30671:4;30677:10;30689:9;30656:43;;;;;;;;:::i;:::-;;;;;;;;30324:383;;;;30276:431;:::o;31568:521::-;31633:24;31650:6;31633:16;:24::i;:::-;31668:15;31726:6;31710:13;;31686:21;:37;;;;:::i;:::-;:46;;;;:::i;:::-;31668:64;;31743:11;31793:6;31781:9;;31757:21;:33;;;;:::i;:::-;:42;;;;:::i;:::-;31743:56;;31810:17;31864:3;31854:7;31830:21;:31;;;;:::i;:::-;:37;;;;:::i;:::-;31810:57;;31894:1;31878:13;:17;;;;31906:23;31921:7;31906:14;:23::i;:::-;31952:1;31940:9;:13;;;;31972:9;;;;;;;;;;;31964:27;;:32;31992:3;31964:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32025:1;32007:15;:19;;;;32045:15;;;;;;;;;;;32037:33;;:44;32071:9;32037:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31622:467;;;31568:521;:::o;23929:125::-;;;;:::o;24658:124::-;;;;:::o;30715:473::-;30781:21;30819:1;30805:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30781:40;;30850:4;30832;30837:1;30832:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;30876:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30866:4;30871:1;30866:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;30909:62;30926:4;30941:15;;;;;;;;;;;30959:11;30909:8;:62::i;:::-;30982:15;;;;;;;;;;;:66;;;31063:11;31089:1;31105:4;31132;31152:15;30982:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30770:418;30715:473;:::o;31196:364::-;31277:62;31294:4;31309:15;;;;;;;;;;;31327:11;31277:8;:62::i;:::-;31350:15;;;;;;;;;;;:31;;;31389:9;31422:4;31442:11;31468:1;31484;26118:42;31526:15;31350:202;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31196:364;;:::o;32097:380::-;32156:21;32194:1;32180:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32156:40;;32217:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32207:4;32212:1;32207:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;32268:4;32250;32255:1;32250:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;32284:15;;;;;;;;;;;:66;;;32358:6;32380:1;32396:4;26118:42;32441:15;32284:183;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32145:332;32097:380;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:143::-;209:5;240:6;234:13;225:22;;256:33;283:5;256:33;:::i;:::-;152:143;;;;:::o;301:133::-;344:5;382:6;369:20;360:29;;398:30;422:5;398:30;:::i;:::-;301:133;;;;:::o;440:139::-;486:5;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;440:139;;;;:::o;585:143::-;642:5;673:6;667:13;658:22;;689:33;716:5;689:33;:::i;:::-;585:143;;;;:::o;734:329::-;793:6;842:2;830:9;821:7;817:23;813:32;810:119;;;848:79;;:::i;:::-;810:119;968:1;993:53;1038:7;1029:6;1018:9;1014:22;993:53;:::i;:::-;983:63;;939:117;734:329;;;;:::o;1069:351::-;1139:6;1188:2;1176:9;1167:7;1163:23;1159:32;1156:119;;;1194:79;;:::i;:::-;1156:119;1314:1;1339:64;1395:7;1386:6;1375:9;1371:22;1339:64;:::i;:::-;1329:74;;1285:128;1069:351;;;;:::o;1426:474::-;1494:6;1502;1551:2;1539:9;1530:7;1526:23;1522:32;1519:119;;;1557:79;;:::i;:::-;1519:119;1677:1;1702:53;1747:7;1738:6;1727:9;1723:22;1702:53;:::i;:::-;1692:63;;1648:117;1804:2;1830:53;1875:7;1866:6;1855:9;1851:22;1830:53;:::i;:::-;1820:63;;1775:118;1426:474;;;;;:::o;1906:619::-;1983:6;1991;1999;2048:2;2036:9;2027:7;2023:23;2019:32;2016:119;;;2054:79;;:::i;:::-;2016:119;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2301:2;2327:53;2372:7;2363:6;2352:9;2348:22;2327:53;:::i;:::-;2317:63;;2272:118;2429:2;2455:53;2500:7;2491:6;2480:9;2476:22;2455:53;:::i;:::-;2445:63;;2400:118;1906:619;;;;;:::o;2531:468::-;2596:6;2604;2653:2;2641:9;2632:7;2628:23;2624:32;2621:119;;;2659:79;;:::i;:::-;2621:119;2779:1;2804:53;2849:7;2840:6;2829:9;2825:22;2804:53;:::i;:::-;2794:63;;2750:117;2906:2;2932:50;2974:7;2965:6;2954:9;2950:22;2932:50;:::i;:::-;2922:60;;2877:115;2531:468;;;;;:::o;3005:474::-;3073:6;3081;3130:2;3118:9;3109:7;3105:23;3101:32;3098:119;;;3136:79;;:::i;:::-;3098:119;3256:1;3281:53;3326:7;3317:6;3306:9;3302:22;3281:53;:::i;:::-;3271:63;;3227:117;3383:2;3409:53;3454:7;3445:6;3434:9;3430:22;3409:53;:::i;:::-;3399:63;;3354:118;3005:474;;;;;:::o;3485:323::-;3541:6;3590:2;3578:9;3569:7;3565:23;3561:32;3558:119;;;3596:79;;:::i;:::-;3558:119;3716:1;3741:50;3783:7;3774:6;3763:9;3759:22;3741:50;:::i;:::-;3731:60;;3687:114;3485:323;;;;:::o;3814:329::-;3873:6;3922:2;3910:9;3901:7;3897:23;3893:32;3890:119;;;3928:79;;:::i;:::-;3890:119;4048:1;4073:53;4118:7;4109:6;4098:9;4094:22;4073:53;:::i;:::-;4063:63;;4019:117;3814:329;;;;:::o;4149:663::-;4237:6;4245;4253;4302:2;4290:9;4281:7;4277:23;4273:32;4270:119;;;4308:79;;:::i;:::-;4270:119;4428:1;4453:64;4509:7;4500:6;4489:9;4485:22;4453:64;:::i;:::-;4443:74;;4399:128;4566:2;4592:64;4648:7;4639:6;4628:9;4624:22;4592:64;:::i;:::-;4582:74;;4537:129;4705:2;4731:64;4787:7;4778:6;4767:9;4763:22;4731:64;:::i;:::-;4721:74;;4676:129;4149:663;;;;;:::o;4818:765::-;4904:6;4912;4920;4928;4977:3;4965:9;4956:7;4952:23;4948:33;4945:120;;;4984:79;;:::i;:::-;4945:120;5104:1;5129:53;5174:7;5165:6;5154:9;5150:22;5129:53;:::i;:::-;5119:63;;5075:117;5231:2;5257:53;5302:7;5293:6;5282:9;5278:22;5257:53;:::i;:::-;5247:63;;5202:118;5359:2;5385:53;5430:7;5421:6;5410:9;5406:22;5385:53;:::i;:::-;5375:63;;5330:118;5487:2;5513:53;5558:7;5549:6;5538:9;5534:22;5513:53;:::i;:::-;5503:63;;5458:118;4818:765;;;;;;;:::o;5589:179::-;5658:10;5679:46;5721:3;5713:6;5679:46;:::i;:::-;5757:4;5752:3;5748:14;5734:28;;5589:179;;;;:::o;5774:108::-;5851:24;5869:5;5851:24;:::i;:::-;5846:3;5839:37;5774:108;;:::o;5888:118::-;5975:24;5993:5;5975:24;:::i;:::-;5970:3;5963:37;5888:118;;:::o;6042:732::-;6161:3;6190:54;6238:5;6190:54;:::i;:::-;6260:86;6339:6;6334:3;6260:86;:::i;:::-;6253:93;;6370:56;6420:5;6370:56;:::i;:::-;6449:7;6480:1;6465:284;6490:6;6487:1;6484:13;6465:284;;;6566:6;6560:13;6593:63;6652:3;6637:13;6593:63;:::i;:::-;6586:70;;6679:60;6732:6;6679:60;:::i;:::-;6669:70;;6525:224;6512:1;6509;6505:9;6500:14;;6465:284;;;6469:14;6765:3;6758:10;;6166:608;;;6042:732;;;;:::o;6780:109::-;6861:21;6876:5;6861:21;:::i;:::-;6856:3;6849:34;6780:109;;:::o;6895:183::-;7008:63;7065:5;7008:63;:::i;:::-;7003:3;6996:76;6895:183;;:::o;7084:147::-;7179:45;7218:5;7179:45;:::i;:::-;7174:3;7167:58;7084:147;;:::o;7237:364::-;7325:3;7353:39;7386:5;7353:39;:::i;:::-;7408:71;7472:6;7467:3;7408:71;:::i;:::-;7401:78;;7488:52;7533:6;7528:3;7521:4;7514:5;7510:16;7488:52;:::i;:::-;7565:29;7587:6;7565:29;:::i;:::-;7560:3;7556:39;7549:46;;7329:272;7237:364;;;;:::o;7607:366::-;7749:3;7770:67;7834:2;7829:3;7770:67;:::i;:::-;7763:74;;7846:93;7935:3;7846:93;:::i;:::-;7964:2;7959:3;7955:12;7948:19;;7607:366;;;:::o;7979:::-;8121:3;8142:67;8206:2;8201:3;8142:67;:::i;:::-;8135:74;;8218:93;8307:3;8218:93;:::i;:::-;8336:2;8331:3;8327:12;8320:19;;7979:366;;;:::o;8351:::-;8493:3;8514:67;8578:2;8573:3;8514:67;:::i;:::-;8507:74;;8590:93;8679:3;8590:93;:::i;:::-;8708:2;8703:3;8699:12;8692:19;;8351:366;;;:::o;8723:::-;8865:3;8886:67;8950:2;8945:3;8886:67;:::i;:::-;8879:74;;8962:93;9051:3;8962:93;:::i;:::-;9080:2;9075:3;9071:12;9064:19;;8723:366;;;:::o;9095:::-;9237:3;9258:67;9322:2;9317:3;9258:67;:::i;:::-;9251:74;;9334:93;9423:3;9334:93;:::i;:::-;9452:2;9447:3;9443:12;9436:19;;9095:366;;;:::o;9467:::-;9609:3;9630:67;9694:2;9689:3;9630:67;:::i;:::-;9623:74;;9706:93;9795:3;9706:93;:::i;:::-;9824:2;9819:3;9815:12;9808:19;;9467:366;;;:::o;9839:::-;9981:3;10002:67;10066:2;10061:3;10002:67;:::i;:::-;9995:74;;10078:93;10167:3;10078:93;:::i;:::-;10196:2;10191:3;10187:12;10180:19;;9839:366;;;:::o;10211:::-;10353:3;10374:67;10438:2;10433:3;10374:67;:::i;:::-;10367:74;;10450:93;10539:3;10450:93;:::i;:::-;10568:2;10563:3;10559:12;10552:19;;10211:366;;;:::o;10583:::-;10725:3;10746:67;10810:2;10805:3;10746:67;:::i;:::-;10739:74;;10822:93;10911:3;10822:93;:::i;:::-;10940:2;10935:3;10931:12;10924:19;;10583:366;;;:::o;10955:::-;11097:3;11118:67;11182:2;11177:3;11118:67;:::i;:::-;11111:74;;11194:93;11283:3;11194:93;:::i;:::-;11312:2;11307:3;11303:12;11296:19;;10955:366;;;:::o;11327:::-;11469:3;11490:67;11554:2;11549:3;11490:67;:::i;:::-;11483:74;;11566:93;11655:3;11566:93;:::i;:::-;11684:2;11679:3;11675:12;11668:19;;11327:366;;;:::o;11699:::-;11841:3;11862:67;11926:2;11921:3;11862:67;:::i;:::-;11855:74;;11938:93;12027:3;11938:93;:::i;:::-;12056:2;12051:3;12047:12;12040:19;;11699:366;;;:::o;12071:::-;12213:3;12234:67;12298:2;12293:3;12234:67;:::i;:::-;12227:74;;12310:93;12399:3;12310:93;:::i;:::-;12428:2;12423:3;12419:12;12412:19;;12071:366;;;:::o;12443:::-;12585:3;12606:67;12670:2;12665:3;12606:67;:::i;:::-;12599:74;;12682:93;12771:3;12682:93;:::i;:::-;12800:2;12795:3;12791:12;12784:19;;12443:366;;;:::o;12815:::-;12957:3;12978:67;13042:2;13037:3;12978:67;:::i;:::-;12971:74;;13054:93;13143:3;13054:93;:::i;:::-;13172:2;13167:3;13163:12;13156:19;;12815:366;;;:::o;13187:118::-;13274:24;13292:5;13274:24;:::i;:::-;13269:3;13262:37;13187:118;;:::o;13311:112::-;13394:22;13410:5;13394:22;:::i;:::-;13389:3;13382:35;13311:112;;:::o;13429:222::-;13522:4;13560:2;13549:9;13545:18;13537:26;;13573:71;13641:1;13630:9;13626:17;13617:6;13573:71;:::i;:::-;13429:222;;;;:::o;13657:807::-;13906:4;13944:3;13933:9;13929:19;13921:27;;13958:71;14026:1;14015:9;14011:17;14002:6;13958:71;:::i;:::-;14039:72;14107:2;14096:9;14092:18;14083:6;14039:72;:::i;:::-;14121:80;14197:2;14186:9;14182:18;14173:6;14121:80;:::i;:::-;14211;14287:2;14276:9;14272:18;14263:6;14211:80;:::i;:::-;14301:73;14369:3;14358:9;14354:19;14345:6;14301:73;:::i;:::-;14384;14452:3;14441:9;14437:19;14428:6;14384:73;:::i;:::-;13657:807;;;;;;;;;:::o;14470:210::-;14557:4;14595:2;14584:9;14580:18;14572:26;;14608:65;14670:1;14659:9;14655:17;14646:6;14608:65;:::i;:::-;14470:210;;;;:::o;14686:274::-;14805:4;14843:2;14832:9;14828:18;14820:26;;14856:97;14950:1;14939:9;14935:17;14926:6;14856:97;:::i;:::-;14686:274;;;;:::o;14966:720::-;15201:4;15239:3;15228:9;15224:19;15216:27;;15253:79;15329:1;15318:9;15314:17;15305:6;15253:79;:::i;:::-;15379:9;15373:4;15369:20;15364:2;15353:9;15349:18;15342:48;15407:108;15510:4;15501:6;15407:108;:::i;:::-;15399:116;;15525:72;15593:2;15582:9;15578:18;15569:6;15525:72;:::i;:::-;15607;15675:2;15664:9;15660:18;15651:6;15607:72;:::i;:::-;14966:720;;;;;;;:::o;15692:313::-;15805:4;15843:2;15832:9;15828:18;15820:26;;15892:9;15886:4;15882:20;15878:1;15867:9;15863:17;15856:47;15920:78;15993:4;15984:6;15920:78;:::i;:::-;15912:86;;15692:313;;;;:::o;16011:419::-;16177:4;16215:2;16204:9;16200:18;16192:26;;16264:9;16258:4;16254:20;16250:1;16239:9;16235:17;16228:47;16292:131;16418:4;16292:131;:::i;:::-;16284:139;;16011:419;;;:::o;16436:::-;16602:4;16640:2;16629:9;16625:18;16617:26;;16689:9;16683:4;16679:20;16675:1;16664:9;16660:17;16653:47;16717:131;16843:4;16717:131;:::i;:::-;16709:139;;16436:419;;;:::o;16861:::-;17027:4;17065:2;17054:9;17050:18;17042:26;;17114:9;17108:4;17104:20;17100:1;17089:9;17085:17;17078:47;17142:131;17268:4;17142:131;:::i;:::-;17134:139;;16861:419;;;:::o;17286:::-;17452:4;17490:2;17479:9;17475:18;17467:26;;17539:9;17533:4;17529:20;17525:1;17514:9;17510:17;17503:47;17567:131;17693:4;17567:131;:::i;:::-;17559:139;;17286:419;;;:::o;17711:::-;17877:4;17915:2;17904:9;17900:18;17892:26;;17964:9;17958:4;17954:20;17950:1;17939:9;17935:17;17928:47;17992:131;18118:4;17992:131;:::i;:::-;17984:139;;17711:419;;;:::o;18136:::-;18302:4;18340:2;18329:9;18325:18;18317:26;;18389:9;18383:4;18379:20;18375:1;18364:9;18360:17;18353:47;18417:131;18543:4;18417:131;:::i;:::-;18409:139;;18136:419;;;:::o;18561:::-;18727:4;18765:2;18754:9;18750:18;18742:26;;18814:9;18808:4;18804:20;18800:1;18789:9;18785:17;18778:47;18842:131;18968:4;18842:131;:::i;:::-;18834:139;;18561:419;;;:::o;18986:::-;19152:4;19190:2;19179:9;19175:18;19167:26;;19239:9;19233:4;19229:20;19225:1;19214:9;19210:17;19203:47;19267:131;19393:4;19267:131;:::i;:::-;19259:139;;18986:419;;;:::o;19411:::-;19577:4;19615:2;19604:9;19600:18;19592:26;;19664:9;19658:4;19654:20;19650:1;19639:9;19635:17;19628:47;19692:131;19818:4;19692:131;:::i;:::-;19684:139;;19411:419;;;:::o;19836:::-;20002:4;20040:2;20029:9;20025:18;20017:26;;20089:9;20083:4;20079:20;20075:1;20064:9;20060:17;20053:47;20117:131;20243:4;20117:131;:::i;:::-;20109:139;;19836:419;;;:::o;20261:::-;20427:4;20465:2;20454:9;20450:18;20442:26;;20514:9;20508:4;20504:20;20500:1;20489:9;20485:17;20478:47;20542:131;20668:4;20542:131;:::i;:::-;20534:139;;20261:419;;;:::o;20686:::-;20852:4;20890:2;20879:9;20875:18;20867:26;;20939:9;20933:4;20929:20;20925:1;20914:9;20910:17;20903:47;20967:131;21093:4;20967:131;:::i;:::-;20959:139;;20686:419;;;:::o;21111:::-;21277:4;21315:2;21304:9;21300:18;21292:26;;21364:9;21358:4;21354:20;21350:1;21339:9;21335:17;21328:47;21392:131;21518:4;21392:131;:::i;:::-;21384:139;;21111:419;;;:::o;21536:::-;21702:4;21740:2;21729:9;21725:18;21717:26;;21789:9;21783:4;21779:20;21775:1;21764:9;21760:17;21753:47;21817:131;21943:4;21817:131;:::i;:::-;21809:139;;21536:419;;;:::o;21961:::-;22127:4;22165:2;22154:9;22150:18;22142:26;;22214:9;22208:4;22204:20;22200:1;22189:9;22185:17;22178:47;22242:131;22368:4;22242:131;:::i;:::-;22234:139;;21961:419;;;:::o;22386:222::-;22479:4;22517:2;22506:9;22502:18;22494:26;;22530:71;22598:1;22587:9;22583:17;22574:6;22530:71;:::i;:::-;22386:222;;;;:::o;22614:831::-;22877:4;22915:3;22904:9;22900:19;22892:27;;22929:71;22997:1;22986:9;22982:17;22973:6;22929:71;:::i;:::-;23010:80;23086:2;23075:9;23071:18;23062:6;23010:80;:::i;:::-;23137:9;23131:4;23127:20;23122:2;23111:9;23107:18;23100:48;23165:108;23268:4;23259:6;23165:108;:::i;:::-;23157:116;;23283:72;23351:2;23340:9;23336:18;23327:6;23283:72;:::i;:::-;23365:73;23433:3;23422:9;23418:19;23409:6;23365:73;:::i;:::-;22614:831;;;;;;;;:::o;23451:442::-;23600:4;23638:2;23627:9;23623:18;23615:26;;23651:71;23719:1;23708:9;23704:17;23695:6;23651:71;:::i;:::-;23732:72;23800:2;23789:9;23785:18;23776:6;23732:72;:::i;:::-;23814;23882:2;23871:9;23867:18;23858:6;23814:72;:::i;:::-;23451:442;;;;;;:::o;23899:214::-;23988:4;24026:2;24015:9;24011:18;24003:26;;24039:67;24103:1;24092:9;24088:17;24079:6;24039:67;:::i;:::-;23899:214;;;;:::o;24200:132::-;24267:4;24290:3;24282:11;;24320:4;24315:3;24311:14;24303:22;;24200:132;;;:::o;24338:114::-;24405:6;24439:5;24433:12;24423:22;;24338:114;;;:::o;24458:99::-;24510:6;24544:5;24538:12;24528:22;;24458:99;;;:::o;24563:113::-;24633:4;24665;24660:3;24656:14;24648:22;;24563:113;;;:::o;24682:184::-;24781:11;24815:6;24810:3;24803:19;24855:4;24850:3;24846:14;24831:29;;24682:184;;;;:::o;24872:169::-;24956:11;24990:6;24985:3;24978:19;25030:4;25025:3;25021:14;25006:29;;24872:169;;;;:::o;25047:305::-;25087:3;25106:20;25124:1;25106:20;:::i;:::-;25101:25;;25140:20;25158:1;25140:20;:::i;:::-;25135:25;;25294:1;25226:66;25222:74;25219:1;25216:81;25213:107;;;25300:18;;:::i;:::-;25213:107;25344:1;25341;25337:9;25330:16;;25047:305;;;;:::o;25358:185::-;25398:1;25415:20;25433:1;25415:20;:::i;:::-;25410:25;;25449:20;25467:1;25449:20;:::i;:::-;25444:25;;25488:1;25478:35;;25493:18;;:::i;:::-;25478:35;25535:1;25532;25528:9;25523:14;;25358:185;;;;:::o;25549:348::-;25589:7;25612:20;25630:1;25612:20;:::i;:::-;25607:25;;25646:20;25664:1;25646:20;:::i;:::-;25641:25;;25834:1;25766:66;25762:74;25759:1;25756:81;25751:1;25744:9;25737:17;25733:105;25730:131;;;25841:18;;:::i;:::-;25730:131;25889:1;25886;25882:9;25871:20;;25549:348;;;;:::o;25903:191::-;25943:4;25963:20;25981:1;25963:20;:::i;:::-;25958:25;;25997:20;26015:1;25997:20;:::i;:::-;25992:25;;26036:1;26033;26030:8;26027:34;;;26041:18;;:::i;:::-;26027:34;26086:1;26083;26079:9;26071:17;;25903:191;;;;:::o;26100:96::-;26137:7;26166:24;26184:5;26166:24;:::i;:::-;26155:35;;26100:96;;;:::o;26202:90::-;26236:7;26279:5;26272:13;26265:21;26254:32;;26202:90;;;:::o;26298:126::-;26335:7;26375:42;26368:5;26364:54;26353:65;;26298:126;;;:::o;26430:77::-;26467:7;26496:5;26485:16;;26430:77;;;:::o;26513:86::-;26548:7;26588:4;26581:5;26577:16;26566:27;;26513:86;;;:::o;26605:152::-;26681:9;26714:37;26745:5;26714:37;:::i;:::-;26701:50;;26605:152;;;:::o;26763:121::-;26821:9;26854:24;26872:5;26854:24;:::i;:::-;26841:37;;26763:121;;;:::o;26890:126::-;26940:9;26973:37;27004:5;26973:37;:::i;:::-;26960:50;;26890:126;;;:::o;27022:113::-;27072:9;27105:24;27123:5;27105:24;:::i;:::-;27092:37;;27022:113;;;:::o;27141:307::-;27209:1;27219:113;27233:6;27230:1;27227:13;27219:113;;;27318:1;27313:3;27309:11;27303:18;27299:1;27294:3;27290:11;27283:39;27255:2;27252:1;27248:10;27243:15;;27219:113;;;27350:6;27347:1;27344:13;27341:101;;;27430:1;27421:6;27416:3;27412:16;27405:27;27341:101;27190:258;27141:307;;;:::o;27454:320::-;27498:6;27535:1;27529:4;27525:12;27515:22;;27582:1;27576:4;27572:12;27603:18;27593:81;;27659:4;27651:6;27647:17;27637:27;;27593:81;27721:2;27713:6;27710:14;27690:18;27687:38;27684:84;;;27740:18;;:::i;:::-;27684:84;27505:269;27454:320;;;:::o;27780:180::-;27828:77;27825:1;27818:88;27925:4;27922:1;27915:15;27949:4;27946:1;27939:15;27966:180;28014:77;28011:1;28004:88;28111:4;28108:1;28101:15;28135:4;28132:1;28125:15;28152:180;28200:77;28197:1;28190:88;28297:4;28294:1;28287:15;28321:4;28318:1;28311:15;28338:180;28386:77;28383:1;28376:88;28483:4;28480:1;28473:15;28507:4;28504:1;28497:15;28524:180;28572:77;28569:1;28562:88;28669:4;28666:1;28659:15;28693:4;28690:1;28683:15;28833:117;28942:1;28939;28932:12;28956:102;28997:6;29048:2;29044:7;29039:2;29032:5;29028:14;29024:28;29014:38;;28956:102;;;:::o;29064:222::-;29204:34;29200:1;29192:6;29188:14;29181:58;29273:5;29268:2;29260:6;29256:15;29249:30;29064:222;:::o;29292:166::-;29432:18;29428:1;29420:6;29416:14;29409:42;29292:166;:::o;29464:225::-;29604:34;29600:1;29592:6;29588:14;29581:58;29673:8;29668:2;29660:6;29656:15;29649:33;29464:225;:::o;29695:::-;29835:34;29831:1;29823:6;29819:14;29812:58;29904:8;29899:2;29891:6;29887:15;29880:33;29695:225;:::o;29926:221::-;30066:34;30062:1;30054:6;30050:14;30043:58;30135:4;30130:2;30122:6;30118:15;30111:29;29926:221;:::o;30153:243::-;30293:34;30289:1;30281:6;30277:14;30270:58;30362:26;30357:2;30349:6;30345:15;30338:51;30153:243;:::o;30402:179::-;30542:31;30538:1;30530:6;30526:14;30519:55;30402:179;:::o;30587:225::-;30727:34;30723:1;30715:6;30711:14;30704:58;30796:8;30791:2;30783:6;30779:15;30772:33;30587:225;:::o;30818:::-;30958:34;30954:1;30946:6;30942:14;30935:58;31027:8;31022:2;31014:6;31010:15;31003:33;30818:225;:::o;31049:182::-;31189:34;31185:1;31177:6;31173:14;31166:58;31049:182;:::o;31237:226::-;31377:34;31373:1;31365:6;31361:14;31354:58;31446:9;31441:2;31433:6;31429:15;31422:34;31237:226;:::o;31469:224::-;31609:34;31605:1;31597:6;31593:14;31586:58;31678:7;31673:2;31665:6;31661:15;31654:32;31469:224;:::o;31699:223::-;31839:34;31835:1;31827:6;31823:14;31816:58;31908:6;31903:2;31895:6;31891:15;31884:31;31699:223;:::o;31928:221::-;32068:34;32064:1;32056:6;32052:14;32045:58;32137:4;32132:2;32124:6;32120:15;32113:29;31928:221;:::o;32155:224::-;32295:34;32291:1;32283:6;32279:14;32272:58;32364:7;32359:2;32351:6;32347:15;32340:32;32155:224;:::o;32385:122::-;32458:24;32476:5;32458:24;:::i;:::-;32451:5;32448:35;32438:63;;32497:1;32494;32487:12;32438:63;32385:122;:::o;32513:116::-;32583:21;32598:5;32583:21;:::i;:::-;32576:5;32573:32;32563:60;;32619:1;32616;32609:12;32563:60;32513:116;:::o;32635:122::-;32708:24;32726:5;32708:24;:::i;:::-;32701:5;32698:35;32688:63;;32747:1;32744;32737:12;32688:63;32635:122;:::o

Swarm Source

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