ETH Price: $3,458.51 (-1.81%)
Gas: 3 Gwei

Token

AlphaRushAI (rushAI)
 

Overview

Max Total Supply

1,000,000,000 rushAI

Holders

386 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
194,344.950907664618800524 rushAI

Value
$0.00
0x837cf85699b8300985472e16483f4e9a1a175c77
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A one-stop source of curated alpha and market intelligence by our AI models.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
rushAI

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//            __            __                                                __       
//           |  \          |  \                                              |  \      
//   ______  | $$  ______  | $$____    ______    ______   __    __   _______ | $$____  
//  |      \ | $$ /      \ | $$    \  |      \  /      \ |  \  |  \ /       \| $$    \ 
//   \$$$$$$\| $$|  $$$$$$\| $$$$$$$\  \$$$$$$\|  $$$$$$\| $$  | $$|  $$$$$$$| $$$$$$$\
//  /      $$| $$| $$  | $$| $$  | $$ /      $$| $$   \$$| $$  | $$ \$$    \ | $$  | $$
// |  $$$$$$$| $$| $$__/ $$| $$  | $$|  $$$$$$$| $$      | $$__/ $$ _\$$$$$$\| $$  | $$
//  \$$    $$| $$| $$    $$| $$  | $$ \$$    $$| $$       \$$    $$|       $$| $$  | $$
//   \$$$$$$$ \$$| $$$$$$$  \$$   \$$  \$$$$$$$ \$$        \$$$$$$  \$$$$$$$  \$$   \$$
//               | $$                                                                  
//               | $$                                                                  
//                \$$                                                                  

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @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;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

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

pragma solidity ^0.8.0;

/**
 * @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);
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

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

pragma solidity ^0.8.0;



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

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

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

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


// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

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

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


// File @uniswap/v2-core/contracts/interfaces/[email protected]

pragma solidity >=0.5.0;

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

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

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

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

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


// File contracts/Main.sol

pragma solidity ^0.8.18;
//import "hardhat/console.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].
 *
 * 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 rushAI is ERC20, Ownable {
    string private _name = "AlphaRushAI";
    string private _symbol = "rushAI";
    bool public _isPublicLaunched = false;
    uint256 private _supply        = 1_000_000_000 ether;
    uint256 public maxTxAmount     = 1_000_000_000 ether;
    uint256 public maxWalletAmount = 1_000_000_000 ether;
    address public honorariumWallet = 0xD8b70558F410BaC78e4655a09F4325ac262EF56D;
    address public liquidityWallet = 0x90385Db8166036b5998871458E18FAAfee2240eB;
    address public DEAD = 0x000000000000000000000000000000000000dEaD;
    mapping(address => bool) public _isExcludedFromFee;
    mapping(address => bool) public whitelist;
    bool swapping = false;

    // Taxes against bots
    uint256 public taxForLiquidity = 50;
    uint256 public taxForHonorarium = 50;

    function publicLaunch() public onlyOwner {
        taxForLiquidity = 10;
        taxForHonorarium = 0;
        maxTxAmount = 30000000 ether;
        maxWalletAmount = 30000000 ether;
        _isPublicLaunched = true;
    }

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    uint256 public honorariumFunds;
    uint256 public liquidityEthFunds;
    uint256 public liquidityTokenFunds;

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

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        whitelist[owner()] = true;
        whitelist[address(this)] = true;
        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[honorariumWallet] = true;
        _isExcludedFromFee[address(this)] = 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 override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (!whitelist[from] && !whitelist[to]) {
            if (to != uniswapV2Pair) {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
                require(
                    (amount + balanceOf(to)) <= maxWalletAmount,
                    "ERC20: balance amount exceeded max wallet amount limit"
                );
            }
        }

        uint256 transferAmount = amount;
        if (!_isExcludedFromFee[from] && !_isExcludedFromFee[to]) {
            if ((from == uniswapV2Pair || to == uniswapV2Pair)) {
                require(
                    _isPublicLaunched,
                    "Public Trading is not yet available"
                );
                uint256 totalTax = taxForHonorarium + taxForLiquidity;
                if (totalTax > 0) {
                    uint256 feeTokens = (amount * totalTax) / 100;
                    super._transfer(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                    if (
                        uniswapV2Pair == to &&
                        !whitelist[from] &&
                        !whitelist[to] &&
                        from != address(this) &&
                        !swapping
                    ) {
                        swapping = true;
                        swapAndLiquify(totalTax);
                        swapping = false;
                    }
                }
            }
        }
        super._transfer(from, to, transferAmount);
    }

    function swapAndLiquify(uint256 totalTax) internal {
        if (balanceOf(address(this)) == 0) {
            return;
        }
        uint256 receivedETH;
        uint256 honorariumTaxAmount;
        uint256 liquidityTaxAmount;
        {
            uint256 contractTokenBalance = balanceOf(address(this));
            honorariumTaxAmount =
            (contractTokenBalance * taxForHonorarium) /
            totalTax;
            liquidityTaxAmount =
            (contractTokenBalance * taxForLiquidity) /
            totalTax;
            uint256 beforeBalance = address(this).balance;
            if (liquidityTaxAmount > 0) {
                _swapTokensForEth(liquidityTaxAmount / 2, 0);
                receivedETH = address(this).balance - beforeBalance;
                liquidityEthFunds += receivedETH;
                liquidityTokenFunds +=
                liquidityTaxAmount -
                (liquidityTaxAmount / 2);
            }
            if (honorariumTaxAmount > 0) {
                beforeBalance = address(this).balance;
                _swapTokensForEth(honorariumTaxAmount, 0);
                receivedETH = address(this).balance - beforeBalance;
                honorariumFunds += receivedETH;
            }
        }
    }

    /**
     * @dev Transfers Honorarium ETH Funds to Honorarium Wallet
     */
    function withdrawHonorarium() external onlyOwner returns (bool) {
        payable(honorariumWallet).transfer(honorariumFunds);
        honorariumFunds = 0;
        return true;
    }

    /**
     * @dev Transfers Liquidity Funds (ETH + TOKENS) to Liquidity Wallet
     */
    function withdrawLiquidity() public onlyOwner returns (bool) {
        payable(liquidityWallet).transfer(liquidityEthFunds);
        IERC20(address(this)).transfer(liquidityWallet, liquidityTokenFunds);
        liquidityEthFunds = 0;
        liquidityTokenFunds = 0;
        return true;
    }

    /**
     * @dev Excludes an address from Fees
     *
     * @param _address address to be exempt from fee
     * @param _status address fee status
     */
    function excludeFromFee(address _address, bool _status) external onlyOwner {
        _isExcludedFromFee[_address] = _status;
    }

    /**
     * @dev Excludes batch of addresses from Fees
     *
     * @param _address Array of addresses to be exempt from fee
     * @param _status Addresses fee status
     */
    function batchExcludeFromFee(
        address[] memory _address,
        bool _status
    ) external onlyOwner {
        address[] memory addresses = _address;
        for (uint i; i < addresses.length; i++) {
            _isExcludedFromFee[addresses[i]] = _status;
        }
    }

    /**
     * @dev Adds and address to Whitelist
     *
     * @param _address address to be added
     * @param status address whitelist status
     */
    function addToWhitelist(address _address, bool status) external onlyOwner {
        whitelist[_address] = status;
    }

    /**
     * @dev Adds batch of addresses to Whitelist
     *
     * @param _address Array of addresses to be added to whitelist
     * @param _status Addresses Whitelist status
     */
    function addBatchToWhitelist(
        address[] memory _address,
        bool _status
    ) external onlyOwner {
        address[] memory addresses = _address;
        for (uint i; i < addresses.length; i++) {
            whitelist[addresses[i]] = _status;
        }
    }

    /**
     * @dev Swaps Token Amount to ETH
     *
     * @param tokenAmount Token Amount to be swapped
     * @param tokenAmountOut Expected ETH amount out of swap
     */
    function _swapTokensForEth(
        uint256 tokenAmount,
        uint256 tokenAmountOut
    ) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        IERC20(address(this)).approve(
            address(uniswapV2Router),
            type(uint256).max
        );

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            tokenAmountOut,
            path,
            address(this),
            block.timestamp
        );
    }

    /**
     * @dev Calculates amount of ETH to be receieved from Swap Transaction
     *
     * @param _tokenAmount Token Amount to be used for swap
     */
    function _getETHAmountsOut(
        uint256 _tokenAmount
    ) internal view returns (uint256) {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        uint256[] memory amountOut = uniswapV2Router.getAmountsOut(
            _tokenAmount,
            path
        );

        return amountOut[1];
    }

    /**
     * @dev Updates Token LP pair
     *
     * @param _pair Token LP Pair address
     */
    function updatePair(address _pair) external onlyOwner {
        require(_pair != DEAD, "LP Pair cannot be the Dead wallet!");
        require(_pair != address(0), "LP Pair cannot be 0!");
        uniswapV2Pair = _pair;
    }

    /**
     * @dev Updates Honorarium wallet address
     *
     * @param _newWallet Honorarium wallet address
     */
    function updateHonorariumWallet(
        address _newWallet
    ) public onlyOwner returns (bool) {
        require(
            _newWallet != DEAD,
            "Honorarium Wallet cannot be the Dead wallet!"
        );
        require(_newWallet != address(0), "Honorarium Wallet cannot be 0!");
        honorariumWallet = _newWallet;
        return true;
    }

    /**
     * @dev Updates Liquidity wallet address
     *
     * @param _newWallet Liquidity wallet address
     */
    function updateLiquidityWallet(
        address _newWallet
    ) public onlyOwner returns (bool) {
        require(
            _newWallet != DEAD,
            "Honorarium Wallet cannot be the Dead wallet!"
        );
        require(_newWallet != address(0), "Honorarium Wallet cannot be 0!");
        liquidityWallet = _newWallet;
        return true;
    }

    /**
     * @dev Updates the tax fee for both Early Wallet Status and Honorarium
     * @param _taxForLiquidity Early Wallet Tax fee
     * @param _taxForHonorarium Honorarium Tax fee
     */
    function updateTaxForLiquidityAndHonorarium(
        uint256 _taxForLiquidity,
        uint256 _taxForHonorarium
    ) public onlyOwner returns (bool) {
        require(
            _taxForLiquidity <= 15,
            "Liquidity Tax cannot be more than 15%"
        );
        require(
            _taxForHonorarium <= 15,
            "Honorarium Tax cannot be more than 15%"
        );
        taxForLiquidity = _taxForLiquidity;
        taxForHonorarium = _taxForHonorarium;

        return true;
    }

    /**
     * @dev Updates maximum transaction amount for wallet
     *
     * @param _maxTxAmount Maximum transaction amount
     */
    function updateMaxTxAmount(
        uint256 _maxTxAmount
    ) public onlyOwner returns (bool) {
        uint256 maxValue = (_supply * 10) / 100;
        uint256 minValue = (_supply * 1) / 200;
        require(
            _maxTxAmount <= maxValue,
            "Cannot set maxTxAmount to more than 10% of the supply"
        );
        require(
            _maxTxAmount >= minValue,
            "Cannot set maxTxAmount to less than .5% of the supply"
        );
        maxTxAmount = _maxTxAmount;

        return true;
    }

    /**
     * @dev Updates Maximum Amount of tokens a wallet can hold
     *
     * @param _maxWalletAmount Maximum Amount of Tokens a wallet can hold
     */
    function updateMaxWalletAmount(
        uint256 _maxWalletAmount
    ) public onlyOwner returns (bool) {
        uint256 maxValue = (_supply * 10) / 100;
        uint256 minValue = (_supply * 1) / 200;

        require(
            _maxWalletAmount <= maxValue,
            "Cannot set maxWalletAmount to more than 10% of the supply"
        );
        require(
            _maxWalletAmount >= minValue,
            "Cannot set maxWalletAmount to less than .5% of the supply"
        );
        maxWalletAmount = _maxWalletAmount;

        return true;
    }

    function withdrawETH() external onlyOwner {
        (bool success,) = address(honorariumWallet).call{value : address(this).balance}("");
        require(success);
        honorariumFunds = 0;
        liquidityEthFunds = 0;
    }

    function withdrawTokens(address token) external onlyOwner {
        IERC20(token).transfer(
            honorariumWallet,
            IERC20(token).balanceOf(address(this))
        );
        if (token == address(this)) {
            liquidityTokenFunds = 0;
        }
    }

    receive() external payable {}
}


