ETH Price: $3,246.11 (+2.55%)
Gas: 2 Gwei

Token

Marksman AI (MARKS)
 

Overview

Max Total Supply

1,000,000 MARKS

Holders

305

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: MARKS 2
Balance
325,493.809549229723318366 MARKS

Value
$0.00
0xc1f82fb0233aef6eba3890aade50eed4f4b4234c
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:
MarksmanToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-11
*/

/*
    Marksman is a single-stop block-chain alpha aggregator and toolkit that 
    enables you to watch and track contracts as they hit the block-chain, 
    see their health and trust metrics, view live charts, and our AI scores
    them based on these metrics.

    Website: https://marksman.app/
    Telegram: https://t.me/MarksmanPortal
    Twitter: https://twitter.com/MarksmanTools
    Gitbooks: https://marksman-app.gitbook.io/marksman/
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.9;

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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
    );

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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);
}

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 default value returned by this function, unless
     * it's 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, allowance(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 = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * 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 {}
}

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    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,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

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

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

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

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

contract MarksmanToken is ERC20, Ownable {
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public devWallet1;
    address public devWallet2;
    address public liquidityWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public buyTotalFees;
    uint256 private buyDev1Fee;
    uint256 private buyDev2Fee;
    uint256 private buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 private sellDev1Fee;
    uint256 private sellDev2Fee;
    uint256 private sellLiquidityFee;

    uint256 private tokensForDevelopment1;
    uint256 private tokensForDevelopment2;
    uint256 private tokensForLiquidity;
    uint256 private previousFee;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;
    mapping(address => bool) private automatedMarketMakerPairs;

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event developmentWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event liquidityWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    constructor() ERC20("Marksman AI", "MARKS") {
        devWallet1 = address(msg.sender);
        devWallet2 = 0x83ecE396edAAc188effA3554B0Fb7992F517b84D;
        liquidityWallet = address(msg.sender);

        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        _approve(address(this), address(uniswapV2Router), type(uint256).max);

        uint256 totalSupply = 1_000_000 ether;

        maxTransactionAmount = (totalSupply * 10) / 1000; // 1.0%
        maxWallet = (totalSupply * 20) / 1000; // 2.0%
        swapTokensAtAmount = (totalSupply * 1) / 1000;

        buyDev1Fee = 17;
        buyDev2Fee = 18;
        buyLiquidityFee = 0;
        buyTotalFees = buyDev1Fee + buyDev2Fee + buyLiquidityFee;

        sellDev1Fee = 17;
        sellDev2Fee = 18;
        sellLiquidityFee = 0;
        sellTotalFees = sellDev1Fee + sellDev2Fee + sellLiquidityFee;
        previousFee = sellTotalFees;

        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);
        excludeFromFees(devWallet1, true);
        excludeFromFees(devWallet2, true);
        excludeFromFees(liquidityWallet, true);

        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);
        excludeFromMaxTransaction(address(uniswapV2Router), true);
        excludeFromMaxTransaction(devWallet1, true);
        excludeFromMaxTransaction(devWallet2, true);
        excludeFromMaxTransaction(liquidityWallet, true);

        _mint(address(this), (totalSupply * 16) / 100);
        _mint(devWallet1, (totalSupply * 84) / 100);
    }

    receive() external payable {}

    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    function init() external onlyOwner {
        require(!tradingActive, "Trading already active.");

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        _approve(address(this), address(uniswapV2Pair), type(uint256).max);
        IERC20(uniswapV2Pair).approve(
            address(uniswapV2Router),
            type(uint256).max
        );

        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);

        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            devWallet1,
            block.timestamp
        );
        tradingActive = true;
        swapEnabled = true;
    }

    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "ERC20: Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "ERC20: Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxWalletAndTxnAmount(
        uint256 newTxnNum,
        uint256 newMaxWalletNum
    ) external onlyOwner {
        require(
            newTxnNum >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxTxn lower than 0.5%"
        );
        require(
            newMaxWalletNum >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newMaxWalletNum;
        maxTransactionAmount = newTxnNum;
    }

    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function removeLimits() external onlyOwner {
        maxWallet = totalSupply();
        maxTransactionAmount = totalSupply();
    }

    function updateBuyFees(uint256 _buyDev1Fee, uint256 _buyDev2Fee, uint256 _buyLiquidityFee) external onlyOwner {
        buyDev1Fee = _buyDev1Fee;
        buyDev2Fee = _buyDev2Fee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyDev1Fee + buyDev2Fee + buyLiquidityFee;
        require(buyTotalFees <= 15, "ERC20: Must keep fees at 15% or less");
    }

    function updateSellFees(uint256 _sellDev1Fee, uint256 _sellDev2Fee, uint256 _sellLiquidityFee) external onlyOwner {
        sellDev1Fee = _sellDev1Fee;
        sellDev2Fee = _sellDev2Fee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellDev1Fee + sellDev2Fee + sellLiquidityFee;
        previousFee = sellTotalFees;
        require(sellTotalFees <= 15, "ERC20: Must keep fees at 15% or less");
    }

    function updateDevelopmentWallets(address _developmentWallet1, address _developmentWallet2) external onlyOwner {
        require(_developmentWallet1 != address(0), "ERC20: Cannot set 1 to zero address");
        require(_developmentWallet2 != address(0), "ERC20: Cannot set 2 to zero address");
        address oldWallet1 = devWallet1;
        address oldWallet2 = devWallet2;
        devWallet1 = _developmentWallet1;
        devWallet2 = _developmentWallet2;
        emit developmentWalletUpdated(devWallet1, oldWallet1);
        emit developmentWalletUpdated(devWallet2, oldWallet2);
    }

    function updateLiquidityWallet(address _liquidityWallet) external onlyOwner {
        require(_liquidityWallet != address(0), "ERC20: Cannot set to zero address");
        address oldWallet = liquidityWallet;
        liquidityWallet = _liquidityWallet;
        emit liquidityWalletUpdated(liquidityWallet, oldWallet);
    }

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

    function withdrawStuckETH() public onlyOwner {
        bool success;
        (success, ) = address(msg.sender).call{
            value: address(this).balance
        }("");
    }

    function withdrawStuckTokens(address tkn) public onlyOwner {
        require(IERC20(tkn).balanceOf(address(this)) > 0, "This token does not exist in the contract");
        uint256 amount = IERC20(tkn).balanceOf(address(this));
        IERC20(tkn).transfer(msg.sender, amount);
    }

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

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

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

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

        if (
            from != owner() &&
            to != owner() &&
            to != address(0) &&
            to != deadAddress &&
            !swapping
        ) {
            if (!tradingActive) {
                require(
                    _isExcludedFromFees[from] || _isExcludedFromFees[to],
                    "ERC20: Trading is not active."
                );
            }

            //when buy
            if (
                automatedMarketMakerPairs[from] &&
                !_isExcludedMaxTransactionAmount[to]
            ) {
                require(
                    amount <= maxTransactionAmount,
                    "ERC20: Buy transfer amount exceeds the maxTransactionAmount."
                );
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "ERC20: Max wallet exceeded"
                );
            }
            //when sell
            else if (
                automatedMarketMakerPairs[to] &&
                !_isExcludedMaxTransactionAmount[from]
            ) {
                require(
                    amount <= maxTransactionAmount,
                    "ERC20: Sell transfer amount exceeds the maxTransactionAmount."
                );
            } else if (!_isExcludedMaxTransactionAmount[to]) {
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "ERC20: Max wallet exceeded"
                );
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount * sellTotalFees / 100;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDevelopment1 += (fees * sellDev1Fee) / sellTotalFees;
                tokensForDevelopment2 += (fees * sellDev2Fee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount * buyTotalFees / 100;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDevelopment1 += (fees * buyDev1Fee) / buyTotalFees;
                tokensForDevelopment2 += (fees * buyDev2Fee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellTotalFees = previousFee;
    }

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

        // make the swap
        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,
            liquidityWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForDevelopment1 + tokensForDevelopment2;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance - liquidityTokens;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance - initialETHBalance;

        uint256 ethForDevelopment1 = ethBalance * tokensForDevelopment1 / totalTokensToSwap;
        uint256 ethForDevelopment2 = ethBalance * tokensForDevelopment2 / totalTokensToSwap;
        uint256 ethForLiquidity = ethBalance - ethForDevelopment1 - ethForDevelopment2;

        tokensForLiquidity = 0;
        tokensForDevelopment1 = 0;
        tokensForDevelopment2 = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(devWallet1).call{
            value: ethForDevelopment1
        }("");

        (success, ) = address(devWallet2).call{
            value: address(this).balance
        }("");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"devWallet1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[{"internalType":"uint256","name":"_buyDev1Fee","type":"uint256"},{"internalType":"uint256","name":"_buyDev2Fee","type":"uint256"},{"internalType":"uint256","name":"_buyLiquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developmentWallet1","type":"address"},{"internalType":"address","name":"_developmentWallet2","type":"address"}],"name":"updateDevelopmentWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityWallet","type":"address"}],"name":"updateLiquidityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxnNum","type":"uint256"},{"internalType":"uint256","name":"newMaxWalletNum","type":"uint256"}],"name":"updateMaxWalletAndTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellDev1Fee","type":"uint256"},{"internalType":"uint256","name":"_sellDev2Fee","type":"uint256"},{"internalType":"uint256","name":"_sellLiquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040518060400160405280600b81526020017f4d61726b736d616e2041490000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d41524b530000000000000000000000000000000000000000000000000000008152508160039080519060200190620000cc92919062000b80565b508060049080519060200190620000e592919062000b80565b50505062000108620000fc6200058660201b60201c565b6200058e60201b60201c565b33600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507383ece396edaac188effa3554b0fb7992f517b84d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506200025c306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200065460201b60201c565b600069d3c21bcecceda100000090506103e8600a826200027d919062000c69565b62000289919062000cf9565b600a819055506103e8601482620002a1919062000c69565b620002ad919062000cf9565b600c819055506103e8600182620002c5919062000c69565b620002d1919062000cf9565b600b819055506011600f8190555060126010819055506000601181905550601154601054600f5462000304919062000d31565b62000310919062000d31565b600e8190555060116013819055506012601481905550600060158190555060155460145460135462000343919062000d31565b6200034f919062000d31565b601281905550601254601981905550620003713060016200082760201b60201c565b6200038661dead60016200082760201b60201c565b620003bb600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200082760201b60201c565b620003f0600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200082760201b60201c565b62000425600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200082760201b60201c565b62000438306001620008e260201b60201c565b6200044d61dead6001620008e260201b60201c565b620004626080516001620008e260201b60201c565b62000497600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008e260201b60201c565b620004cc600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008e260201b60201c565b62000501600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008e260201b60201c565b6200052f30606460108462000517919062000c69565b62000523919062000cf9565b6200094d60201b60201c565b6200057f600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16606460548462000567919062000c69565b62000573919062000cf9565b6200094d60201b60201c565b5062001080565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620006c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006be9062000e15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200073a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007319062000ead565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200081a919062000ee0565b60405180910390a3505050565b6200083762000abb60201b60201c565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008d6919062000f1a565b60405180910390a25050565b620008f262000abb60201b60201c565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009b79062000f87565b60405180910390fd5b620009d46000838362000b4c60201b60201c565b8060026000828254620009e8919062000d31565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a9b919062000ee0565b60405180910390a362000ab76000838362000b5160201b60201c565b5050565b62000acb6200058660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000af162000b5660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000b4a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b419062000ff9565b60405180910390fd5b565b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000b8e906200104a565b90600052602060002090601f01602090048101928262000bb2576000855562000bfe565b82601f1062000bcd57805160ff191683800117855562000bfe565b8280016001018555821562000bfe579182015b8281111562000bfd57825182559160200191906001019062000be0565b5b50905062000c0d919062000c11565b5090565b5b8082111562000c2c57600081600090555060010162000c12565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c768262000c30565b915062000c838362000c30565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cbf5762000cbe62000c3a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d068262000c30565b915062000d138362000c30565b92508262000d265762000d2562000cca565b5b828204905092915050565b600062000d3e8262000c30565b915062000d4b8362000c30565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d835762000d8262000c3a565b5b828201905092915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000dfd60248362000d8e565b915062000e0a8262000d9f565b604082019050919050565b6000602082019050818103600083015262000e308162000dee565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000e9560228362000d8e565b915062000ea28262000e37565b604082019050919050565b6000602082019050818103600083015262000ec88162000e86565b9050919050565b62000eda8162000c30565b82525050565b600060208201905062000ef7600083018462000ecf565b92915050565b60008115159050919050565b62000f148162000efd565b82525050565b600060208201905062000f31600083018462000f09565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f6f601f8362000d8e565b915062000f7c8262000f37565b602082019050919050565b6000602082019050818103600083015262000fa28162000f60565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000fe160208362000d8e565b915062000fee8262000fa9565b602082019050919050565b60006020820190508181036000830152620010148162000fd2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200106357607f821691505b602082108114156200107a57620010796200101b565b5b50919050565b60805161500c620010db60003960008181610a2e0152818161175701528181611811015281816119e901528181611af5015281816135110152818161360101528181613628015281816136c401526136eb015261500c6000f3fe60806040526004361061024a5760003560e01c80638da5cb5b11610139578063cea74130116100b6578063e1c7392a1161007a578063e1c7392a146108a1578063e2f45605146108b8578063e37ba8f9146108e3578063f2fde38b1461090c578063f5648a4f14610935578063f8b45b051461094c57610251565b8063cea74130146107a6578063d257b34f146107d1578063d46980161461080e578063d85ba06314610839578063dd62ed3e1461086457610251565b8063bbc0c742116100fd578063bbc0c742146106d5578063c024666814610700578063c17b5b8c14610729578063c8c8ebe414610752578063cb9637281461077d57610251565b80638da5cb5b146105dc57806395d89b41146106075780639618839914610632578063a457c2d71461065b578063a9059cbb1461069857610251565b80634f2ddca1116101c757806370a082311161018b57806370a082311461051f578063715018a61461055c578063751039fc146105735780637571336a1461058a5780638095d564146105b357610251565b80634f2ddca1146104385780634fbee193146104615780636a486a8e1461049e5780636c81c229146104c95780636ddd1713146104f457610251565b806327c8f8351161020e57806327c8f83514610351578063313ce5671461037c57806339509351146103a757806342966c68146103e457806349bd5a5e1461040d57610251565b806306fdde0314610256578063095ea7b3146102815780631694505e146102be57806318160ddd146102e957806323b872dd1461031457610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b610977565b6040516102789190613862565b60405180910390f35b34801561028d57600080fd5b506102a860048036038101906102a3919061391d565b610a09565b6040516102b59190613978565b60405180910390f35b3480156102ca57600080fd5b506102d3610a2c565b6040516102e091906139f2565b60405180910390f35b3480156102f557600080fd5b506102fe610a50565b60405161030b9190613a1c565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190613a37565b610a5a565b6040516103489190613978565b60405180910390f35b34801561035d57600080fd5b50610366610a89565b6040516103739190613a99565b60405180910390f35b34801561038857600080fd5b50610391610a8f565b60405161039e9190613ad0565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c9919061391d565b610a98565b6040516103db9190613978565b60405180910390f35b3480156103f057600080fd5b5061040b60048036038101906104069190613aeb565b610acf565b005b34801561041957600080fd5b50610422610adc565b60405161042f9190613a99565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190613b18565b610b02565b005b34801561046d57600080fd5b5061048860048036038101906104839190613b58565b610db8565b6040516104959190613978565b60405180910390f35b3480156104aa57600080fd5b506104b3610e0e565b6040516104c09190613a1c565b60405180910390f35b3480156104d557600080fd5b506104de610e14565b6040516104eb9190613a99565b60405180910390f35b34801561050057600080fd5b50610509610e3a565b6040516105169190613978565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190613b58565b610e4d565b6040516105539190613a1c565b60405180910390f35b34801561056857600080fd5b50610571610e95565b005b34801561057f57600080fd5b50610588610ea9565b005b34801561059657600080fd5b506105b160048036038101906105ac9190613bb1565b610ecf565b005b3480156105bf57600080fd5b506105da60048036038101906105d59190613bf1565b610f32565b005b3480156105e857600080fd5b506105f1610fbd565b6040516105fe9190613a99565b60405180910390f35b34801561061357600080fd5b5061061c610fe7565b6040516106299190613862565b60405180910390f35b34801561063e57600080fd5b5061065960048036038101906106549190613c44565b611079565b005b34801561066757600080fd5b50610682600480360381019061067d919061391d565b611159565b60405161068f9190613978565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba919061391d565b6111d0565b6040516106cc9190613978565b60405180910390f35b3480156106e157600080fd5b506106ea6111f3565b6040516106f79190613978565b60405180910390f35b34801561070c57600080fd5b5061072760048036038101906107229190613bb1565b611206565b005b34801561073557600080fd5b50610750600480360381019061074b9190613bf1565b6112b7565b005b34801561075e57600080fd5b5061076761134b565b6040516107749190613a1c565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190613b58565b611351565b005b3480156107b257600080fd5b506107bb611543565b6040516107c89190613a99565b60405180910390f35b3480156107dd57600080fd5b506107f860048036038101906107f39190613aeb565b611569565b6040516108059190613978565b60405180910390f35b34801561081a57600080fd5b5061082361164a565b6040516108309190613a99565b60405180910390f35b34801561084557600080fd5b5061084e611670565b60405161085b9190613a1c565b60405180910390f35b34801561087057600080fd5b5061088b60048036038101906108869190613b18565b611676565b6040516108989190613a1c565b60405180910390f35b3480156108ad57600080fd5b506108b66116fd565b005b3480156108c457600080fd5b506108cd611c0f565b6040516108da9190613a1c565b60405180910390f35b3480156108ef57600080fd5b5061090a60048036038101906109059190613b58565b611c15565b005b34801561091857600080fd5b50610933600480360381019061092e9190613b58565b611d75565b005b34801561094157600080fd5b5061094a611df9565b005b34801561095857600080fd5b50610961611e72565b60405161096e9190613a1c565b60405180910390f35b60606003805461098690613cb3565b80601f01602080910402602001604051908101604052809291908181526020018280546109b290613cb3565b80156109ff5780601f106109d4576101008083540402835291602001916109ff565b820191906000526020600020905b8154815290600101906020018083116109e257829003601f168201915b5050505050905090565b600080610a14611e78565b9050610a21818585611e80565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600080610a65611e78565b9050610a7285828561204b565b610a7d8585856120d7565b60019150509392505050565b61dead81565b60006012905090565b600080610aa3611e78565b9050610ac4818585610ab58589611676565b610abf9190613d14565b611e80565b600191505092915050565b610ad93382612b80565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b0a612d4e565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7190613ddc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be190613e6e565b60405180910390fd5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905083600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396560405160405180910390a38073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396560405160405180910390a350505050565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e9d612d4e565b610ea76000612dcc565b565b610eb1612d4e565b610eb9610a50565b600c81905550610ec7610a50565b600a81905550565b610ed7612d4e565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610f3a612d4e565b82600f819055508160108190555080601181905550601154601054600f54610f629190613d14565b610f6c9190613d14565b600e81905550600f600e541115610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90613f00565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ff690613cb3565b80601f016020809104026020016040519081016040528092919081815260200182805461102290613cb3565b801561106f5780601f106110445761010080835404028352916020019161106f565b820191906000526020600020905b81548152906001019060200180831161105257829003601f168201915b5050505050905090565b611081612d4e565b6103e8600561108e610a50565b6110989190613f20565b6110a29190613fa9565b8210156110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db9061404c565b60405180910390fd5b6103e860056110f1610a50565b6110fb9190613f20565b6111059190613fa9565b811015611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e906140de565b60405180910390fd5b80600c8190555081600a819055505050565b600080611164611e78565b905060006111728286611676565b9050838110156111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae90614170565b60405180910390fd5b6111c48286868403611e80565b60019250505092915050565b6000806111db611e78565b90506111e88185856120d7565b600191505092915050565b600d60009054906101000a900460ff1681565b61120e612d4e565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516112ab9190613978565b60405180910390a25050565b6112bf612d4e565b8260138190555081601481905550806015819055506015546014546013546112e79190613d14565b6112f19190613d14565b601281905550601254601981905550600f6012541115611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d90613f00565b60405180910390fd5b505050565b600a5481565b611359612d4e565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113949190613a99565b60206040518083038186803b1580156113ac57600080fd5b505afa1580156113c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113e491906141a5565b11611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90614244565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161145f9190613a99565b60206040518083038186803b15801561147757600080fd5b505afa15801561148b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114af91906141a5565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016114ec929190614264565b602060405180830381600087803b15801561150657600080fd5b505af115801561151a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061153e91906142a2565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611573612d4e565b620186a06001611581610a50565b61158b9190613f20565b6115959190613fa9565b8210156115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90614341565b60405180910390fd5b6103e860056115e4610a50565b6115ee9190613f20565b6115f89190613fa9565b82111561163a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611631906143d3565b60405180910390fd5b81600b8190555060019050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611705612d4e565b600d60009054906101000a900460ff1615611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c9061443f565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156117bb57600080fd5b505afa1580156117cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f39190614474565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561187557600080fd5b505afa158015611889573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ad9190614474565b6040518363ffffffff1660e01b81526004016118ca9291906144a1565b602060405180830381600087803b1580156118e457600080fd5b505af11580156118f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191c9190614474565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506119a930600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611e80565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401611a46929190614264565b602060405180830381600087803b158015611a6057600080fd5b505af1158015611a74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9891906142a2565b50611ac6600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612e92565b611af3600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610ecf565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7194730611b3a30610e4d565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401611b8296959493929190614505565b6060604051808303818588803b158015611b9b57600080fd5b505af1158015611baf573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611bd49190614566565b5050506001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff021916908315150217905550565b600b5481565b611c1d612d4e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c849061462b565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f3e0ea4f8339b6050ff814971a9814aa39176c149fcf185975c219f33db2342db60405160405180910390a35050565b611d7d612d4e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de4906146bd565b60405180910390fd5b611df681612dcc565b50565b611e01612d4e565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611e279061470e565b60006040518083038185875af1925050503d8060008114611e64576040519150601f19603f3d011682016040523d82523d6000602084013e611e69565b606091505b50508091505050565b600c5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee790614795565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5790614827565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161203e9190613a1c565b60405180910390a3505050565b60006120578484611676565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146120d157818110156120c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba90614893565b60405180910390fd5b6120d08484848403611e80565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213e90614925565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ae906149b7565b60405180910390fd5b60008114156121d1576121cc83836000612f33565b612b7b565b6121d9610fbd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122475750612217610fbd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122805750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122ba575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122d35750600660149054906101000a900460ff16155b156126b657600d60009054906101000a900460ff166123cd57601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061238d5750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6123cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c390614a23565b60405180910390fd5b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124705750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561251757600a548111156124ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b190614ab5565b60405180910390fd5b600c546124c683610e4d565b826124d19190613d14565b1115612512576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250990614b21565b60405180910390fd5b6126b5565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125ba5750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561260957600a54811115612604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fb90614bb3565b60405180910390fd5b6126b4565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166126b357600c5461266683610e4d565b826126719190613d14565b11156126b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a990614b21565b60405180910390fd5b5b5b5b5b60006126c130610e4d565b90506000600b5482101590508080156126e65750600d60019054906101000a900460ff165b80156126ff5750600660149054906101000a900460ff16155b80156127555750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127ab5750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128015750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612845576001600660146101000a81548160ff0219169083151502179055506128296131ab565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128fb5750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561290557600090505b60008115612b6257601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561296857506000601254115b15612a275760646012548661297d9190613f20565b6129879190613fa9565b90506012546015548261299a9190613f20565b6129a49190613fa9565b601860008282546129b59190613d14565b92505081905550601254601354826129cd9190613f20565b6129d79190613fa9565b601660008282546129e89190613d14565b9250508190555060125460145482612a009190613f20565b612a0a9190613fa9565b60176000828254612a1b9190613d14565b92505081905550612b3e565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a8257506000600e54115b15612b3d576064600e5486612a979190613f20565b612aa19190613fa9565b9050600e5460115482612ab49190613f20565b612abe9190613fa9565b60186000828254612acf9190613d14565b92505081905550600e54600f5482612ae79190613f20565b612af19190613fa9565b60166000828254612b029190613d14565b92505081905550600e5460105482612b1a9190613f20565b612b249190613fa9565b60176000828254612b359190613d14565b925050819055505b5b6000811115612b5357612b52873083612f33565b5b8085612b5f9190614bd3565b94505b612b6d878787612f33565b601954601281905550505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be790614c79565b60405180910390fd5b612bfc82600083613468565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7990614d0b565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612d359190613a1c565b60405180910390a3612d498360008461346d565b505050565b612d56611e78565b73ffffffffffffffffffffffffffffffffffffffff16612d74610fbd565b73ffffffffffffffffffffffffffffffffffffffff1614612dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc190614d77565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9a90614925565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300a906149b7565b60405180910390fd5b61301e838383613468565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156130a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309b90614e09565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516131929190613a1c565b60405180910390a36131a584848461346d565b50505050565b60006131b630610e4d565b905060006017546016546018546131cd9190613d14565b6131d79190613d14565b90506000808314806131e95750600082145b156131f657505050613466565b6014600b546132059190613f20565b83111561321e576014600b5461321b9190613f20565b92505b6000600283601854866132319190613f20565b61323b9190613fa9565b6132459190613fa9565b9050600081856132559190614bd3565b9050600047905061326582613472565b600081476132739190614bd3565b9050600086601654836132869190613f20565b6132909190613fa9565b9050600087601754846132a39190613f20565b6132ad9190613fa9565b905060008183856132be9190614bd3565b6132c89190614bd3565b90506000601881905550600060168190555060006017819055506000871180156132f25750600081115b1561333f5761330187826136be565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260185460405161333693929190614e29565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516133859061470e565b60006040518083038185875af1925050503d80600081146133c2576040519150601f19603f3d011682016040523d82523d6000602084013e6133c7565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516134139061470e565b60006040518083038185875af1925050503d8060008114613450576040519150601f19603f3d011682016040523d82523d6000602084013e613455565b606091505b505080985050505050505050505050505b565b505050565b505050565b6000600267ffffffffffffffff81111561348f5761348e614e60565b5b6040519080825280602002602001820160405280156134bd5781602001602082028036833780820191505090505b50905030816000815181106134d5576134d4614e8f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561357557600080fd5b505afa158015613589573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135ad9190614474565b816001815181106135c1576135c0614e8f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613626307f000000000000000000000000000000000000000000000000000000000000000084611e80565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613688959493929190614f7c565b600060405180830381600087803b1580156136a257600080fd5b505af11580156136b6573d6000803e3d6000fd5b505050505050565b6136e9307f000000000000000000000000000000000000000000000000000000000000000084611e80565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161377096959493929190614505565b6060604051808303818588803b15801561378957600080fd5b505af115801561379d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906137c29190614566565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138035780820151818401526020810190506137e8565b83811115613812576000848401525b50505050565b6000601f19601f8301169050919050565b6000613834826137c9565b61383e81856137d4565b935061384e8185602086016137e5565b61385781613818565b840191505092915050565b6000602082019050818103600083015261387c8184613829565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138b482613889565b9050919050565b6138c4816138a9565b81146138cf57600080fd5b50565b6000813590506138e1816138bb565b92915050565b6000819050919050565b6138fa816138e7565b811461390557600080fd5b50565b600081359050613917816138f1565b92915050565b6000806040838503121561393457613933613884565b5b6000613942858286016138d2565b925050602061395385828601613908565b9150509250929050565b60008115159050919050565b6139728161395d565b82525050565b600060208201905061398d6000830184613969565b92915050565b6000819050919050565b60006139b86139b36139ae84613889565b613993565b613889565b9050919050565b60006139ca8261399d565b9050919050565b60006139dc826139bf565b9050919050565b6139ec816139d1565b82525050565b6000602082019050613a0760008301846139e3565b92915050565b613a16816138e7565b82525050565b6000602082019050613a316000830184613a0d565b92915050565b600080600060608486031215613a5057613a4f613884565b5b6000613a5e868287016138d2565b9350506020613a6f868287016138d2565b9250506040613a8086828701613908565b9150509250925092565b613a93816138a9565b82525050565b6000602082019050613aae6000830184613a8a565b92915050565b600060ff82169050919050565b613aca81613ab4565b82525050565b6000602082019050613ae56000830184613ac1565b92915050565b600060208284031215613b0157613b00613884565b5b6000613b0f84828501613908565b91505092915050565b60008060408385031215613b2f57613b2e613884565b5b6000613b3d858286016138d2565b9250506020613b4e858286016138d2565b9150509250929050565b600060208284031215613b6e57613b6d613884565b5b6000613b7c848285016138d2565b91505092915050565b613b8e8161395d565b8114613b9957600080fd5b50565b600081359050613bab81613b85565b92915050565b60008060408385031215613bc857613bc7613884565b5b6000613bd6858286016138d2565b9250506020613be785828601613b9c565b9150509250929050565b600080600060608486031215613c0a57613c09613884565b5b6000613c1886828701613908565b9350506020613c2986828701613908565b9250506040613c3a86828701613908565b9150509250925092565b60008060408385031215613c5b57613c5a613884565b5b6000613c6985828601613908565b9250506020613c7a85828601613908565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ccb57607f821691505b60208210811415613cdf57613cde613c84565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d1f826138e7565b9150613d2a836138e7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d5f57613d5e613ce5565b5b828201905092915050565b7f45524332303a2043616e6e6f7420736574203120746f207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613dc66023836137d4565b9150613dd182613d6a565b604082019050919050565b60006020820190508181036000830152613df581613db9565b9050919050565b7f45524332303a2043616e6e6f7420736574203220746f207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e586023836137d4565b9150613e6382613dfc565b604082019050919050565b60006020820190508181036000830152613e8781613e4b565b9050919050565b7f45524332303a204d757374206b656570206665657320617420313525206f722060008201527f6c65737300000000000000000000000000000000000000000000000000000000602082015250565b6000613eea6024836137d4565b9150613ef582613e8e565b604082019050919050565b60006020820190508181036000830152613f1981613edd565b9050919050565b6000613f2b826138e7565b9150613f36836138e7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f6f57613f6e613ce5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613fb4826138e7565b9150613fbf836138e7565b925082613fcf57613fce613f7a565b5b828204905092915050565b7f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460008201527f68616e20302e3525000000000000000000000000000000000000000000000000602082015250565b60006140366028836137d4565b915061404182613fda565b604082019050919050565b6000602082019050818103600083015261406581614029565b9050919050565b7f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560008201527f72207468616e20302e3525000000000000000000000000000000000000000000602082015250565b60006140c8602b836137d4565b91506140d38261406c565b604082019050919050565b600060208201905081810360008301526140f7816140bb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061415a6025836137d4565b9150614165826140fe565b604082019050919050565b600060208201905081810360008301526141898161414d565b9050919050565b60008151905061419f816138f1565b92915050565b6000602082840312156141bb576141ba613884565b5b60006141c984828501614190565b91505092915050565b7f5468697320746f6b656e20646f6573206e6f7420657869737420696e2074686560008201527f20636f6e74726163740000000000000000000000000000000000000000000000602082015250565b600061422e6029836137d4565b9150614239826141d2565b604082019050919050565b6000602082019050818103600083015261425d81614221565b9050919050565b60006040820190506142796000830185613a8a565b6142866020830184613a0d565b9392505050565b60008151905061429c81613b85565b92915050565b6000602082840312156142b8576142b7613884565b5b60006142c68482850161428d565b91505092915050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760008201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000602082015250565b600061432b603c836137d4565b9150614336826142cf565b604082019050919050565b6000602082019050818103600083015261435a8161431e565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760008201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000602082015250565b60006143bd603b836137d4565b91506143c882614361565b604082019050919050565b600060208201905081810360008301526143ec816143b0565b9050919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b60006144296017836137d4565b9150614434826143f3565b602082019050919050565b600060208201905081810360008301526144588161441c565b9050919050565b60008151905061446e816138bb565b92915050565b60006020828403121561448a57614489613884565b5b60006144988482850161445f565b91505092915050565b60006040820190506144b66000830185613a8a565b6144c36020830184613a8a565b9392505050565b6000819050919050565b60006144ef6144ea6144e5846144ca565b613993565b6138e7565b9050919050565b6144ff816144d4565b82525050565b600060c08201905061451a6000830189613a8a565b6145276020830188613a0d565b61453460408301876144f6565b61454160608301866144f6565b61454e6080830185613a8a565b61455b60a0830184613a0d565b979650505050505050565b60008060006060848603121561457f5761457e613884565b5b600061458d86828701614190565b935050602061459e86828701614190565b92505060406145af86828701614190565b9150509250925092565b7f45524332303a2043616e6e6f742073657420746f207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006146156021836137d4565b9150614620826145b9565b604082019050919050565b6000602082019050818103600083015261464481614608565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146a76026836137d4565b91506146b28261464b565b604082019050919050565b600060208201905081810360008301526146d68161469a565b9050919050565b600081905092915050565b50565b60006146f86000836146dd565b9150614703826146e8565b600082019050919050565b6000614719826146eb565b9150819050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061477f6024836137d4565b915061478a82614723565b604082019050919050565b600060208201905081810360008301526147ae81614772565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006148116022836137d4565b915061481c826147b5565b604082019050919050565b6000602082019050818103600083015261484081614804565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061487d601d836137d4565b915061488882614847565b602082019050919050565b600060208201905081810360008301526148ac81614870565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061490f6025836137d4565b915061491a826148b3565b604082019050919050565b6000602082019050818103600083015261493e81614902565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006149a16023836137d4565b91506149ac82614945565b604082019050919050565b600060208201905081810360008301526149d081614994565b9050919050565b7f45524332303a2054726164696e67206973206e6f74206163746976652e000000600082015250565b6000614a0d601d836137d4565b9150614a18826149d7565b602082019050919050565b60006020820190508181036000830152614a3c81614a00565b9050919050565b7f45524332303a20427579207472616e7366657220616d6f756e7420657863656560008201527f647320746865206d61785472616e73616374696f6e416d6f756e742e00000000602082015250565b6000614a9f603c836137d4565b9150614aaa82614a43565b604082019050919050565b60006020820190508181036000830152614ace81614a92565b9050919050565b7f45524332303a204d61782077616c6c6574206578636565646564000000000000600082015250565b6000614b0b601a836137d4565b9150614b1682614ad5565b602082019050919050565b60006020820190508181036000830152614b3a81614afe565b9050919050565b7f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560008201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e000000602082015250565b6000614b9d603d836137d4565b9150614ba882614b41565b604082019050919050565b60006020820190508181036000830152614bcc81614b90565b9050919050565b6000614bde826138e7565b9150614be9836138e7565b925082821015614bfc57614bfb613ce5565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c636021836137d4565b9150614c6e82614c07565b604082019050919050565b60006020820190508181036000830152614c9281614c56565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614cf56022836137d4565b9150614d0082614c99565b604082019050919050565b60006020820190508181036000830152614d2481614ce8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614d616020836137d4565b9150614d6c82614d2b565b602082019050919050565b60006020820190508181036000830152614d9081614d54565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614df36026836137d4565b9150614dfe82614d97565b604082019050919050565b60006020820190508181036000830152614e2281614de6565b9050919050565b6000606082019050614e3e6000830186613a0d565b614e4b6020830185613a0d565b614e586040830184613a0d565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ef3816138a9565b82525050565b6000614f058383614eea565b60208301905092915050565b6000602082019050919050565b6000614f2982614ebe565b614f338185614ec9565b9350614f3e83614eda565b8060005b83811015614f6f578151614f568882614ef9565b9750614f6183614f11565b925050600181019050614f42565b5085935050505092915050565b600060a082019050614f916000830188613a0d565b614f9e60208301876144f6565b8181036040830152614fb08186614f1e565b9050614fbf6060830185613a8a565b614fcc6080830184613a0d565b969550505050505056fea2646970667358221220856a9d4a995a2f6f2d9015ab3c8d9c1d91bd83f41c73655019a3dbb9838302c964736f6c63430008090033

Deployed Bytecode

0x60806040526004361061024a5760003560e01c80638da5cb5b11610139578063cea74130116100b6578063e1c7392a1161007a578063e1c7392a146108a1578063e2f45605146108b8578063e37ba8f9146108e3578063f2fde38b1461090c578063f5648a4f14610935578063f8b45b051461094c57610251565b8063cea74130146107a6578063d257b34f146107d1578063d46980161461080e578063d85ba06314610839578063dd62ed3e1461086457610251565b8063bbc0c742116100fd578063bbc0c742146106d5578063c024666814610700578063c17b5b8c14610729578063c8c8ebe414610752578063cb9637281461077d57610251565b80638da5cb5b146105dc57806395d89b41146106075780639618839914610632578063a457c2d71461065b578063a9059cbb1461069857610251565b80634f2ddca1116101c757806370a082311161018b57806370a082311461051f578063715018a61461055c578063751039fc146105735780637571336a1461058a5780638095d564146105b357610251565b80634f2ddca1146104385780634fbee193146104615780636a486a8e1461049e5780636c81c229146104c95780636ddd1713146104f457610251565b806327c8f8351161020e57806327c8f83514610351578063313ce5671461037c57806339509351146103a757806342966c68146103e457806349bd5a5e1461040d57610251565b806306fdde0314610256578063095ea7b3146102815780631694505e146102be57806318160ddd146102e957806323b872dd1461031457610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b610977565b6040516102789190613862565b60405180910390f35b34801561028d57600080fd5b506102a860048036038101906102a3919061391d565b610a09565b6040516102b59190613978565b60405180910390f35b3480156102ca57600080fd5b506102d3610a2c565b6040516102e091906139f2565b60405180910390f35b3480156102f557600080fd5b506102fe610a50565b60405161030b9190613a1c565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190613a37565b610a5a565b6040516103489190613978565b60405180910390f35b34801561035d57600080fd5b50610366610a89565b6040516103739190613a99565b60405180910390f35b34801561038857600080fd5b50610391610a8f565b60405161039e9190613ad0565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c9919061391d565b610a98565b6040516103db9190613978565b60405180910390f35b3480156103f057600080fd5b5061040b60048036038101906104069190613aeb565b610acf565b005b34801561041957600080fd5b50610422610adc565b60405161042f9190613a99565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190613b18565b610b02565b005b34801561046d57600080fd5b5061048860048036038101906104839190613b58565b610db8565b6040516104959190613978565b60405180910390f35b3480156104aa57600080fd5b506104b3610e0e565b6040516104c09190613a1c565b60405180910390f35b3480156104d557600080fd5b506104de610e14565b6040516104eb9190613a99565b60405180910390f35b34801561050057600080fd5b50610509610e3a565b6040516105169190613978565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190613b58565b610e4d565b6040516105539190613a1c565b60405180910390f35b34801561056857600080fd5b50610571610e95565b005b34801561057f57600080fd5b50610588610ea9565b005b34801561059657600080fd5b506105b160048036038101906105ac9190613bb1565b610ecf565b005b3480156105bf57600080fd5b506105da60048036038101906105d59190613bf1565b610f32565b005b3480156105e857600080fd5b506105f1610fbd565b6040516105fe9190613a99565b60405180910390f35b34801561061357600080fd5b5061061c610fe7565b6040516106299190613862565b60405180910390f35b34801561063e57600080fd5b5061065960048036038101906106549190613c44565b611079565b005b34801561066757600080fd5b50610682600480360381019061067d919061391d565b611159565b60405161068f9190613978565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba919061391d565b6111d0565b6040516106cc9190613978565b60405180910390f35b3480156106e157600080fd5b506106ea6111f3565b6040516106f79190613978565b60405180910390f35b34801561070c57600080fd5b5061072760048036038101906107229190613bb1565b611206565b005b34801561073557600080fd5b50610750600480360381019061074b9190613bf1565b6112b7565b005b34801561075e57600080fd5b5061076761134b565b6040516107749190613a1c565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190613b58565b611351565b005b3480156107b257600080fd5b506107bb611543565b6040516107c89190613a99565b60405180910390f35b3480156107dd57600080fd5b506107f860048036038101906107f39190613aeb565b611569565b6040516108059190613978565b60405180910390f35b34801561081a57600080fd5b5061082361164a565b6040516108309190613a99565b60405180910390f35b34801561084557600080fd5b5061084e611670565b60405161085b9190613a1c565b60405180910390f35b34801561087057600080fd5b5061088b60048036038101906108869190613b18565b611676565b6040516108989190613a1c565b60405180910390f35b3480156108ad57600080fd5b506108b66116fd565b005b3480156108c457600080fd5b506108cd611c0f565b6040516108da9190613a1c565b60405180910390f35b3480156108ef57600080fd5b5061090a60048036038101906109059190613b58565b611c15565b005b34801561091857600080fd5b50610933600480360381019061092e9190613b58565b611d75565b005b34801561094157600080fd5b5061094a611df9565b005b34801561095857600080fd5b50610961611e72565b60405161096e9190613a1c565b60405180910390f35b60606003805461098690613cb3565b80601f01602080910402602001604051908101604052809291908181526020018280546109b290613cb3565b80156109ff5780601f106109d4576101008083540402835291602001916109ff565b820191906000526020600020905b8154815290600101906020018083116109e257829003601f168201915b5050505050905090565b600080610a14611e78565b9050610a21818585611e80565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600080610a65611e78565b9050610a7285828561204b565b610a7d8585856120d7565b60019150509392505050565b61dead81565b60006012905090565b600080610aa3611e78565b9050610ac4818585610ab58589611676565b610abf9190613d14565b611e80565b600191505092915050565b610ad93382612b80565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b0a612d4e565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7190613ddc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be190613e6e565b60405180910390fd5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905083600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396560405160405180910390a38073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396560405160405180910390a350505050565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e9d612d4e565b610ea76000612dcc565b565b610eb1612d4e565b610eb9610a50565b600c81905550610ec7610a50565b600a81905550565b610ed7612d4e565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610f3a612d4e565b82600f819055508160108190555080601181905550601154601054600f54610f629190613d14565b610f6c9190613d14565b600e81905550600f600e541115610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90613f00565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ff690613cb3565b80601f016020809104026020016040519081016040528092919081815260200182805461102290613cb3565b801561106f5780601f106110445761010080835404028352916020019161106f565b820191906000526020600020905b81548152906001019060200180831161105257829003601f168201915b5050505050905090565b611081612d4e565b6103e8600561108e610a50565b6110989190613f20565b6110a29190613fa9565b8210156110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db9061404c565b60405180910390fd5b6103e860056110f1610a50565b6110fb9190613f20565b6111059190613fa9565b811015611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e906140de565b60405180910390fd5b80600c8190555081600a819055505050565b600080611164611e78565b905060006111728286611676565b9050838110156111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae90614170565b60405180910390fd5b6111c48286868403611e80565b60019250505092915050565b6000806111db611e78565b90506111e88185856120d7565b600191505092915050565b600d60009054906101000a900460ff1681565b61120e612d4e565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516112ab9190613978565b60405180910390a25050565b6112bf612d4e565b8260138190555081601481905550806015819055506015546014546013546112e79190613d14565b6112f19190613d14565b601281905550601254601981905550600f6012541115611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d90613f00565b60405180910390fd5b505050565b600a5481565b611359612d4e565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113949190613a99565b60206040518083038186803b1580156113ac57600080fd5b505afa1580156113c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113e491906141a5565b11611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90614244565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161145f9190613a99565b60206040518083038186803b15801561147757600080fd5b505afa15801561148b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114af91906141a5565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016114ec929190614264565b602060405180830381600087803b15801561150657600080fd5b505af115801561151a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061153e91906142a2565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611573612d4e565b620186a06001611581610a50565b61158b9190613f20565b6115959190613fa9565b8210156115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90614341565b60405180910390fd5b6103e860056115e4610a50565b6115ee9190613f20565b6115f89190613fa9565b82111561163a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611631906143d3565b60405180910390fd5b81600b8190555060019050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611705612d4e565b600d60009054906101000a900460ff1615611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c9061443f565b60405180910390fd5b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156117bb57600080fd5b505afa1580156117cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f39190614474565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561187557600080fd5b505afa158015611889573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ad9190614474565b6040518363ffffffff1660e01b81526004016118ca9291906144a1565b602060405180830381600087803b1580156118e457600080fd5b505af11580156118f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191c9190614474565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506119a930600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611e80565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401611a46929190614264565b602060405180830381600087803b158015611a6057600080fd5b505af1158015611a74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9891906142a2565b50611ac6600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612e92565b611af3600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610ecf565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7194730611b3a30610e4d565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401611b8296959493929190614505565b6060604051808303818588803b158015611b9b57600080fd5b505af1158015611baf573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611bd49190614566565b5050506001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff021916908315150217905550565b600b5481565b611c1d612d4e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c849061462b565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f3e0ea4f8339b6050ff814971a9814aa39176c149fcf185975c219f33db2342db60405160405180910390a35050565b611d7d612d4e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de4906146bd565b60405180910390fd5b611df681612dcc565b50565b611e01612d4e565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611e279061470e565b60006040518083038185875af1925050503d8060008114611e64576040519150601f19603f3d011682016040523d82523d6000602084013e611e69565b606091505b50508091505050565b600c5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee790614795565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5790614827565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161203e9190613a1c565b60405180910390a3505050565b60006120578484611676565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146120d157818110156120c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba90614893565b60405180910390fd5b6120d08484848403611e80565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213e90614925565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ae906149b7565b60405180910390fd5b60008114156121d1576121cc83836000612f33565b612b7b565b6121d9610fbd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122475750612217610fbd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122805750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122ba575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122d35750600660149054906101000a900460ff16155b156126b657600d60009054906101000a900460ff166123cd57601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061238d5750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6123cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c390614a23565b60405180910390fd5b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124705750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561251757600a548111156124ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b190614ab5565b60405180910390fd5b600c546124c683610e4d565b826124d19190613d14565b1115612512576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250990614b21565b60405180910390fd5b6126b5565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125ba5750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561260957600a54811115612604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fb90614bb3565b60405180910390fd5b6126b4565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166126b357600c5461266683610e4d565b826126719190613d14565b11156126b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a990614b21565b60405180910390fd5b5b5b5b5b60006126c130610e4d565b90506000600b5482101590508080156126e65750600d60019054906101000a900460ff165b80156126ff5750600660149054906101000a900460ff16155b80156127555750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127ab5750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128015750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612845576001600660146101000a81548160ff0219169083151502179055506128296131ab565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128fb5750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561290557600090505b60008115612b6257601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561296857506000601254115b15612a275760646012548661297d9190613f20565b6129879190613fa9565b90506012546015548261299a9190613f20565b6129a49190613fa9565b601860008282546129b59190613d14565b92505081905550601254601354826129cd9190613f20565b6129d79190613fa9565b601660008282546129e89190613d14565b9250508190555060125460145482612a009190613f20565b612a0a9190613fa9565b60176000828254612a1b9190613d14565b92505081905550612b3e565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a8257506000600e54115b15612b3d576064600e5486612a979190613f20565b612aa19190613fa9565b9050600e5460115482612ab49190613f20565b612abe9190613fa9565b60186000828254612acf9190613d14565b92505081905550600e54600f5482612ae79190613f20565b612af19190613fa9565b60166000828254612b029190613d14565b92505081905550600e5460105482612b1a9190613f20565b612b249190613fa9565b60176000828254612b359190613d14565b925050819055505b5b6000811115612b5357612b52873083612f33565b5b8085612b5f9190614bd3565b94505b612b6d878787612f33565b601954601281905550505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be790614c79565b60405180910390fd5b612bfc82600083613468565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7990614d0b565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612d359190613a1c565b60405180910390a3612d498360008461346d565b505050565b612d56611e78565b73ffffffffffffffffffffffffffffffffffffffff16612d74610fbd565b73ffffffffffffffffffffffffffffffffffffffff1614612dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc190614d77565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9a90614925565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300a906149b7565b60405180910390fd5b61301e838383613468565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156130a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309b90614e09565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516131929190613a1c565b60405180910390a36131a584848461346d565b50505050565b60006131b630610e4d565b905060006017546016546018546131cd9190613d14565b6131d79190613d14565b90506000808314806131e95750600082145b156131f657505050613466565b6014600b546132059190613f20565b83111561321e576014600b5461321b9190613f20565b92505b6000600283601854866132319190613f20565b61323b9190613fa9565b6132459190613fa9565b9050600081856132559190614bd3565b9050600047905061326582613472565b600081476132739190614bd3565b9050600086601654836132869190613f20565b6132909190613fa9565b9050600087601754846132a39190613f20565b6132ad9190613fa9565b905060008183856132be9190614bd3565b6132c89190614bd3565b90506000601881905550600060168190555060006017819055506000871180156132f25750600081115b1561333f5761330187826136be565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260185460405161333693929190614e29565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516133859061470e565b60006040518083038185875af1925050503d80600081146133c2576040519150601f19603f3d011682016040523d82523d6000602084013e6133c7565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516134139061470e565b60006040518083038185875af1925050503d8060008114613450576040519150601f19603f3d011682016040523d82523d6000602084013e613455565b606091505b505080985050505050505050505050505b565b505050565b505050565b6000600267ffffffffffffffff81111561348f5761348e614e60565b5b6040519080825280602002602001820160405280156134bd5781602001602082028036833780820191505090505b50905030816000815181106134d5576134d4614e8f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561357557600080fd5b505afa158015613589573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135ad9190614474565b816001815181106135c1576135c0614e8f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613626307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611e80565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613688959493929190614f7c565b600060405180830381600087803b1580156136a257600080fd5b505af11580156136b6573d6000803e3d6000fd5b505050505050565b6136e9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611e80565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161377096959493929190614505565b6060604051808303818588803b15801561378957600080fd5b505af115801561379d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906137c29190614566565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138035780820151818401526020810190506137e8565b83811115613812576000848401525b50505050565b6000601f19601f8301169050919050565b6000613834826137c9565b61383e81856137d4565b935061384e8185602086016137e5565b61385781613818565b840191505092915050565b6000602082019050818103600083015261387c8184613829565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138b482613889565b9050919050565b6138c4816138a9565b81146138cf57600080fd5b50565b6000813590506138e1816138bb565b92915050565b6000819050919050565b6138fa816138e7565b811461390557600080fd5b50565b600081359050613917816138f1565b92915050565b6000806040838503121561393457613933613884565b5b6000613942858286016138d2565b925050602061395385828601613908565b9150509250929050565b60008115159050919050565b6139728161395d565b82525050565b600060208201905061398d6000830184613969565b92915050565b6000819050919050565b60006139b86139b36139ae84613889565b613993565b613889565b9050919050565b60006139ca8261399d565b9050919050565b60006139dc826139bf565b9050919050565b6139ec816139d1565b82525050565b6000602082019050613a0760008301846139e3565b92915050565b613a16816138e7565b82525050565b6000602082019050613a316000830184613a0d565b92915050565b600080600060608486031215613a5057613a4f613884565b5b6000613a5e868287016138d2565b9350506020613a6f868287016138d2565b9250506040613a8086828701613908565b9150509250925092565b613a93816138a9565b82525050565b6000602082019050613aae6000830184613a8a565b92915050565b600060ff82169050919050565b613aca81613ab4565b82525050565b6000602082019050613ae56000830184613ac1565b92915050565b600060208284031215613b0157613b00613884565b5b6000613b0f84828501613908565b91505092915050565b60008060408385031215613b2f57613b2e613884565b5b6000613b3d858286016138d2565b9250506020613b4e858286016138d2565b9150509250929050565b600060208284031215613b6e57613b6d613884565b5b6000613b7c848285016138d2565b91505092915050565b613b8e8161395d565b8114613b9957600080fd5b50565b600081359050613bab81613b85565b92915050565b60008060408385031215613bc857613bc7613884565b5b6000613bd6858286016138d2565b9250506020613be785828601613b9c565b9150509250929050565b600080600060608486031215613c0a57613c09613884565b5b6000613c1886828701613908565b9350506020613c2986828701613908565b9250506040613c3a86828701613908565b9150509250925092565b60008060408385031215613c5b57613c5a613884565b5b6000613c6985828601613908565b9250506020613c7a85828601613908565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ccb57607f821691505b60208210811415613cdf57613cde613c84565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d1f826138e7565b9150613d2a836138e7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d5f57613d5e613ce5565b5b828201905092915050565b7f45524332303a2043616e6e6f7420736574203120746f207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613dc66023836137d4565b9150613dd182613d6a565b604082019050919050565b60006020820190508181036000830152613df581613db9565b9050919050565b7f45524332303a2043616e6e6f7420736574203220746f207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e586023836137d4565b9150613e6382613dfc565b604082019050919050565b60006020820190508181036000830152613e8781613e4b565b9050919050565b7f45524332303a204d757374206b656570206665657320617420313525206f722060008201527f6c65737300000000000000000000000000000000000000000000000000000000602082015250565b6000613eea6024836137d4565b9150613ef582613e8e565b604082019050919050565b60006020820190508181036000830152613f1981613edd565b9050919050565b6000613f2b826138e7565b9150613f36836138e7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f6f57613f6e613ce5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613fb4826138e7565b9150613fbf836138e7565b925082613fcf57613fce613f7a565b5b828204905092915050565b7f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460008201527f68616e20302e3525000000000000000000000000000000000000000000000000602082015250565b60006140366028836137d4565b915061404182613fda565b604082019050919050565b6000602082019050818103600083015261406581614029565b9050919050565b7f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560008201527f72207468616e20302e3525000000000000000000000000000000000000000000602082015250565b60006140c8602b836137d4565b91506140d38261406c565b604082019050919050565b600060208201905081810360008301526140f7816140bb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061415a6025836137d4565b9150614165826140fe565b604082019050919050565b600060208201905081810360008301526141898161414d565b9050919050565b60008151905061419f816138f1565b92915050565b6000602082840312156141bb576141ba613884565b5b60006141c984828501614190565b91505092915050565b7f5468697320746f6b656e20646f6573206e6f7420657869737420696e2074686560008201527f20636f6e74726163740000000000000000000000000000000000000000000000602082015250565b600061422e6029836137d4565b9150614239826141d2565b604082019050919050565b6000602082019050818103600083015261425d81614221565b9050919050565b60006040820190506142796000830185613a8a565b6142866020830184613a0d565b9392505050565b60008151905061429c81613b85565b92915050565b6000602082840312156142b8576142b7613884565b5b60006142c68482850161428d565b91505092915050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760008201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000602082015250565b600061432b603c836137d4565b9150614336826142cf565b604082019050919050565b6000602082019050818103600083015261435a8161431e565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760008201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000602082015250565b60006143bd603b836137d4565b91506143c882614361565b604082019050919050565b600060208201905081810360008301526143ec816143b0565b9050919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b60006144296017836137d4565b9150614434826143f3565b602082019050919050565b600060208201905081810360008301526144588161441c565b9050919050565b60008151905061446e816138bb565b92915050565b60006020828403121561448a57614489613884565b5b60006144988482850161445f565b91505092915050565b60006040820190506144b66000830185613a8a565b6144c36020830184613a8a565b9392505050565b6000819050919050565b60006144ef6144ea6144e5846144ca565b613993565b6138e7565b9050919050565b6144ff816144d4565b82525050565b600060c08201905061451a6000830189613a8a565b6145276020830188613a0d565b61453460408301876144f6565b61454160608301866144f6565b61454e6080830185613a8a565b61455b60a0830184613a0d565b979650505050505050565b60008060006060848603121561457f5761457e613884565b5b600061458d86828701614190565b935050602061459e86828701614190565b92505060406145af86828701614190565b9150509250925092565b7f45524332303a2043616e6e6f742073657420746f207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006146156021836137d4565b9150614620826145b9565b604082019050919050565b6000602082019050818103600083015261464481614608565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146a76026836137d4565b91506146b28261464b565b604082019050919050565b600060208201905081810360008301526146d68161469a565b9050919050565b600081905092915050565b50565b60006146f86000836146dd565b9150614703826146e8565b600082019050919050565b6000614719826146eb565b9150819050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061477f6024836137d4565b915061478a82614723565b604082019050919050565b600060208201905081810360008301526147ae81614772565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006148116022836137d4565b915061481c826147b5565b604082019050919050565b6000602082019050818103600083015261484081614804565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061487d601d836137d4565b915061488882614847565b602082019050919050565b600060208201905081810360008301526148ac81614870565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061490f6025836137d4565b915061491a826148b3565b604082019050919050565b6000602082019050818103600083015261493e81614902565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006149a16023836137d4565b91506149ac82614945565b604082019050919050565b600060208201905081810360008301526149d081614994565b9050919050565b7f45524332303a2054726164696e67206973206e6f74206163746976652e000000600082015250565b6000614a0d601d836137d4565b9150614a18826149d7565b602082019050919050565b60006020820190508181036000830152614a3c81614a00565b9050919050565b7f45524332303a20427579207472616e7366657220616d6f756e7420657863656560008201527f647320746865206d61785472616e73616374696f6e416d6f756e742e00000000602082015250565b6000614a9f603c836137d4565b9150614aaa82614a43565b604082019050919050565b60006020820190508181036000830152614ace81614a92565b9050919050565b7f45524332303a204d61782077616c6c6574206578636565646564000000000000600082015250565b6000614b0b601a836137d4565b9150614b1682614ad5565b602082019050919050565b60006020820190508181036000830152614b3a81614afe565b9050919050565b7f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560008201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e000000602082015250565b6000614b9d603d836137d4565b9150614ba882614b41565b604082019050919050565b60006020820190508181036000830152614bcc81614b90565b9050919050565b6000614bde826138e7565b9150614be9836138e7565b925082821015614bfc57614bfb613ce5565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c636021836137d4565b9150614c6e82614c07565b604082019050919050565b60006020820190508181036000830152614c9281614c56565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614cf56022836137d4565b9150614d0082614c99565b604082019050919050565b60006020820190508181036000830152614d2481614ce8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614d616020836137d4565b9150614d6c82614d2b565b602082019050919050565b60006020820190508181036000830152614d9081614d54565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614df36026836137d4565b9150614dfe82614d97565b604082019050919050565b60006020820190508181036000830152614e2281614de6565b9050919050565b6000606082019050614e3e6000830186613a0d565b614e4b6020830185613a0d565b614e586040830184613a0d565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ef3816138a9565b82525050565b6000614f058383614eea565b60208301905092915050565b6000602082019050919050565b6000614f2982614ebe565b614f338185614ec9565b9350614f3e83614eda565b8060005b83811015614f6f578151614f568882614ef9565b9750614f6183614f11565b925050600181019050614f42565b5085935050505092915050565b600060a082019050614f916000830188613a0d565b614f9e60208301876144f6565b8181036040830152614fb08186614f1e565b9050614fbf6060830185613a8a565b614fcc6080830184613a0d565b969550505050505056fea2646970667358221220856a9d4a995a2f6f2d9015ab3c8d9c1d91bd83f41c73655019a3dbb9838302c964736f6c63430008090033

Deployed Bytecode Sourcemap

27527:14718:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9534:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12035:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27575:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10663:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12857:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27668:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10505:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13561:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30953:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27633:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34072:601;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35887:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28198:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27760:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28018:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10834:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3147:103;;;;;;;;;;;;;:::i;:::-;;33105:134;;;;;;;;;;;;;:::i;:::-;;32953:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33247:378;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2506:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9753:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32438:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14334:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11217:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27978:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35017:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33633:431;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27863:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35398:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27792:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31951:479;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27824:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28058:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11514:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31044:899;;;;;;;;;;;;;:::i;:::-;;27905:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34681:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3405:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35207:183;;;;;;;;;;;;;:::i;:::-;;27945:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9534:100;9588:13;9621:5;9614:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9534:100;:::o;12035:242::-;12154:4;12176:13;12192:12;:10;:12::i;:::-;12176:28;;12215:32;12224:5;12231:7;12240:6;12215:8;:32::i;:::-;12265:4;12258:11;;;12035:242;;;;:::o;27575:51::-;;;:::o;10663:108::-;10724:7;10751:12;;10744:19;;10663:108;:::o;12857:295::-;12988:4;13005:15;13023:12;:10;:12::i;:::-;13005:30;;13046:38;13062:4;13068:7;13077:6;13046:15;:38::i;:::-;13095:27;13105:4;13111:2;13115:6;13095:9;:27::i;:::-;13140:4;13133:11;;;12857:295;;;;;:::o;27668:53::-;27714:6;27668:53;:::o;10505:93::-;10563:5;10588:2;10581:9;;10505:93;:::o;13561:270::-;13676:4;13698:13;13714:12;:10;:12::i;:::-;13698:28;;13737:64;13746:5;13753:7;13790:10;13762:25;13772:5;13779:7;13762:9;:25::i;:::-;:38;;;;:::i;:::-;13737:8;:64::i;:::-;13819:4;13812:11;;;13561:270;;;;:::o;30953:83::-;31003:25;31009:10;31021:6;31003:5;:25::i;:::-;30953:83;:::o;27633:28::-;;;;;;;;;;;;;:::o;34072:601::-;2392:13;:11;:13::i;:::-;34233:1:::1;34202:33;;:19;:33;;;;34194:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34325:1;34294:33;;:19;:33;;;;34286:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34378:18;34399:10;;;;;;;;;;;34378:31;;34420:18;34441:10;;;;;;;;;;;34420:31;;34475:19;34462:10;;:32;;;;;;;;;;;;;;;;;;34518:19;34505:10;;:32;;;;;;;;;;;;;;;;;;34590:10;34553:48;;34578:10;;;;;;;;;;;34553:48;;;;;;;;;;;;34654:10;34617:48;;34642:10;;;;;;;;;;;34617:48;;;;;;;;;;;;34183:490;;34072:601:::0;;:::o;35887:126::-;35953:4;35977:19;:28;35997:7;35977:28;;;;;;;;;;;;;;;;;;;;;;;;;35970:35;;35887:126;;;:::o;28198:28::-;;;;:::o;27760:25::-;;;;;;;;;;;;;:::o;28018:31::-;;;;;;;;;;;;;:::o;10834:177::-;10953:7;10985:9;:18;10995:7;10985:18;;;;;;;;;;;;;;;;10978:25;;10834:177;;;:::o;3147:103::-;2392:13;:11;:13::i;:::-;3212:30:::1;3239:1;3212:18;:30::i;:::-;3147:103::o:0;33105:134::-;2392:13;:11;:13::i;:::-;33171::::1;:11;:13::i;:::-;33159:9;:25;;;;33218:13;:11;:13::i;:::-;33195:20;:36;;;;33105:134::o:0;32953:144::-;2392:13;:11;:13::i;:::-;33085:4:::1;33043:31;:39;33075:6;33043:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32953:144:::0;;:::o;33247:378::-;2392:13;:11;:13::i;:::-;33381:11:::1;33368:10;:24;;;;33416:11;33403:10;:24;;;;33456:16;33438:15;:34;;;;33524:15;;33511:10;;33498;;:23;;;;:::i;:::-;:41;;;;:::i;:::-;33483:12;:56;;;;33574:2;33558:12;;:18;;33550:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33247:378:::0;;;:::o;2506:87::-;2552:7;2579:6;;;;;;;;;;;2572:13;;2506:87;:::o;9753:104::-;9809:13;9842:7;9835:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9753:104;:::o;32438:507::-;2392:13;:11;:13::i;:::-;32632:4:::1;32627:1;32611:13;:11;:13::i;:::-;:17;;;;:::i;:::-;32610:26;;;;:::i;:::-;32596:9;:41;;32574:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;32780:4;32775:1;32759:13;:11;:13::i;:::-;:17;;;;:::i;:::-;32758:26;;;;:::i;:::-;32738:15;:47;;32716:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;32879:15;32867:9;:27;;;;32928:9;32905:20;:32;;;;32438:507:::0;;:::o;14334:505::-;14454:4;14476:13;14492:12;:10;:12::i;:::-;14476:28;;14515:24;14542:25;14552:5;14559:7;14542:9;:25::i;:::-;14515:52;;14620:15;14600:16;:35;;14578:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;14736:60;14745:5;14752:7;14780:15;14761:16;:34;14736:8;:60::i;:::-;14827:4;14820:11;;;;14334:505;;;;:::o;11217:234::-;11332:4;11354:13;11370:12;:10;:12::i;:::-;11354:28;;11393;11403:5;11410:2;11414:6;11393:9;:28::i;:::-;11439:4;11432:11;;;11217:234;;;;:::o;27978:33::-;;;;;;;;;;;;;:::o;35017:182::-;2392:13;:11;:13::i;:::-;35133:8:::1;35102:19;:28;35122:7;35102:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35173:7;35157:34;;;35182:8;35157:34;;;;;;:::i;:::-;;;;;;;;35017:182:::0;;:::o;33633:431::-;2392:13;:11;:13::i;:::-;33772:12:::1;33758:11;:26;;;;33809:12;33795:11;:26;;;;33851:17;33832:16;:36;;;;33923:16;;33909:11;;33895;;:25;;;;:::i;:::-;:44;;;;:::i;:::-;33879:13;:60;;;;33964:13;;33950:11;:27;;;;34013:2;33996:13;;:19;;33988:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33633:431:::0;;;:::o;27863:35::-;;;;:::o;35398:287::-;2392:13;:11;:13::i;:::-;35515:1:::1;35483:3;35476:21;;;35506:4;35476:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;35468:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;35573:14;35597:3;35590:21;;;35620:4;35590:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35573:53;;35644:3;35637:20;;;35658:10;35670:6;35637:40;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35457:228;35398:287:::0;:::o;27792:25::-;;;;;;;;;;;;;:::o;31951:479::-;32032:4;2392:13;:11;:13::i;:::-;32106:6:::1;32101:1;32085:13;:11;:13::i;:::-;:17;;;;:::i;:::-;32084:28;;;;:::i;:::-;32071:9;:41;;32049:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;32268:4;32263:1;32247:13;:11;:13::i;:::-;:17;;;;:::i;:::-;32246:26;;;;:::i;:::-;32233:9;:39;;32211:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;32391:9;32370:18;:30;;;;32418:4;32411:11;;31951:479:::0;;;:::o;27824:30::-;;;;;;;;;;;;;:::o;28058:27::-;;;;:::o;11514:201::-;11648:7;11680:11;:18;11692:5;11680:18;;;;;;;;;;;;;;;:27;11699:7;11680:27;;;;;;;;;;;;;;;;11673:34;;11514:201;;;;:::o;31044:899::-;2392:13;:11;:13::i;:::-;31099::::1;;;;;;;;;;;31098:14;31090:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;31187:15;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31169:55;;;31247:4;31267:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31169:131;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31153:13;;:147;;;;;;;;;;;;;;;;;;31311:66;31328:4;31343:13;;;;;;;;;;;31359:17;31311:8;:66::i;:::-;31395:13;;;;;;;;;;;31388:29;;;31440:15;31471:17;31388:111;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31512:58;31549:13;;;;;;;;;;;31565:4;31512:28;:58::i;:::-;31581:55;31615:13;;;;;;;;;;;31631:4;31581:25;:55::i;:::-;31649:15;:31;;;31688:21;31733:4;31753:24;31771:4;31753:9;:24::i;:::-;31792:1;31808::::0;31824:10:::1;;;;;;;;;;;31849:15;31649:226;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31902:4;31886:13;;:20;;;;;;;;;;;;;;;;;;31931:4;31917:11;;:18;;;;;;;;;;;;;;;;;;31044:899::o:0;27905:33::-;;;;:::o;34681:328::-;2392:13;:11;:13::i;:::-;34804:1:::1;34776:30;;:16;:30;;;;34768:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;34855:17;34875:15;;;;;;;;;;;34855:35;;34919:16;34901:15;;:34;;;;;;;;;;;;;;;;;;34991:9;34951:50;;34974:15;;;;;;;;;;;34951:50;;;;;;;;;;;;34757:252;34681:328:::0;:::o;3405:238::-;2392:13;:11;:13::i;:::-;3528:1:::1;3508:22;;:8;:22;;;;3486:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;3607:28;3626:8;3607:18;:28::i;:::-;3405:238:::0;:::o;35207:183::-;2392:13;:11;:13::i;:::-;35263:12:::1;35308:10;35300:24;;35346:21;35300:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35286:96;;;;;35252:138;35207:183::o:0;27945:24::-;;;;:::o;1118:98::-;1171:7;1198:10;1191:17;;1118:98;:::o;18467:380::-;18620:1;18603:19;;:5;:19;;;;18595:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18701:1;18682:21;;:7;:21;;;;18674:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18785:6;18755:11;:18;18767:5;18755:18;;;;;;;;;;;;;;;:27;18774:7;18755:27;;;;;;;;;;;;;;;:36;;;;18823:7;18807:32;;18816:5;18807:32;;;18832:6;18807:32;;;;;;:::i;:::-;;;;;;;;18467:380;;;:::o;19138:502::-;19273:24;19300:25;19310:5;19317:7;19300:9;:25::i;:::-;19273:52;;19360:17;19340:16;:37;19336:297;;19440:6;19420:16;:26;;19394:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;19555:51;19564:5;19571:7;19599:6;19580:16;:25;19555:8;:51::i;:::-;19336:297;19262:378;19138:502;;;:::o;36021:3626::-;36169:1;36153:18;;:4;:18;;;;36145:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36246:1;36232:16;;:2;:16;;;;36224:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;36315:1;36305:6;:11;36301:93;;;36333:28;36349:4;36355:2;36359:1;36333:15;:28::i;:::-;36376:7;;36301:93;36432:7;:5;:7::i;:::-;36424:15;;:4;:15;;;;:45;;;;;36462:7;:5;:7::i;:::-;36456:13;;:2;:13;;;;36424:45;:78;;;;;36500:1;36486:16;;:2;:16;;;;36424:78;:112;;;;;27714:6;36519:17;;:2;:17;;;;36424:112;:138;;;;;36554:8;;;;;;;;;;;36553:9;36424:138;36406:1511;;;36594:13;;;;;;;;;;;36589:210;;36658:19;:25;36678:4;36658:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;36687:19;:23;36707:2;36687:23;;;;;;;;;;;;;;;;;;;;;;;;;36658:52;36628:155;;;;;;;;;;;;:::i;:::-;;;;;;;;;36589:210;36861:25;:31;36887:4;36861:31;;;;;;;;;;;;;;;;;;;;;;;;;:88;;;;;36914:31;:35;36946:2;36914:35;;;;;;;;;;;;;;;;;;;;;;;;;36913:36;36861:88;36839:1067;;;37024:20;;37014:6;:30;;36984:164;;;;;;;;;;;;:::i;:::-;;;;;;;;;37223:9;;37206:13;37216:2;37206:9;:13::i;:::-;37197:6;:22;;;;:::i;:::-;:35;;37167:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;36839:1067;;;37384:25;:29;37410:2;37384:29;;;;;;;;;;;;;;;;;;;;;;;;;:88;;;;;37435:31;:37;37467:4;37435:37;;;;;;;;;;;;;;;;;;;;;;;;;37434:38;37384:88;37362:544;;;37547:20;;37537:6;:30;;37507:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;37362:544;;;37699:31;:35;37731:2;37699:35;;;;;;;;;;;;;;;;;;;;;;;;;37694:212;;37811:9;;37794:13;37804:2;37794:9;:13::i;:::-;37785:6;:22;;;;:::i;:::-;:35;;37755:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;37694:212;37362:544;36839:1067;36406:1511;37929:28;37960:24;37978:4;37960:9;:24::i;:::-;37929:55;;37997:12;38036:18;;38012:20;:42;;37997:57;;38085:7;:35;;;;;38109:11;;;;;;;;;;;38085:35;:61;;;;;38138:8;;;;;;;;;;;38137:9;38085:61;:110;;;;;38164:25;:31;38190:4;38164:31;;;;;;;;;;;;;;;;;;;;;;;;;38163:32;38085:110;:153;;;;;38213:19;:25;38233:4;38213:25;;;;;;;;;;;;;;;;;;;;;;;;;38212:26;38085:153;:194;;;;;38256:19;:23;38276:2;38256:23;;;;;;;;;;;;;;;;;;;;;;;;;38255:24;38085:194;38067:326;;;38317:4;38306:8;;:15;;;;;;;;;;;;;;;;;;38338:10;:8;:10::i;:::-;38376:5;38365:8;;:16;;;;;;;;;;;;;;;;;;38067:326;38405:12;38421:8;;;;;;;;;;;38420:9;38405:24;;38446:19;:25;38466:4;38446:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38475:19;:23;38495:2;38475:23;;;;;;;;;;;;;;;;;;;;;;;;;38446:52;38442:100;;;38525:5;38515:15;;38442:100;38554:12;38587:7;38583:973;;;38639:25;:29;38665:2;38639:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;38688:1;38672:13;;:17;38639:50;38635:772;;;38742:3;38726:13;;38717:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;38710:35;;38814:13;;38794:16;;38787:4;:23;;;;:::i;:::-;38786:41;;;;:::i;:::-;38764:18;;:63;;;;;;;:::i;:::-;;;;;;;;38894:13;;38879:11;;38872:4;:18;;;;:::i;:::-;38871:36;;;;:::i;:::-;38846:21;;:61;;;;;;;:::i;:::-;;;;;;;;38974:13;;38959:11;;38952:4;:18;;;;:::i;:::-;38951:36;;;;:::i;:::-;38926:21;;:61;;;;;;;:::i;:::-;;;;;;;;38635:772;;;39049:25;:31;39075:4;39049:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;39099:1;39084:12;;:16;39049:51;39045:362;;;39152:3;39137:12;;39128:6;:21;;;;:::i;:::-;:27;;;;:::i;:::-;39121:34;;39223:12;;39204:15;;39197:4;:22;;;;:::i;:::-;39196:39;;;;:::i;:::-;39174:18;;:61;;;;;;;:::i;:::-;;;;;;;;39301:12;;39287:10;;39280:4;:17;;;;:::i;:::-;39279:34;;;;:::i;:::-;39254:21;;:59;;;;;;;:::i;:::-;;;;;;;;39379:12;;39365:10;;39358:4;:17;;;;:::i;:::-;39357:34;;;;:::i;:::-;39332:21;;:59;;;;;;;:::i;:::-;;;;;;;;39045:362;38635:772;39434:1;39427:4;:8;39423:91;;;39456:42;39472:4;39486;39493;39456:15;:42::i;:::-;39423:91;39540:4;39530:14;;;;;:::i;:::-;;;38583:973;39568:33;39584:4;39590:2;39594:6;39568:15;:33::i;:::-;39628:11;;39612:13;:27;;;;36134:3513;;;;36021:3626;;;;:::o;17354:675::-;17457:1;17438:21;;:7;:21;;;;17430:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17510:49;17531:7;17548:1;17552:6;17510:20;:49::i;:::-;17572:22;17597:9;:18;17607:7;17597:18;;;;;;;;;;;;;;;;17572:43;;17652:6;17634:14;:24;;17626:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17771:6;17754:14;:23;17733:9;:18;17743:7;17733:18;;;;;;;;;;;;;;;:44;;;;17888:6;17872:12;;:22;;;;;;;;;;;17949:1;17923:37;;17932:7;17923:37;;;17953:6;17923:37;;;;;;:::i;:::-;;;;;;;;17973:48;17993:7;18010:1;18014:6;17973:19;:48::i;:::-;17419:610;17354:675;;:::o;2671:132::-;2746:12;:10;:12::i;:::-;2735:23;;:7;:5;:7::i;:::-;:23;;;2727:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2671:132::o;3803:191::-;3877:16;3896:6;;;;;;;;;;;3877:25;;3922:8;3913:6;;:17;;;;;;;;;;;;;;;;;;3977:8;3946:40;;3967:8;3946:40;;;;;;;;;;;;3866:128;3803:191;:::o;35693:186::-;35810:5;35776:25;:31;35802:4;35776:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35865:5;35831:40;;35859:4;35831:40;;;;;;;;;;;;35693:186;;:::o;15309:877::-;15456:1;15440:18;;:4;:18;;;;15432:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15533:1;15519:16;;:2;:16;;;;15511:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15588:38;15609:4;15615:2;15619:6;15588:20;:38::i;:::-;15639:19;15661:9;:15;15671:4;15661:15;;;;;;;;;;;;;;;;15639:37;;15724:6;15709:11;:21;;15687:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;15864:6;15850:11;:20;15832:9;:15;15842:4;15832:15;;;;;;;;;;;;;;;:38;;;;16067:6;16050:9;:13;16060:2;16050:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;16117:2;16102:26;;16111:4;16102:26;;;16121:6;16102:26;;;;;;:::i;:::-;;;;;;;;16141:37;16161:4;16167:2;16171:6;16141:19;:37::i;:::-;15421:765;15309:877;;;:::o;40542:1700::-;40581:23;40607:24;40625:4;40607:9;:24::i;:::-;40581:50;;40642:25;40715:21;;40691;;40670:18;;:42;;;;:::i;:::-;:66;;;;:::i;:::-;40642:94;;40747:12;40795:1;40776:15;:20;:46;;;;40821:1;40800:17;:22;40776:46;40772:85;;;40839:7;;;;;40772:85;40912:2;40891:18;;:23;;;;:::i;:::-;40873:15;:41;40869:115;;;40970:2;40949:18;;:23;;;;:::i;:::-;40931:41;;40869:115;40996:23;41083:1;41063:17;41041:18;;41023:15;:36;;;;:::i;:::-;41022:58;;;;:::i;:::-;:62;;;;:::i;:::-;40996:88;;41095:26;41142:15;41124;:33;;;;:::i;:::-;41095:62;;41170:25;41198:21;41170:49;;41232:36;41249:18;41232:16;:36::i;:::-;41281:18;41326:17;41302:21;:41;;;;:::i;:::-;41281:62;;41356:26;41422:17;41398:21;;41385:10;:34;;;;:::i;:::-;:54;;;;:::i;:::-;41356:83;;41450:26;41516:17;41492:21;;41479:10;:34;;;;:::i;:::-;:54;;;;:::i;:::-;41450:83;;41544:23;41604:18;41583;41570:10;:31;;;;:::i;:::-;:52;;;;:::i;:::-;41544:78;;41656:1;41635:18;:22;;;;41692:1;41668:21;:25;;;;41728:1;41704:21;:25;;;;41764:1;41746:15;:19;:42;;;;;41787:1;41769:15;:19;41746:42;41742:278;;;41805:46;41818:15;41835;41805:12;:46::i;:::-;41871:137;41904:18;41941:15;41975:18;;41871:137;;;;;;;;:::i;:::-;;;;;;;;41742:278;42054:10;;;;;;;;;;;42046:24;;42092:18;42046:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42032:93;;;;;42160:10;;;;;;;;;;;42152:24;;42198:21;42152:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42138:96;;;;;40570:1672;;;;;;;;;;40542:1700;:::o;20240:125::-;;;;:::o;20969:124::-;;;;:::o;39655:501::-;39721:21;39759:1;39745:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39721:40;;39790:4;39772;39777:1;39772:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;39816:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39806:4;39811:1;39806:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;39851:62;39868:4;39883:15;39901:11;39851:8;:62::i;:::-;39952:15;:66;;;40033:11;40059:1;40075:4;40102;40122:15;39952:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39710:446;39655:501;:::o;40164:370::-;40245:62;40262:4;40277:15;40295:11;40245:8;:62::i;:::-;40320:15;:31;;;40359:9;40392:4;40412:11;40438:1;40454;40470:15;;;;;;;;;;;40500;40320:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;40164:370;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:60::-;3522:3;3543:5;3536:12;;3494:60;;;:::o;3560:142::-;3610:9;3643:53;3661:34;3670:24;3688:5;3670:24;:::i;:::-;3661:34;:::i;:::-;3643:53;:::i;:::-;3630:66;;3560:142;;;:::o;3708:126::-;3758:9;3791:37;3822:5;3791:37;:::i;:::-;3778:50;;3708:126;;;:::o;3840:153::-;3917:9;3950:37;3981:5;3950:37;:::i;:::-;3937:50;;3840:153;;;:::o;3999:185::-;4113:64;4171:5;4113:64;:::i;:::-;4108:3;4101:77;3999:185;;:::o;4190:276::-;4310:4;4348:2;4337:9;4333:18;4325:26;;4361:98;4456:1;4445:9;4441:17;4432:6;4361:98;:::i;:::-;4190:276;;;;:::o;4472:118::-;4559:24;4577:5;4559:24;:::i;:::-;4554:3;4547:37;4472:118;;:::o;4596:222::-;4689:4;4727:2;4716:9;4712:18;4704:26;;4740:71;4808:1;4797:9;4793:17;4784:6;4740:71;:::i;:::-;4596:222;;;;:::o;4824:619::-;4901:6;4909;4917;4966:2;4954:9;4945:7;4941:23;4937:32;4934:119;;;4972:79;;:::i;:::-;4934:119;5092:1;5117:53;5162:7;5153:6;5142:9;5138:22;5117:53;:::i;:::-;5107:63;;5063:117;5219:2;5245:53;5290:7;5281:6;5270:9;5266:22;5245:53;:::i;:::-;5235:63;;5190:118;5347:2;5373:53;5418:7;5409:6;5398:9;5394:22;5373:53;:::i;:::-;5363:63;;5318:118;4824:619;;;;;:::o;5449:118::-;5536:24;5554:5;5536:24;:::i;:::-;5531:3;5524:37;5449:118;;:::o;5573:222::-;5666:4;5704:2;5693:9;5689:18;5681:26;;5717:71;5785:1;5774:9;5770:17;5761:6;5717:71;:::i;:::-;5573:222;;;;:::o;5801:86::-;5836:7;5876:4;5869:5;5865:16;5854:27;;5801:86;;;:::o;5893:112::-;5976:22;5992:5;5976:22;:::i;:::-;5971:3;5964:35;5893:112;;:::o;6011:214::-;6100:4;6138:2;6127:9;6123:18;6115:26;;6151:67;6215:1;6204:9;6200:17;6191:6;6151:67;:::i;:::-;6011:214;;;;:::o;6231:329::-;6290:6;6339:2;6327:9;6318:7;6314:23;6310:32;6307:119;;;6345:79;;:::i;:::-;6307:119;6465:1;6490:53;6535:7;6526:6;6515:9;6511:22;6490:53;:::i;:::-;6480:63;;6436:117;6231:329;;;;:::o;6566:474::-;6634:6;6642;6691:2;6679:9;6670:7;6666:23;6662:32;6659:119;;;6697:79;;:::i;:::-;6659:119;6817:1;6842:53;6887:7;6878:6;6867:9;6863:22;6842:53;:::i;:::-;6832:63;;6788:117;6944:2;6970:53;7015:7;7006:6;6995:9;6991:22;6970:53;:::i;:::-;6960:63;;6915:118;6566:474;;;;;:::o;7046:329::-;7105:6;7154:2;7142:9;7133:7;7129:23;7125:32;7122:119;;;7160:79;;:::i;:::-;7122:119;7280:1;7305:53;7350:7;7341:6;7330:9;7326:22;7305:53;:::i;:::-;7295:63;;7251:117;7046:329;;;;:::o;7381:116::-;7451:21;7466:5;7451:21;:::i;:::-;7444:5;7441:32;7431:60;;7487:1;7484;7477:12;7431:60;7381:116;:::o;7503:133::-;7546:5;7584:6;7571:20;7562:29;;7600:30;7624:5;7600:30;:::i;:::-;7503:133;;;;:::o;7642:468::-;7707:6;7715;7764:2;7752:9;7743:7;7739:23;7735:32;7732:119;;;7770:79;;:::i;:::-;7732:119;7890:1;7915:53;7960:7;7951:6;7940:9;7936:22;7915:53;:::i;:::-;7905:63;;7861:117;8017:2;8043:50;8085:7;8076:6;8065:9;8061:22;8043:50;:::i;:::-;8033:60;;7988:115;7642:468;;;;;:::o;8116:619::-;8193:6;8201;8209;8258:2;8246:9;8237:7;8233:23;8229:32;8226:119;;;8264:79;;:::i;:::-;8226:119;8384:1;8409:53;8454:7;8445:6;8434:9;8430:22;8409:53;:::i;:::-;8399:63;;8355:117;8511:2;8537:53;8582:7;8573:6;8562:9;8558:22;8537:53;:::i;:::-;8527:63;;8482:118;8639:2;8665:53;8710:7;8701:6;8690:9;8686:22;8665:53;:::i;:::-;8655:63;;8610:118;8116:619;;;;;:::o;8741:474::-;8809:6;8817;8866:2;8854:9;8845:7;8841:23;8837:32;8834:119;;;8872:79;;:::i;:::-;8834:119;8992:1;9017:53;9062:7;9053:6;9042:9;9038:22;9017:53;:::i;:::-;9007:63;;8963:117;9119:2;9145:53;9190:7;9181:6;9170:9;9166:22;9145:53;:::i;:::-;9135:63;;9090:118;8741:474;;;;;:::o;9221:180::-;9269:77;9266:1;9259:88;9366:4;9363:1;9356:15;9390:4;9387:1;9380:15;9407:320;9451:6;9488:1;9482:4;9478:12;9468:22;;9535:1;9529:4;9525:12;9556:18;9546:81;;9612:4;9604:6;9600:17;9590:27;;9546:81;9674:2;9666:6;9663:14;9643:18;9640:38;9637:84;;;9693:18;;:::i;:::-;9637:84;9458:269;9407:320;;;:::o;9733:180::-;9781:77;9778:1;9771:88;9878:4;9875:1;9868:15;9902:4;9899:1;9892:15;9919:305;9959:3;9978:20;9996:1;9978:20;:::i;:::-;9973:25;;10012:20;10030:1;10012:20;:::i;:::-;10007:25;;10166:1;10098:66;10094:74;10091:1;10088:81;10085:107;;;10172:18;;:::i;:::-;10085:107;10216:1;10213;10209:9;10202:16;;9919:305;;;;:::o;10230:222::-;10370:34;10366:1;10358:6;10354:14;10347:58;10439:5;10434:2;10426:6;10422:15;10415:30;10230:222;:::o;10458:366::-;10600:3;10621:67;10685:2;10680:3;10621:67;:::i;:::-;10614:74;;10697:93;10786:3;10697:93;:::i;:::-;10815:2;10810:3;10806:12;10799:19;;10458:366;;;:::o;10830:419::-;10996:4;11034:2;11023:9;11019:18;11011:26;;11083:9;11077:4;11073:20;11069:1;11058:9;11054:17;11047:47;11111:131;11237:4;11111:131;:::i;:::-;11103:139;;10830:419;;;:::o;11255:222::-;11395:34;11391:1;11383:6;11379:14;11372:58;11464:5;11459:2;11451:6;11447:15;11440:30;11255:222;:::o;11483:366::-;11625:3;11646:67;11710:2;11705:3;11646:67;:::i;:::-;11639:74;;11722:93;11811:3;11722:93;:::i;:::-;11840:2;11835:3;11831:12;11824:19;;11483:366;;;:::o;11855:419::-;12021:4;12059:2;12048:9;12044:18;12036:26;;12108:9;12102:4;12098:20;12094:1;12083:9;12079:17;12072:47;12136:131;12262:4;12136:131;:::i;:::-;12128:139;;11855:419;;;:::o;12280:223::-;12420:34;12416:1;12408:6;12404:14;12397:58;12489:6;12484:2;12476:6;12472:15;12465:31;12280:223;:::o;12509:366::-;12651:3;12672:67;12736:2;12731:3;12672:67;:::i;:::-;12665:74;;12748:93;12837:3;12748:93;:::i;:::-;12866:2;12861:3;12857:12;12850:19;;12509:366;;;:::o;12881:419::-;13047:4;13085:2;13074:9;13070:18;13062:26;;13134:9;13128:4;13124:20;13120:1;13109:9;13105:17;13098:47;13162:131;13288:4;13162:131;:::i;:::-;13154:139;;12881:419;;;:::o;13306:348::-;13346:7;13369:20;13387:1;13369:20;:::i;:::-;13364:25;;13403:20;13421:1;13403:20;:::i;:::-;13398:25;;13591:1;13523:66;13519:74;13516:1;13513:81;13508:1;13501:9;13494:17;13490:105;13487:131;;;13598:18;;:::i;:::-;13487:131;13646:1;13643;13639:9;13628:20;;13306:348;;;;:::o;13660:180::-;13708:77;13705:1;13698:88;13805:4;13802:1;13795:15;13829:4;13826:1;13819:15;13846:185;13886:1;13903:20;13921:1;13903:20;:::i;:::-;13898:25;;13937:20;13955:1;13937:20;:::i;:::-;13932:25;;13976:1;13966:35;;13981:18;;:::i;:::-;13966:35;14023:1;14020;14016:9;14011:14;;13846:185;;;;:::o;14037:227::-;14177:34;14173:1;14165:6;14161:14;14154:58;14246:10;14241:2;14233:6;14229:15;14222:35;14037:227;:::o;14270:366::-;14412:3;14433:67;14497:2;14492:3;14433:67;:::i;:::-;14426:74;;14509:93;14598:3;14509:93;:::i;:::-;14627:2;14622:3;14618:12;14611:19;;14270:366;;;:::o;14642:419::-;14808:4;14846:2;14835:9;14831:18;14823:26;;14895:9;14889:4;14885:20;14881:1;14870:9;14866:17;14859:47;14923:131;15049:4;14923:131;:::i;:::-;14915:139;;14642:419;;;:::o;15067:230::-;15207:34;15203:1;15195:6;15191:14;15184:58;15276:13;15271:2;15263:6;15259:15;15252:38;15067:230;:::o;15303:366::-;15445:3;15466:67;15530:2;15525:3;15466:67;:::i;:::-;15459:74;;15542:93;15631:3;15542:93;:::i;:::-;15660:2;15655:3;15651:12;15644:19;;15303:366;;;:::o;15675:419::-;15841:4;15879:2;15868:9;15864:18;15856:26;;15928:9;15922:4;15918:20;15914:1;15903:9;15899:17;15892:47;15956:131;16082:4;15956:131;:::i;:::-;15948:139;;15675:419;;;:::o;16100:224::-;16240:34;16236:1;16228:6;16224:14;16217:58;16309:7;16304:2;16296:6;16292:15;16285:32;16100:224;:::o;16330:366::-;16472:3;16493:67;16557:2;16552:3;16493:67;:::i;:::-;16486:74;;16569:93;16658:3;16569:93;:::i;:::-;16687:2;16682:3;16678:12;16671:19;;16330:366;;;:::o;16702:419::-;16868:4;16906:2;16895:9;16891:18;16883:26;;16955:9;16949:4;16945:20;16941:1;16930:9;16926:17;16919:47;16983:131;17109:4;16983:131;:::i;:::-;16975:139;;16702:419;;;:::o;17127:143::-;17184:5;17215:6;17209:13;17200:22;;17231:33;17258:5;17231:33;:::i;:::-;17127:143;;;;:::o;17276:351::-;17346:6;17395:2;17383:9;17374:7;17370:23;17366:32;17363:119;;;17401:79;;:::i;:::-;17363:119;17521:1;17546:64;17602:7;17593:6;17582:9;17578:22;17546:64;:::i;:::-;17536:74;;17492:128;17276:351;;;;:::o;17633:228::-;17773:34;17769:1;17761:6;17757:14;17750:58;17842:11;17837:2;17829:6;17825:15;17818:36;17633:228;:::o;17867:366::-;18009:3;18030:67;18094:2;18089:3;18030:67;:::i;:::-;18023:74;;18106:93;18195:3;18106:93;:::i;:::-;18224:2;18219:3;18215:12;18208:19;;17867:366;;;:::o;18239:419::-;18405:4;18443:2;18432:9;18428:18;18420:26;;18492:9;18486:4;18482:20;18478:1;18467:9;18463:17;18456:47;18520:131;18646:4;18520:131;:::i;:::-;18512:139;;18239:419;;;:::o;18664:332::-;18785:4;18823:2;18812:9;18808:18;18800:26;;18836:71;18904:1;18893:9;18889:17;18880:6;18836:71;:::i;:::-;18917:72;18985:2;18974:9;18970:18;18961:6;18917:72;:::i;:::-;18664:332;;;;;:::o;19002:137::-;19056:5;19087:6;19081:13;19072:22;;19103:30;19127:5;19103:30;:::i;:::-;19002:137;;;;:::o;19145:345::-;19212:6;19261:2;19249:9;19240:7;19236:23;19232:32;19229:119;;;19267:79;;:::i;:::-;19229:119;19387:1;19412:61;19465:7;19456:6;19445:9;19441:22;19412:61;:::i;:::-;19402:71;;19358:125;19145:345;;;;:::o;19496:247::-;19636:34;19632:1;19624:6;19620:14;19613:58;19705:30;19700:2;19692:6;19688:15;19681:55;19496:247;:::o;19749:366::-;19891:3;19912:67;19976:2;19971:3;19912:67;:::i;:::-;19905:74;;19988:93;20077:3;19988:93;:::i;:::-;20106:2;20101:3;20097:12;20090:19;;19749:366;;;:::o;20121:419::-;20287:4;20325:2;20314:9;20310:18;20302:26;;20374:9;20368:4;20364:20;20360:1;20349:9;20345:17;20338:47;20402:131;20528:4;20402:131;:::i;:::-;20394:139;;20121:419;;;:::o;20546:246::-;20686:34;20682:1;20674:6;20670:14;20663:58;20755:29;20750:2;20742:6;20738:15;20731:54;20546:246;:::o;20798:366::-;20940:3;20961:67;21025:2;21020:3;20961:67;:::i;:::-;20954:74;;21037:93;21126:3;21037:93;:::i;:::-;21155:2;21150:3;21146:12;21139:19;;20798:366;;;:::o;21170:419::-;21336:4;21374:2;21363:9;21359:18;21351:26;;21423:9;21417:4;21413:20;21409:1;21398:9;21394:17;21387:47;21451:131;21577:4;21451:131;:::i;:::-;21443:139;;21170:419;;;:::o;21595:173::-;21735:25;21731:1;21723:6;21719:14;21712:49;21595:173;:::o;21774:366::-;21916:3;21937:67;22001:2;21996:3;21937:67;:::i;:::-;21930:74;;22013:93;22102:3;22013:93;:::i;:::-;22131:2;22126:3;22122:12;22115:19;;21774:366;;;:::o;22146:419::-;22312:4;22350:2;22339:9;22335:18;22327:26;;22399:9;22393:4;22389:20;22385:1;22374:9;22370:17;22363:47;22427:131;22553:4;22427:131;:::i;:::-;22419:139;;22146:419;;;:::o;22571:143::-;22628:5;22659:6;22653:13;22644:22;;22675:33;22702:5;22675:33;:::i;:::-;22571:143;;;;:::o;22720:351::-;22790:6;22839:2;22827:9;22818:7;22814:23;22810:32;22807:119;;;22845:79;;:::i;:::-;22807:119;22965:1;22990:64;23046:7;23037:6;23026:9;23022:22;22990:64;:::i;:::-;22980:74;;22936:128;22720:351;;;;:::o;23077:332::-;23198:4;23236:2;23225:9;23221:18;23213:26;;23249:71;23317:1;23306:9;23302:17;23293:6;23249:71;:::i;:::-;23330:72;23398:2;23387:9;23383:18;23374:6;23330:72;:::i;:::-;23077:332;;;;;:::o;23415:85::-;23460:7;23489:5;23478:16;;23415:85;;;:::o;23506:158::-;23564:9;23597:61;23615:42;23624:32;23650:5;23624:32;:::i;:::-;23615:42;:::i;:::-;23597:61;:::i;:::-;23584:74;;23506:158;;;:::o;23670:147::-;23765:45;23804:5;23765:45;:::i;:::-;23760:3;23753:58;23670:147;;:::o;23823:807::-;24072:4;24110:3;24099:9;24095:19;24087:27;;24124:71;24192:1;24181:9;24177:17;24168:6;24124:71;:::i;:::-;24205:72;24273:2;24262:9;24258:18;24249:6;24205:72;:::i;:::-;24287:80;24363:2;24352:9;24348:18;24339:6;24287:80;:::i;:::-;24377;24453:2;24442:9;24438:18;24429:6;24377:80;:::i;:::-;24467:73;24535:3;24524:9;24520:19;24511:6;24467:73;:::i;:::-;24550;24618:3;24607:9;24603:19;24594:6;24550:73;:::i;:::-;23823:807;;;;;;;;;:::o;24636:663::-;24724:6;24732;24740;24789:2;24777:9;24768:7;24764:23;24760:32;24757:119;;;24795:79;;:::i;:::-;24757:119;24915:1;24940:64;24996:7;24987:6;24976:9;24972:22;24940:64;:::i;:::-;24930:74;;24886:128;25053:2;25079:64;25135:7;25126:6;25115:9;25111:22;25079:64;:::i;:::-;25069:74;;25024:129;25192:2;25218:64;25274:7;25265:6;25254:9;25250:22;25218:64;:::i;:::-;25208:74;;25163:129;24636:663;;;;;:::o;25305:220::-;25445:34;25441:1;25433:6;25429:14;25422:58;25514:3;25509:2;25501:6;25497:15;25490:28;25305:220;:::o;25531:366::-;25673:3;25694:67;25758:2;25753:3;25694:67;:::i;:::-;25687:74;;25770:93;25859:3;25770:93;:::i;:::-;25888:2;25883:3;25879:12;25872:19;;25531:366;;;:::o;25903:419::-;26069:4;26107:2;26096:9;26092:18;26084:26;;26156:9;26150:4;26146:20;26142:1;26131:9;26127:17;26120:47;26184:131;26310:4;26184:131;:::i;:::-;26176:139;;25903:419;;;:::o;26328:225::-;26468:34;26464:1;26456:6;26452:14;26445:58;26537:8;26532:2;26524:6;26520:15;26513:33;26328:225;:::o;26559:366::-;26701:3;26722:67;26786:2;26781:3;26722:67;:::i;:::-;26715:74;;26798:93;26887:3;26798:93;:::i;:::-;26916:2;26911:3;26907:12;26900:19;;26559:366;;;:::o;26931:419::-;27097:4;27135:2;27124:9;27120:18;27112:26;;27184:9;27178:4;27174:20;27170:1;27159:9;27155:17;27148:47;27212:131;27338:4;27212:131;:::i;:::-;27204:139;;26931:419;;;:::o;27356:147::-;27457:11;27494:3;27479:18;;27356:147;;;;:::o;27509:114::-;;:::o;27629:398::-;27788:3;27809:83;27890:1;27885:3;27809:83;:::i;:::-;27802:90;;27901:93;27990:3;27901:93;:::i;:::-;28019:1;28014:3;28010:11;28003:18;;27629:398;;;:::o;28033:379::-;28217:3;28239:147;28382:3;28239:147;:::i;:::-;28232:154;;28403:3;28396:10;;28033:379;;;:::o;28418:223::-;28558:34;28554:1;28546:6;28542:14;28535:58;28627:6;28622:2;28614:6;28610:15;28603:31;28418:223;:::o;28647:366::-;28789:3;28810:67;28874:2;28869:3;28810:67;:::i;:::-;28803:74;;28886:93;28975:3;28886:93;:::i;:::-;29004:2;28999:3;28995:12;28988:19;;28647:366;;;:::o;29019:419::-;29185:4;29223:2;29212:9;29208:18;29200:26;;29272:9;29266:4;29262:20;29258:1;29247:9;29243:17;29236:47;29300:131;29426:4;29300:131;:::i;:::-;29292:139;;29019:419;;;:::o;29444:221::-;29584:34;29580:1;29572:6;29568:14;29561:58;29653:4;29648:2;29640:6;29636:15;29629:29;29444:221;:::o;29671:366::-;29813:3;29834:67;29898:2;29893:3;29834:67;:::i;:::-;29827:74;;29910:93;29999:3;29910:93;:::i;:::-;30028:2;30023:3;30019:12;30012:19;;29671:366;;;:::o;30043:419::-;30209:4;30247:2;30236:9;30232:18;30224:26;;30296:9;30290:4;30286:20;30282:1;30271:9;30267:17;30260:47;30324:131;30450:4;30324:131;:::i;:::-;30316:139;;30043:419;;;:::o;30468:179::-;30608:31;30604:1;30596:6;30592:14;30585:55;30468:179;:::o;30653:366::-;30795:3;30816:67;30880:2;30875:3;30816:67;:::i;:::-;30809:74;;30892:93;30981:3;30892:93;:::i;:::-;31010:2;31005:3;31001:12;30994:19;;30653:366;;;:::o;31025:419::-;31191:4;31229:2;31218:9;31214:18;31206:26;;31278:9;31272:4;31268:20;31264:1;31253:9;31249:17;31242:47;31306:131;31432:4;31306:131;:::i;:::-;31298:139;;31025:419;;;:::o;31450:224::-;31590:34;31586:1;31578:6;31574:14;31567:58;31659:7;31654:2;31646:6;31642:15;31635:32;31450:224;:::o;31680:366::-;31822:3;31843:67;31907:2;31902:3;31843:67;:::i;:::-;31836:74;;31919:93;32008:3;31919:93;:::i;:::-;32037:2;32032:3;32028:12;32021:19;;31680:366;;;:::o;32052:419::-;32218:4;32256:2;32245:9;32241:18;32233:26;;32305:9;32299:4;32295:20;32291:1;32280:9;32276:17;32269:47;32333:131;32459:4;32333:131;:::i;:::-;32325:139;;32052:419;;;:::o;32477:222::-;32617:34;32613:1;32605:6;32601:14;32594:58;32686:5;32681:2;32673:6;32669:15;32662:30;32477:222;:::o;32705:366::-;32847:3;32868:67;32932:2;32927:3;32868:67;:::i;:::-;32861:74;;32944:93;33033:3;32944:93;:::i;:::-;33062:2;33057:3;33053:12;33046:19;;32705:366;;;:::o;33077:419::-;33243:4;33281:2;33270:9;33266:18;33258:26;;33330:9;33324:4;33320:20;33316:1;33305:9;33301:17;33294:47;33358:131;33484:4;33358:131;:::i;:::-;33350:139;;33077:419;;;:::o;33502:179::-;33642:31;33638:1;33630:6;33626:14;33619:55;33502:179;:::o;33687:366::-;33829:3;33850:67;33914:2;33909:3;33850:67;:::i;:::-;33843:74;;33926:93;34015:3;33926:93;:::i;:::-;34044:2;34039:3;34035:12;34028:19;;33687:366;;;:::o;34059:419::-;34225:4;34263:2;34252:9;34248:18;34240:26;;34312:9;34306:4;34302:20;34298:1;34287:9;34283:17;34276:47;34340:131;34466:4;34340:131;:::i;:::-;34332:139;;34059:419;;;:::o;34484:247::-;34624:34;34620:1;34612:6;34608:14;34601:58;34693:30;34688:2;34680:6;34676:15;34669:55;34484:247;:::o;34737:366::-;34879:3;34900:67;34964:2;34959:3;34900:67;:::i;:::-;34893:74;;34976:93;35065:3;34976:93;:::i;:::-;35094:2;35089:3;35085:12;35078:19;;34737:366;;;:::o;35109:419::-;35275:4;35313:2;35302:9;35298:18;35290:26;;35362:9;35356:4;35352:20;35348:1;35337:9;35333:17;35326:47;35390:131;35516:4;35390:131;:::i;:::-;35382:139;;35109:419;;;:::o;35534:176::-;35674:28;35670:1;35662:6;35658:14;35651:52;35534:176;:::o;35716:366::-;35858:3;35879:67;35943:2;35938:3;35879:67;:::i;:::-;35872:74;;35955:93;36044:3;35955:93;:::i;:::-;36073:2;36068:3;36064:12;36057:19;;35716:366;;;:::o;36088:419::-;36254:4;36292:2;36281:9;36277:18;36269:26;;36341:9;36335:4;36331:20;36327:1;36316:9;36312:17;36305:47;36369:131;36495:4;36369:131;:::i;:::-;36361:139;;36088:419;;;:::o;36513:248::-;36653:34;36649:1;36641:6;36637:14;36630:58;36722:31;36717:2;36709:6;36705:15;36698:56;36513:248;:::o;36767:366::-;36909:3;36930:67;36994:2;36989:3;36930:67;:::i;:::-;36923:74;;37006:93;37095:3;37006:93;:::i;:::-;37124:2;37119:3;37115:12;37108:19;;36767:366;;;:::o;37139:419::-;37305:4;37343:2;37332:9;37328:18;37320:26;;37392:9;37386:4;37382:20;37378:1;37367:9;37363:17;37356:47;37420:131;37546:4;37420:131;:::i;:::-;37412:139;;37139:419;;;:::o;37564:191::-;37604:4;37624:20;37642:1;37624:20;:::i;:::-;37619:25;;37658:20;37676:1;37658:20;:::i;:::-;37653:25;;37697:1;37694;37691:8;37688:34;;;37702:18;;:::i;:::-;37688:34;37747:1;37744;37740:9;37732:17;;37564:191;;;;:::o;37761:220::-;37901:34;37897:1;37889:6;37885:14;37878:58;37970:3;37965:2;37957:6;37953:15;37946:28;37761:220;:::o;37987:366::-;38129:3;38150:67;38214:2;38209:3;38150:67;:::i;:::-;38143:74;;38226:93;38315:3;38226:93;:::i;:::-;38344:2;38339:3;38335:12;38328:19;;37987:366;;;:::o;38359:419::-;38525:4;38563:2;38552:9;38548:18;38540:26;;38612:9;38606:4;38602:20;38598:1;38587:9;38583:17;38576:47;38640:131;38766:4;38640:131;:::i;:::-;38632:139;;38359:419;;;:::o;38784:221::-;38924:34;38920:1;38912:6;38908:14;38901:58;38993:4;38988:2;38980:6;38976:15;38969:29;38784:221;:::o;39011:366::-;39153:3;39174:67;39238:2;39233:3;39174:67;:::i;:::-;39167:74;;39250:93;39339:3;39250:93;:::i;:::-;39368:2;39363:3;39359:12;39352:19;;39011:366;;;:::o;39383:419::-;39549:4;39587:2;39576:9;39572:18;39564:26;;39636:9;39630:4;39626:20;39622:1;39611:9;39607:17;39600:47;39664:131;39790:4;39664:131;:::i;:::-;39656:139;;39383:419;;;:::o;39808:182::-;39948:34;39944:1;39936:6;39932:14;39925:58;39808:182;:::o;39996:366::-;40138:3;40159:67;40223:2;40218:3;40159:67;:::i;:::-;40152:74;;40235:93;40324:3;40235:93;:::i;:::-;40353:2;40348:3;40344:12;40337:19;;39996:366;;;:::o;40368:419::-;40534:4;40572:2;40561:9;40557:18;40549:26;;40621:9;40615:4;40611:20;40607:1;40596:9;40592:17;40585:47;40649:131;40775:4;40649:131;:::i;:::-;40641:139;;40368:419;;;:::o;40793:225::-;40933:34;40929:1;40921:6;40917:14;40910:58;41002:8;40997:2;40989:6;40985:15;40978:33;40793:225;:::o;41024:366::-;41166:3;41187:67;41251:2;41246:3;41187:67;:::i;:::-;41180:74;;41263:93;41352:3;41263:93;:::i;:::-;41381:2;41376:3;41372:12;41365:19;;41024:366;;;:::o;41396:419::-;41562:4;41600:2;41589:9;41585:18;41577:26;;41649:9;41643:4;41639:20;41635:1;41624:9;41620:17;41613:47;41677:131;41803:4;41677:131;:::i;:::-;41669:139;;41396:419;;;:::o;41821:442::-;41970:4;42008:2;41997:9;41993:18;41985:26;;42021:71;42089:1;42078:9;42074:17;42065:6;42021:71;:::i;:::-;42102:72;42170:2;42159:9;42155:18;42146:6;42102:72;:::i;:::-;42184;42252:2;42241:9;42237:18;42228:6;42184:72;:::i;:::-;41821:442;;;;;;:::o;42269:180::-;42317:77;42314:1;42307:88;42414:4;42411:1;42404:15;42438:4;42435:1;42428:15;42455:180;42503:77;42500:1;42493:88;42600:4;42597:1;42590:15;42624:4;42621:1;42614:15;42641:114;42708:6;42742:5;42736:12;42726:22;;42641:114;;;:::o;42761:184::-;42860:11;42894:6;42889:3;42882:19;42934:4;42929:3;42925:14;42910:29;;42761:184;;;;:::o;42951:132::-;43018:4;43041:3;43033:11;;43071:4;43066:3;43062:14;43054:22;;42951:132;;;:::o;43089:108::-;43166:24;43184:5;43166:24;:::i;:::-;43161:3;43154:37;43089:108;;:::o;43203:179::-;43272:10;43293:46;43335:3;43327:6;43293:46;:::i;:::-;43371:4;43366:3;43362:14;43348:28;;43203:179;;;;:::o;43388:113::-;43458:4;43490;43485:3;43481:14;43473:22;;43388:113;;;:::o;43537:732::-;43656:3;43685:54;43733:5;43685:54;:::i;:::-;43755:86;43834:6;43829:3;43755:86;:::i;:::-;43748:93;;43865:56;43915:5;43865:56;:::i;:::-;43944:7;43975:1;43960:284;43985:6;43982:1;43979:13;43960:284;;;44061:6;44055:13;44088:63;44147:3;44132:13;44088:63;:::i;:::-;44081:70;;44174:60;44227:6;44174:60;:::i;:::-;44164:70;;44020:224;44007:1;44004;44000:9;43995:14;;43960:284;;;43964:14;44260:3;44253:10;;43661:608;;;43537:732;;;;:::o;44275:831::-;44538:4;44576:3;44565:9;44561:19;44553:27;;44590:71;44658:1;44647:9;44643:17;44634:6;44590:71;:::i;:::-;44671:80;44747:2;44736:9;44732:18;44723:6;44671:80;:::i;:::-;44798:9;44792:4;44788:20;44783:2;44772:9;44768:18;44761:48;44826:108;44929:4;44920:6;44826:108;:::i;:::-;44818:116;;44944:72;45012:2;45001:9;44997:18;44988:6;44944:72;:::i;:::-;45026:73;45094:3;45083:9;45079:19;45070:6;45026:73;:::i;:::-;44275:831;;;;;;;;:::o

Swarm Source

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