// File contracts/testFlatten.sol

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isPublicLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"addBatchToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"batchExcludeFromFee","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"honorariumFunds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"honorariumWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityEthFunds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityTokenFunds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"publicLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForHonorarium","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newWallet","type":"address"}],"name":"updateHonorariumWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newWallet","type":"address"}],"name":"updateLiquidityWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"updateMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"updatePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForHonorarium","type":"uint256"}],"name":"updateTaxForLiquidityAndHonorarium","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawHonorarium","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawLiquidity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526040518060400160405280600b81526020017f416c706861527573684149000000000000000000000000000000000000000000815250600690816200004a919062000cad565b506040518060400160405280600681526020017f72757368414900000000000000000000000000000000000000000000000000008152506007908162000091919062000cad565b506000600860006101000a81548160ff0219169083151502179055506b033b2e3c9fd0803ce80000006009556b033b2e3c9fd0803ce8000000600a556b033b2e3c9fd0803ce8000000600b5573d8b70558f410bac78e4655a09f4325ac262ef56d600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507390385db8166036b5998871458e18faafee2240eb600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601160006101000a81548160ff02191690831515021790555060326012556032601355348015620001fc57600080fd5b50600680546200020c9062000a9c565b80601f01602080910402602001604051908101604052809291908181526020018280546200023a9062000a9c565b80156200028b5780601f106200025f576101008083540402835291602001916200028b565b820191906000526020600020905b8154815290600101906020018083116200026d57829003601f168201915b5050505050600780546200029f9062000a9c565b80601f0160208091040260200160405190810160405280929190818152602001828054620002cd9062000a9c565b80156200031e5780601f10620002f2576101008083540402835291602001916200031e565b820191906000526020600020905b8154815290600101906020018083116200030057829003601f168201915b5050505050816003908162000334919062000cad565b50806004908162000346919062000cad565b505050620003696200035d620007b960201b60201c565b620007c160201b60201c565b6200037d336009546200088760201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000416573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200043c919062000dfe565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620004a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004ca919062000dfe565b6040518363ffffffff1660e01b8152600401620004e992919062000e41565b6020604051808303816000875af115801562000509573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200052f919062000dfe565b601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016010600062000585620009ff60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062000f89565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008f09062000ecf565b60405180910390fd5b6200090d6000838362000a2960201b60201c565b806002600082825462000921919062000f20565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000978919062000f20565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009df919062000f6c565b60405180910390a3620009fb6000838362000a2e60201b60201c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ab557607f821691505b60208210810362000acb5762000aca62000a6d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000af6565b62000b41868362000af6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b8e62000b8862000b828462000b59565b62000b63565b62000b59565b9050919050565b6000819050919050565b62000baa8362000b6d565b62000bc262000bb98262000b95565b84845462000b03565b825550505050565b600090565b62000bd962000bca565b62000be681848462000b9f565b505050565b5b8181101562000c0e5762000c0260008262000bcf565b60018101905062000bec565b5050565b601f82111562000c5d5762000c278162000ad1565b62000c328462000ae6565b8101602085101562000c42578190505b62000c5a62000c518562000ae6565b83018262000beb565b50505b505050565b600082821c905092915050565b600062000c826000198460080262000c62565b1980831691505092915050565b600062000c9d838362000c6f565b9150826002028217905092915050565b62000cb88262000a33565b67ffffffffffffffff81111562000cd45762000cd362000a3e565b5b62000ce0825462000a9c565b62000ced82828562000c12565b600060209050601f83116001811462000d25576000841562000d10578287015190505b62000d1c858262000c8f565b86555062000d8c565b601f19841662000d358662000ad1565b60005b8281101562000d5f5784890151825560018201915060208501945060208101905062000d38565b8683101562000d7f578489015162000d7b601f89168262000c6f565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000dc68262000d99565b9050919050565b62000dd88162000db9565b811462000de457600080fd5b50565b60008151905062000df88162000dcd565b92915050565b60006020828403121562000e175762000e1662000d94565b5b600062000e278482850162000de7565b91505092915050565b62000e3b8162000db9565b82525050565b600060408201905062000e58600083018562000e30565b62000e67602083018462000e30565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000eb7601f8362000e6e565b915062000ec48262000e7f565b602082019050919050565b6000602082019050818103600083015262000eea8162000ea8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f2d8262000b59565b915062000f3a8362000b59565b925082820190508082111562000f555762000f5462000ef1565b5b92915050565b62000f668162000b59565b82525050565b600060208201905062000f83600083018462000f5b565b92915050565b608051614b8162000fba60003960008181610ca20152818161329001528181613389015261342c0152614b816000f3fe60806040526004361061026b5760003560e01c80637ea382c111610144578063bc93233f116100b6578063df8408fe1161007a578063df8408fe14610993578063e086e5ec146109bc578063e37ba8f9146109d3578063ef81bad814610a10578063f2fde38b14610a39578063f345bd8514610a6257610272565b8063bc93233f14610888578063c18bc195146108b1578063d4698016146108ee578063db708e7d14610919578063dd62ed3e1461095657610272565b80639b19251a116101085780639b19251a1461073e578063a457c2d71461077b578063a5481ebb146107b8578063a9059cbb146107e3578063aa4bde2814610820578063b6c1e84b1461084b57610272565b80637ea382c1146106675780638c0b5e22146106925780638da5cb5b146106bd578063905bd955146106e857806395d89b411461071357610272565b806339509351116101dd5780634cdf6b1f116101a15780634cdf6b1f146105575780636256d1811461056e57806370a08231146105ab578063715018a6146105e8578063768dc710146105ff5780637b1b90dc1461063c57610272565b80633950935114610470578063494942c3146104ad57806349bd5a5e146104d857806349df728c146105035780634ae0639c1461052c57610272565b80631694505e1161022f5780631694505e1461035e57806318160ddd146103895780631b56bbf9146103b45780632093357a146103dd57806323b872dd14610408578063313ce5671461044557610272565b806303fd2a451461027757806306fdde03146102a2578063095ea7b3146102cd57806312650d341461030a578063129d6f331461033357610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610a8d565b6040516102999190613503565b60405180910390f35b3480156102ae57600080fd5b506102b7610ab3565b6040516102c491906135ae565b60405180910390f35b3480156102d957600080fd5b506102f460048036038101906102ef9190613646565b610b45565b60405161030191906136a1565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190613830565b610b63565b005b34801561033f57600080fd5b50610348610c7a565b6040516103559190613503565b60405180910390f35b34801561036a57600080fd5b50610373610ca0565b60405161038091906138eb565b60405180910390f35b34801561039557600080fd5b5061039e610cc4565b6040516103ab9190613915565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190613930565b610cce565b005b3480156103e957600080fd5b506103f2610e8d565b6040516103ff91906136a1565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a919061395d565b610f85565b60405161043c91906136a1565b60405180910390f35b34801561045157600080fd5b5061045a61107d565b60405161046791906139cc565b60405180910390f35b34801561047c57600080fd5b5061049760048036038101906104929190613646565b611086565b6040516104a491906136a1565b60405180910390f35b3480156104b957600080fd5b506104c2611132565b6040516104cf9190613915565b60405180910390f35b3480156104e457600080fd5b506104ed611138565b6040516104fa9190613503565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190613930565b61115e565b005b34801561053857600080fd5b50610541611333565b60405161054e9190613915565b60405180910390f35b34801561056357600080fd5b5061056c611339565b005b34801561057a57600080fd5b50610595600480360381019061059091906139e7565b611406565b6040516105a291906136a1565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd9190613930565b61155a565b6040516105df9190613915565b60405180910390f35b3480156105f457600080fd5b506105fd6115a2565b005b34801561060b57600080fd5b5061062660048036038101906106219190613930565b61162a565b60405161063391906136a1565b60405180910390f35b34801561064857600080fd5b5061065161164a565b60405161065e91906136a1565b60405180910390f35b34801561067357600080fd5b5061067c61165d565b60405161068991906136a1565b60405180910390f35b34801561069e57600080fd5b506106a7611800565b6040516106b49190613915565b60405180910390f35b3480156106c957600080fd5b506106d2611806565b6040516106df9190613503565b60405180910390f35b3480156106f457600080fd5b506106fd611830565b60405161070a9190613915565b60405180910390f35b34801561071f57600080fd5b50610728611836565b60405161073591906135ae565b60405180910390f35b34801561074a57600080fd5b5061076560048036038101906107609190613930565b6118c8565b60405161077291906136a1565b60405180910390f35b34801561078757600080fd5b506107a2600480360381019061079d9190613646565b6118e8565b6040516107af91906136a1565b60405180910390f35b3480156107c457600080fd5b506107cd6119d3565b6040516107da9190613915565b60405180910390f35b3480156107ef57600080fd5b5061080a60048036038101906108059190613646565b6119d9565b60405161081791906136a1565b60405180910390f35b34801561082c57600080fd5b506108356119f7565b6040516108429190613915565b60405180910390f35b34801561085757600080fd5b50610872600480360381019061086d9190613a14565b6119fd565b60405161087f91906136a1565b60405180910390f35b34801561089457600080fd5b506108af60048036038101906108aa9190613a54565b611b1b565b005b3480156108bd57600080fd5b506108d860048036038101906108d391906139e7565b611bf2565b6040516108e591906136a1565b60405180910390f35b3480156108fa57600080fd5b50610903611d46565b6040516109109190613503565b60405180910390f35b34801561092557600080fd5b50610940600480360381019061093b9190613930565b611d6c565b60405161094d91906136a1565b60405180910390f35b34801561096257600080fd5b5061097d60048036038101906109789190613a94565b611f33565b60405161098a9190613915565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b59190613a54565b611fba565b005b3480156109c857600080fd5b506109d1612091565b005b3480156109df57600080fd5b506109fa60048036038101906109f59190613930565b6121b8565b604051610a0791906136a1565b60405180910390f35b348015610a1c57600080fd5b50610a376004803603810190610a329190613830565b61237f565b005b348015610a4557600080fd5b50610a606004803603810190610a5b9190613930565b612496565b005b348015610a6e57600080fd5b50610a7761258d565b604051610a849190613915565b60405180910390f35b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610ac290613b03565b80601f0160208091040260200160405190810160405280929190818152602001828054610aee90613b03565b8015610b3b5780601f10610b1057610100808354040283529160200191610b3b565b820191906000526020600020905b815481529060010190602001808311610b1e57829003601f168201915b5050505050905090565b6000610b59610b52612593565b848461259b565b6001905092915050565b610b6b612593565b73ffffffffffffffffffffffffffffffffffffffff16610b89611806565b73ffffffffffffffffffffffffffffffffffffffff1614610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690613b80565b60405180910390fd5b600082905060005b8151811015610c74578260106000848481518110610c0857610c07613ba0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c6c90613bfe565b915050610be7565b50505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610cd6612593565b73ffffffffffffffffffffffffffffffffffffffff16610cf4611806565b73ffffffffffffffffffffffffffffffffffffffff1614610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190613b80565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd190613cb8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4090613d24565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610e97612593565b73ffffffffffffffffffffffffffffffffffffffff16610eb5611806565b73ffffffffffffffffffffffffffffffffffffffff1614610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290613b80565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6015549081150290604051600060405180830381858888f19350505050158015610f75573d6000803e3d6000fd5b5060006015819055506001905090565b6000610f92848484612764565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fdd612593565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561105d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105490613db6565b60405180910390fd5b61107185611069612593565b85840361259b565b60019150509392505050565b60006012905090565b6000611128611093612593565b8484600160006110a1612593565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111239190613dd6565b61259b565b6001905092915050565b60175481565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611166612593565b73ffffffffffffffffffffffffffffffffffffffff16611184611806565b73ffffffffffffffffffffffffffffffffffffffff16146111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190613b80565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112529190613503565b602060405180830381865afa15801561126f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112939190613e1f565b6040518363ffffffff1660e01b81526004016112b0929190613e4c565b6020604051808303816000875af11580156112cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112f39190613e8a565b503073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113305760006017819055505b50565b60155481565b611341612593565b73ffffffffffffffffffffffffffffffffffffffff1661135f611806565b73ffffffffffffffffffffffffffffffffffffffff16146113b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ac90613b80565b60405180910390fd5b600a60128190555060006013819055506a18d0bf423c03d8de000000600a819055506a18d0bf423c03d8de000000600b819055506001600860006101000a81548160ff021916908315150217905550565b6000611410612593565b73ffffffffffffffffffffffffffffffffffffffff1661142e611806565b73ffffffffffffffffffffffffffffffffffffffff1614611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b90613b80565b60405180910390fd5b60006064600a6009546114979190613eb7565b6114a19190613f28565b9050600060c860016009546114b69190613eb7565b6114c09190613f28565b905081841115611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc90613fcb565b60405180910390fd5b80841015611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f9061405d565b60405180910390fd5b83600a81905550600192505050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115aa612593565b73ffffffffffffffffffffffffffffffffffffffff166115c8611806565b73ffffffffffffffffffffffffffffffffffffffff161461161e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161590613b80565b60405180910390fd5b6116286000612d85565b565b600f6020528060005260406000206000915054906101000a900460ff1681565b600860009054906101000a900460ff1681565b6000611667612593565b73ffffffffffffffffffffffffffffffffffffffff16611685611806565b73ffffffffffffffffffffffffffffffffffffffff16146116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d290613b80565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6016549081150290604051600060405180830381858888f19350505050158015611745573d6000803e3d6000fd5b503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166017546040518363ffffffff1660e01b81526004016117a5929190613e4c565b6020604051808303816000875af11580156117c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e89190613e8a565b50600060168190555060006017819055506001905090565b600a5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60165481565b60606004805461184590613b03565b80601f016020809104026020016040519081016040528092919081815260200182805461187190613b03565b80156118be5780601f10611893576101008083540402835291602001916118be565b820191906000526020600020905b8154815290600101906020018083116118a157829003601f168201915b5050505050905090565b60106020528060005260406000206000915054906101000a900460ff1681565b600080600160006118f7612593565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab906140ef565b60405180910390fd5b6119c86119bf612593565b8585840361259b565b600191505092915050565b60135481565b60006119ed6119e6612593565b8484612764565b6001905092915050565b600b5481565b6000611a07612593565b73ffffffffffffffffffffffffffffffffffffffff16611a25611806565b73ffffffffffffffffffffffffffffffffffffffff1614611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290613b80565b60405180910390fd5b600f831115611abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab690614181565b60405180910390fd5b600f821115611b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afa90614213565b60405180910390fd5b82601281905550816013819055506001905092915050565b611b23612593565b73ffffffffffffffffffffffffffffffffffffffff16611b41611806565b73ffffffffffffffffffffffffffffffffffffffff1614611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e90613b80565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000611bfc612593565b73ffffffffffffffffffffffffffffffffffffffff16611c1a611806565b73ffffffffffffffffffffffffffffffffffffffff1614611c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6790613b80565b60405180910390fd5b60006064600a600954611c839190613eb7565b611c8d9190613f28565b9050600060c86001600954611ca29190613eb7565b611cac9190613f28565b905081841115611cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce8906142a5565b60405180910390fd5b80841015611d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2b90614337565b60405180910390fd5b83600b81905550600192505050919050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611d76612593565b73ffffffffffffffffffffffffffffffffffffffff16611d94611806565b73ffffffffffffffffffffffffffffffffffffffff1614611dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de190613b80565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e71906143c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee090614435565b60405180910390fd5b81600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611fc2612593565b73ffffffffffffffffffffffffffffffffffffffff16611fe0611806565b73ffffffffffffffffffffffffffffffffffffffff1614612036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202d90613b80565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b612099612593565b73ffffffffffffffffffffffffffffffffffffffff166120b7611806565b73ffffffffffffffffffffffffffffffffffffffff161461210d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210490613b80565b60405180910390fd5b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161215590614486565b60006040518083038185875af1925050503d8060008114612192576040519150601f19603f3d011682016040523d82523d6000602084013e612197565b606091505b50509050806121a557600080fd5b6000601581905550600060168190555050565b60006121c2612593565b73ffffffffffffffffffffffffffffffffffffffff166121e0611806565b73ffffffffffffffffffffffffffffffffffffffff1614612236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222d90613b80565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bd906143c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232c90614435565b60405180910390fd5b81600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b612387612593565b73ffffffffffffffffffffffffffffffffffffffff166123a5611806565b73ffffffffffffffffffffffffffffffffffffffff16146123fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f290613b80565b60405180910390fd5b600082905060005b81518110156124905782600f600084848151811061242457612423613ba0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061248890613bfe565b915050612403565b50505050565b61249e612593565b73ffffffffffffffffffffffffffffffffffffffff166124bc611806565b73ffffffffffffffffffffffffffffffffffffffff1614612512576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250990613b80565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612581576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125789061450d565b60405180910390fd5b61258a81612d85565b50565b60125481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361260a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126019061459f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267090614631565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516127579190613915565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ca906146c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283990614755565b60405180910390fd5b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156128e65750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156129df57601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129de57600a54811115612985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297c906147e7565b60405180910390fd5b600b546129918361155a565b8261299c9190613dd6565b11156129dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d490614879565b60405180910390fd5b5b5b6000819050600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612a885750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d7457601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b365750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15612d7357600860009054906101000a900460ff16612b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b819061490b565b60405180910390fd5b6000601254601354612b9c9190613dd6565b90506000811115612d7157600060648285612bb79190613eb7565b612bc19190613f28565b9050612bce863083612e4b565b8084612bda919061492b565b92508473ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148015612c835750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612cd95750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d1157503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b8015612d2a5750601160009054906101000a900460ff16155b15612d6f576001601160006101000a81548160ff021916908315150217905550612d53826130ca565b6000601160006101000a81548160ff0219169083151502179055505b505b505b5b612d7f848483612e4b565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb1906146c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2090614755565b60405180910390fd5b612f348383836131e7565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb1906149d1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461304d9190613dd6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130b19190613915565b60405180910390a36130c48484846131ec565b50505050565b60006130d53061155a565b03156131e4576000806000806130ea3061155a565b905084601354826130fb9190613eb7565b6131059190613f28565b925084601254826131169190613eb7565b6131209190613f28565b91506000479050600083111561319f576131476002846131409190613f28565b60006131f1565b8047613153919061492b565b945084601660008282546131679190613dd6565b9250508190555060028361317b9190613f28565b83613186919061492b565b601760008282546131979190613dd6565b925050819055505b60008411156131de574790506131b68460006131f1565b80476131c2919061492b565b945084601560008282546131d69190613dd6565b925050819055505b50505050505b50565b505050565b505050565b6000600267ffffffffffffffff81111561320e5761320d6136c1565b5b60405190808252806020026020018201604052801561323c5781602001602082028036833780820191505090505b509050308160008151811061325457613253613ba0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061331d9190614a06565b8160018151811061333157613330613ba0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503073ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016133e6929190613e4c565b6020604051808303816000875af1158015613405573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134299190613e8a565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac94784848430426040518663ffffffff1660e01b815260040161348b959493929190614af1565b600060405180830381600087803b1580156134a557600080fd5b505af11580156134b9573d6000803e3d6000fd5b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134ed826134c2565b9050919050565b6134fd816134e2565b82525050565b600060208201905061351860008301846134f4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561355857808201518184015260208101905061353d565b60008484015250505050565b6000601f19601f8301169050919050565b60006135808261351e565b61358a8185613529565b935061359a81856020860161353a565b6135a381613564565b840191505092915050565b600060208201905081810360008301526135c88184613575565b905092915050565b6000604051905090565b600080fd5b600080fd5b6135ed816134e2565b81146135f857600080fd5b50565b60008135905061360a816135e4565b92915050565b6000819050919050565b61362381613610565b811461362e57600080fd5b50565b6000813590506136408161361a565b92915050565b6000806040838503121561365d5761365c6135da565b5b600061366b858286016135fb565b925050602061367c85828601613631565b9150509250929050565b60008115159050919050565b61369b81613686565b82525050565b60006020820190506136b66000830184613692565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136f982613564565b810181811067ffffffffffffffff82111715613718576137176136c1565b5b80604052505050565b600061372b6135d0565b905061373782826136f0565b919050565b600067ffffffffffffffff821115613757576137566136c1565b5b602082029050602081019050919050565b600080fd5b600061378061377b8461373c565b613721565b905080838252602082019050602084028301858111156137a3576137a2613768565b5b835b818110156137cc57806137b888826135fb565b8452602084019350506020810190506137a5565b5050509392505050565b600082601f8301126137eb576137ea6136bc565b5b81356137fb84826020860161376d565b91505092915050565b61380d81613686565b811461381857600080fd5b50565b60008135905061382a81613804565b92915050565b60008060408385031215613847576138466135da565b5b600083013567ffffffffffffffff811115613865576138646135df565b5b613871858286016137d6565b92505060206138828582860161381b565b9150509250929050565b6000819050919050565b60006138b16138ac6138a7846134c2565b61388c565b6134c2565b9050919050565b60006138c382613896565b9050919050565b60006138d5826138b8565b9050919050565b6138e5816138ca565b82525050565b600060208201905061390060008301846138dc565b92915050565b61390f81613610565b82525050565b600060208201905061392a6000830184613906565b92915050565b600060208284031215613946576139456135da565b5b6000613954848285016135fb565b91505092915050565b600080600060608486031215613976576139756135da565b5b6000613984868287016135fb565b9350506020613995868287016135fb565b92505060406139a686828701613631565b9150509250925092565b600060ff82169050919050565b6139c6816139b0565b82525050565b60006020820190506139e160008301846139bd565b92915050565b6000602082840312156139fd576139fc6135da565b5b6000613a0b84828501613631565b91505092915050565b60008060408385031215613a2b57613a2a6135da565b5b6000613a3985828601613631565b9250506020613a4a85828601613631565b9150509250929050565b60008060408385031215613a6b57613a6a6135da565b5b6000613a79858286016135fb565b9250506020613a8a8582860161381b565b9150509250929050565b60008060408385031215613aab57613aaa6135da565b5b6000613ab9858286016135fb565b9250506020613aca858286016135fb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b1b57607f821691505b602082108103613b2e57613b2d613ad4565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b6a602083613529565b9150613b7582613b34565b602082019050919050565b60006020820190508181036000830152613b9981613b5d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c0982613610565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c3b57613c3a613bcf565b5b600182019050919050565b7f4c5020506169722063616e6e6f742062652074686520446561642077616c6c6560008201527f7421000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ca2602283613529565b9150613cad82613c46565b604082019050919050565b60006020820190508181036000830152613cd181613c95565b9050919050565b7f4c5020506169722063616e6e6f74206265203021000000000000000000000000600082015250565b6000613d0e601483613529565b9150613d1982613cd8565b602082019050919050565b60006020820190508181036000830152613d3d81613d01565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613da0602883613529565b9150613dab82613d44565b604082019050919050565b60006020820190508181036000830152613dcf81613d93565b9050919050565b6000613de182613610565b9150613dec83613610565b9250828201905080821115613e0457613e03613bcf565b5b92915050565b600081519050613e198161361a565b92915050565b600060208284031215613e3557613e346135da565b5b6000613e4384828501613e0a565b91505092915050565b6000604082019050613e6160008301856134f4565b613e6e6020830184613906565b9392505050565b600081519050613e8481613804565b92915050565b600060208284031215613ea057613e9f6135da565b5b6000613eae84828501613e75565b91505092915050565b6000613ec282613610565b9150613ecd83613610565b9250828202613edb81613610565b91508282048414831517613ef257613ef1613bcf565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f3382613610565b9150613f3e83613610565b925082613f4e57613f4d613ef9565b5b828204905092915050565b7f43616e6e6f7420736574206d61785478416d6f756e7420746f206d6f7265207460008201527f68616e20313025206f662074686520737570706c790000000000000000000000602082015250565b6000613fb5603583613529565b9150613fc082613f59565b604082019050919050565b60006020820190508181036000830152613fe481613fa8565b9050919050565b7f43616e6e6f7420736574206d61785478416d6f756e7420746f206c657373207460008201527f68616e202e3525206f662074686520737570706c790000000000000000000000602082015250565b6000614047603583613529565b915061405282613feb565b604082019050919050565b600060208201905081810360008301526140768161403a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006140d9602583613529565b91506140e48261407d565b604082019050919050565b60006020820190508181036000830152614108816140cc565b9050919050565b7f4c6971756964697479205461782063616e6e6f74206265206d6f72652074686160008201527f6e20313525000000000000000000000000000000000000000000000000000000602082015250565b600061416b602583613529565b91506141768261410f565b604082019050919050565b6000602082019050818103600083015261419a8161415e565b9050919050565b7f486f6e6f72617269756d205461782063616e6e6f74206265206d6f726520746860008201527f616e203135250000000000000000000000000000000000000000000000000000602082015250565b60006141fd602683613529565b9150614208826141a1565b604082019050919050565b6000602082019050818103600083015261422c816141f0565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574416d6f756e7420746f206d6f60008201527f7265207468616e20313025206f662074686520737570706c7900000000000000602082015250565b600061428f603983613529565b915061429a82614233565b604082019050919050565b600060208201905081810360008301526142be81614282565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574416d6f756e7420746f206c6560008201527f7373207468616e202e3525206f662074686520737570706c7900000000000000602082015250565b6000614321603983613529565b915061432c826142c5565b604082019050919050565b6000602082019050818103600083015261435081614314565b9050919050565b7f486f6e6f72617269756d2057616c6c65742063616e6e6f74206265207468652060008201527f446561642077616c6c6574210000000000000000000000000000000000000000602082015250565b60006143b3602c83613529565b91506143be82614357565b604082019050919050565b600060208201905081810360008301526143e2816143a6565b9050919050565b7f486f6e6f72617269756d2057616c6c65742063616e6e6f742062652030210000600082015250565b600061441f601e83613529565b915061442a826143e9565b602082019050919050565b6000602082019050818103600083015261444e81614412565b9050919050565b600081905092915050565b50565b6000614470600083614455565b915061447b82614460565b600082019050919050565b600061449182614463565b9150819050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144f7602683613529565b91506145028261449b565b604082019050919050565b60006020820190508181036000830152614526816144ea565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614589602483613529565b91506145948261452d565b604082019050919050565b600060208201905081810360008301526145b88161457c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061461b602283613529565b9150614626826145bf565b604082019050919050565b6000602082019050818103600083015261464a8161460e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006146ad602583613529565b91506146b882614651565b604082019050919050565b600060208201905081810360008301526146dc816146a0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061473f602383613529565b915061474a826146e3565b604082019050919050565b6000602082019050818103600083015261476e81614732565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006147d1603983613529565b91506147dc82614775565b604082019050919050565b60006020820190508181036000830152614800816147c4565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000614863603683613529565b915061486e82614807565b604082019050919050565b6000602082019050818103600083015261489281614856565b9050919050565b7f5075626c69632054726164696e67206973206e6f742079657420617661696c6160008201527f626c650000000000000000000000000000000000000000000000000000000000602082015250565b60006148f5602383613529565b915061490082614899565b604082019050919050565b60006020820190508181036000830152614924816148e8565b9050919050565b600061493682613610565b915061494183613610565b925082820390508181111561495957614958613bcf565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006149bb602683613529565b91506149c68261495f565b604082019050919050565b600060208201905081810360008301526149ea816149ae565b9050919050565b600081519050614a00816135e4565b92915050565b600060208284031215614a1c57614a1b6135da565b5b6000614a2a848285016149f1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614a68816134e2565b82525050565b6000614a7a8383614a5f565b60208301905092915050565b6000602082019050919050565b6000614a9e82614a33565b614aa88185614a3e565b9350614ab383614a4f565b8060005b83811015614ae4578151614acb8882614a6e565b9750614ad683614a86565b925050600181019050614ab7565b5085935050505092915050565b600060a082019050614b066000830188613906565b614b136020830187613906565b8181036040830152614b258186614a93565b9050614b3460608301856134f4565b614b416080830184613906565b969550505050505056fea2646970667358221220c8a208e244c0d399f0d8815e75ab79dcbedfae5ed60b7975501a959474ef761864736f6c63430008120033

Deployed Bytecode

0x60806040526004361061026b5760003560e01c80637ea382c111610144578063bc93233f116100b6578063df8408fe1161007a578063df8408fe14610993578063e086e5ec146109bc578063e37ba8f9146109d3578063ef81bad814610a10578063f2fde38b14610a39578063f345bd8514610a6257610272565b8063bc93233f14610888578063c18bc195146108b1578063d4698016146108ee578063db708e7d14610919578063dd62ed3e1461095657610272565b80639b19251a116101085780639b19251a1461073e578063a457c2d71461077b578063a5481ebb146107b8578063a9059cbb146107e3578063aa4bde2814610820578063b6c1e84b1461084b57610272565b80637ea382c1146106675780638c0b5e22146106925780638da5cb5b146106bd578063905bd955146106e857806395d89b411461071357610272565b806339509351116101dd5780634cdf6b1f116101a15780634cdf6b1f146105575780636256d1811461056e57806370a08231146105ab578063715018a6146105e8578063768dc710146105ff5780637b1b90dc1461063c57610272565b80633950935114610470578063494942c3146104ad57806349bd5a5e146104d857806349df728c146105035780634ae0639c1461052c57610272565b80631694505e1161022f5780631694505e1461035e57806318160ddd146103895780631b56bbf9146103b45780632093357a146103dd57806323b872dd14610408578063313ce5671461044557610272565b806303fd2a451461027757806306fdde03146102a2578063095ea7b3146102cd57806312650d341461030a578063129d6f331461033357610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610a8d565b6040516102999190613503565b60405180910390f35b3480156102ae57600080fd5b506102b7610ab3565b6040516102c491906135ae565b60405180910390f35b3480156102d957600080fd5b506102f460048036038101906102ef9190613646565b610b45565b60405161030191906136a1565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190613830565b610b63565b005b34801561033f57600080fd5b50610348610c7a565b6040516103559190613503565b60405180910390f35b34801561036a57600080fd5b50610373610ca0565b60405161038091906138eb565b60405180910390f35b34801561039557600080fd5b5061039e610cc4565b6040516103ab9190613915565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190613930565b610cce565b005b3480156103e957600080fd5b506103f2610e8d565b6040516103ff91906136a1565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a919061395d565b610f85565b60405161043c91906136a1565b60405180910390f35b34801561045157600080fd5b5061045a61107d565b60405161046791906139cc565b60405180910390f35b34801561047c57600080fd5b5061049760048036038101906104929190613646565b611086565b6040516104a491906136a1565b60405180910390f35b3480156104b957600080fd5b506104c2611132565b6040516104cf9190613915565b60405180910390f35b3480156104e457600080fd5b506104ed611138565b6040516104fa9190613503565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190613930565b61115e565b005b34801561053857600080fd5b50610541611333565b60405161054e9190613915565b60405180910390f35b34801561056357600080fd5b5061056c611339565b005b34801561057a57600080fd5b50610595600480360381019061059091906139e7565b611406565b6040516105a291906136a1565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd9190613930565b61155a565b6040516105df9190613915565b60405180910390f35b3480156105f457600080fd5b506105fd6115a2565b005b34801561060b57600080fd5b5061062660048036038101906106219190613930565b61162a565b60405161063391906136a1565b60405180910390f35b34801561064857600080fd5b5061065161164a565b60405161065e91906136a1565b60405180910390f35b34801561067357600080fd5b5061067c61165d565b60405161068991906136a1565b60405180910390f35b34801561069e57600080fd5b506106a7611800565b6040516106b49190613915565b60405180910390f35b3480156106c957600080fd5b506106d2611806565b6040516106df9190613503565b60405180910390f35b3480156106f457600080fd5b506106fd611830565b60405161070a9190613915565b60405180910390f35b34801561071f57600080fd5b50610728611836565b60405161073591906135ae565b60405180910390f35b34801561074a57600080fd5b5061076560048036038101906107609190613930565b6118c8565b60405161077291906136a1565b60405180910390f35b34801561078757600080fd5b506107a2600480360381019061079d9190613646565b6118e8565b6040516107af91906136a1565b60405180910390f35b3480156107c457600080fd5b506107cd6119d3565b6040516107da9190613915565b60405180910390f35b3480156107ef57600080fd5b5061080a60048036038101906108059190613646565b6119d9565b60405161081791906136a1565b60405180910390f35b34801561082c57600080fd5b506108356119f7565b6040516108429190613915565b60405180910390f35b34801561085757600080fd5b50610872600480360381019061086d9190613a14565b6119fd565b60405161087f91906136a1565b60405180910390f35b34801561089457600080fd5b506108af60048036038101906108aa9190613a54565b611b1b565b005b3480156108bd57600080fd5b506108d860048036038101906108d391906139e7565b611bf2565b6040516108e591906136a1565b60405180910390f35b3480156108fa57600080fd5b50610903611d46565b6040516109109190613503565b60405180910390f35b34801561092557600080fd5b50610940600480360381019061093b9190613930565b611d6c565b60405161094d91906136a1565b60405180910390f35b34801561096257600080fd5b5061097d60048036038101906109789190613a94565b611f33565b60405161098a9190613915565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b59190613a54565b611fba565b005b3480156109c857600080fd5b506109d1612091565b005b3480156109df57600080fd5b506109fa60048036038101906109f59190613930565b6121b8565b604051610a0791906136a1565b60405180910390f35b348015610a1c57600080fd5b50610a376004803603810190610a329190613830565b61237f565b005b348015610a4557600080fd5b50610a606004803603810190610a5b9190613930565b612496565b005b348015610a6e57600080fd5b50610a7761258d565b604051610a849190613915565b60405180910390f35b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610ac290613b03565b80601f0160208091040260200160405190810160405280929190818152602001828054610aee90613b03565b8015610b3b5780601f10610b1057610100808354040283529160200191610b3b565b820191906000526020600020905b815481529060010190602001808311610b1e57829003601f168201915b5050505050905090565b6000610b59610b52612593565b848461259b565b6001905092915050565b610b6b612593565b73ffffffffffffffffffffffffffffffffffffffff16610b89611806565b73ffffffffffffffffffffffffffffffffffffffff1614610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690613b80565b60405180910390fd5b600082905060005b8151811015610c74578260106000848481518110610c0857610c07613ba0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c6c90613bfe565b915050610be7565b50505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610cd6612593565b73ffffffffffffffffffffffffffffffffffffffff16610cf4611806565b73ffffffffffffffffffffffffffffffffffffffff1614610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190613b80565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd190613cb8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4090613d24565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610e97612593565b73ffffffffffffffffffffffffffffffffffffffff16610eb5611806565b73ffffffffffffffffffffffffffffffffffffffff1614610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290613b80565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6015549081150290604051600060405180830381858888f19350505050158015610f75573d6000803e3d6000fd5b5060006015819055506001905090565b6000610f92848484612764565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fdd612593565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561105d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105490613db6565b60405180910390fd5b61107185611069612593565b85840361259b565b60019150509392505050565b60006012905090565b6000611128611093612593565b8484600160006110a1612593565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111239190613dd6565b61259b565b6001905092915050565b60175481565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611166612593565b73ffffffffffffffffffffffffffffffffffffffff16611184611806565b73ffffffffffffffffffffffffffffffffffffffff16146111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190613b80565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112529190613503565b602060405180830381865afa15801561126f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112939190613e1f565b6040518363ffffffff1660e01b81526004016112b0929190613e4c565b6020604051808303816000875af11580156112cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112f39190613e8a565b503073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113305760006017819055505b50565b60155481565b611341612593565b73ffffffffffffffffffffffffffffffffffffffff1661135f611806565b73ffffffffffffffffffffffffffffffffffffffff16146113b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ac90613b80565b60405180910390fd5b600a60128190555060006013819055506a18d0bf423c03d8de000000600a819055506a18d0bf423c03d8de000000600b819055506001600860006101000a81548160ff021916908315150217905550565b6000611410612593565b73ffffffffffffffffffffffffffffffffffffffff1661142e611806565b73ffffffffffffffffffffffffffffffffffffffff1614611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b90613b80565b60405180910390fd5b60006064600a6009546114979190613eb7565b6114a19190613f28565b9050600060c860016009546114b69190613eb7565b6114c09190613f28565b905081841115611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc90613fcb565b60405180910390fd5b80841015611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f9061405d565b60405180910390fd5b83600a81905550600192505050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115aa612593565b73ffffffffffffffffffffffffffffffffffffffff166115c8611806565b73ffffffffffffffffffffffffffffffffffffffff161461161e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161590613b80565b60405180910390fd5b6116286000612d85565b565b600f6020528060005260406000206000915054906101000a900460ff1681565b600860009054906101000a900460ff1681565b6000611667612593565b73ffffffffffffffffffffffffffffffffffffffff16611685611806565b73ffffffffffffffffffffffffffffffffffffffff16146116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d290613b80565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6016549081150290604051600060405180830381858888f19350505050158015611745573d6000803e3d6000fd5b503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166017546040518363ffffffff1660e01b81526004016117a5929190613e4c565b6020604051808303816000875af11580156117c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e89190613e8a565b50600060168190555060006017819055506001905090565b600a5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60165481565b60606004805461184590613b03565b80601f016020809104026020016040519081016040528092919081815260200182805461187190613b03565b80156118be5780601f10611893576101008083540402835291602001916118be565b820191906000526020600020905b8154815290600101906020018083116118a157829003601f168201915b5050505050905090565b60106020528060005260406000206000915054906101000a900460ff1681565b600080600160006118f7612593565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab906140ef565b60405180910390fd5b6119c86119bf612593565b8585840361259b565b600191505092915050565b60135481565b60006119ed6119e6612593565b8484612764565b6001905092915050565b600b5481565b6000611a07612593565b73ffffffffffffffffffffffffffffffffffffffff16611a25611806565b73ffffffffffffffffffffffffffffffffffffffff1614611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290613b80565b60405180910390fd5b600f831115611abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab690614181565b60405180910390fd5b600f821115611b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afa90614213565b60405180910390fd5b82601281905550816013819055506001905092915050565b611b23612593565b73ffffffffffffffffffffffffffffffffffffffff16611b41611806565b73ffffffffffffffffffffffffffffffffffffffff1614611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e90613b80565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000611bfc612593565b73ffffffffffffffffffffffffffffffffffffffff16611c1a611806565b73ffffffffffffffffffffffffffffffffffffffff1614611c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6790613b80565b60405180910390fd5b60006064600a600954611c839190613eb7565b611c8d9190613f28565b9050600060c86001600954611ca29190613eb7565b611cac9190613f28565b905081841115611cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce8906142a5565b60405180910390fd5b80841015611d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2b90614337565b60405180910390fd5b83600b81905550600192505050919050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611d76612593565b73ffffffffffffffffffffffffffffffffffffffff16611d94611806565b73ffffffffffffffffffffffffffffffffffffffff1614611dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de190613b80565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e71906143c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee090614435565b60405180910390fd5b81600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611fc2612593565b73ffffffffffffffffffffffffffffffffffffffff16611fe0611806565b73ffffffffffffffffffffffffffffffffffffffff1614612036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202d90613b80565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b612099612593565b73ffffffffffffffffffffffffffffffffffffffff166120b7611806565b73ffffffffffffffffffffffffffffffffffffffff161461210d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210490613b80565b60405180910390fd5b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161215590614486565b60006040518083038185875af1925050503d8060008114612192576040519150601f19603f3d011682016040523d82523d6000602084013e612197565b606091505b50509050806121a557600080fd5b6000601581905550600060168190555050565b60006121c2612593565b73ffffffffffffffffffffffffffffffffffffffff166121e0611806565b73ffffffffffffffffffffffffffffffffffffffff1614612236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222d90613b80565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bd906143c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232c90614435565b60405180910390fd5b81600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b612387612593565b73ffffffffffffffffffffffffffffffffffffffff166123a5611806565b73ffffffffffffffffffffffffffffffffffffffff16146123fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f290613b80565b60405180910390fd5b600082905060005b81518110156124905782600f600084848151811061242457612423613ba0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061248890613bfe565b915050612403565b50505050565b61249e612593565b73ffffffffffffffffffffffffffffffffffffffff166124bc611806565b73ffffffffffffffffffffffffffffffffffffffff1614612512576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250990613b80565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612581576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125789061450d565b60405180910390fd5b61258a81612d85565b50565b60125481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361260a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126019061459f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267090614631565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516127579190613915565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ca906146c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283990614755565b60405180910390fd5b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156128e65750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156129df57601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129de57600a54811115612985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297c906147e7565b60405180910390fd5b600b546129918361155a565b8261299c9190613dd6565b11156129dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d490614879565b60405180910390fd5b5b5b6000819050600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612a885750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d7457601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b365750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15612d7357600860009054906101000a900460ff16612b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b819061490b565b60405180910390fd5b6000601254601354612b9c9190613dd6565b90506000811115612d7157600060648285612bb79190613eb7565b612bc19190613f28565b9050612bce863083612e4b565b8084612bda919061492b565b92508473ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148015612c835750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612cd95750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d1157503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b8015612d2a5750601160009054906101000a900460ff16155b15612d6f576001601160006101000a81548160ff021916908315150217905550612d53826130ca565b6000601160006101000a81548160ff0219169083151502179055505b505b505b5b612d7f848483612e4b565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb1906146c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2090614755565b60405180910390fd5b612f348383836131e7565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb1906149d1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461304d9190613dd6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130b19190613915565b60405180910390a36130c48484846131ec565b50505050565b60006130d53061155a565b03156131e4576000806000806130ea3061155a565b905084601354826130fb9190613eb7565b6131059190613f28565b925084601254826131169190613eb7565b6131209190613f28565b91506000479050600083111561319f576131476002846131409190613f28565b60006131f1565b8047613153919061492b565b945084601660008282546131679190613dd6565b9250508190555060028361317b9190613f28565b83613186919061492b565b601760008282546131979190613dd6565b925050819055505b60008411156131de574790506131b68460006131f1565b80476131c2919061492b565b945084601560008282546131d69190613dd6565b925050819055505b50505050505b50565b505050565b505050565b6000600267ffffffffffffffff81111561320e5761320d6136c1565b5b60405190808252806020026020018201604052801561323c5781602001602082028036833780820191505090505b509050308160008151811061325457613253613ba0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061331d9190614a06565b8160018151811061333157613330613ba0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503073ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016133e6929190613e4c565b6020604051808303816000875af1158015613405573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134299190613e8a565b507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac94784848430426040518663ffffffff1660e01b815260040161348b959493929190614af1565b600060405180830381600087803b1580156134a557600080fd5b505af11580156134b9573d6000803e3d6000fd5b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134ed826134c2565b9050919050565b6134fd816134e2565b82525050565b600060208201905061351860008301846134f4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561355857808201518184015260208101905061353d565b60008484015250505050565b6000601f19601f8301169050919050565b60006135808261351e565b61358a8185613529565b935061359a81856020860161353a565b6135a381613564565b840191505092915050565b600060208201905081810360008301526135c88184613575565b905092915050565b6000604051905090565b600080fd5b600080fd5b6135ed816134e2565b81146135f857600080fd5b50565b60008135905061360a816135e4565b92915050565b6000819050919050565b61362381613610565b811461362e57600080fd5b50565b6000813590506136408161361a565b92915050565b6000806040838503121561365d5761365c6135da565b5b600061366b858286016135fb565b925050602061367c85828601613631565b9150509250929050565b60008115159050919050565b61369b81613686565b82525050565b60006020820190506136b66000830184613692565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136f982613564565b810181811067ffffffffffffffff82111715613718576137176136c1565b5b80604052505050565b600061372b6135d0565b905061373782826136f0565b919050565b600067ffffffffffffffff821115613757576137566136c1565b5b602082029050602081019050919050565b600080fd5b600061378061377b8461373c565b613721565b905080838252602082019050602084028301858111156137a3576137a2613768565b5b835b818110156137cc57806137b888826135fb565b8452602084019350506020810190506137a5565b5050509392505050565b600082601f8301126137eb576137ea6136bc565b5b81356137fb84826020860161376d565b91505092915050565b61380d81613686565b811461381857600080fd5b50565b60008135905061382a81613804565b92915050565b60008060408385031215613847576138466135da565b5b600083013567ffffffffffffffff811115613865576138646135df565b5b613871858286016137d6565b92505060206138828582860161381b565b9150509250929050565b6000819050919050565b60006138b16138ac6138a7846134c2565b61388c565b6134c2565b9050919050565b60006138c382613896565b9050919050565b60006138d5826138b8565b9050919050565b6138e5816138ca565b82525050565b600060208201905061390060008301846138dc565b92915050565b61390f81613610565b82525050565b600060208201905061392a6000830184613906565b92915050565b600060208284031215613946576139456135da565b5b6000613954848285016135fb565b91505092915050565b600080600060608486031215613976576139756135da565b5b6000613984868287016135fb565b9350506020613995868287016135fb565b92505060406139a686828701613631565b9150509250925092565b600060ff82169050919050565b6139c6816139b0565b82525050565b60006020820190506139e160008301846139bd565b92915050565b6000602082840312156139fd576139fc6135da565b5b6000613a0b84828501613631565b91505092915050565b60008060408385031215613a2b57613a2a6135da565b5b6000613a3985828601613631565b9250506020613a4a85828601613631565b9150509250929050565b60008060408385031215613a6b57613a6a6135da565b5b6000613a79858286016135fb565b9250506020613a8a8582860161381b565b9150509250929050565b60008060408385031215613aab57613aaa6135da565b5b6000613ab9858286016135fb565b9250506020613aca858286016135fb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b1b57607f821691505b602082108103613b2e57613b2d613ad4565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b6a602083613529565b9150613b7582613b34565b602082019050919050565b60006020820190508181036000830152613b9981613b5d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c0982613610565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c3b57613c3a613bcf565b5b600182019050919050565b7f4c5020506169722063616e6e6f742062652074686520446561642077616c6c6560008201527f7421000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ca2602283613529565b9150613cad82613c46565b604082019050919050565b60006020820190508181036000830152613cd181613c95565b9050919050565b7f4c5020506169722063616e6e6f74206265203021000000000000000000000000600082015250565b6000613d0e601483613529565b9150613d1982613cd8565b602082019050919050565b60006020820190508181036000830152613d3d81613d01565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613da0602883613529565b9150613dab82613d44565b604082019050919050565b60006020820190508181036000830152613dcf81613d93565b9050919050565b6000613de182613610565b9150613dec83613610565b9250828201905080821115613e0457613e03613bcf565b5b92915050565b600081519050613e198161361a565b92915050565b600060208284031215613e3557613e346135da565b5b6000613e4384828501613e0a565b91505092915050565b6000604082019050613e6160008301856134f4565b613e6e6020830184613906565b9392505050565b600081519050613e8481613804565b92915050565b600060208284031215613ea057613e9f6135da565b5b6000613eae84828501613e75565b91505092915050565b6000613ec282613610565b9150613ecd83613610565b9250828202613edb81613610565b91508282048414831517613ef257613ef1613bcf565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f3382613610565b9150613f3e83613610565b925082613f4e57613f4d613ef9565b5b828204905092915050565b7f43616e6e6f7420736574206d61785478416d6f756e7420746f206d6f7265207460008201527f68616e20313025206f662074686520737570706c790000000000000000000000602082015250565b6000613fb5603583613529565b9150613fc082613f59565b604082019050919050565b60006020820190508181036000830152613fe481613fa8565b9050919050565b7f43616e6e6f7420736574206d61785478416d6f756e7420746f206c657373207460008201527f68616e202e3525206f662074686520737570706c790000000000000000000000602082015250565b6000614047603583613529565b915061405282613feb565b604082019050919050565b600060208201905081810360008301526140768161403a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006140d9602583613529565b91506140e48261407d565b604082019050919050565b60006020820190508181036000830152614108816140cc565b9050919050565b7f4c6971756964697479205461782063616e6e6f74206265206d6f72652074686160008201527f6e20313525000000000000000000000000000000000000000000000000000000602082015250565b600061416b602583613529565b91506141768261410f565b604082019050919050565b6000602082019050818103600083015261419a8161415e565b9050919050565b7f486f6e6f72617269756d205461782063616e6e6f74206265206d6f726520746860008201527f616e203135250000000000000000000000000000000000000000000000000000602082015250565b60006141fd602683613529565b9150614208826141a1565b604082019050919050565b6000602082019050818103600083015261422c816141f0565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574416d6f756e7420746f206d6f60008201527f7265207468616e20313025206f662074686520737570706c7900000000000000602082015250565b600061428f603983613529565b915061429a82614233565b604082019050919050565b600060208201905081810360008301526142be81614282565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574416d6f756e7420746f206c6560008201527f7373207468616e202e3525206f662074686520737570706c7900000000000000602082015250565b6000614321603983613529565b915061432c826142c5565b604082019050919050565b6000602082019050818103600083015261435081614314565b9050919050565b7f486f6e6f72617269756d2057616c6c65742063616e6e6f74206265207468652060008201527f446561642077616c6c6574210000000000000000000000000000000000000000602082015250565b60006143b3602c83613529565b91506143be82614357565b604082019050919050565b600060208201905081810360008301526143e2816143a6565b9050919050565b7f486f6e6f72617269756d2057616c6c65742063616e6e6f742062652030210000600082015250565b600061441f601e83613529565b915061442a826143e9565b602082019050919050565b6000602082019050818103600083015261444e81614412565b9050919050565b600081905092915050565b50565b6000614470600083614455565b915061447b82614460565b600082019050919050565b600061449182614463565b9150819050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144f7602683613529565b91506145028261449b565b604082019050919050565b60006020820190508181036000830152614526816144ea565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614589602483613529565b91506145948261452d565b604082019050919050565b600060208201905081810360008301526145b88161457c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061461b602283613529565b9150614626826145bf565b604082019050919050565b6000602082019050818103600083015261464a8161460e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006146ad602583613529565b91506146b882614651565b604082019050919050565b600060208201905081810360008301526146dc816146a0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061473f602383613529565b915061474a826146e3565b604082019050919050565b6000602082019050818103600083015261476e81614732565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006147d1603983613529565b91506147dc82614775565b604082019050919050565b60006020820190508181036000830152614800816147c4565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000614863603683613529565b915061486e82614807565b604082019050919050565b6000602082019050818103600083015261489281614856565b9050919050565b7f5075626c69632054726164696e67206973206e6f742079657420617661696c6160008201527f626c650000000000000000000000000000000000000000000000000000000000602082015250565b60006148f5602383613529565b915061490082614899565b604082019050919050565b60006020820190508181036000830152614924816148e8565b9050919050565b600061493682613610565b915061494183613610565b925082820390508181111561495957614958613bcf565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006149bb602683613529565b91506149c68261495f565b604082019050919050565b600060208201905081810360008301526149ea816149ae565b9050919050565b600081519050614a00816135e4565b92915050565b600060208284031215614a1c57614a1b6135da565b5b6000614a2a848285016149f1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614a68816134e2565b82525050565b6000614a7a8383614a5f565b60208301905092915050565b6000602082019050919050565b6000614a9e82614a33565b614aa88185614a3e565b9350614ab383614a4f565b8060005b83811015614ae4578151614acb8882614a6e565b9750614ad683614a86565b925050600181019050614ab7565b5085935050505092915050565b600060a082019050614b066000830188613906565b614b136020830187613906565b8181036040830152614b258186614a93565b9050614b3460608301856134f4565b614b416080830184613906565b969550505050505056fea2646970667358221220c8a208e244c0d399f0d8815e75ab79dcbedfae5ed60b7975501a959474ef761864736f6c63430008120033

Deployed Bytecode Sourcemap

27425:13522:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27935:64;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10310:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12477:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35246:280;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27770:76;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28491:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11430:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36979:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33382:186;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13128:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11272:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14029:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28662:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28549:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40625:282;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28586:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28255:228;;;;;;;;;;;;;:::i;:::-;;39087:541;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11601:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3717:103;;;;;;;;;;;;;:::i;:::-;;28006:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27549:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33668:299;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27652:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3066:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28623:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10529:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28063:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14747:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28210:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11941:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27711:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38419:520;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34923:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39801:575;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27853:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37340:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12179:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34140:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40384:233;;;;;;;;;;;;;:::i;:::-;;37842:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34466:289;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3975:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28168:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27935:64;;;;;;;;;;;;;:::o;10310:100::-;10364:13;10397:5;10390:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10310:100;:::o;12477:169::-;12560:4;12577:39;12586:12;:10;:12::i;:::-;12600:7;12609:6;12577:8;:39::i;:::-;12634:4;12627:11;;12477:169;;;;:::o;35246:280::-;3297:12;:10;:12::i;:::-;3286:23;;:7;:5;:7::i;:::-;:23;;;3278:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35371:26:::1;35400:8;35371:37;;35424:6;35419:100;35436:9;:16;35432:1;:20;35419:100;;;35500:7;35474:9;:23;35484:9;35494:1;35484:12;;;;;;;;:::i;:::-;;;;;;;;35474:23;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;35454:3;;;;;:::i;:::-;;;;35419:100;;;;35360:166;35246:280:::0;;:::o;27770:76::-;;;;;;;;;;;;;:::o;28491:51::-;;;:::o;11430:108::-;11491:7;11518:12;;11511:19;;11430:108;:::o;36979:228::-;3297:12;:10;:12::i;:::-;3286:23;;:7;:5;:7::i;:::-;:23;;;3278:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37061:4:::1;;;;;;;;;;;37052:13;;:5;:13;;::::0;37044:60:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37140:1;37123:19;;:5;:19;;::::0;37115:52:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37194:5;37178:13;;:21;;;;;;;;;;;;;;;;;;36979:228:::0;:::o;33382:186::-;33440:4;3297:12;:10;:12::i;:::-;3286:23;;:7;:5;:7::i;:::-;:23;;;3278:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33465:16:::1;;;;;;;;;;;33457:34;;:51;33492:15;;33457:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;33537:1;33519:15;:19;;;;33556:4;33549:11;;33382:186:::0;:::o;13128:492::-;13268:4;13285:36;13295:6;13303:9;13314:6;13285:9;:36::i;:::-;13334:24;13361:11;:19;13373:6;13361:19;;;;;;;;;;;;;;;:33;13381:12;:10;:12::i;:::-;13361:33;;;;;;;;;;;;;;;;13334:60;;13433:6;13413:16;:26;;13405:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13520:57;13529:6;13537:12;:10;:12::i;:::-;13570:6;13551:16;:25;13520:8;:57::i;:::-;13608:4;13601:11;;;13128:492;;;;;:::o;11272:93::-;11330:5;11355:2;11348:9;;11272:93;:::o;14029:215::-;14117:4;14134:80;14143:12;:10;:12::i;:::-;14157:7;14203:10;14166:11;:25;14178:12;:10;:12::i;:::-;14166:25;;;;;;;;;;;;;;;:34;14192:7;14166:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;14134:8;:80::i;:::-;14232:4;14225:11;;14029:215;;;;:::o;28662:34::-;;;;:::o;28549:28::-;;;;;;;;;;;;;:::o;40625:282::-;3297:12;:10;:12::i;:::-;3286:23;;:7;:5;:7::i;:::-;:23;;;3278:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40701:5:::1;40694:22;;;40731:16;;;;;;;;;;;40769:5;40762:23;;;40794:4;40762:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40694:117;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40843:4;40826:22;;:5;:22;;::::0;40822:78:::1;;40887:1;40865:19;:23;;;;40822:78;40625:282:::0;:::o;28586:30::-;;;;:::o;28255:228::-;3297:12;:10;:12::i;:::-;3286:23;;:7;:5;:7::i;:::-;:23;;;3278:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28325:2:::1;28307:15;:20;;;;28357:1;28338:16;:20;;;;28383:14;28369:11;:28;;;;28426:14;28408:15;:32;;;;28471:4;28451:17;;:24;;;;;;;;;;;;;;;;;;28255:228::o:0;39087:541::-;39178:4;3297:12;:10;:12::i;:::-;3286:23;;:7;:5;:7::i;:::-;:23;;;3278:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39195:16:::1;39231:3;39225:2;39215:7;;:12;;;;:::i;:::-;39214:20;;;;:::i;:::-;39195:39;;39245:16;39280:3;39275:1;39265:7;;:11;;;;:::i;:::-;39264:19;;;;:::i;:::-;39245:38;;39332:8;39316:12;:24;;39294:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;39470:8;39454:12;:24;;39432:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;39584:12;39570:11;:26;;;;39616:4;39609:11;;;;39087:541:::0;;;:::o;11601:127::-;11675:7;11702:9;:18;11712:7;11702:18;;;;;;;;;;;;;;;;11695:25;;11601:127;;;:::o;3717:103::-;3297:12;:10;:12::i;:::-;3286:23;;:7;:5;:7::i;:::-;:23;;;3278:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3782:30:::1;3809:1;3782:18;:30::i;:::-;3717:103::o:0;28006:50::-;;;;;;;;;;;;;;;;;;;;;;:::o;27549:37::-;;;;;;;;;;;;;:::o;33668:299::-;33723:4;3297:12;:10;:12::i;:::-;3286:23;;:7;:5;:7::i;:::-;:23;;;3278:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33748:15:::1;;;;;;;;;;;33740:33;;:52;33774:17;;33740:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;33818:4;33803:30;;;33834:15;;;;;;;;;;;33851:19;;33803:68;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33902:1;33882:17;:21;;;;33936:1;33914:19;:23;;;;33955:4;33948:11;;33668:299:::0;:::o;27652:52::-;;;;:::o;3066:87::-;3112:7;3139:6;;;;;;;;;;;3132:13;;3066:87;:::o;28623:32::-;;;;:::o;10529:104::-;10585:13;10618:7;10611:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10529:104;:::o;28063:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;14747:413::-;14840:4;14857:24;14884:11;:25;14896:12;:10;:12::i;:::-;14884:25;;;;;;;;;;;;;;;:34;14910:7;14884:34;;;;;;;;;;;;;;;;14857:61;;14957:15;14937:16;:35;;14929:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15050:67;15059:12;:10;:12::i;:::-;15073:7;15101:15;15082:16;:34;15050:8;:67::i;:::-;15148:4;15141:11;;;14747:413;;;;:::o;28210:36::-;;;;:::o;11941:175::-;12027:4;12044:42;12054:12;:10;:12::i;:::-;12068:9;12079:6;12044:9;:42::i;:::-;12104:4;12097:11;;11941:175;;;;:::o;27711:52::-;;;;:::o;38419:520::-;38567:4;3297:12;:10;:12::i;:::-;3286:23;;:7;:5;:7::i;:::-;:23;;;3278:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38626:2:::1;38606:16;:22;;38584:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;38747:2;38726:17;:23;;38704:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;38844:16;38826:15;:34;;;;38890:17;38871:16;:36;;;;38927:4;38920:11;;38419:520:::0;;;;:::o;34923:121::-;3297:12;:10;:12::i;:::-;3286:23;;:7;:5;:7::i;:::-;:23;;;3278:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35030:6:::1;35008:9;:19;35018:8;35008:19;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;34923:121:::0;;:::o;39801:575::-;39900:4;3297:12;:10;:12::i;:::-;3286:23;;:7;:5;:7::i;:::-;:23;;;3278:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39917:16:::1;39953:3;39947:2;39937:7;;:12;;;;:::i;:::-;39936:20;;;;:::i;:::-;39917:39;;39967:16;40002:3;39997:1;39987:7;;:11;;;;:::i;:::-;39986:19;;;;:::i;:::-;39967:38;;40060:8;40040:16;:28;;40018:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;40206:8;40186:16;:28;;40164:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;40328:16;40310:15;:34;;;;40364:4;40357:11;;;;39801:575:::0;;;:::o;27853:75::-;;;;;;;;;;;;;:::o;37340:371::-;37434:4;3297:12;:10;:12::i;:::-;3286:23;;:7;:5;:7::i;:::-;:23;;;3278:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37487:4:::1;;;;;;;;;;;37473:18;;:10;:18;;::::0;37451:112:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37604:1;37582:24;;:10;:24;;::::0;37574:67:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37671:10;37652:16;;:29;;;;;;;;;;;;;;;;;;37699:4;37692:11;;37340:371:::0;;;:::o;12179:151::-;12268:7;12295:11;:18;12307:5;12295:18;;;;;;;;;;;;;;;:27;12314:7;12295:27;;;;;;;;;;;;;;;;12288:34;;12179:151;;;;:::o;34140:132::-;3297:12;:10;:12::i;:::-;3286:23;;:7;:5;:7::i;:::-;:23;;;3278:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34257:7:::1;34226:18;:28;34245:8;34226:28;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;34140:132:::0;;:::o;40384:233::-;3297:12;:10;:12::i;:::-;3286:23;;:7;:5;:7::i;:::-;:23;;;3278:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40438:12:::1;40463:16;;;;;;;;;;;40455:30;;40494:21;40455:65;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40437:83;;;40539:7;40531:16;;;::::0;::::1;;40576:1;40558:15;:19;;;;40608:1;40588:17;:21;;;;40426:191;40384:233::o:0;37842:369::-;37935:4;3297:12;:10;:12::i;:::-;3286:23;;:7;:5;:7::i;:::-;:23;;;3278:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37988:4:::1;;;;;;;;;;;37974:18;;:10;:18;;::::0;37952:112:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38105:1;38083:24;;:10;:24;;::::0;38075:67:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38171:10;38153:15;;:28;;;;;;;;;;;;;;;;;;38199:4;38192:11;;37842:369:::0;;;:::o;34466:289::-;3297:12;:10;:12::i;:::-;3286:23;;:7;:5;:7::i;:::-;:23;;;3278:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34591:26:::1;34620:8;34591:37;;34644:6;34639:109;34656:9;:16;34652:1;:20;34639:109;;;34729:7;34694:18;:32;34713:9;34723:1;34713:12;;;;;;;;:::i;:::-;;;;;;;;34694:32;;;;;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;34674:3;;;;;:::i;:::-;;;;34639:109;;;;34580:175;34466:289:::0;;:::o;3975:201::-;3297:12;:10;:12::i;:::-;3286:23;;:7;:5;:7::i;:::-;:23;;;3278:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4084:1:::1;4064:22;;:8;:22;;::::0;4056:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4140:28;4159:8;4140:18;:28::i;:::-;3975:201:::0;:::o;28168:35::-;;;;:::o;1786:98::-;1839:7;1866:10;1859:17;;1786:98;:::o;18431:380::-;18584:1;18567:19;;:5;:19;;;18559:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18665:1;18646:21;;:7;:21;;;18638:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18749:6;18719:11;:18;18731:5;18719:18;;;;;;;;;;;;;;;:27;18738:7;18719:27;;;;;;;;;;;;;;;:36;;;;18787:7;18771:32;;18780:5;18771:32;;;18796:6;18771:32;;;;;;:::i;:::-;;;;;;;;18431:380;;;:::o;30152:1852::-;30300:1;30284:18;;:4;:18;;;30276:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30377:1;30363:16;;:2;:16;;;30355:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30437:9;:15;30447:4;30437:15;;;;;;;;;;;;;;;;;;;;;;;;;30436:16;:34;;;;;30457:9;:13;30467:2;30457:13;;;;;;;;;;;;;;;;;;;;;;;;;30456:14;30436:34;30432:407;;;30497:13;;;;;;;;;;;30491:19;;:2;:19;;;30487:341;;30549:11;;30539:6;:21;;30531:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;30699:15;;30681:13;30691:2;30681:9;:13::i;:::-;30672:6;:22;;;;:::i;:::-;30671:43;;30641:171;;;;;;;;;;;;:::i;:::-;;;;;;;;;30487:341;30432:407;30851:22;30876:6;30851:31;;30898:18;:24;30917:4;30898:24;;;;;;;;;;;;;;;;;;;;;;;;;30897:25;:52;;;;;30927:18;:22;30946:2;30927:22;;;;;;;;;;;;;;;;;;;;;;;;;30926:23;30897:52;30893:1052;;;30979:13;;;;;;;;;;;30971:21;;:4;:21;;;:44;;;;31002:13;;;;;;;;;;;30996:19;;:2;:19;;;30971:44;30966:968;;;31067:17;;;;;;;;;;;31037:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;31182:16;31220:15;;31201:16;;:34;;;;:::i;:::-;31182:53;;31269:1;31258:8;:12;31254:665;;;31295:17;31337:3;31325:8;31316:6;:17;;;;:::i;:::-;31315:25;;;;:::i;:::-;31295:45;;31363:47;31379:4;31393;31400:9;31363:15;:47::i;:::-;31459:9;31450:6;:18;;;;:::i;:::-;31433:35;;31538:2;31521:19;;:13;;;;;;;;;;;:19;;;:64;;;;;31570:9;:15;31580:4;31570:15;;;;;;;;;;;;;;;;;;;;;;;;;31569:16;31521:64;:107;;;;;31615:9;:13;31625:2;31615:13;;;;;;;;;;;;;;;;;;;;;;;;;31614:14;31521:107;:157;;;;;31673:4;31657:21;;:4;:21;;;;31521:157;:195;;;;;31708:8;;;;;;;;;;;31707:9;31521:195;31491:409;;;31778:4;31767:8;;:15;;;;;;;;;;;;;;;;;;31809:24;31824:8;31809:14;:24::i;:::-;31871:5;31860:8;;:16;;;;;;;;;;;;;;;;;;31491:409;31272:647;31254:665;31018:916;30966:968;30893:1052;31955:41;31971:4;31977:2;31981:14;31955:15;:41::i;:::-;30265:1739;30152:1852;;;:::o;4336:191::-;4410:16;4429:6;;;;;;;;;;;4410:25;;4455:8;4446:6;;:17;;;;;;;;;;;;;;;;;;4510:8;4479:40;;4500:8;4479:40;;;;;;;;;;;;4399:128;4336:191;:::o;15650:733::-;15808:1;15790:20;;:6;:20;;;15782:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15892:1;15871:23;;:9;:23;;;15863:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15947:47;15968:6;15976:9;15987:6;15947:20;:47::i;:::-;16007:21;16031:9;:17;16041:6;16031:17;;;;;;;;;;;;;;;;16007:41;;16084:6;16067:13;:23;;16059:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;16205:6;16189:13;:22;16169:9;:17;16179:6;16169:17;;;;;;;;;;;;;;;:42;;;;16257:6;16233:9;:20;16243:9;16233:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16298:9;16281:35;;16290:6;16281:35;;;16309:6;16281:35;;;;;;:::i;:::-;;;;;;;;16329:46;16349:6;16357:9;16368:6;16329:19;:46::i;:::-;15771:612;15650:733;;;:::o;32012:1279::-;32106:1;32078:24;32096:4;32078:9;:24::i;:::-;:29;32074:68;32124:7;32074:68;32152:19;32182:27;32220:26;32272:28;32303:24;32321:4;32303:9;:24::i;:::-;32272:55;;32434:8;32401:16;;32378:20;:39;;;;:::i;:::-;32377:65;;;;:::i;:::-;32342:100;;32547:8;32515:15;;32492:20;:38;;;;:::i;:::-;32491:64;;;;:::i;:::-;32457:98;;32570:21;32594;32570:45;;32655:1;32634:18;:22;32630:349;;;32677:44;32716:1;32695:18;:22;;;;:::i;:::-;32719:1;32677:17;:44::i;:::-;32778:13;32754:21;:37;;;;:::i;:::-;32740:51;;32831:11;32810:17;;:32;;;;;;;:::i;:::-;;;;;;;;32961:1;32940:18;:22;;;;:::i;:::-;32901:18;:62;;;;:::i;:::-;32861:19;;:102;;;;;;;:::i;:::-;;;;;;;;32630:349;33019:1;32997:19;:23;32993:280;;;33057:21;33041:37;;33097:41;33115:19;33136:1;33097:17;:41::i;:::-;33195:13;33171:21;:37;;;;:::i;:::-;33157:51;;33246:11;33227:15;;:30;;;;;;;:::i;:::-;;;;;;;;32993:280;32257:1027;;32063:1228;;;32012:1279;;:::o;19411:125::-;;;;:::o;20140:124::-;;;;:::o;35715:588::-;35832:21;35870:1;35856:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35832:40;;35901:4;35883;35888:1;35883:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;35927:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35917:4;35922:1;35917:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;35977:4;35962:29;;;36014:15;36045:17;35962:111;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36086:15;:66;;;36167:11;36193:14;36222:4;36249;36269:15;36086:209;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35821:482;35715:588;;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;593:99::-;645:6;679:5;673:12;663:22;;593:99;;;:::o;698:169::-;782:11;816:6;811:3;804:19;856:4;851:3;847:14;832:29;;698:169;;;;:::o;873:246::-;954:1;964:113;978:6;975:1;972:13;964:113;;;1063:1;1058:3;1054:11;1048:18;1044:1;1039:3;1035:11;1028:39;1000:2;997:1;993:10;988:15;;964:113;;;1111:1;1102:6;1097:3;1093:16;1086:27;935:184;873:246;;;:::o;1125:102::-;1166:6;1217:2;1213:7;1208:2;1201:5;1197:14;1193:28;1183:38;;1125:102;;;:::o;1233:377::-;1321:3;1349:39;1382:5;1349:39;:::i;:::-;1404:71;1468:6;1463:3;1404:71;:::i;:::-;1397:78;;1484:65;1542:6;1537:3;1530:4;1523:5;1519:16;1484:65;:::i;:::-;1574:29;1596:6;1574:29;:::i;:::-;1569:3;1565:39;1558:46;;1325:285;1233:377;;;;:::o;1616:313::-;1729:4;1767:2;1756:9;1752:18;1744:26;;1816:9;1810:4;1806:20;1802:1;1791:9;1787:17;1780:47;1844:78;1917:4;1908:6;1844:78;:::i;:::-;1836:86;;1616:313;;;;:::o;1935:75::-;1968:6;2001:2;1995:9;1985:19;;1935:75;:::o;2016:117::-;2125:1;2122;2115:12;2139:117;2248:1;2245;2238:12;2262:122;2335:24;2353:5;2335:24;:::i;:::-;2328:5;2325:35;2315:63;;2374:1;2371;2364:12;2315:63;2262:122;:::o;2390:139::-;2436:5;2474:6;2461:20;2452:29;;2490:33;2517:5;2490:33;:::i;:::-;2390:139;;;;:::o;2535:77::-;2572:7;2601:5;2590:16;;2535:77;;;:::o;2618:122::-;2691:24;2709:5;2691:24;:::i;:::-;2684:5;2681:35;2671:63;;2730:1;2727;2720:12;2671:63;2618:122;:::o;2746:139::-;2792:5;2830:6;2817:20;2808:29;;2846:33;2873:5;2846:33;:::i;:::-;2746:139;;;;:::o;2891:474::-;2959:6;2967;3016:2;3004:9;2995:7;2991:23;2987:32;2984:119;;;3022:79;;:::i;:::-;2984:119;3142:1;3167:53;3212:7;3203:6;3192:9;3188:22;3167:53;:::i;:::-;3157:63;;3113:117;3269:2;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3240:118;2891:474;;;;;:::o;3371:90::-;3405:7;3448:5;3441:13;3434:21;3423:32;;3371:90;;;:::o;3467:109::-;3548:21;3563:5;3548:21;:::i;:::-;3543:3;3536:34;3467:109;;:::o;3582:210::-;3669:4;3707:2;3696:9;3692:18;3684:26;;3720:65;3782:1;3771:9;3767:17;3758:6;3720:65;:::i;:::-;3582:210;;;;:::o;3798:117::-;3907:1;3904;3897:12;3921:180;3969:77;3966:1;3959:88;4066:4;4063:1;4056:15;4090:4;4087:1;4080:15;4107:281;4190:27;4212:4;4190:27;:::i;:::-;4182:6;4178:40;4320:6;4308:10;4305:22;4284:18;4272:10;4269:34;4266:62;4263:88;;;4331:18;;:::i;:::-;4263:88;4371:10;4367:2;4360:22;4150:238;4107:281;;:::o;4394:129::-;4428:6;4455:20;;:::i;:::-;4445:30;;4484:33;4512:4;4504:6;4484:33;:::i;:::-;4394:129;;;:::o;4529:311::-;4606:4;4696:18;4688:6;4685:30;4682:56;;;4718:18;;:::i;:::-;4682:56;4768:4;4760:6;4756:17;4748:25;;4828:4;4822;4818:15;4810:23;;4529:311;;;:::o;4846:117::-;4955:1;4952;4945:12;4986:710;5082:5;5107:81;5123:64;5180:6;5123:64;:::i;:::-;5107:81;:::i;:::-;5098:90;;5208:5;5237:6;5230:5;5223:21;5271:4;5264:5;5260:16;5253:23;;5324:4;5316:6;5312:17;5304:6;5300:30;5353:3;5345:6;5342:15;5339:122;;;5372:79;;:::i;:::-;5339:122;5487:6;5470:220;5504:6;5499:3;5496:15;5470:220;;;5579:3;5608:37;5641:3;5629:10;5608:37;:::i;:::-;5603:3;5596:50;5675:4;5670:3;5666:14;5659:21;;5546:144;5530:4;5525:3;5521:14;5514:21;;5470:220;;;5474:21;5088:608;;4986:710;;;;;:::o;5719:370::-;5790:5;5839:3;5832:4;5824:6;5820:17;5816:27;5806:122;;5847:79;;:::i;:::-;5806:122;5964:6;5951:20;5989:94;6079:3;6071:6;6064:4;6056:6;6052:17;5989:94;:::i;:::-;5980:103;;5796:293;5719:370;;;;:::o;6095:116::-;6165:21;6180:5;6165:21;:::i;:::-;6158:5;6155:32;6145:60;;6201:1;6198;6191:12;6145:60;6095:116;:::o;6217:133::-;6260:5;6298:6;6285:20;6276:29;;6314:30;6338:5;6314:30;:::i;:::-;6217:133;;;;:::o;6356:678::-;6446:6;6454;6503:2;6491:9;6482:7;6478:23;6474:32;6471:119;;;6509:79;;:::i;:::-;6471:119;6657:1;6646:9;6642:17;6629:31;6687:18;6679:6;6676:30;6673:117;;;6709:79;;:::i;:::-;6673:117;6814:78;6884:7;6875:6;6864:9;6860:22;6814:78;:::i;:::-;6804:88;;6600:302;6941:2;6967:50;7009:7;7000:6;6989:9;6985:22;6967:50;:::i;:::-;6957:60;;6912:115;6356:678;;;;;:::o;7040:60::-;7068:3;7089:5;7082:12;;7040:60;;;:::o;7106:142::-;7156:9;7189:53;7207:34;7216:24;7234:5;7216:24;:::i;:::-;7207:34;:::i;:::-;7189:53;:::i;:::-;7176:66;;7106:142;;;:::o;7254:126::-;7304:9;7337:37;7368:5;7337:37;:::i;:::-;7324:50;;7254:126;;;:::o;7386:153::-;7463:9;7496:37;7527:5;7496:37;:::i;:::-;7483:50;;7386:153;;;:::o;7545:185::-;7659:64;7717:5;7659:64;:::i;:::-;7654:3;7647:77;7545:185;;:::o;7736:276::-;7856:4;7894:2;7883:9;7879:18;7871:26;;7907:98;8002:1;7991:9;7987:17;7978:6;7907:98;:::i;:::-;7736:276;;;;:::o;8018:118::-;8105:24;8123:5;8105:24;:::i;:::-;8100:3;8093:37;8018:118;;:::o;8142:222::-;8235:4;8273:2;8262:9;8258:18;8250:26;;8286:71;8354:1;8343:9;8339:17;8330:6;8286:71;:::i;:::-;8142:222;;;;:::o;8370:329::-;8429:6;8478:2;8466:9;8457:7;8453:23;8449:32;8446:119;;;8484:79;;:::i;:::-;8446:119;8604:1;8629:53;8674:7;8665:6;8654:9;8650:22;8629:53;:::i;:::-;8619:63;;8575:117;8370:329;;;;:::o;8705:619::-;8782:6;8790;8798;8847:2;8835:9;8826:7;8822:23;8818:32;8815:119;;;8853:79;;:::i;:::-;8815:119;8973:1;8998:53;9043:7;9034:6;9023:9;9019:22;8998:53;:::i;:::-;8988:63;;8944:117;9100:2;9126:53;9171:7;9162:6;9151:9;9147:22;9126:53;:::i;:::-;9116:63;;9071:118;9228:2;9254:53;9299:7;9290:6;9279:9;9275:22;9254:53;:::i;:::-;9244:63;;9199:118;8705:619;;;;;:::o;9330:86::-;9365:7;9405:4;9398:5;9394:16;9383:27;;9330:86;;;:::o;9422:112::-;9505:22;9521:5;9505:22;:::i;:::-;9500:3;9493:35;9422:112;;:::o;9540:214::-;9629:4;9667:2;9656:9;9652:18;9644:26;;9680:67;9744:1;9733:9;9729:17;9720:6;9680:67;:::i;:::-;9540:214;;;;:::o;9760:329::-;9819:6;9868:2;9856:9;9847:7;9843:23;9839:32;9836:119;;;9874:79;;:::i;:::-;9836:119;9994:1;10019:53;10064:7;10055:6;10044:9;10040:22;10019:53;:::i;:::-;10009:63;;9965:117;9760:329;;;;:::o;10095:474::-;10163:6;10171;10220:2;10208:9;10199:7;10195:23;10191:32;10188:119;;;10226:79;;:::i;:::-;10188:119;10346:1;10371:53;10416:7;10407:6;10396:9;10392:22;10371:53;:::i;:::-;10361:63;;10317:117;10473:2;10499:53;10544:7;10535:6;10524:9;10520:22;10499:53;:::i;:::-;10489:63;;10444:118;10095:474;;;;;:::o;10575:468::-;10640:6;10648;10697:2;10685:9;10676:7;10672:23;10668:32;10665:119;;;10703:79;;:::i;:::-;10665:119;10823:1;10848:53;10893:7;10884:6;10873:9;10869:22;10848:53;:::i;:::-;10838:63;;10794:117;10950:2;10976:50;11018:7;11009:6;10998:9;10994:22;10976:50;:::i;:::-;10966:60;;10921:115;10575:468;;;;;:::o;11049:474::-;11117:6;11125;11174:2;11162:9;11153:7;11149:23;11145:32;11142:119;;;11180:79;;:::i;:::-;11142:119;11300:1;11325:53;11370:7;11361:6;11350:9;11346:22;11325:53;:::i;:::-;11315:63;;11271:117;11427:2;11453:53;11498:7;11489:6;11478:9;11474:22;11453:53;:::i;:::-;11443:63;;11398:118;11049:474;;;;;:::o;11529:180::-;11577:77;11574:1;11567:88;11674:4;11671:1;11664:15;11698:4;11695:1;11688:15;11715:320;11759:6;11796:1;11790:4;11786:12;11776:22;;11843:1;11837:4;11833:12;11864:18;11854:81;;11920:4;11912:6;11908:17;11898:27;;11854:81;11982:2;11974:6;11971:14;11951:18;11948:38;11945:84;;12001:18;;:::i;:::-;11945:84;11766:269;11715:320;;;:::o;12041:182::-;12181:34;12177:1;12169:6;12165:14;12158:58;12041:182;:::o;12229:366::-;12371:3;12392:67;12456:2;12451:3;12392:67;:::i;:::-;12385:74;;12468:93;12557:3;12468:93;:::i;:::-;12586:2;12581:3;12577:12;12570:19;;12229:366;;;:::o;12601:419::-;12767:4;12805:2;12794:9;12790:18;12782:26;;12854:9;12848:4;12844:20;12840:1;12829:9;12825:17;12818:47;12882:131;13008:4;12882:131;:::i;:::-;12874:139;;12601:419;;;:::o;13026:180::-;13074:77;13071:1;13064:88;13171:4;13168:1;13161:15;13195:4;13192:1;13185:15;13212:180;13260:77;13257:1;13250:88;13357:4;13354:1;13347:15;13381:4;13378:1;13371:15;13398:233;13437:3;13460:24;13478:5;13460:24;:::i;:::-;13451:33;;13506:66;13499:5;13496:77;13493:103;;13576:18;;:::i;:::-;13493:103;13623:1;13616:5;13612:13;13605:20;;13398:233;;;:::o;13637:221::-;13777:34;13773:1;13765:6;13761:14;13754:58;13846:4;13841:2;13833:6;13829:15;13822:29;13637:221;:::o;13864:366::-;14006:3;14027:67;14091:2;14086:3;14027:67;:::i;:::-;14020:74;;14103:93;14192:3;14103:93;:::i;:::-;14221:2;14216:3;14212:12;14205:19;;13864:366;;;:::o;14236:419::-;14402:4;14440:2;14429:9;14425:18;14417:26;;14489:9;14483:4;14479:20;14475:1;14464:9;14460:17;14453:47;14517:131;14643:4;14517:131;:::i;:::-;14509:139;;14236:419;;;:::o;14661:170::-;14801:22;14797:1;14789:6;14785:14;14778:46;14661:170;:::o;14837:366::-;14979:3;15000:67;15064:2;15059:3;15000:67;:::i;:::-;14993:74;;15076:93;15165:3;15076:93;:::i;:::-;15194:2;15189:3;15185:12;15178:19;;14837:366;;;:::o;15209:419::-;15375:4;15413:2;15402:9;15398:18;15390:26;;15462:9;15456:4;15452:20;15448:1;15437:9;15433:17;15426:47;15490:131;15616:4;15490:131;:::i;:::-;15482:139;;15209:419;;;:::o;15634:227::-;15774:34;15770:1;15762:6;15758:14;15751:58;15843:10;15838:2;15830:6;15826:15;15819:35;15634:227;:::o;15867:366::-;16009:3;16030:67;16094:2;16089:3;16030:67;:::i;:::-;16023:74;;16106:93;16195:3;16106:93;:::i;:::-;16224:2;16219:3;16215:12;16208:19;;15867:366;;;:::o;16239:419::-;16405:4;16443:2;16432:9;16428:18;16420:26;;16492:9;16486:4;16482:20;16478:1;16467:9;16463:17;16456:47;16520:131;16646:4;16520:131;:::i;:::-;16512:139;;16239:419;;;:::o;16664:191::-;16704:3;16723:20;16741:1;16723:20;:::i;:::-;16718:25;;16757:20;16775:1;16757:20;:::i;:::-;16752:25;;16800:1;16797;16793:9;16786:16;;16821:3;16818:1;16815:10;16812:36;;;16828:18;;:::i;:::-;16812:36;16664:191;;;;:::o;16861:143::-;16918:5;16949:6;16943:13;16934:22;;16965:33;16992:5;16965:33;:::i;:::-;16861:143;;;;:::o;17010:351::-;17080:6;17129:2;17117:9;17108:7;17104:23;17100:32;17097:119;;;17135:79;;:::i;:::-;17097:119;17255:1;17280:64;17336:7;17327:6;17316:9;17312:22;17280:64;:::i;:::-;17270:74;;17226:128;17010:351;;;;:::o;17367:332::-;17488:4;17526:2;17515:9;17511:18;17503:26;;17539:71;17607:1;17596:9;17592:17;17583:6;17539:71;:::i;:::-;17620:72;17688:2;17677:9;17673:18;17664:6;17620:72;:::i;:::-;17367:332;;;;;:::o;17705:137::-;17759:5;17790:6;17784:13;17775:22;;17806:30;17830:5;17806:30;:::i;:::-;17705:137;;;;:::o;17848:345::-;17915:6;17964:2;17952:9;17943:7;17939:23;17935:32;17932:119;;;17970:79;;:::i;:::-;17932:119;18090:1;18115:61;18168:7;18159:6;18148:9;18144:22;18115:61;:::i;:::-;18105:71;;18061:125;17848:345;;;;:::o;18199:410::-;18239:7;18262:20;18280:1;18262:20;:::i;:::-;18257:25;;18296:20;18314:1;18296:20;:::i;:::-;18291:25;;18351:1;18348;18344:9;18373:30;18391:11;18373:30;:::i;:::-;18362:41;;18552:1;18543:7;18539:15;18536:1;18533:22;18513:1;18506:9;18486:83;18463:139;;18582:18;;:::i;:::-;18463:139;18247:362;18199:410;;;;:::o;18615:180::-;18663:77;18660:1;18653:88;18760:4;18757:1;18750:15;18784:4;18781:1;18774:15;18801:185;18841:1;18858:20;18876:1;18858:20;:::i;:::-;18853:25;;18892:20;18910:1;18892:20;:::i;:::-;18887:25;;18931:1;18921:35;;18936:18;;:::i;:::-;18921:35;18978:1;18975;18971:9;18966:14;;18801:185;;;;:::o;18992:240::-;19132:34;19128:1;19120:6;19116:14;19109:58;19201:23;19196:2;19188:6;19184:15;19177:48;18992:240;:::o;19238:366::-;19380:3;19401:67;19465:2;19460:3;19401:67;:::i;:::-;19394:74;;19477:93;19566:3;19477:93;:::i;:::-;19595:2;19590:3;19586:12;19579:19;;19238:366;;;:::o;19610:419::-;19776:4;19814:2;19803:9;19799:18;19791:26;;19863:9;19857:4;19853:20;19849:1;19838:9;19834:17;19827:47;19891:131;20017:4;19891:131;:::i;:::-;19883:139;;19610:419;;;:::o;20035:240::-;20175:34;20171:1;20163:6;20159:14;20152:58;20244:23;20239:2;20231:6;20227:15;20220:48;20035:240;:::o;20281:366::-;20423:3;20444:67;20508:2;20503:3;20444:67;:::i;:::-;20437:74;;20520:93;20609:3;20520:93;:::i;:::-;20638:2;20633:3;20629:12;20622:19;;20281:366;;;:::o;20653:419::-;20819:4;20857:2;20846:9;20842:18;20834:26;;20906:9;20900:4;20896:20;20892:1;20881:9;20877:17;20870:47;20934:131;21060:4;20934:131;:::i;:::-;20926:139;;20653:419;;;:::o;21078:224::-;21218:34;21214:1;21206:6;21202:14;21195:58;21287:7;21282:2;21274:6;21270:15;21263:32;21078:224;:::o;21308:366::-;21450:3;21471:67;21535:2;21530:3;21471:67;:::i;:::-;21464:74;;21547:93;21636:3;21547:93;:::i;:::-;21665:2;21660:3;21656:12;21649:19;;21308:366;;;:::o;21680:419::-;21846:4;21884:2;21873:9;21869:18;21861:26;;21933:9;21927:4;21923:20;21919:1;21908:9;21904:17;21897:47;21961:131;22087:4;21961:131;:::i;:::-;21953:139;;21680:419;;;:::o;22105:224::-;22245:34;22241:1;22233:6;22229:14;22222:58;22314:7;22309:2;22301:6;22297:15;22290:32;22105:224;:::o;22335:366::-;22477:3;22498:67;22562:2;22557:3;22498:67;:::i;:::-;22491:74;;22574:93;22663:3;22574:93;:::i;:::-;22692:2;22687:3;22683:12;22676:19;;22335:366;;;:::o;22707:419::-;22873:4;22911:2;22900:9;22896:18;22888:26;;22960:9;22954:4;22950:20;22946:1;22935:9;22931:17;22924:47;22988:131;23114:4;22988:131;:::i;:::-;22980:139;;22707:419;;;:::o;23132:225::-;23272:34;23268:1;23260:6;23256:14;23249:58;23341:8;23336:2;23328:6;23324:15;23317:33;23132:225;:::o;23363:366::-;23505:3;23526:67;23590:2;23585:3;23526:67;:::i;:::-;23519:74;;23602:93;23691:3;23602:93;:::i;:::-;23720:2;23715:3;23711:12;23704:19;;23363:366;;;:::o;23735:419::-;23901:4;23939:2;23928:9;23924:18;23916:26;;23988:9;23982:4;23978:20;23974:1;23963:9;23959:17;23952:47;24016:131;24142:4;24016:131;:::i;:::-;24008:139;;23735:419;;;:::o;24160:244::-;24300:34;24296:1;24288:6;24284:14;24277:58;24369:27;24364:2;24356:6;24352:15;24345:52;24160:244;:::o;24410:366::-;24552:3;24573:67;24637:2;24632:3;24573:67;:::i;:::-;24566:74;;24649:93;24738:3;24649:93;:::i;:::-;24767:2;24762:3;24758:12;24751:19;;24410:366;;;:::o;24782:419::-;24948:4;24986:2;24975:9;24971:18;24963:26;;25035:9;25029:4;25025:20;25021:1;25010:9;25006:17;24999:47;25063:131;25189:4;25063:131;:::i;:::-;25055:139;;24782:419;;;:::o;25207:244::-;25347:34;25343:1;25335:6;25331:14;25324:58;25416:27;25411:2;25403:6;25399:15;25392:52;25207:244;:::o;25457:366::-;25599:3;25620:67;25684:2;25679:3;25620:67;:::i;:::-;25613:74;;25696:93;25785:3;25696:93;:::i;:::-;25814:2;25809:3;25805:12;25798:19;;25457:366;;;:::o;25829:419::-;25995:4;26033:2;26022:9;26018:18;26010:26;;26082:9;26076:4;26072:20;26068:1;26057:9;26053:17;26046:47;26110:131;26236:4;26110:131;:::i;:::-;26102:139;;25829:419;;;:::o;26254:231::-;26394:34;26390:1;26382:6;26378:14;26371:58;26463:14;26458:2;26450:6;26446:15;26439:39;26254:231;:::o;26491:366::-;26633:3;26654:67;26718:2;26713:3;26654:67;:::i;:::-;26647:74;;26730:93;26819:3;26730:93;:::i;:::-;26848:2;26843:3;26839:12;26832:19;;26491:366;;;:::o;26863:419::-;27029:4;27067:2;27056:9;27052:18;27044:26;;27116:9;27110:4;27106:20;27102:1;27091:9;27087:17;27080:47;27144:131;27270:4;27144:131;:::i;:::-;27136:139;;26863:419;;;:::o;27288:180::-;27428:32;27424:1;27416:6;27412:14;27405:56;27288:180;:::o;27474:366::-;27616:3;27637:67;27701:2;27696:3;27637:67;:::i;:::-;27630:74;;27713:93;27802:3;27713:93;:::i;:::-;27831:2;27826:3;27822:12;27815:19;;27474:366;;;:::o;27846:419::-;28012:4;28050:2;28039:9;28035:18;28027:26;;28099:9;28093:4;28089:20;28085:1;28074:9;28070:17;28063:47;28127:131;28253:4;28127:131;:::i;:::-;28119:139;;27846:419;;;:::o;28271:147::-;28372:11;28409:3;28394:18;;28271:147;;;;:::o;28424:114::-;;:::o;28544:398::-;28703:3;28724:83;28805:1;28800:3;28724:83;:::i;:::-;28717:90;;28816:93;28905:3;28816:93;:::i;:::-;28934:1;28929:3;28925:11;28918:18;;28544:398;;;:::o;28948:379::-;29132:3;29154:147;29297:3;29154:147;:::i;:::-;29147:154;;29318:3;29311:10;;28948:379;;;:::o;29333:225::-;29473:34;29469:1;29461:6;29457:14;29450:58;29542:8;29537:2;29529:6;29525:15;29518:33;29333:225;:::o;29564:366::-;29706:3;29727:67;29791:2;29786:3;29727:67;:::i;:::-;29720:74;;29803:93;29892:3;29803:93;:::i;:::-;29921:2;29916:3;29912:12;29905:19;;29564:366;;;:::o;29936:419::-;30102:4;30140:2;30129:9;30125:18;30117:26;;30189:9;30183:4;30179:20;30175:1;30164:9;30160:17;30153:47;30217:131;30343:4;30217:131;:::i;:::-;30209:139;;29936:419;;;:::o;30361:223::-;30501:34;30497:1;30489:6;30485:14;30478:58;30570:6;30565:2;30557:6;30553:15;30546:31;30361:223;:::o;30590:366::-;30732:3;30753:67;30817:2;30812:3;30753:67;:::i;:::-;30746:74;;30829:93;30918:3;30829:93;:::i;:::-;30947:2;30942:3;30938:12;30931:19;;30590:366;;;:::o;30962:419::-;31128:4;31166:2;31155:9;31151:18;31143:26;;31215:9;31209:4;31205:20;31201:1;31190:9;31186:17;31179:47;31243:131;31369:4;31243:131;:::i;:::-;31235:139;;30962:419;;;:::o;31387:221::-;31527:34;31523:1;31515:6;31511:14;31504:58;31596:4;31591:2;31583:6;31579:15;31572:29;31387:221;:::o;31614:366::-;31756:3;31777:67;31841:2;31836:3;31777:67;:::i;:::-;31770:74;;31853:93;31942:3;31853:93;:::i;:::-;31971:2;31966:3;31962:12;31955:19;;31614:366;;;:::o;31986:419::-;32152:4;32190:2;32179:9;32175:18;32167:26;;32239:9;32233:4;32229:20;32225:1;32214:9;32210:17;32203:47;32267:131;32393:4;32267:131;:::i;:::-;32259:139;;31986:419;;;:::o;32411:224::-;32551:34;32547:1;32539:6;32535:14;32528:58;32620:7;32615:2;32607:6;32603:15;32596:32;32411:224;:::o;32641:366::-;32783:3;32804:67;32868:2;32863:3;32804:67;:::i;:::-;32797:74;;32880:93;32969:3;32880:93;:::i;:::-;32998:2;32993:3;32989:12;32982:19;;32641:366;;;:::o;33013:419::-;33179:4;33217:2;33206:9;33202:18;33194:26;;33266:9;33260:4;33256:20;33252:1;33241:9;33237:17;33230:47;33294:131;33420:4;33294:131;:::i;:::-;33286:139;;33013:419;;;:::o;33438:222::-;33578:34;33574:1;33566:6;33562:14;33555:58;33647:5;33642:2;33634:6;33630:15;33623:30;33438:222;:::o;33666:366::-;33808:3;33829:67;33893:2;33888:3;33829:67;:::i;:::-;33822:74;;33905:93;33994:3;33905:93;:::i;:::-;34023:2;34018:3;34014:12;34007:19;;33666:366;;;:::o;34038:419::-;34204:4;34242:2;34231:9;34227:18;34219:26;;34291:9;34285:4;34281:20;34277:1;34266:9;34262:17;34255:47;34319:131;34445:4;34319:131;:::i;:::-;34311:139;;34038:419;;;:::o;34463:244::-;34603:34;34599:1;34591:6;34587:14;34580:58;34672:27;34667:2;34659:6;34655:15;34648:52;34463:244;:::o;34713:366::-;34855:3;34876:67;34940:2;34935:3;34876:67;:::i;:::-;34869:74;;34952:93;35041:3;34952:93;:::i;:::-;35070:2;35065:3;35061:12;35054:19;;34713:366;;;:::o;35085:419::-;35251:4;35289:2;35278:9;35274:18;35266:26;;35338:9;35332:4;35328:20;35324:1;35313:9;35309:17;35302:47;35366:131;35492:4;35366:131;:::i;:::-;35358:139;;35085:419;;;:::o;35510:241::-;35650:34;35646:1;35638:6;35634:14;35627:58;35719:24;35714:2;35706:6;35702:15;35695:49;35510:241;:::o;35757:366::-;35899:3;35920:67;35984:2;35979:3;35920:67;:::i;:::-;35913:74;;35996:93;36085:3;35996:93;:::i;:::-;36114:2;36109:3;36105:12;36098:19;;35757:366;;;:::o;36129:419::-;36295:4;36333:2;36322:9;36318:18;36310:26;;36382:9;36376:4;36372:20;36368:1;36357:9;36353:17;36346:47;36410:131;36536:4;36410:131;:::i;:::-;36402:139;;36129:419;;;:::o;36554:222::-;36694:34;36690:1;36682:6;36678:14;36671:58;36763:5;36758:2;36750:6;36746:15;36739:30;36554:222;:::o;36782:366::-;36924:3;36945:67;37009:2;37004:3;36945:67;:::i;:::-;36938:74;;37021:93;37110:3;37021:93;:::i;:::-;37139:2;37134:3;37130:12;37123:19;;36782:366;;;:::o;37154:419::-;37320:4;37358:2;37347:9;37343:18;37335:26;;37407:9;37401:4;37397:20;37393:1;37382:9;37378:17;37371:47;37435:131;37561:4;37435:131;:::i;:::-;37427:139;;37154:419;;;:::o;37579:194::-;37619:4;37639:20;37657:1;37639:20;:::i;:::-;37634:25;;37673:20;37691:1;37673:20;:::i;:::-;37668:25;;37717:1;37714;37710:9;37702:17;;37741:1;37735:4;37732:11;37729:37;;;37746:18;;:::i;:::-;37729:37;37579:194;;;;:::o;37779:225::-;37919:34;37915:1;37907:6;37903:14;37896:58;37988:8;37983:2;37975:6;37971:15;37964:33;37779:225;:::o;38010:366::-;38152:3;38173:67;38237:2;38232:3;38173:67;:::i;:::-;38166:74;;38249:93;38338:3;38249:93;:::i;:::-;38367:2;38362:3;38358:12;38351:19;;38010:366;;;:::o;38382:419::-;38548:4;38586:2;38575:9;38571:18;38563:26;;38635:9;38629:4;38625:20;38621:1;38610:9;38606:17;38599:47;38663:131;38789:4;38663:131;:::i;:::-;38655:139;;38382:419;;;:::o;38807:143::-;38864:5;38895:6;38889:13;38880:22;;38911:33;38938:5;38911:33;:::i;:::-;38807:143;;;;:::o;38956:351::-;39026:6;39075:2;39063:9;39054:7;39050:23;39046:32;39043:119;;;39081:79;;:::i;:::-;39043:119;39201:1;39226:64;39282:7;39273:6;39262:9;39258:22;39226:64;:::i;:::-;39216:74;;39172:128;38956:351;;;;:::o;39313:114::-;39380:6;39414:5;39408:12;39398:22;;39313:114;;;:::o;39433:184::-;39532:11;39566:6;39561:3;39554:19;39606:4;39601:3;39597:14;39582:29;;39433:184;;;;:::o;39623:132::-;39690:4;39713:3;39705:11;;39743:4;39738:3;39734:14;39726:22;;39623:132;;;:::o;39761:108::-;39838:24;39856:5;39838:24;:::i;:::-;39833:3;39826:37;39761:108;;:::o;39875:179::-;39944:10;39965:46;40007:3;39999:6;39965:46;:::i;:::-;40043:4;40038:3;40034:14;40020:28;;39875:179;;;;:::o;40060:113::-;40130:4;40162;40157:3;40153:14;40145:22;;40060:113;;;:::o;40209:732::-;40328:3;40357:54;40405:5;40357:54;:::i;:::-;40427:86;40506:6;40501:3;40427:86;:::i;:::-;40420:93;;40537:56;40587:5;40537:56;:::i;:::-;40616:7;40647:1;40632:284;40657:6;40654:1;40651:13;40632:284;;;40733:6;40727:13;40760:63;40819:3;40804:13;40760:63;:::i;:::-;40753:70;;40846:60;40899:6;40846:60;:::i;:::-;40836:70;;40692:224;40679:1;40676;40672:9;40667:14;;40632:284;;;40636:14;40932:3;40925:10;;40333:608;;;40209:732;;;;:::o;40947:815::-;41202:4;41240:3;41229:9;41225:19;41217:27;;41254:71;41322:1;41311:9;41307:17;41298:6;41254:71;:::i;:::-;41335:72;41403:2;41392:9;41388:18;41379:6;41335:72;:::i;:::-;41454:9;41448:4;41444:20;41439:2;41428:9;41424:18;41417:48;41482:108;41585:4;41576:6;41482:108;:::i;:::-;41474:116;;41600:72;41668:2;41657:9;41653:18;41644:6;41600:72;:::i;:::-;41682:73;41750:3;41739:9;41735:19;41726:6;41682:73;:::i;:::-;40947:815;;;;;;;;:::o

Swarm Source

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