ETH Price: $3,444.12 (+3.43%)

Token

DeFiBot (DEFIBOT)
 

Overview

Max Total Supply

10,000,000 DEFIBOT

Holders

171 (0.00%)

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

DefiBot - Trading and Reseach Bot.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DeFiBot

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
    DeFiBot
    Telegram Trading & Research Bot
    Fast Trading, Fast Information and Free-to-use, 
    We are focused on serving our members and providing the best UX.
    
    
    Website: DeFiBot.app
    Twitter: twitter.com/DeFiBotTeam
    Telegram: t.me/DeFiBotHub
    Tutorials: docs.defibot.app/Tutorials
    Documentation: docs.defibot.app
    Youtube: youtube.com/playlist?list=PLtTTDS0-qZI6Kbu0a6rDirBqi41DnzPWE
    Email: [email protected]
    
**/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
pragma experimental ABIEncoderV2;

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (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
    );
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(
        address to
    ) external returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    // Private variables
    bool private swapInProgress;

    //Public Variables

    // Wallets for collected fees
    address public memberPerksWallet;
    address public projectWallet;

    // These will prevent whales accumulating all of the supply initially, at maturation these will be turned off
    uint256 public maxTransactionAmount;
    uint256 public maxWalletHoldAmount;

    // How many tokens to collect in fees before swapping back
    uint256 public swapTokensAtAmount;

    // Variables for initial restricted trading conditions
    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapOfCollectedTradingFeesEnabled = false;

    bool public blacklistAbilityRenounced = false;

    // If MEV Bots or Whales do not behave themselves, we can blacklist them from buying or selling
    mapping(address => bool) blacklistedAddresses;

    // Buy Fees and totals
    uint256 public buyBurnFees;
    uint256 public buyCommunityPerkFee;
    uint256 public buyLiquidityFee;
    uint256 public buyProjectFee;
    uint256 public buyTotalFees;

    // Sell Fees and totals
    uint256 public sellBurnFee;
    uint256 public sellCommunityPerkFee;
    uint256 public sellLiquidityFee;
    uint256 public sellProjectFee;
    uint256 public sellTotalFees;

    // Tokens Amount for fees in a swap.
    uint256 public tokensForBurn;
    uint256 public tokensForCommunityPerk;
    uint256 public tokensForLiquidity;
    uint256 public tokensForProject;

    /******************/

    // we will want to exclude some Address from fees and max transaction restrictions
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // Store addresses for automatic market maker pairs. Transfers to these addresses may be
    // subject to a maximum transfer amount.
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    constructor() ERC20("DeFiBot", "DEFIBOT") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        // These are the initial fees, they will be reconfigured as the project matures
        // look at https://docs.defibot.app where the plan is described
        // or come to our telegram channel Telegram: t.me/DeFiBotHub

        uint256 _buyBurnFees = 0;
        uint256 _buyCommunityPerkFee = 0;
        uint256 _buyLiquidityFee = 2;
        uint256 _buyProjectFee = 3;

        uint256 _sellBurnFee = 0;
        uint256 _sellCommunityPerkFee = 0;
        uint256 _sellLiquidityFee = 2;
        uint256 _sellProjectFee = 3;

        // Supply is fixed at 10 million, there is no further minting.
        uint256 totalSupply = 10_000_000 * 1e18;

        // Initially 1% is the most any wallet can hold this is to minimise whale
        // gaining too much control of the token. This will be adjusted as the project grows.

        maxTransactionAmount = 100_000 * 1e18; // 1% or 100,000 tokens
        maxWalletHoldAmount = 100_000 * 1e18; // 1% or 100,000 tokens for startrs
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05%

        buyBurnFees = _buyBurnFees;
        buyCommunityPerkFee = _buyCommunityPerkFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyProjectFee = _buyProjectFee;
        buyTotalFees =
            buyBurnFees +
            buyCommunityPerkFee +
            buyLiquidityFee +
            buyProjectFee;

        sellBurnFee = _sellBurnFee;
        sellCommunityPerkFee = _sellCommunityPerkFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellProjectFee = _sellProjectFee;

        sellTotalFees =
            sellBurnFee +
            sellCommunityPerkFee +
            sellLiquidityFee +
            sellProjectFee;

        memberPerksWallet = address(0xeb29535D3d1cF7A578e6aFd4b52A9d846770EF84); // set as memberPerks wallet
        projectWallet = address(0x7cB909C374c5Fd919F97097C71c87e20300A0E2B); // set as project wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20 standard we only call it for the intial mint
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // one way switch, once switched on it can't be switched off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapOfCollectedTradingFeesEnabled = true;
    }

    // remove limits after adoptioin and token matures
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(
        uint256 newAmount
    ) external onlyOwner returns (bool) {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap must be > 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap must be < 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    //update the max transaction amount allows in a single transaction Min is 0.5%
    function updateMaxTransactionAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Must be > 0.5%"
        );
        maxTransactionAmount = newNum * (10 ** 18);
    }

    //update the max wallet amount allowed. Min is 1%
    function updateMaxWalletHoldAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 10) / 1000) / 1e18,
            "Must be > 1.0%"
        );
        maxWalletHoldAmount = newNum * (10 ** 18);
    }

    // some address are exempt, like uniswapV2Pair, router, contract, owner etc
    function excludeFromMaxTransaction(
        address updAds,
        bool isEx
    ) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // is present in case of emergency and temporary suspension of contract sales is required, a last resort
    function updateSwapOfCollectedTradingFeesEnabled(
        bool enabled
    ) external onlyOwner {
        swapOfCollectedTradingFeesEnabled = enabled;
    }

    // update the fees for buying these are planned to change, at project maturation members will have input on alloaction
    function updateBuyFees(
        uint256 _burnFees,
        uint256 _communityPerkFee,
        uint256 _liquidityFee,
        uint256 _projectFee
    ) external onlyOwner {
        buyBurnFees = _burnFees;
        buyCommunityPerkFee = _communityPerkFee;
        buyLiquidityFee = _liquidityFee;
        buyProjectFee = _projectFee;

        buyTotalFees =
            buyBurnFees +
            buyCommunityPerkFee +
            buyLiquidityFee +
            buyProjectFee;

        require(buyTotalFees <= 5, "Fee must be <= 5");
    }

    // update the fees for selling these are planned to change, at project maturation members will have input on allocation
    function updateSellFees(
        uint256 _burnFees,
        uint256 _communityPerkFee,
        uint256 _liquidityFee,
        uint256 _projectFee
    ) external onlyOwner {
        sellBurnFee = _burnFees;
        sellCommunityPerkFee = _communityPerkFee;
        sellLiquidityFee = _liquidityFee;
        sellProjectFee = _projectFee;

        sellTotalFees =
            sellBurnFee +
            sellCommunityPerkFee +
            sellLiquidityFee +
            sellProjectFee;

        require(sellTotalFees <= 5, "Fee must be <= 5");
    }

    // some address are exempt, like uniswapV2Pair, router, contract, owner etc
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(pair != uniswapV2Pair, "Pair removal not permitted");

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    //modify the community Perks wallet address
    function updateMemberPerksWallet(
        address newMemberPerksWallet
    ) external onlyOwner {
        emit memberPerksWalletUpdated(newMemberPerksWallet, memberPerksWallet);
        memberPerksWallet = newMemberPerksWallet;
    }

    //modify the project wallet address
    function updateProjectWallet(address newWallet) external onlyOwner {
        emit projectWalletUpdated(newWallet, projectWallet);
        projectWallet = newWallet;
    }

    //some address may need to be exempt, like uniswapV2Pair, router, contract, owner etc
    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    //this will be used for MEV bots who offer nothing to the community
    function isBlacklistedAddress(address account) public view returns (bool) {
        return blacklistedAddresses[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfering from zero address");
        require(to != address(0), "ERC20: transfering to zero address");
        require(!blacklistedAddresses[from], "Sender blacklisted");
        require(!blacklistedAddresses[to], "Receiver blacklisted");

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapInProgress
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading inactive."
                    );
                }

                //handle buy transaction
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy exceeds maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWalletHoldAmount,
                        "maxWalletHoldAmount amount exceeded"
                    );
                }
                //handle sell transactions
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell exceeds maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWalletHoldAmount,
                        "maxWalletHoldAmount amount exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapOfCollectedTradingFeesEnabled &&
            !swapInProgress &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapInProgress = true;
            swapCollectedTradingFees();
            swapInProgress = false;
        }

        bool takeFee = !swapInProgress;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForProject += (fees * sellProjectFee) / sellTotalFees;
                tokensForCommunityPerk +=
                    (fees * sellCommunityPerkFee) /
                    sellTotalFees;
                tokensForBurn += (fees * sellBurnFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForProject += (fees * buyProjectFee) / buyTotalFees;
                tokensForCommunityPerk +=
                    (fees * buyCommunityPerkFee) /
                    buyTotalFees;
                tokensForBurn += (fees * buyBurnFees) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees - tokensForBurn);
                //Burn Tokens if there are any to burn
                if (tokensForBurn > 0) {
                    super._transfer(from, deadAddress, tokensForBurn);
                    tokensForBurn = 0;
                }
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // accept slippage
            0, // accept slippage
            owner(),
            block.timestamp
        );
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // any ETH Amount
            path,
            address(this),
            block.timestamp
        );
    }

    function swapCollectedTradingFees() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForCommunityPerk +
            tokensForProject;
        bool success;

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

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

        // Split the liquidity into half so we can balance the pool
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForCommunityPerk = ethBalance
            .mul(tokensForCommunityPerk)
            .div(totalTokensToSwap - (tokensForLiquidity / 2));

        uint256 ethForProject = ethBalance.mul(tokensForProject).div(
            totalTokensToSwap - (tokensForLiquidity / 2)
        );

        uint256 ethForLiquidity = ethBalance -
            ethForCommunityPerk -
            ethForProject;

        tokensForLiquidity = 0;
        tokensForCommunityPerk = 0;
        tokensForProject = 0;

        (success, ) = address(projectWallet).call{value: ethForProject}("");

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

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

    // @dev Can renounce ability to blacklist, cannot be re-enabled
    function renounceBlacklistAbility() public onlyOwner {
        blacklistAbilityRenounced = true;
    }

    function blacklistAddress(address _addr) public onlyOwner {
        require(!blacklistAbilityRenounced, "Blacklist rights revoked");
        require(
            _addr != address(uniswapV2Pair) &&
                _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D),
            "Can't blacklist v2 router/pool."
        );
        blacklistedAddresses[_addr] = true;
    }

    // @dev can blacklist unwanted pools if needed, but can unblacklist as well. Gives flexability with v3 & v4 pools in future
    function blacklistLiquidityPool(address lpAddress) public onlyOwner {
        require(!blacklistAbilityRenounced, "Blacklist rights revoked");
        require(
            lpAddress != address(uniswapV2Pair) &&
                lpAddress !=
                address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D),
            "Can't blacklist v2 router/pool."
        );
        blacklistedAddresses[lpAddress] = true;
    }

    // @dev unblacklistAddress; not affected by blacklistAbilityRenounced incase project wants to unblacklist v3/v4 pools down the road
    function unblacklistAddress(address _addr) public onlyOwner {
        blacklistedAddresses[_addr] = false;
    }

    function withdrawTrappedDefibot() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    // Can remove tokens if they are sent to the contract by accident
    function withdrawTrappedToken(
        address _token,
        address _to
    ) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function withdrawTrappedEth(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{value: address(this).balance}("");
        require(success, "withdrawTrappedEth failed");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"memberPerksWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"projectWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blacklistAbilityRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyBurnFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyCommunityPerkFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyProjectFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklistedAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletHoldAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"memberPerksWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"projectWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklistAbility","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellCommunityPerkFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellProjectFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapOfCollectedTradingFeesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForCommunityPerk","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForProject","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFees","type":"uint256"},{"internalType":"uint256","name":"_communityPerkFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_projectFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTransactionAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletHoldAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMemberPerksWallet","type":"address"}],"name":"updateMemberPerksWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateProjectWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFees","type":"uint256"},{"internalType":"uint256","name":"_communityPerkFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_projectFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapOfCollectedTradingFeesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTrappedDefibot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawTrappedEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawTrappedToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b5f6101000a81548160ff0219169083151502179055505f600b60016101000a81548160ff0219169083151502179055505f600b60026101000a81548160ff0219169083151502179055505f600b60036101000a81548160ff02191690831515021790555034801562000078575f80fd5b506040518060400160405280600781526020017f44654669426f74000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f44454649424f54000000000000000000000000000000000000000000000000008152508160039081620000f6919062000d40565b50806004908162000108919062000d40565b5050506200012b6200011f620005b460201b60201c565b620005bb60201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001568160016200067e60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001fa919062000e89565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000260573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000286919062000e89565b6040518363ffffffff1660e01b8152600401620002a592919062000eca565b6020604051808303815f875af1158015620002c2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002e8919062000e89565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033060a05160016200067e60201b60201c565b6200034560a05160016200076560201b60201c565b5f805f600290505f600390505f805f600290505f600390505f6a084595161401484a000000905069152d02c7e14af680000060088190555069152d02c7e14af6800000600981905550612710600582620003a0919062000f22565b620003ac919062000f99565b600a8190555088600d8190555087600e8190555086600f8190555085601081905550601054600f54600e54600d54620003e6919062000fd0565b620003f2919062000fd0565b620003fe919062000fd0565b6011819055508460128190555083601381905550826014819055508160158190555060155460145460135460125462000438919062000fd0565b62000444919062000fd0565b62000450919062000fd0565b60168190555073eb29535d3d1cf7a578e6afd4b52a9d846770ef8460065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737cb909c374c5fd919f97097c71c87e20300a0e2b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000520620005126200080360201b60201c565b60016200082b60201b60201c565b620005333060016200082b60201b60201c565b6200054861dead60016200082b60201b60201c565b6200056a6200055c6200080360201b60201c565b60016200067e60201b60201c565b6200057d3060016200067e60201b60201c565b6200059261dead60016200067e60201b60201c565b620005a433826200096260201b60201c565b5050505050505050505062001159565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200068e620005b460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006b46200080360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200070d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007049062001068565b60405180910390fd5b80601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b80601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200083b620005b460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008616200080360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008b19062001068565b60405180910390fd5b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009569190620010a4565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009ca906200110d565b60405180910390fd5b620009e65f838362000ad260201b60201c565b8060025f828254620009f9919062000fd0565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825462000a4d919062000fd0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ab391906200113e565b60405180910390a362000ace5f838362000ad760201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000b5857607f821691505b60208210810362000b6e5762000b6d62000b13565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000bd27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b95565b62000bde868362000b95565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000c2862000c2262000c1c8462000bf6565b62000bff565b62000bf6565b9050919050565b5f819050919050565b62000c438362000c08565b62000c5b62000c528262000c2f565b84845462000ba1565b825550505050565b5f90565b62000c7162000c63565b62000c7e81848462000c38565b505050565b5b8181101562000ca55762000c995f8262000c67565b60018101905062000c84565b5050565b601f82111562000cf45762000cbe8162000b74565b62000cc98462000b86565b8101602085101562000cd9578190505b62000cf162000ce88562000b86565b83018262000c83565b50505b505050565b5f82821c905092915050565b5f62000d165f198460080262000cf9565b1980831691505092915050565b5f62000d30838362000d05565b9150826002028217905092915050565b62000d4b8262000adc565b67ffffffffffffffff81111562000d675762000d6662000ae6565b5b62000d73825462000b40565b62000d8082828562000ca9565b5f60209050601f83116001811462000db6575f841562000da1578287015190505b62000dad858262000d23565b86555062000e1c565b601f19841662000dc68662000b74565b5f5b8281101562000def5784890151825560018201915060208501945060208101905062000dc8565b8683101562000e0f578489015162000e0b601f89168262000d05565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000e538262000e28565b9050919050565b62000e658162000e47565b811462000e70575f80fd5b50565b5f8151905062000e838162000e5a565b92915050565b5f6020828403121562000ea15762000ea062000e24565b5b5f62000eb08482850162000e73565b91505092915050565b62000ec48162000e47565b82525050565b5f60408201905062000edf5f83018562000eb9565b62000eee602083018462000eb9565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000f2e8262000bf6565b915062000f3b8362000bf6565b925082820262000f4b8162000bf6565b9150828204841483151762000f655762000f6462000ef5565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000fa58262000bf6565b915062000fb28362000bf6565b92508262000fc55762000fc462000f6c565b5b828204905092915050565b5f62000fdc8262000bf6565b915062000fe98362000bf6565b925082820190508082111562001004576200100362000ef5565b5b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f620010506020836200100a565b91506200105d826200101a565b602082019050919050565b5f6020820190508181035f830152620010818162001042565b9050919050565b5f8115159050919050565b6200109e8162001088565b82525050565b5f602082019050620010b95f83018462001093565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620010f5601f836200100a565b91506200110282620010bf565b602082019050919050565b5f6020820190508181035f8301526200112681620010e7565b9050919050565b620011388162000bf6565b82525050565b5f602082019050620011535f8301846200112d565b92915050565b60805160a051615dbf620011b35f395f81816117e501528181611f06015281816129100152612d3101525f81816111b60152818161442b0152818161450a01528181614531015281816145c701526145ee0152615dbf5ff3fe6080604052600436106103c6575f3560e01c80637d48c8c2116101f1578063c4530d721161010c578063e7ad9fcd1161009f578063f2fde38b1161006e578063f2fde38b14610e15578063f3290d7514610e3d578063f637434214610e65578063feb3ece014610e8f576103cd565b8063e7ad9fcd14610d6f578063e7dd050b14610d97578063e8338a1c14610dc1578063f11a24d314610deb576103cd565b8063d9a018d5116100db578063d9a018d514610cb7578063dd62ed3e14610ce1578063e19b282314610d1d578063e2f4560514610d45576103cd565b8063c4530d7214610c11578063c8c8ebe414610c27578063d257b34f14610c51578063d85ba06314610c8d576103cd565b8063a9059cbb11610184578063bbc0c74211610153578063bbc0c74214610b6b578063be5fff2914610b95578063beb08ab914610bbf578063c024666814610be9576103cd565b8063a9059cbb14610aa1578063aa49802314610add578063adb873bd14610b05578063b62496f514610b2f576103cd565b80639a7a23d6116101c05780639a7a23d6146109ed578063a457c2d714610a15578063a4bb11e914610a51578063a71225f514610a79576103cd565b80637d48c8c2146109595780638a8c523c146109835780638da5cb5b1461099957806395d89b41146109c3576103cd565b80632e6ed7ef116102e1578063617c53eb11610274578063715018a611610243578063715018a6146108c957806371927628146108df578063751039fc146109075780637571336a14610931576103cd565b8063617c53eb14610811578063679ae7d11461083b5780636a486a8e1461086357806370a082311461088d576103cd565b806345e34949116102b057806345e349491461075957806349bd5a5e146107815780634a62bb65146107ab5780634fbee193146107d5576103cd565b80632e6ed7ef146106a1578063313ce567146106c9578063323401ed146106f3578063395093511461071d576103cd565b80631a8145bb1161035957806327c8f8351161032857806327c8f835146105fd5780632a2ad7b4146106275780632a7bab5d1461064f5780632e1b0cf214610677576103cd565b80631a8145bb146105435780631d7778561461056d57806323b872dd1461059757806325b62434146105d3576103cd565b806310d5de531161039557806310d5de531461048957806312096556146104c55780631694505e146104ef57806318160ddd14610519576103cd565b806305e09eb2146103d157806306fdde03146103e7578063095ea7b3146104115780630bef0ec71461044d576103cd565b366103cd57005b5f80fd5b3480156103dc575f80fd5b506103e5610eb9565b005b3480156103f2575f80fd5b506103fb611073565b6040516104089190614729565b60405180910390f35b34801561041c575f80fd5b50610437600480360381019061043291906147da565b611103565b6040516104449190614832565b60405180910390f35b348015610458575f80fd5b50610473600480360381019061046e919061484b565b611120565b6040516104809190614832565b60405180910390f35b348015610494575f80fd5b506104af60048036038101906104aa919061484b565b611172565b6040516104bc9190614832565b60405180910390f35b3480156104d0575f80fd5b506104d961118f565b6040516104e69190614885565b60405180910390f35b3480156104fa575f80fd5b506105036111b4565b60405161051091906148f9565b60405180910390f35b348015610524575f80fd5b5061052d6111d8565b60405161053a9190614921565b60405180910390f35b34801561054e575f80fd5b506105576111e1565b6040516105649190614921565b60405180910390f35b348015610578575f80fd5b506105816111e7565b60405161058e9190614921565b60405180910390f35b3480156105a2575f80fd5b506105bd60048036038101906105b8919061493a565b6111ed565b6040516105ca9190614832565b60405180910390f35b3480156105de575f80fd5b506105e76112df565b6040516105f49190614832565b60405180910390f35b348015610608575f80fd5b506106116112f2565b60405161061e9190614885565b60405180910390f35b348015610632575f80fd5b5061064d6004803603810190610648919061484b565b6112f8565b005b34801561065a575f80fd5b506106756004803603810190610670919061498a565b611432565b005b348015610682575f80fd5b5061068b611541565b6040516106989190614921565b60405180910390f35b3480156106ac575f80fd5b506106c760048036038101906106c291906149b5565b611547565b005b3480156106d4575f80fd5b506106dd61165b565b6040516106ea9190614a34565b60405180910390f35b3480156106fe575f80fd5b50610707611663565b6040516107149190614921565b60405180910390f35b348015610728575f80fd5b50610743600480360381019061073e91906147da565b611669565b6040516107509190614832565b60405180910390f35b348015610764575f80fd5b5061077f600480360381019061077a919061484b565b611710565b005b34801561078c575f80fd5b506107956117e3565b6040516107a29190614885565b60405180910390f35b3480156107b6575f80fd5b506107bf611807565b6040516107cc9190614832565b60405180910390f35b3480156107e0575f80fd5b506107fb60048036038101906107f6919061484b565b611819565b6040516108089190614832565b60405180910390f35b34801561081c575f80fd5b5061082561186b565b6040516108329190614921565b60405180910390f35b348015610846575f80fd5b50610861600480360381019061085c919061484b565b611871565b005b34801561086e575f80fd5b50610877611999565b6040516108849190614921565b60405180910390f35b348015610898575f80fd5b506108b360048036038101906108ae919061484b565b61199f565b6040516108c09190614921565b60405180910390f35b3480156108d4575f80fd5b506108dd6119e4565b005b3480156108ea575f80fd5b506109056004803603810190610900919061484b565b611a6b565b005b348015610912575f80fd5b5061091b611ba5565b6040516109289190614832565b60405180910390f35b34801561093c575f80fd5b5061095760048036038101906109529190614a77565b611c42565b005b348015610964575f80fd5b5061096d611d16565b60405161097a9190614921565b60405180910390f35b34801561098e575f80fd5b50610997611d1c565b005b3480156109a4575f80fd5b506109ad611dd0565b6040516109ba9190614885565b60405180910390f35b3480156109ce575f80fd5b506109d7611df8565b6040516109e49190614729565b60405180910390f35b3480156109f8575f80fd5b50610a136004803603810190610a0e9190614a77565b611e88565b005b348015610a20575f80fd5b50610a3b6004803603810190610a3691906147da565b611fa0565b604051610a489190614832565b60405180910390f35b348015610a5c575f80fd5b50610a776004803603810190610a729190614ab5565b612086565b005b348015610a84575f80fd5b50610a9f6004803603810190610a9a9190614ae0565b61211f565b005b348015610aac575f80fd5b50610ac76004803603810190610ac291906147da565b612305565b604051610ad49190614832565b60405180910390f35b348015610ae8575f80fd5b50610b036004803603810190610afe919061498a565b612322565b005b348015610b10575f80fd5b50610b19612431565b604051610b269190614921565b60405180910390f35b348015610b3a575f80fd5b50610b556004803603810190610b50919061484b565b612437565b604051610b629190614832565b60405180910390f35b348015610b76575f80fd5b50610b7f612454565b604051610b8c9190614832565b60405180910390f35b348015610ba0575f80fd5b50610ba9612467565b604051610bb69190614921565b60405180910390f35b348015610bca575f80fd5b50610bd361246d565b604051610be09190614885565b60405180910390f35b348015610bf4575f80fd5b50610c0f6004803603810190610c0a9190614a77565b612492565b005b348015610c1c575f80fd5b50610c256125b4565b005b348015610c32575f80fd5b50610c3b61264d565b604051610c489190614921565b60405180910390f35b348015610c5c575f80fd5b50610c776004803603810190610c72919061498a565b612653565b604051610c849190614832565b60405180910390f35b348015610c98575f80fd5b50610ca16127a7565b604051610cae9190614921565b60405180910390f35b348015610cc2575f80fd5b50610ccb6127ad565b604051610cd89190614832565b60405180910390f35b348015610cec575f80fd5b50610d076004803603810190610d029190614ae0565b6127c0565b604051610d149190614921565b60405180910390f35b348015610d28575f80fd5b50610d436004803603810190610d3e919061484b565b612842565b005b348015610d50575f80fd5b50610d59612a41565b604051610d669190614921565b60405180910390f35b348015610d7a575f80fd5b50610d956004803603810190610d9091906149b5565b612a47565b005b348015610da2575f80fd5b50610dab612b5b565b604051610db89190614921565b60405180910390f35b348015610dcc575f80fd5b50610dd5612b61565b604051610de29190614921565b60405180910390f35b348015610df6575f80fd5b50610dff612b67565b604051610e0c9190614921565b60405180910390f35b348015610e20575f80fd5b50610e3b6004803603810190610e36919061484b565b612b6d565b005b348015610e48575f80fd5b50610e636004803603810190610e5e919061484b565b612c63565b005b348015610e70575f80fd5b50610e79612e62565b604051610e869190614921565b60405180910390f35b348015610e9a575f80fd5b50610ea3612e68565b604051610eb09190614921565b60405180910390f35b610ec1612e6e565b73ffffffffffffffffffffffffffffffffffffffff16610edf611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90614b68565b60405180910390fd5b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f6f9190614885565b602060405180830381865afa158015610f8a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fae9190614b9a565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610feb929190614bc5565b6020604051808303815f875af1158015611007573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061102b9190614c00565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f1935050505015801561106f573d5f803e3d5ffd5b5050565b60606003805461108290614c58565b80601f01602080910402602001604051908101604052809291908181526020018280546110ae90614c58565b80156110f95780601f106110d0576101008083540402835291602001916110f9565b820191905f5260205f20905b8154815290600101906020018083116110dc57829003601f168201915b5050505050905090565b5f61111661110f612e6e565b8484612e75565b6001905092915050565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b601c602052805f5260405f205f915054906101000a900460ff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b60195481565b60175481565b5f6111f9848484613038565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f611240612e6e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b690614cf8565b60405180910390fd5b6112d3856112cb612e6e565b858403612e75565b60019150509392505050565b600b60039054906101000a900460ff1681565b61dead81565b611300612e6e565b73ffffffffffffffffffffffffffffffffffffffff1661131e611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b90614b68565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f7b9a991aa973cfc07437f57202ed5bf6e157e0f73c766b6104014b4c9f1fdb0f60405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61143a612e6e565b73ffffffffffffffffffffffffffffffffffffffff16611458611dd0565b73ffffffffffffffffffffffffffffffffffffffff16146114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a590614b68565b60405180910390fd5b670de0b6b3a76400006103e8600a6114c46111d8565b6114ce9190614d43565b6114d89190614db1565b6114e29190614db1565b811015611524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151b90614e2b565b60405180910390fd5b670de0b6b3a7640000816115389190614d43565b60098190555050565b60095481565b61154f612e6e565b73ffffffffffffffffffffffffffffffffffffffff1661156d611dd0565b73ffffffffffffffffffffffffffffffffffffffff16146115c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ba90614b68565b60405180910390fd5b83600d8190555082600e8190555081600f8190555080601081905550601054600f54600e54600d546115f59190614e49565b6115ff9190614e49565b6116099190614e49565b60118190555060056011541115611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90614ec6565b60405180910390fd5b50505050565b5f6012905090565b60155481565b5f611706611675612e6e565b848460015f611682612e6e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546117019190614e49565b612e75565b6001905092915050565b611718612e6e565b73ffffffffffffffffffffffffffffffffffffffff16611736611dd0565b73ffffffffffffffffffffffffffffffffffffffff161461178c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178390614b68565b60405180910390fd5b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5f9054906101000a900460ff1681565b5f601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60185481565b611879612e6e565b73ffffffffffffffffffffffffffffffffffffffff16611897611dd0565b73ffffffffffffffffffffffffffffffffffffffff16146118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e490614b68565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161191290614f11565b5f6040518083038185875af1925050503d805f811461194c576040519150601f19603f3d011682016040523d82523d5f602084013e611951565b606091505b5050905080611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c90614f6f565b60405180910390fd5b5050565b60165481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6119ec612e6e565b73ffffffffffffffffffffffffffffffffffffffff16611a0a611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5790614b68565b60405180910390fd5b611a695f613c6e565b565b611a73612e6e565b73ffffffffffffffffffffffffffffffffffffffff16611a91611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ade90614b68565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fd0bdd1bf92049384d44f81d258f51a39b26cfc1d256348efb3b109fd8db7271160405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f611bae612e6e565b73ffffffffffffffffffffffffffffffffffffffff16611bcc611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1990614b68565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055506001905090565b611c4a612e6e565b73ffffffffffffffffffffffffffffffffffffffff16611c68611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb590614b68565b60405180910390fd5b80601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b600e5481565b611d24612e6e565b73ffffffffffffffffffffffffffffffffffffffff16611d42611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f90614b68565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054611e0790614c58565b80601f0160208091040260200160405190810160405280929190818152602001828054611e3390614c58565b8015611e7e5780601f10611e5557610100808354040283529160200191611e7e565b820191905f5260205f20905b815481529060010190602001808311611e6157829003601f168201915b5050505050905090565b611e90612e6e565b73ffffffffffffffffffffffffffffffffffffffff16611eae611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efb90614b68565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990614fd7565b60405180910390fd5b611f9c8282613d31565b5050565b5f8060015f611fad612e6e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015612067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205e90615065565b60405180910390fd5b61207b612072612e6e565b85858403612e75565b600191505092915050565b61208e612e6e565b73ffffffffffffffffffffffffffffffffffffffff166120ac611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614612102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f990614b68565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b612127612e6e565b73ffffffffffffffffffffffffffffffffffffffff16612145611dd0565b73ffffffffffffffffffffffffffffffffffffffff161461219b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219290614b68565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612209576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612200906150cd565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016122439190614885565b602060405180830381865afa15801561225e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122829190614b9a565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016122bf929190614bc5565b6020604051808303815f875af11580156122db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ff9190614c00565b50505050565b5f612318612311612e6e565b8484613038565b6001905092915050565b61232a612e6e565b73ffffffffffffffffffffffffffffffffffffffff16612348611dd0565b73ffffffffffffffffffffffffffffffffffffffff161461239e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239590614b68565b60405180910390fd5b670de0b6b3a76400006103e860056123b46111d8565b6123be9190614d43565b6123c89190614db1565b6123d29190614db1565b811015612414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240b90615135565b60405180910390fd5b670de0b6b3a7640000816124289190614d43565b60088190555050565b60125481565b601d602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b60135481565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61249a612e6e565b73ffffffffffffffffffffffffffffffffffffffff166124b8611dd0565b73ffffffffffffffffffffffffffffffffffffffff161461250e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250590614b68565b60405180910390fd5b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516125a89190614832565b60405180910390a25050565b6125bc612e6e565b73ffffffffffffffffffffffffffffffffffffffff166125da611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614612630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262790614b68565b60405180910390fd5b6001600b60036101000a81548160ff021916908315150217905550565b60085481565b5f61265c612e6e565b73ffffffffffffffffffffffffffffffffffffffff1661267a611dd0565b73ffffffffffffffffffffffffffffffffffffffff16146126d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c790614b68565b60405180910390fd5b620186a060016126de6111d8565b6126e89190614d43565b6126f29190614db1565b821015612734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272b906151c3565b60405180910390fd5b6103e860056127416111d8565b61274b9190614d43565b6127559190614db1565b821115612797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278e90615251565b60405180910390fd5b81600a8190555060019050919050565b60115481565b600b60029054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61284a612e6e565b73ffffffffffffffffffffffffffffffffffffffff16612868611dd0565b73ffffffffffffffffffffffffffffffffffffffff16146128be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b590614b68565b60405180910390fd5b600b60039054906101000a900460ff161561290e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612905906152b9565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156129aa5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b6129e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e090615321565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b600a5481565b612a4f612e6e565b73ffffffffffffffffffffffffffffffffffffffff16612a6d611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614612ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aba90614b68565b60405180910390fd5b83601281905550826013819055508160148190555080601581905550601554601454601354601254612af59190614e49565b612aff9190614e49565b612b099190614e49565b60168190555060056016541115612b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4c90614ec6565b60405180910390fd5b50505050565b60105481565b601a5481565b600f5481565b612b75612e6e565b73ffffffffffffffffffffffffffffffffffffffff16612b93611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614612be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be090614b68565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4e906153af565b60405180910390fd5b612c6081613c6e565b50565b612c6b612e6e565b73ffffffffffffffffffffffffffffffffffffffff16612c89611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614612cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd690614b68565b60405180910390fd5b600b60039054906101000a900460ff1615612d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d26906152b9565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612dcb5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0190615321565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60145481565b600d5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eda9061543d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f48906154cb565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161302b9190614921565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036130a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309d90615559565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310b906155e7565b60405180910390fd5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561319e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131959061564f565b60405180910390fd5b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615613228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321f906156b7565b60405180910390fd5b5f810361323f5761323a83835f613dcf565b613c69565b600b5f9054906101000a900460ff16156137235761325b611dd0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156132c95750613299611dd0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561330157505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561333b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156133545750600560149054906101000a900460ff16155b1561372257600b60019054906101000a900460ff1661344857601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806134085750601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b613447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343e9061571f565b60405180910390fd5b5b601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156134e55750601c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561358c5760085481111561352f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613526906157ad565b60405180910390fd5b60095461353b8361199f565b826135469190614e49565b1115613587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357e9061583b565b60405180910390fd5b613721565b601d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156136295750601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561367857600854811115613673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161366a906158c9565b60405180910390fd5b613720565b601c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661371f576009546136d28361199f565b826136dd9190614e49565b111561371e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137159061583b565b60405180910390fd5b5b5b5b5b5b5f61372d3061199f565b90505f600a5482101590508080156137515750600b60029054906101000a900460ff165b801561376a5750600560149054906101000a900460ff16155b80156137bd5750601d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156138105750601b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156138635750601b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156138a6576001600560146101000a81548160ff02191690831515021790555061388b614044565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff16159050601b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806139555750601b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561395e575f90505b5f8115613c5957601d5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156139bc57505f601654115b15613ab8576139e960646139db6016548861434590919063ffffffff16565b61435a90919063ffffffff16565b9050601654601454826139fc9190614d43565b613a069190614db1565b60195f828254613a169190614e49565b9250508190555060165460155482613a2e9190614d43565b613a389190614db1565b601a5f828254613a489190614e49565b9250508190555060165460135482613a609190614d43565b613a6a9190614db1565b60185f828254613a7a9190614e49565b9250508190555060165460125482613a929190614d43565b613a9c9190614db1565b60175f828254613aac9190614e49565b92505081905550613c08565b601d5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613b0f57505f601154115b15613c0757613b3c6064613b2e6011548861434590919063ffffffff16565b61435a90919063ffffffff16565b9050601154600f5482613b4f9190614d43565b613b599190614db1565b60195f828254613b699190614e49565b9250508190555060115460105482613b819190614d43565b613b8b9190614db1565b601a5f828254613b9b9190614e49565b92505081905550601154600e5482613bb39190614d43565b613bbd9190614db1565b60185f828254613bcd9190614e49565b92505081905550601154600d5482613be59190614d43565b613bef9190614db1565b60175f828254613bff9190614e49565b925050819055505b5b5f811115613c4a57613c28873060175484613c2391906158e7565b613dcf565b5f6017541115613c4957613c418761dead601754613dcf565b5f6017819055505b5b8085613c5691906158e7565b94505b613c64878787613dcf565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e349061598a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ea290615a18565b60405180910390fd5b613eb683838361436f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f3090615aa6565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254613fc79190614e49565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161402b9190614921565b60405180910390a361403e848484614374565b50505050565b5f61404e3061199f565b90505f601a546018546019546140649190614e49565b61406e9190614e49565b90505f8083148061407e57505f82145b1561408b57505050614343565b6014600a5461409a9190614d43565b8311156140b3576014600a546140b09190614d43565b92505b5f600283601954866140c59190614d43565b6140cf9190614db1565b6140d99190614db1565b90505f6140ef828661437990919063ffffffff16565b90505f4790506140fe8261438e565b5f614112824761437990919063ffffffff16565b90505f61415560026019546141279190614db1565b8861413291906158e7565b6141476018548561434590919063ffffffff16565b61435a90919063ffffffff16565b90505f614198600260195461416a9190614db1565b8961417591906158e7565b61418a601a548661434590919063ffffffff16565b61435a90919063ffffffff16565b90505f8183856141a891906158e7565b6141b291906158e7565b90505f6019819055505f6018819055505f601a8190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161420e90614f11565b5f6040518083038185875af1925050503d805f8114614248576040519150601f19603f3d011682016040523d82523d5f602084013e61424d565b606091505b5050809850505f8711801561426157505f81115b156142ae5761427087826145c1565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186826019546040516142a593929190615ac4565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516142f390614f11565b5f6040518083038185875af1925050503d805f811461432d576040519150601f19603f3d011682016040523d82523d5f602084013e614332565b606091505b505080985050505050505050505050505b565b5f81836143529190614d43565b905092915050565b5f81836143679190614db1565b905092915050565b505050565b505050565b5f818361438691906158e7565b905092915050565b5f600267ffffffffffffffff8111156143aa576143a9615af9565b5b6040519080825280602002602001820160405280156143d85781602001602082028036833780820191505090505b50905030815f815181106143ef576143ee615b26565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614492573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906144b69190615b67565b816001815181106144ca576144c9615b26565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061452f307f000000000000000000000000000000000000000000000000000000000000000084612e75565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401614590959493929190615c82565b5f604051808303815f87803b1580156145a7575f80fd5b505af11580156145b9573d5f803e3d5ffd5b505050505050565b6145ec307f000000000000000000000000000000000000000000000000000000000000000084612e75565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80614635611dd0565b426040518863ffffffff1660e01b815260040161465796959493929190615cda565b60606040518083038185885af1158015614673573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906146989190615d39565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156146d65780820151818401526020810190506146bb565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6146fb8261469f565b61470581856146a9565b93506147158185602086016146b9565b61471e816146e1565b840191505092915050565b5f6020820190508181035f83015261474181846146f1565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6147768261474d565b9050919050565b6147868161476c565b8114614790575f80fd5b50565b5f813590506147a18161477d565b92915050565b5f819050919050565b6147b9816147a7565b81146147c3575f80fd5b50565b5f813590506147d4816147b0565b92915050565b5f80604083850312156147f0576147ef614749565b5b5f6147fd85828601614793565b925050602061480e858286016147c6565b9150509250929050565b5f8115159050919050565b61482c81614818565b82525050565b5f6020820190506148455f830184614823565b92915050565b5f602082840312156148605761485f614749565b5b5f61486d84828501614793565b91505092915050565b61487f8161476c565b82525050565b5f6020820190506148985f830184614876565b92915050565b5f819050919050565b5f6148c16148bc6148b78461474d565b61489e565b61474d565b9050919050565b5f6148d2826148a7565b9050919050565b5f6148e3826148c8565b9050919050565b6148f3816148d9565b82525050565b5f60208201905061490c5f8301846148ea565b92915050565b61491b816147a7565b82525050565b5f6020820190506149345f830184614912565b92915050565b5f805f6060848603121561495157614950614749565b5b5f61495e86828701614793565b935050602061496f86828701614793565b9250506040614980868287016147c6565b9150509250925092565b5f6020828403121561499f5761499e614749565b5b5f6149ac848285016147c6565b91505092915050565b5f805f80608085870312156149cd576149cc614749565b5b5f6149da878288016147c6565b94505060206149eb878288016147c6565b93505060406149fc878288016147c6565b9250506060614a0d878288016147c6565b91505092959194509250565b5f60ff82169050919050565b614a2e81614a19565b82525050565b5f602082019050614a475f830184614a25565b92915050565b614a5681614818565b8114614a60575f80fd5b50565b5f81359050614a7181614a4d565b92915050565b5f8060408385031215614a8d57614a8c614749565b5b5f614a9a85828601614793565b9250506020614aab85828601614a63565b9150509250929050565b5f60208284031215614aca57614ac9614749565b5b5f614ad784828501614a63565b91505092915050565b5f8060408385031215614af657614af5614749565b5b5f614b0385828601614793565b9250506020614b1485828601614793565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614b526020836146a9565b9150614b5d82614b1e565b602082019050919050565b5f6020820190508181035f830152614b7f81614b46565b9050919050565b5f81519050614b94816147b0565b92915050565b5f60208284031215614baf57614bae614749565b5b5f614bbc84828501614b86565b91505092915050565b5f604082019050614bd85f830185614876565b614be56020830184614912565b9392505050565b5f81519050614bfa81614a4d565b92915050565b5f60208284031215614c1557614c14614749565b5b5f614c2284828501614bec565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680614c6f57607f821691505b602082108103614c8257614c81614c2b565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614ce26028836146a9565b9150614ced82614c88565b604082019050919050565b5f6020820190508181035f830152614d0f81614cd6565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f614d4d826147a7565b9150614d58836147a7565b9250828202614d66816147a7565b91508282048414831517614d7d57614d7c614d16565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614dbb826147a7565b9150614dc6836147a7565b925082614dd657614dd5614d84565b5b828204905092915050565b7f4d757374206265203e20312e30250000000000000000000000000000000000005f82015250565b5f614e15600e836146a9565b9150614e2082614de1565b602082019050919050565b5f6020820190508181035f830152614e4281614e09565b9050919050565b5f614e53826147a7565b9150614e5e836147a7565b9250828201905080821115614e7657614e75614d16565b5b92915050565b7f466565206d757374206265203c3d2035000000000000000000000000000000005f82015250565b5f614eb06010836146a9565b9150614ebb82614e7c565b602082019050919050565b5f6020820190508181035f830152614edd81614ea4565b9050919050565b5f81905092915050565b50565b5f614efc5f83614ee4565b9150614f0782614eee565b5f82019050919050565b5f614f1b82614ef1565b9150819050919050565b7f776974686472617754726170706564457468206661696c6564000000000000005f82015250565b5f614f596019836146a9565b9150614f6482614f25565b602082019050919050565b5f6020820190508181035f830152614f8681614f4d565b9050919050565b7f506169722072656d6f76616c206e6f74207065726d69747465640000000000005f82015250565b5f614fc1601a836146a9565b9150614fcc82614f8d565b602082019050919050565b5f6020820190508181035f830152614fee81614fb5565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61504f6025836146a9565b915061505a82614ff5565b604082019050919050565b5f6020820190508181035f83015261507c81615043565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f6150b7601a836146a9565b91506150c282615083565b602082019050919050565b5f6020820190508181035f8301526150e4816150ab565b9050919050565b7f4d757374206265203e20302e35250000000000000000000000000000000000005f82015250565b5f61511f600e836146a9565b915061512a826150eb565b602082019050919050565b5f6020820190508181035f83015261514c81615113565b9050919050565b7f53776170206d757374206265203e20302e3030312520746f74616c20737570705f8201527f6c792e0000000000000000000000000000000000000000000000000000000000602082015250565b5f6151ad6023836146a9565b91506151b882615153565b604082019050919050565b5f6020820190508181035f8301526151da816151a1565b9050919050565b7f53776170206d757374206265203c20302e352520746f74616c20737570706c795f8201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b5f61523b6021836146a9565b9150615246826151e1565b604082019050919050565b5f6020820190508181035f8301526152688161522f565b9050919050565b7f426c61636b6c69737420726967687473207265766f6b656400000000000000005f82015250565b5f6152a36018836146a9565b91506152ae8261526f565b602082019050919050565b5f6020820190508181035f8301526152d081615297565b9050919050565b7f43616e277420626c61636b6c69737420763220726f757465722f706f6f6c2e005f82015250565b5f61530b601f836146a9565b9150615316826152d7565b602082019050919050565b5f6020820190508181035f830152615338816152ff565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6153996026836146a9565b91506153a48261533f565b604082019050919050565b5f6020820190508181035f8301526153c68161538d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6154276024836146a9565b9150615432826153cd565b604082019050919050565b5f6020820190508181035f8301526154548161541b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6154b56022836146a9565b91506154c08261545b565b604082019050919050565b5f6020820190508181035f8301526154e2816154a9565b9050919050565b7f45524332303a207472616e73666572696e672066726f6d207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6155436024836146a9565b915061554e826154e9565b604082019050919050565b5f6020820190508181035f83015261557081615537565b9050919050565b7f45524332303a207472616e73666572696e6720746f207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6155d16022836146a9565b91506155dc82615577565b604082019050919050565b5f6020820190508181035f8301526155fe816155c5565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f6156396012836146a9565b915061564482615605565b602082019050919050565b5f6020820190508181035f8301526156668161562d565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f6156a16014836146a9565b91506156ac8261566d565b602082019050919050565b5f6020820190508181035f8301526156ce81615695565b9050919050565b7f54726164696e6720696e6163746976652e0000000000000000000000000000005f82015250565b5f6157096011836146a9565b9150615714826156d5565b602082019050919050565b5f6020820190508181035f830152615736816156fd565b9050919050565b7f4275792065786365656473206d61785472616e73616374696f6e416d6f756e745f8201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b5f6157976021836146a9565b91506157a28261573d565b604082019050919050565b5f6020820190508181035f8301526157c48161578b565b9050919050565b7f6d617857616c6c6574486f6c64416d6f756e7420616d6f756e742065786365655f8201527f6465640000000000000000000000000000000000000000000000000000000000602082015250565b5f6158256023836146a9565b9150615830826157cb565b604082019050919050565b5f6020820190508181035f83015261585281615819565b9050919050565b7f53656c6c2065786365656473206d61785472616e73616374696f6e416d6f756e5f8201527f742e000000000000000000000000000000000000000000000000000000000000602082015250565b5f6158b36022836146a9565b91506158be82615859565b604082019050919050565b5f6020820190508181035f8301526158e0816158a7565b9050919050565b5f6158f1826147a7565b91506158fc836147a7565b925082820390508181111561591457615913614d16565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6159746025836146a9565b915061597f8261591a565b604082019050919050565b5f6020820190508181035f8301526159a181615968565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f615a026023836146a9565b9150615a0d826159a8565b604082019050919050565b5f6020820190508181035f830152615a2f816159f6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f615a906026836146a9565b9150615a9b82615a36565b604082019050919050565b5f6020820190508181035f830152615abd81615a84565b9050919050565b5f606082019050615ad75f830186614912565b615ae46020830185614912565b615af16040830184614912565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050615b618161477d565b92915050565b5f60208284031215615b7c57615b7b614749565b5b5f615b8984828501615b53565b91505092915050565b5f819050919050565b5f615bb5615bb0615bab84615b92565b61489e565b6147a7565b9050919050565b615bc581615b9b565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b615bfd8161476c565b82525050565b5f615c0e8383615bf4565b60208301905092915050565b5f602082019050919050565b5f615c3082615bcb565b615c3a8185615bd5565b9350615c4583615be5565b805f5b83811015615c75578151615c5c8882615c03565b9750615c6783615c1a565b925050600181019050615c48565b5085935050505092915050565b5f60a082019050615c955f830188614912565b615ca26020830187615bbc565b8181036040830152615cb48186615c26565b9050615cc36060830185614876565b615cd06080830184614912565b9695505050505050565b5f60c082019050615ced5f830189614876565b615cfa6020830188614912565b615d076040830187615bbc565b615d146060830186615bbc565b615d216080830185614876565b615d2e60a0830184614912565b979650505050505050565b5f805f60608486031215615d5057615d4f614749565b5b5f615d5d86828701614b86565b9350506020615d6e86828701614b86565b9250506040615d7f86828701614b86565b915050925092509256fea26469706673582212208027d8a641ebcaba0540ea6447675686405b7842d043fab84b6cd423da01fdf764736f6c63430008140033

Deployed Bytecode

0x6080604052600436106103c6575f3560e01c80637d48c8c2116101f1578063c4530d721161010c578063e7ad9fcd1161009f578063f2fde38b1161006e578063f2fde38b14610e15578063f3290d7514610e3d578063f637434214610e65578063feb3ece014610e8f576103cd565b8063e7ad9fcd14610d6f578063e7dd050b14610d97578063e8338a1c14610dc1578063f11a24d314610deb576103cd565b8063d9a018d5116100db578063d9a018d514610cb7578063dd62ed3e14610ce1578063e19b282314610d1d578063e2f4560514610d45576103cd565b8063c4530d7214610c11578063c8c8ebe414610c27578063d257b34f14610c51578063d85ba06314610c8d576103cd565b8063a9059cbb11610184578063bbc0c74211610153578063bbc0c74214610b6b578063be5fff2914610b95578063beb08ab914610bbf578063c024666814610be9576103cd565b8063a9059cbb14610aa1578063aa49802314610add578063adb873bd14610b05578063b62496f514610b2f576103cd565b80639a7a23d6116101c05780639a7a23d6146109ed578063a457c2d714610a15578063a4bb11e914610a51578063a71225f514610a79576103cd565b80637d48c8c2146109595780638a8c523c146109835780638da5cb5b1461099957806395d89b41146109c3576103cd565b80632e6ed7ef116102e1578063617c53eb11610274578063715018a611610243578063715018a6146108c957806371927628146108df578063751039fc146109075780637571336a14610931576103cd565b8063617c53eb14610811578063679ae7d11461083b5780636a486a8e1461086357806370a082311461088d576103cd565b806345e34949116102b057806345e349491461075957806349bd5a5e146107815780634a62bb65146107ab5780634fbee193146107d5576103cd565b80632e6ed7ef146106a1578063313ce567146106c9578063323401ed146106f3578063395093511461071d576103cd565b80631a8145bb1161035957806327c8f8351161032857806327c8f835146105fd5780632a2ad7b4146106275780632a7bab5d1461064f5780632e1b0cf214610677576103cd565b80631a8145bb146105435780631d7778561461056d57806323b872dd1461059757806325b62434146105d3576103cd565b806310d5de531161039557806310d5de531461048957806312096556146104c55780631694505e146104ef57806318160ddd14610519576103cd565b806305e09eb2146103d157806306fdde03146103e7578063095ea7b3146104115780630bef0ec71461044d576103cd565b366103cd57005b5f80fd5b3480156103dc575f80fd5b506103e5610eb9565b005b3480156103f2575f80fd5b506103fb611073565b6040516104089190614729565b60405180910390f35b34801561041c575f80fd5b50610437600480360381019061043291906147da565b611103565b6040516104449190614832565b60405180910390f35b348015610458575f80fd5b50610473600480360381019061046e919061484b565b611120565b6040516104809190614832565b60405180910390f35b348015610494575f80fd5b506104af60048036038101906104aa919061484b565b611172565b6040516104bc9190614832565b60405180910390f35b3480156104d0575f80fd5b506104d961118f565b6040516104e69190614885565b60405180910390f35b3480156104fa575f80fd5b506105036111b4565b60405161051091906148f9565b60405180910390f35b348015610524575f80fd5b5061052d6111d8565b60405161053a9190614921565b60405180910390f35b34801561054e575f80fd5b506105576111e1565b6040516105649190614921565b60405180910390f35b348015610578575f80fd5b506105816111e7565b60405161058e9190614921565b60405180910390f35b3480156105a2575f80fd5b506105bd60048036038101906105b8919061493a565b6111ed565b6040516105ca9190614832565b60405180910390f35b3480156105de575f80fd5b506105e76112df565b6040516105f49190614832565b60405180910390f35b348015610608575f80fd5b506106116112f2565b60405161061e9190614885565b60405180910390f35b348015610632575f80fd5b5061064d6004803603810190610648919061484b565b6112f8565b005b34801561065a575f80fd5b506106756004803603810190610670919061498a565b611432565b005b348015610682575f80fd5b5061068b611541565b6040516106989190614921565b60405180910390f35b3480156106ac575f80fd5b506106c760048036038101906106c291906149b5565b611547565b005b3480156106d4575f80fd5b506106dd61165b565b6040516106ea9190614a34565b60405180910390f35b3480156106fe575f80fd5b50610707611663565b6040516107149190614921565b60405180910390f35b348015610728575f80fd5b50610743600480360381019061073e91906147da565b611669565b6040516107509190614832565b60405180910390f35b348015610764575f80fd5b5061077f600480360381019061077a919061484b565b611710565b005b34801561078c575f80fd5b506107956117e3565b6040516107a29190614885565b60405180910390f35b3480156107b6575f80fd5b506107bf611807565b6040516107cc9190614832565b60405180910390f35b3480156107e0575f80fd5b506107fb60048036038101906107f6919061484b565b611819565b6040516108089190614832565b60405180910390f35b34801561081c575f80fd5b5061082561186b565b6040516108329190614921565b60405180910390f35b348015610846575f80fd5b50610861600480360381019061085c919061484b565b611871565b005b34801561086e575f80fd5b50610877611999565b6040516108849190614921565b60405180910390f35b348015610898575f80fd5b506108b360048036038101906108ae919061484b565b61199f565b6040516108c09190614921565b60405180910390f35b3480156108d4575f80fd5b506108dd6119e4565b005b3480156108ea575f80fd5b506109056004803603810190610900919061484b565b611a6b565b005b348015610912575f80fd5b5061091b611ba5565b6040516109289190614832565b60405180910390f35b34801561093c575f80fd5b5061095760048036038101906109529190614a77565b611c42565b005b348015610964575f80fd5b5061096d611d16565b60405161097a9190614921565b60405180910390f35b34801561098e575f80fd5b50610997611d1c565b005b3480156109a4575f80fd5b506109ad611dd0565b6040516109ba9190614885565b60405180910390f35b3480156109ce575f80fd5b506109d7611df8565b6040516109e49190614729565b60405180910390f35b3480156109f8575f80fd5b50610a136004803603810190610a0e9190614a77565b611e88565b005b348015610a20575f80fd5b50610a3b6004803603810190610a3691906147da565b611fa0565b604051610a489190614832565b60405180910390f35b348015610a5c575f80fd5b50610a776004803603810190610a729190614ab5565b612086565b005b348015610a84575f80fd5b50610a9f6004803603810190610a9a9190614ae0565b61211f565b005b348015610aac575f80fd5b50610ac76004803603810190610ac291906147da565b612305565b604051610ad49190614832565b60405180910390f35b348015610ae8575f80fd5b50610b036004803603810190610afe919061498a565b612322565b005b348015610b10575f80fd5b50610b19612431565b604051610b269190614921565b60405180910390f35b348015610b3a575f80fd5b50610b556004803603810190610b50919061484b565b612437565b604051610b629190614832565b60405180910390f35b348015610b76575f80fd5b50610b7f612454565b604051610b8c9190614832565b60405180910390f35b348015610ba0575f80fd5b50610ba9612467565b604051610bb69190614921565b60405180910390f35b348015610bca575f80fd5b50610bd361246d565b604051610be09190614885565b60405180910390f35b348015610bf4575f80fd5b50610c0f6004803603810190610c0a9190614a77565b612492565b005b348015610c1c575f80fd5b50610c256125b4565b005b348015610c32575f80fd5b50610c3b61264d565b604051610c489190614921565b60405180910390f35b348015610c5c575f80fd5b50610c776004803603810190610c72919061498a565b612653565b604051610c849190614832565b60405180910390f35b348015610c98575f80fd5b50610ca16127a7565b604051610cae9190614921565b60405180910390f35b348015610cc2575f80fd5b50610ccb6127ad565b604051610cd89190614832565b60405180910390f35b348015610cec575f80fd5b50610d076004803603810190610d029190614ae0565b6127c0565b604051610d149190614921565b60405180910390f35b348015610d28575f80fd5b50610d436004803603810190610d3e919061484b565b612842565b005b348015610d50575f80fd5b50610d59612a41565b604051610d669190614921565b60405180910390f35b348015610d7a575f80fd5b50610d956004803603810190610d9091906149b5565b612a47565b005b348015610da2575f80fd5b50610dab612b5b565b604051610db89190614921565b60405180910390f35b348015610dcc575f80fd5b50610dd5612b61565b604051610de29190614921565b60405180910390f35b348015610df6575f80fd5b50610dff612b67565b604051610e0c9190614921565b60405180910390f35b348015610e20575f80fd5b50610e3b6004803603810190610e36919061484b565b612b6d565b005b348015610e48575f80fd5b50610e636004803603810190610e5e919061484b565b612c63565b005b348015610e70575f80fd5b50610e79612e62565b604051610e869190614921565b60405180910390f35b348015610e9a575f80fd5b50610ea3612e68565b604051610eb09190614921565b60405180910390f35b610ec1612e6e565b73ffffffffffffffffffffffffffffffffffffffff16610edf611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90614b68565b60405180910390fd5b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f6f9190614885565b602060405180830381865afa158015610f8a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fae9190614b9a565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610feb929190614bc5565b6020604051808303815f875af1158015611007573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061102b9190614c00565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f1935050505015801561106f573d5f803e3d5ffd5b5050565b60606003805461108290614c58565b80601f01602080910402602001604051908101604052809291908181526020018280546110ae90614c58565b80156110f95780601f106110d0576101008083540402835291602001916110f9565b820191905f5260205f20905b8154815290600101906020018083116110dc57829003601f168201915b5050505050905090565b5f61111661110f612e6e565b8484612e75565b6001905092915050565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b601c602052805f5260405f205f915054906101000a900460ff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b60195481565b60175481565b5f6111f9848484613038565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f611240612e6e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b690614cf8565b60405180910390fd5b6112d3856112cb612e6e565b858403612e75565b60019150509392505050565b600b60039054906101000a900460ff1681565b61dead81565b611300612e6e565b73ffffffffffffffffffffffffffffffffffffffff1661131e611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b90614b68565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f7b9a991aa973cfc07437f57202ed5bf6e157e0f73c766b6104014b4c9f1fdb0f60405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61143a612e6e565b73ffffffffffffffffffffffffffffffffffffffff16611458611dd0565b73ffffffffffffffffffffffffffffffffffffffff16146114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a590614b68565b60405180910390fd5b670de0b6b3a76400006103e8600a6114c46111d8565b6114ce9190614d43565b6114d89190614db1565b6114e29190614db1565b811015611524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151b90614e2b565b60405180910390fd5b670de0b6b3a7640000816115389190614d43565b60098190555050565b60095481565b61154f612e6e565b73ffffffffffffffffffffffffffffffffffffffff1661156d611dd0565b73ffffffffffffffffffffffffffffffffffffffff16146115c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ba90614b68565b60405180910390fd5b83600d8190555082600e8190555081600f8190555080601081905550601054600f54600e54600d546115f59190614e49565b6115ff9190614e49565b6116099190614e49565b60118190555060056011541115611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90614ec6565b60405180910390fd5b50505050565b5f6012905090565b60155481565b5f611706611675612e6e565b848460015f611682612e6e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546117019190614e49565b612e75565b6001905092915050565b611718612e6e565b73ffffffffffffffffffffffffffffffffffffffff16611736611dd0565b73ffffffffffffffffffffffffffffffffffffffff161461178c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178390614b68565b60405180910390fd5b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b7f000000000000000000000000c3afb3ad21d96cdb0ef1535732efd427c8ed78d781565b600b5f9054906101000a900460ff1681565b5f601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60185481565b611879612e6e565b73ffffffffffffffffffffffffffffffffffffffff16611897611dd0565b73ffffffffffffffffffffffffffffffffffffffff16146118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e490614b68565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161191290614f11565b5f6040518083038185875af1925050503d805f811461194c576040519150601f19603f3d011682016040523d82523d5f602084013e611951565b606091505b5050905080611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c90614f6f565b60405180910390fd5b5050565b60165481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6119ec612e6e565b73ffffffffffffffffffffffffffffffffffffffff16611a0a611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5790614b68565b60405180910390fd5b611a695f613c6e565b565b611a73612e6e565b73ffffffffffffffffffffffffffffffffffffffff16611a91611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ade90614b68565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fd0bdd1bf92049384d44f81d258f51a39b26cfc1d256348efb3b109fd8db7271160405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f611bae612e6e565b73ffffffffffffffffffffffffffffffffffffffff16611bcc611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1990614b68565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055506001905090565b611c4a612e6e565b73ffffffffffffffffffffffffffffffffffffffff16611c68611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb590614b68565b60405180910390fd5b80601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b600e5481565b611d24612e6e565b73ffffffffffffffffffffffffffffffffffffffff16611d42611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f90614b68565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054611e0790614c58565b80601f0160208091040260200160405190810160405280929190818152602001828054611e3390614c58565b8015611e7e5780601f10611e5557610100808354040283529160200191611e7e565b820191905f5260205f20905b815481529060010190602001808311611e6157829003601f168201915b5050505050905090565b611e90612e6e565b73ffffffffffffffffffffffffffffffffffffffff16611eae611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efb90614b68565b60405180910390fd5b7f000000000000000000000000c3afb3ad21d96cdb0ef1535732efd427c8ed78d773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990614fd7565b60405180910390fd5b611f9c8282613d31565b5050565b5f8060015f611fad612e6e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015612067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205e90615065565b60405180910390fd5b61207b612072612e6e565b85858403612e75565b600191505092915050565b61208e612e6e565b73ffffffffffffffffffffffffffffffffffffffff166120ac611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614612102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f990614b68565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b612127612e6e565b73ffffffffffffffffffffffffffffffffffffffff16612145611dd0565b73ffffffffffffffffffffffffffffffffffffffff161461219b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219290614b68565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612209576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612200906150cd565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016122439190614885565b602060405180830381865afa15801561225e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122829190614b9a565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016122bf929190614bc5565b6020604051808303815f875af11580156122db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ff9190614c00565b50505050565b5f612318612311612e6e565b8484613038565b6001905092915050565b61232a612e6e565b73ffffffffffffffffffffffffffffffffffffffff16612348611dd0565b73ffffffffffffffffffffffffffffffffffffffff161461239e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239590614b68565b60405180910390fd5b670de0b6b3a76400006103e860056123b46111d8565b6123be9190614d43565b6123c89190614db1565b6123d29190614db1565b811015612414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240b90615135565b60405180910390fd5b670de0b6b3a7640000816124289190614d43565b60088190555050565b60125481565b601d602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b60135481565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61249a612e6e565b73ffffffffffffffffffffffffffffffffffffffff166124b8611dd0565b73ffffffffffffffffffffffffffffffffffffffff161461250e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250590614b68565b60405180910390fd5b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516125a89190614832565b60405180910390a25050565b6125bc612e6e565b73ffffffffffffffffffffffffffffffffffffffff166125da611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614612630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262790614b68565b60405180910390fd5b6001600b60036101000a81548160ff021916908315150217905550565b60085481565b5f61265c612e6e565b73ffffffffffffffffffffffffffffffffffffffff1661267a611dd0565b73ffffffffffffffffffffffffffffffffffffffff16146126d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c790614b68565b60405180910390fd5b620186a060016126de6111d8565b6126e89190614d43565b6126f29190614db1565b821015612734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272b906151c3565b60405180910390fd5b6103e860056127416111d8565b61274b9190614d43565b6127559190614db1565b821115612797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278e90615251565b60405180910390fd5b81600a8190555060019050919050565b60115481565b600b60029054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61284a612e6e565b73ffffffffffffffffffffffffffffffffffffffff16612868611dd0565b73ffffffffffffffffffffffffffffffffffffffff16146128be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b590614b68565b60405180910390fd5b600b60039054906101000a900460ff161561290e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612905906152b9565b60405180910390fd5b7f000000000000000000000000c3afb3ad21d96cdb0ef1535732efd427c8ed78d773ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156129aa5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b6129e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e090615321565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b600a5481565b612a4f612e6e565b73ffffffffffffffffffffffffffffffffffffffff16612a6d611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614612ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aba90614b68565b60405180910390fd5b83601281905550826013819055508160148190555080601581905550601554601454601354601254612af59190614e49565b612aff9190614e49565b612b099190614e49565b60168190555060056016541115612b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4c90614ec6565b60405180910390fd5b50505050565b60105481565b601a5481565b600f5481565b612b75612e6e565b73ffffffffffffffffffffffffffffffffffffffff16612b93611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614612be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be090614b68565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4e906153af565b60405180910390fd5b612c6081613c6e565b50565b612c6b612e6e565b73ffffffffffffffffffffffffffffffffffffffff16612c89611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614612cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd690614b68565b60405180910390fd5b600b60039054906101000a900460ff1615612d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d26906152b9565b60405180910390fd5b7f000000000000000000000000c3afb3ad21d96cdb0ef1535732efd427c8ed78d773ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612dcb5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0190615321565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60145481565b600d5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eda9061543d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f48906154cb565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161302b9190614921565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036130a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309d90615559565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310b906155e7565b60405180910390fd5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561319e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131959061564f565b60405180910390fd5b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615613228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321f906156b7565b60405180910390fd5b5f810361323f5761323a83835f613dcf565b613c69565b600b5f9054906101000a900460ff16156137235761325b611dd0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156132c95750613299611dd0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561330157505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561333b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156133545750600560149054906101000a900460ff16155b1561372257600b60019054906101000a900460ff1661344857601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806134085750601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b613447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343e9061571f565b60405180910390fd5b5b601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156134e55750601c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561358c5760085481111561352f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613526906157ad565b60405180910390fd5b60095461353b8361199f565b826135469190614e49565b1115613587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357e9061583b565b60405180910390fd5b613721565b601d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156136295750601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561367857600854811115613673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161366a906158c9565b60405180910390fd5b613720565b601c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661371f576009546136d28361199f565b826136dd9190614e49565b111561371e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137159061583b565b60405180910390fd5b5b5b5b5b5b5f61372d3061199f565b90505f600a5482101590508080156137515750600b60029054906101000a900460ff165b801561376a5750600560149054906101000a900460ff16155b80156137bd5750601d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156138105750601b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156138635750601b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156138a6576001600560146101000a81548160ff02191690831515021790555061388b614044565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff16159050601b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806139555750601b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561395e575f90505b5f8115613c5957601d5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156139bc57505f601654115b15613ab8576139e960646139db6016548861434590919063ffffffff16565b61435a90919063ffffffff16565b9050601654601454826139fc9190614d43565b613a069190614db1565b60195f828254613a169190614e49565b9250508190555060165460155482613a2e9190614d43565b613a389190614db1565b601a5f828254613a489190614e49565b9250508190555060165460135482613a609190614d43565b613a6a9190614db1565b60185f828254613a7a9190614e49565b9250508190555060165460125482613a929190614d43565b613a9c9190614db1565b60175f828254613aac9190614e49565b92505081905550613c08565b601d5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613b0f57505f601154115b15613c0757613b3c6064613b2e6011548861434590919063ffffffff16565b61435a90919063ffffffff16565b9050601154600f5482613b4f9190614d43565b613b599190614db1565b60195f828254613b699190614e49565b9250508190555060115460105482613b819190614d43565b613b8b9190614db1565b601a5f828254613b9b9190614e49565b92505081905550601154600e5482613bb39190614d43565b613bbd9190614db1565b60185f828254613bcd9190614e49565b92505081905550601154600d5482613be59190614d43565b613bef9190614db1565b60175f828254613bff9190614e49565b925050819055505b5b5f811115613c4a57613c28873060175484613c2391906158e7565b613dcf565b5f6017541115613c4957613c418761dead601754613dcf565b5f6017819055505b5b8085613c5691906158e7565b94505b613c64878787613dcf565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e349061598a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ea290615a18565b60405180910390fd5b613eb683838361436f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f3090615aa6565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254613fc79190614e49565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161402b9190614921565b60405180910390a361403e848484614374565b50505050565b5f61404e3061199f565b90505f601a546018546019546140649190614e49565b61406e9190614e49565b90505f8083148061407e57505f82145b1561408b57505050614343565b6014600a5461409a9190614d43565b8311156140b3576014600a546140b09190614d43565b92505b5f600283601954866140c59190614d43565b6140cf9190614db1565b6140d99190614db1565b90505f6140ef828661437990919063ffffffff16565b90505f4790506140fe8261438e565b5f614112824761437990919063ffffffff16565b90505f61415560026019546141279190614db1565b8861413291906158e7565b6141476018548561434590919063ffffffff16565b61435a90919063ffffffff16565b90505f614198600260195461416a9190614db1565b8961417591906158e7565b61418a601a548661434590919063ffffffff16565b61435a90919063ffffffff16565b90505f8183856141a891906158e7565b6141b291906158e7565b90505f6019819055505f6018819055505f601a8190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161420e90614f11565b5f6040518083038185875af1925050503d805f8114614248576040519150601f19603f3d011682016040523d82523d5f602084013e61424d565b606091505b5050809850505f8711801561426157505f81115b156142ae5761427087826145c1565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186826019546040516142a593929190615ac4565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516142f390614f11565b5f6040518083038185875af1925050503d805f811461432d576040519150601f19603f3d011682016040523d82523d5f602084013e614332565b606091505b505080985050505050505050505050505b565b5f81836143529190614d43565b905092915050565b5f81836143679190614db1565b905092915050565b505050565b505050565b5f818361438691906158e7565b905092915050565b5f600267ffffffffffffffff8111156143aa576143a9615af9565b5b6040519080825280602002602001820160405280156143d85781602001602082028036833780820191505090505b50905030815f815181106143ef576143ee615b26565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614492573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906144b69190615b67565b816001815181106144ca576144c9615b26565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061452f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612e75565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401614590959493929190615c82565b5f604051808303815f87803b1580156145a7575f80fd5b505af11580156145b9573d5f803e3d5ffd5b505050505050565b6145ec307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612e75565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80614635611dd0565b426040518863ffffffff1660e01b815260040161465796959493929190615cda565b60606040518083038185885af1158015614673573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906146989190615d39565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156146d65780820151818401526020810190506146bb565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6146fb8261469f565b61470581856146a9565b93506147158185602086016146b9565b61471e816146e1565b840191505092915050565b5f6020820190508181035f83015261474181846146f1565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6147768261474d565b9050919050565b6147868161476c565b8114614790575f80fd5b50565b5f813590506147a18161477d565b92915050565b5f819050919050565b6147b9816147a7565b81146147c3575f80fd5b50565b5f813590506147d4816147b0565b92915050565b5f80604083850312156147f0576147ef614749565b5b5f6147fd85828601614793565b925050602061480e858286016147c6565b9150509250929050565b5f8115159050919050565b61482c81614818565b82525050565b5f6020820190506148455f830184614823565b92915050565b5f602082840312156148605761485f614749565b5b5f61486d84828501614793565b91505092915050565b61487f8161476c565b82525050565b5f6020820190506148985f830184614876565b92915050565b5f819050919050565b5f6148c16148bc6148b78461474d565b61489e565b61474d565b9050919050565b5f6148d2826148a7565b9050919050565b5f6148e3826148c8565b9050919050565b6148f3816148d9565b82525050565b5f60208201905061490c5f8301846148ea565b92915050565b61491b816147a7565b82525050565b5f6020820190506149345f830184614912565b92915050565b5f805f6060848603121561495157614950614749565b5b5f61495e86828701614793565b935050602061496f86828701614793565b9250506040614980868287016147c6565b9150509250925092565b5f6020828403121561499f5761499e614749565b5b5f6149ac848285016147c6565b91505092915050565b5f805f80608085870312156149cd576149cc614749565b5b5f6149da878288016147c6565b94505060206149eb878288016147c6565b93505060406149fc878288016147c6565b9250506060614a0d878288016147c6565b91505092959194509250565b5f60ff82169050919050565b614a2e81614a19565b82525050565b5f602082019050614a475f830184614a25565b92915050565b614a5681614818565b8114614a60575f80fd5b50565b5f81359050614a7181614a4d565b92915050565b5f8060408385031215614a8d57614a8c614749565b5b5f614a9a85828601614793565b9250506020614aab85828601614a63565b9150509250929050565b5f60208284031215614aca57614ac9614749565b5b5f614ad784828501614a63565b91505092915050565b5f8060408385031215614af657614af5614749565b5b5f614b0385828601614793565b9250506020614b1485828601614793565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614b526020836146a9565b9150614b5d82614b1e565b602082019050919050565b5f6020820190508181035f830152614b7f81614b46565b9050919050565b5f81519050614b94816147b0565b92915050565b5f60208284031215614baf57614bae614749565b5b5f614bbc84828501614b86565b91505092915050565b5f604082019050614bd85f830185614876565b614be56020830184614912565b9392505050565b5f81519050614bfa81614a4d565b92915050565b5f60208284031215614c1557614c14614749565b5b5f614c2284828501614bec565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680614c6f57607f821691505b602082108103614c8257614c81614c2b565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614ce26028836146a9565b9150614ced82614c88565b604082019050919050565b5f6020820190508181035f830152614d0f81614cd6565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f614d4d826147a7565b9150614d58836147a7565b9250828202614d66816147a7565b91508282048414831517614d7d57614d7c614d16565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614dbb826147a7565b9150614dc6836147a7565b925082614dd657614dd5614d84565b5b828204905092915050565b7f4d757374206265203e20312e30250000000000000000000000000000000000005f82015250565b5f614e15600e836146a9565b9150614e2082614de1565b602082019050919050565b5f6020820190508181035f830152614e4281614e09565b9050919050565b5f614e53826147a7565b9150614e5e836147a7565b9250828201905080821115614e7657614e75614d16565b5b92915050565b7f466565206d757374206265203c3d2035000000000000000000000000000000005f82015250565b5f614eb06010836146a9565b9150614ebb82614e7c565b602082019050919050565b5f6020820190508181035f830152614edd81614ea4565b9050919050565b5f81905092915050565b50565b5f614efc5f83614ee4565b9150614f0782614eee565b5f82019050919050565b5f614f1b82614ef1565b9150819050919050565b7f776974686472617754726170706564457468206661696c6564000000000000005f82015250565b5f614f596019836146a9565b9150614f6482614f25565b602082019050919050565b5f6020820190508181035f830152614f8681614f4d565b9050919050565b7f506169722072656d6f76616c206e6f74207065726d69747465640000000000005f82015250565b5f614fc1601a836146a9565b9150614fcc82614f8d565b602082019050919050565b5f6020820190508181035f830152614fee81614fb5565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61504f6025836146a9565b915061505a82614ff5565b604082019050919050565b5f6020820190508181035f83015261507c81615043565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f6150b7601a836146a9565b91506150c282615083565b602082019050919050565b5f6020820190508181035f8301526150e4816150ab565b9050919050565b7f4d757374206265203e20302e35250000000000000000000000000000000000005f82015250565b5f61511f600e836146a9565b915061512a826150eb565b602082019050919050565b5f6020820190508181035f83015261514c81615113565b9050919050565b7f53776170206d757374206265203e20302e3030312520746f74616c20737570705f8201527f6c792e0000000000000000000000000000000000000000000000000000000000602082015250565b5f6151ad6023836146a9565b91506151b882615153565b604082019050919050565b5f6020820190508181035f8301526151da816151a1565b9050919050565b7f53776170206d757374206265203c20302e352520746f74616c20737570706c795f8201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b5f61523b6021836146a9565b9150615246826151e1565b604082019050919050565b5f6020820190508181035f8301526152688161522f565b9050919050565b7f426c61636b6c69737420726967687473207265766f6b656400000000000000005f82015250565b5f6152a36018836146a9565b91506152ae8261526f565b602082019050919050565b5f6020820190508181035f8301526152d081615297565b9050919050565b7f43616e277420626c61636b6c69737420763220726f757465722f706f6f6c2e005f82015250565b5f61530b601f836146a9565b9150615316826152d7565b602082019050919050565b5f6020820190508181035f830152615338816152ff565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6153996026836146a9565b91506153a48261533f565b604082019050919050565b5f6020820190508181035f8301526153c68161538d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6154276024836146a9565b9150615432826153cd565b604082019050919050565b5f6020820190508181035f8301526154548161541b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6154b56022836146a9565b91506154c08261545b565b604082019050919050565b5f6020820190508181035f8301526154e2816154a9565b9050919050565b7f45524332303a207472616e73666572696e672066726f6d207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6155436024836146a9565b915061554e826154e9565b604082019050919050565b5f6020820190508181035f83015261557081615537565b9050919050565b7f45524332303a207472616e73666572696e6720746f207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6155d16022836146a9565b91506155dc82615577565b604082019050919050565b5f6020820190508181035f8301526155fe816155c5565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f6156396012836146a9565b915061564482615605565b602082019050919050565b5f6020820190508181035f8301526156668161562d565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f6156a16014836146a9565b91506156ac8261566d565b602082019050919050565b5f6020820190508181035f8301526156ce81615695565b9050919050565b7f54726164696e6720696e6163746976652e0000000000000000000000000000005f82015250565b5f6157096011836146a9565b9150615714826156d5565b602082019050919050565b5f6020820190508181035f830152615736816156fd565b9050919050565b7f4275792065786365656473206d61785472616e73616374696f6e416d6f756e745f8201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b5f6157976021836146a9565b91506157a28261573d565b604082019050919050565b5f6020820190508181035f8301526157c48161578b565b9050919050565b7f6d617857616c6c6574486f6c64416d6f756e7420616d6f756e742065786365655f8201527f6465640000000000000000000000000000000000000000000000000000000000602082015250565b5f6158256023836146a9565b9150615830826157cb565b604082019050919050565b5f6020820190508181035f83015261585281615819565b9050919050565b7f53656c6c2065786365656473206d61785472616e73616374696f6e416d6f756e5f8201527f742e000000000000000000000000000000000000000000000000000000000000602082015250565b5f6158b36022836146a9565b91506158be82615859565b604082019050919050565b5f6020820190508181035f8301526158e0816158a7565b9050919050565b5f6158f1826147a7565b91506158fc836147a7565b925082820390508181111561591457615913614d16565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6159746025836146a9565b915061597f8261591a565b604082019050919050565b5f6020820190508181035f8301526159a181615968565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f615a026023836146a9565b9150615a0d826159a8565b604082019050919050565b5f6020820190508181035f830152615a2f816159f6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f615a906026836146a9565b9150615a9b82615a36565b604082019050919050565b5f6020820190508181035f830152615abd81615a84565b9050919050565b5f606082019050615ad75f830186614912565b615ae46020830185614912565b615af16040830184614912565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050615b618161477d565b92915050565b5f60208284031215615b7c57615b7b614749565b5b5f615b8984828501615b53565b91505092915050565b5f819050919050565b5f615bb5615bb0615bab84615b92565b61489e565b6147a7565b9050919050565b615bc581615b9b565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b615bfd8161476c565b82525050565b5f615c0e8383615bf4565b60208301905092915050565b5f602082019050919050565b5f615c3082615bcb565b615c3a8185615bd5565b9350615c4583615be5565b805f5b83811015615c75578151615c5c8882615c03565b9750615c6783615c1a565b925050600181019050615c48565b5085935050505092915050565b5f60a082019050615c955f830188614912565b615ca26020830187615bbc565b8181036040830152615cb48186615c26565b9050615cc36060830185614876565b615cd06080830184614912565b9695505050505050565b5f60c082019050615ced5f830189614876565b615cfa6020830188614912565b615d076040830187615bbc565b615d146060830186615bbc565b615d216080830185614876565b615d2e60a0830184614912565b979650505050505050565b5f805f60608486031215615d5057615d4f614749565b5b5f615d5d86828701614b86565b9350506020615d6e86828701614b86565b9250506040615d7f86828701614b86565b915050925092509256fea26469706673582212208027d8a641ebcaba0540ea6447675686405b7842d043fab84b6cd423da01fdf764736f6c63430008140033

Deployed Bytecode Sourcemap

31832:21093:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52058:260;;;;;;;;;;;;;:::i;:::-;;9531:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11764:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42831:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33791:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32197:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31909:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10651:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33536:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33457:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12440:529;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32781:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32012:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42065:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39128:251;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32430:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40047:553;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10493:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33342:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13378:290;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51936:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31967:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32639:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42624:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33492:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52720:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33378:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10822:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2927:103;;;;;;;;;;;;;:::i;:::-;;42352:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38086:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39468:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33051:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37888:134;;;;;;;;;;;;;:::i;:::-;;2276:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9750:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41574:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14171:475;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39755:160;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52397:315;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11178:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38813:252;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33229:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34003:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32679:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33262:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32236:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41384:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50725:104;;;;;;;;;;;;;:::i;:::-;;32388:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38277:444;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33164:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32719:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11441:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51363:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32537:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40733:562;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33129:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33576:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33092:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3185:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50837:389;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33304:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33018:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52058:260;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52122:15:::1;52155:4;52140:31;;;52180:4;52140:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52122:64;;52212:4;52197:30;;;52228:10;52240:7;52197:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;52267:10;52259:28;;:51;52288:21;52259:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;52111:207;52058:260::o:0;9531:100::-;9585:13;9618:5;9611:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9531:100;:::o;11764:194::-;11872:4;11889:39;11898:12;:10;:12::i;:::-;11912:7;11921:6;11889:8;:39::i;:::-;11946:4;11939:11;;11764:194;;;;:::o;42831:129::-;42899:4;42923:20;:29;42944:7;42923:29;;;;;;;;;;;;;;;;;;;;;;;;;42916:36;;42831:129;;;:::o;33791:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32197:32::-;;;;;;;;;;;;;:::o;31909:51::-;;;:::o;10651:108::-;10712:7;10739:12;;10732:19;;10651:108;:::o;33536:33::-;;;;:::o;33457:28::-;;;;:::o;12440:529::-;12580:4;12597:36;12607:6;12615:9;12626:6;12597:9;:36::i;:::-;12646:24;12673:11;:19;12685:6;12673:19;;;;;;;;;;;;;;;:33;12693:12;:10;:12::i;:::-;12673:33;;;;;;;;;;;;;;;;12646:60;;12759:6;12739:16;:26;;12717:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;12869:57;12878:6;12886:12;:10;:12::i;:::-;12919:6;12900:16;:25;12869:8;:57::i;:::-;12957:4;12950:11;;;12440:529;;;;;:::o;32781:45::-;;;;;;;;;;;;;:::o;32012:53::-;32058:6;32012:53;:::o;42065:238::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42226:17:::1;;;;;;;;;;;42179:65;;42204:20;42179:65;;;;;;;;;;;;42275:20;42255:17;;:40;;;;;;;;;;;;;;;;;;42065:238:::0;:::o;39128:251::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39273:4:::1;39265;39259:2;39243:13;:11;:13::i;:::-;:18;;;;:::i;:::-;39242:27;;;;:::i;:::-;39241:36;;;;:::i;:::-;39231:6;:46;;39209:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;39362:8;39352:6;:19;;;;:::i;:::-;39330;:41;;;;39128:251:::0;:::o;32430:34::-;;;;:::o;40047:553::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40247:9:::1;40233:11;:23;;;;40289:17;40267:19;:39;;;;40335:13;40317:15;:31;;;;40375:11;40359:13;:27;;;;40520:13;;40489:15;;40454:19;;40427:11;;:46;;;;:::i;:::-;:77;;;;:::i;:::-;:106;;;;:::i;:::-;40399:12;:134;;;;40570:1;40554:12;;:17;;40546:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;40047:553:::0;;;;:::o;10493:93::-;10551:5;10576:2;10569:9;;10493:93;:::o;33342:29::-;;;;:::o;13378:290::-;13491:4;13508:130;13531:12;:10;:12::i;:::-;13558:7;13617:10;13580:11;:25;13592:12;:10;:12::i;:::-;13580:25;;;;;;;;;;;;;;;:34;13606:7;13580:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13508:8;:130::i;:::-;13656:4;13649:11;;13378:290;;;;:::o;51936:114::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52037:5:::1;52007:20;:27;52028:5;52007:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;51936:114:::0;:::o;31967:38::-;;;:::o;32639:33::-;;;;;;;;;;;;;:::o;42624:126::-;42690:4;42714:19;:28;42734:7;42714:28;;;;;;;;;;;;;;;;;;;;;;;;;42707:35;;42624:126;;;:::o;33492:37::-;;;;:::o;52720:202::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52795:12:::1;52813:6;:11;;52832:21;52813:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52794:64;;;52877:7;52869:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;52783:139;52720:202:::0;:::o;33378:28::-;;;;:::o;10822:143::-;10912:7;10939:9;:18;10949:7;10939:18;;;;;;;;;;;;;;;;10932:25;;10822:143;;;:::o;2927:103::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2992:30:::1;3019:1;2992:18;:30::i;:::-;2927:103::o:0;42352:173::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42467:13:::1;;;;;;;;;;;42435:46;;42456:9;42435:46;;;;;;;;;;;;42508:9;42492:13;;:25;;;;;;;;;;;;;;;;;;42352:173:::0;:::o;38086:121::-;38138:4;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38172:5:::1;38155:14;;:22;;;;;;;;;;;;;;;;;;38195:4;38188:11;;38086:121:::0;:::o;39468:169::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39625:4:::1;39583:31;:39;39615:6;39583:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39468:169:::0;;:::o;33051:34::-;;;;:::o;37888:134::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37959:4:::1;37943:13;;:20;;;;;;;;;;;;;;;;;;38010:4;37974:33;;:40;;;;;;;;;;;;;;;;;;37888:134::o:0;2276:87::-;2322:7;2349:6;;;;;;;;;;;2342:13;;2276:87;:::o;9750:104::-;9806:13;9839:7;9832:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9750:104;:::o;41574:238::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41706:13:::1;41698:21;;:4;:21;;::::0;41690:60:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;41763:41;41792:4;41798:5;41763:28;:41::i;:::-;41574:238:::0;;:::o;14171:475::-;14289:4;14306:24;14333:11;:25;14345:12;:10;:12::i;:::-;14333:25;;;;;;;;;;;;;;;:34;14359:7;14333:34;;;;;;;;;;;;;;;;14306:61;;14420:15;14400:16;:35;;14378:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;14536:67;14545:12;:10;:12::i;:::-;14559:7;14587:15;14568:16;:34;14536:8;:67::i;:::-;14634:4;14627:11;;;14171:475;;;;:::o;39755:160::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39900:7:::1;39864:33;;:43;;;;;;;;;;;;;;;;;;39755:160:::0;:::o;52397:315::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52537:1:::1;52519:20;;:6;:20;;::::0;52511:59:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;52581:24;52615:6;52608:24;;;52641:4;52608:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52581:66;;52665:6;52658:23;;;52682:3;52687:16;52658:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;52500:212;52397:315:::0;;:::o;11178:200::-;11289:4;11306:42;11316:12;:10;:12::i;:::-;11330:9;11341:6;11306:9;:42::i;:::-;11366:4;11359:11;;11178:200;;;;:::o;38813:252::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38958:4:::1;38950;38945:1;38929:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38928:26;;;;:::i;:::-;38927:35;;;;:::i;:::-;38917:6;:45;;38895:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;39048:8;39038:6;:19;;;;:::i;:::-;39015:20;:42;;;;38813:252:::0;:::o;33229:26::-;;;;:::o;34003:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;32679:33::-;;;;;;;;;;;;;:::o;33262:35::-;;;;:::o;32236:28::-;;;;;;;;;;;;;:::o;41384:182::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41500:8:::1;41469:19;:28;41489:7;41469:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41540:7;41524:34;;;41549:8;41524:34;;;;;;:::i;:::-;;;;;;;;41384:182:::0;;:::o;50725:104::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50817:4:::1;50789:25;;:32;;;;;;;;;;;;;;;;;;50725:104::o:0;32388:35::-;;;;:::o;38277:444::-;38374:4;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38448:6:::1;38443:1;38427:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38426:28;;;;:::i;:::-;38413:9;:41;;38391:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;38585:4;38580:1;38564:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38563:26;;;;:::i;:::-;38550:9;:39;;38528:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;38682:9;38661:18;:30;;;;38709:4;38702:11;;38277:444:::0;;;:::o;33164:27::-;;;;:::o;32719:53::-;;;;;;;;;;;;;:::o;11441:176::-;11555:7;11582:11;:18;11594:5;11582:18;;;;;;;;;;;;;;;:27;11601:7;11582:27;;;;;;;;;;;;;;;;11575:34;;11441:176;;;;:::o;51363:428::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51451:25:::1;;;;;;;;;;;51450:26;51442:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51559:13;51538:35;;:9;:35;;;;:137;;;;;51632:42;51594:81;;:9;:81;;;;51538:137;51516:218;;;;;;;;;;;;:::i;:::-;;;;;;;;;51779:4;51745:20;:31;51766:9;51745:31;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;51363:428:::0;:::o;32537:33::-;;;;:::o;40733:562::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40934:9:::1;40920:11;:23;;;;40977:17;40954:20;:40;;;;41024:13;41005:16;:32;;;;41065:11;41048:14;:28;;;;41213:14;;41181:16;;41145:20;;41118:11;;:47;;;;:::i;:::-;:79;;;;:::i;:::-;:109;;;;:::i;:::-;41089:13;:138;;;;41265:1;41248:13;;:18;;41240:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;40733:562:::0;;;;:::o;33129:28::-;;;;:::o;33576:31::-;;;;:::o;33092:30::-;;;;:::o;3185:238::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3308:1:::1;3288:22;;:8;:22;;::::0;3266:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3387:28;3406:8;3387:18;:28::i;:::-;3185:238:::0;:::o;50837:389::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50915:25:::1;;;;;;;;;;;50914:26;50906:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51019:13;51002:31;;:5;:31;;;;:112;;;;;51071:42;51054:60;;:5;:60;;;;51002:112;50980:193;;;;;;;;;;;;:::i;:::-;;;;;;;;;51214:4;51184:20;:27;51205:5;51184:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;50837:389:::0;:::o;33304:31::-;;;;:::o;33018:26::-;;;;:::o;1118:98::-;1171:7;1198:10;1191:17;;1118:98;:::o;17954:380::-;18107:1;18090:19;;:5;:19;;;18082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18188:1;18169:21;;:7;:21;;;18161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18272:6;18242:11;:18;18254:5;18242:18;;;;;;;;;;;;;;;:27;18261:7;18242:27;;;;;;;;;;;;;;;:36;;;;18310:7;18294:32;;18303:5;18294:32;;;18319:6;18294:32;;;;;;:::i;:::-;;;;;;;;17954:380;;;:::o;42968:4664::-;43116:1;43100:18;;:4;:18;;;43092:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;43192:1;43178:16;;:2;:16;;;43170:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;43253:20;:26;43274:4;43253:26;;;;;;;;;;;;;;;;;;;;;;;;;43252:27;43244:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43322:20;:24;43343:2;43322:24;;;;;;;;;;;;;;;;;;;;;;;;;43321:25;43313:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43398:1;43388:6;:11;43384:93;;43416:28;43432:4;43438:2;43442:1;43416:15;:28::i;:::-;43459:7;;43384:93;43493:14;;;;;;;;;;;43489:1736;;;43554:7;:5;:7::i;:::-;43546:15;;:4;:15;;;;:49;;;;;43588:7;:5;:7::i;:::-;43582:13;;:2;:13;;;;43546:49;:86;;;;;43630:1;43616:16;;:2;:16;;;;43546:86;:128;;;;;43667:6;43653:21;;:2;:21;;;;43546:128;:164;;;;;43696:14;;;;;;;;;;;43695:15;43546:164;43524:1690;;;43750:13;;;;;;;;;;;43745:218;;43822:19;:25;43842:4;43822:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;43851:19;:23;43871:2;43851:23;;;;;;;;;;;;;;;;;;;;;;;;;43822:52;43788:155;;;;;;;;;;;;:::i;:::-;;;;;;;;;43745:218;44051:25;:31;44077:4;44051:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44108:31;:35;44140:2;44108:35;;;;;;;;;;;;;;;;;;;;;;;;;44107:36;44051:92;44025:1174;;;44230:20;;44220:6;:30;;44186:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;44418:19;;44401:13;44411:2;44401:9;:13::i;:::-;44392:6;:22;;;;:::i;:::-;:45;;44358:166;;;;;;;;;;;;:::i;:::-;;;;;;;;;44025:1174;;;44637:25;:29;44663:2;44637:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44692:31;:37;44724:4;44692:37;;;;;;;;;;;;;;;;;;;;;;;;;44691:38;44637:92;44611:588;;;44816:20;;44806:6;:30;;44772:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;44611:588;;;44953:31;:35;44985:2;44953:35;;;;;;;;;;;;;;;;;;;;;;;;;44948:251;;45073:19;;45056:13;45066:2;45056:9;:13::i;:::-;45047:6;:22;;;;:::i;:::-;:45;;45013:166;;;;;;;;;;;;:::i;:::-;;;;;;;;;44948:251;44611:588;44025:1174;43524:1690;43489:1736;45237:28;45268:24;45286:4;45268:9;:24::i;:::-;45237:55;;45305:12;45344:18;;45320:20;:42;;45305:57;;45393:7;:57;;;;;45417:33;;;;;;;;;;;45393:57;:89;;;;;45468:14;;;;;;;;;;;45467:15;45393:89;:138;;;;;45500:25;:31;45526:4;45500:31;;;;;;;;;;;;;;;;;;;;;;;;;45499:32;45393:138;:181;;;;;45549:19;:25;45569:4;45549:25;;;;;;;;;;;;;;;;;;;;;;;;;45548:26;45393:181;:222;;;;;45592:19;:23;45612:2;45592:23;;;;;;;;;;;;;;;;;;;;;;;;;45591:24;45393:222;45375:378;;;45659:4;45642:14;;:21;;;;;;;;;;;;;;;;;;45678:26;:24;:26::i;:::-;45736:5;45719:14;;:22;;;;;;;;;;;;;;;;;;45375:378;45765:12;45781:14;;;;;;;;;;;45780:15;45765:30;;45897:19;:25;45917:4;45897:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45926:19;:23;45946:2;45926:23;;;;;;;;;;;;;;;;;;;;;;;;;45897:52;45893:100;;;45976:5;45966:15;;45893:100;46005:12;46110:7;46106:1473;;;46162:25;:29;46188:2;46162:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;46211:1;46195:13;;:17;46162:50;46158:1027;;;46240:34;46270:3;46240:25;46251:13;;46240:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;46233:41;;46343:13;;46323:16;;46316:4;:23;;;;:::i;:::-;46315:41;;;;:::i;:::-;46293:18;;:63;;;;;;;:::i;:::-;;;;;;;;46421:13;;46403:14;;46396:4;:21;;;;:::i;:::-;46395:39;;;;:::i;:::-;46375:16;;:59;;;;;;;:::i;:::-;;;;;;;;46553:13;;46508:20;;46501:4;:27;;;;:::i;:::-;46500:66;;;;:::i;:::-;46453:22;;:113;;;;;;;:::i;:::-;;;;;;;;46625:13;;46610:11;;46603:4;:18;;;;:::i;:::-;46602:36;;;;:::i;:::-;46585:13;;:53;;;;;;;:::i;:::-;;;;;;;;46158:1027;;;46700:25;:31;46726:4;46700:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46750:1;46735:12;;:16;46700:51;46696:489;;;46779:33;46808:3;46779:24;46790:12;;46779:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46772:40;;46880:12;;46861:15;;46854:4;:22;;;;:::i;:::-;46853:39;;;;:::i;:::-;46831:18;;:61;;;;;;;:::i;:::-;;;;;;;;46956:12;;46939:13;;46932:4;:20;;;;:::i;:::-;46931:37;;;;:::i;:::-;46911:16;;:57;;;;;;;:::i;:::-;;;;;;;;47086:12;;47042:19;;47035:4;:26;;;;:::i;:::-;47034:64;;;;:::i;:::-;46987:22;;:111;;;;;;;:::i;:::-;;;;;;;;47157:12;;47142:11;;47135:4;:18;;;;:::i;:::-;47134:35;;;;:::i;:::-;47117:13;;:52;;;;;;;:::i;:::-;;;;;;;;46696:489;46158:1027;47212:1;47205:4;:8;47201:336;;;47234:58;47250:4;47264;47278:13;;47271:4;:20;;;;:::i;:::-;47234:15;:58::i;:::-;47387:1;47371:13;;:17;47367:155;;;47413:49;47429:4;32058:6;47448:13;;47413:15;:49::i;:::-;47501:1;47485:13;:17;;;;47367:155;47201:336;47563:4;47553:14;;;;;:::i;:::-;;;46106:1473;47591:33;47607:4;47613:2;47617:6;47591:15;:33::i;:::-;43081:4551;;;;42968:4664;;;;:::o;3583:191::-;3657:16;3676:6;;;;;;;;;;;3657:25;;3702:8;3693:6;;:17;;;;;;;;;;;;;;;;;;3757:8;3726:40;;3747:8;3726:40;;;;;;;;;;;;3646:128;3583:191;:::o;41820:188::-;41937:5;41903:25;:31;41929:4;41903:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41994:5;41960:40;;41988:4;41960:40;;;;;;;;;;;;41820:188;;:::o;15136:770::-;15294:1;15276:20;;:6;:20;;;15268:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15378:1;15357:23;;:9;:23;;;15349:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15433:47;15454:6;15462:9;15473:6;15433:20;:47::i;:::-;15493:21;15517:9;:17;15527:6;15517:17;;;;;;;;;;;;;;;;15493:41;;15584:6;15567:13;:23;;15545:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;15728:6;15712:13;:22;15692:9;:17;15702:6;15692:17;;;;;;;;;;;;;;;:42;;;;15780:6;15756:9;:20;15766:9;15756:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15821:9;15804:35;;15813:6;15804:35;;;15832:6;15804:35;;;;;;:::i;:::-;;;;;;;;15852:46;15872:6;15880:9;15891:6;15852:19;:46::i;:::-;15257:649;15136:770;;;:::o;48696:1952::-;48751:23;48777:24;48795:4;48777:9;:24::i;:::-;48751:50;;48812:25;48912:16;;48874:22;;48840:18;;:56;;;;:::i;:::-;:88;;;;:::i;:::-;48812:116;;48939:12;48987:1;48968:15;:20;:46;;;;49013:1;48992:17;:22;48968:46;48964:85;;;49031:7;;;;;48964:85;49104:2;49083:18;;:23;;;;:::i;:::-;49065:15;:41;49061:115;;;49162:2;49141:18;;:23;;;;:::i;:::-;49123:41;;49061:115;49257:23;49370:1;49337:17;49302:18;;49284:15;:36;;;;:::i;:::-;49283:71;;;;:::i;:::-;:88;;;;:::i;:::-;49257:114;;49382:26;49411:36;49431:15;49411;:19;;:36;;;;:::i;:::-;49382:65;;49460:25;49488:21;49460:49;;49522:36;49539:18;49522:16;:36::i;:::-;49571:18;49592:44;49618:17;49592:21;:25;;:44;;;;:::i;:::-;49571:65;;49649:27;49679:116;49792:1;49771:18;;:22;;;;:::i;:::-;49750:17;:44;;;;:::i;:::-;49679:52;49708:22;;49679:10;:28;;:52;;;;:::i;:::-;:70;;:116;;;;:::i;:::-;49649:146;;49808:21;49832:106;49925:1;49904:18;;:22;;;;:::i;:::-;49883:17;:44;;;;:::i;:::-;49832:32;49847:16;;49832:10;:14;;:32;;;;:::i;:::-;:36;;:106;;;;:::i;:::-;49808:130;;49951:23;50038:13;50003:19;49977:10;:45;;;;:::i;:::-;:74;;;;:::i;:::-;49951:100;;50085:1;50064:18;:22;;;;50122:1;50097:22;:26;;;;50153:1;50134:16;:20;;;;50189:13;;;;;;;;;;;50181:27;;50216:13;50181:53;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50167:67;;;;;50269:1;50251:15;:19;:42;;;;;50292:1;50274:15;:19;50251:42;50247:278;;;50310:46;50323:15;50340;50310:12;:46::i;:::-;50376:137;50409:18;50446:15;50480:18;;50376:137;;;;;;;;:::i;:::-;;;;;;;;50247:278;50559:17;;;;;;;;;;;50551:31;;50604:21;50551:89;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50537:103;;;;;48740:1908;;;;;;;;;;48696:1952;:::o;23211:98::-;23269:7;23300:1;23296;:5;;;;:::i;:::-;23289:12;;23211:98;;;;:::o;23610:::-;23668:7;23699:1;23695;:5;;;;:::i;:::-;23688:12;;23610:98;;;;:::o;18934:125::-;;;;:::o;19663:124::-;;;;:::o;22854:98::-;22912:7;22943:1;22939;:5;;;;:::i;:::-;22932:12;;22854:98;;;;:::o;48109:579::-;48235:21;48273:1;48259:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48235:40;;48304:4;48286;48291:1;48286:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;48330:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48320:4;48325:1;48320:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;48365:62;48382:4;48397:15;48415:11;48365:8;:62::i;:::-;48466:15;:66;;;48547:11;48573:1;48607:4;48634;48654:15;48466:214;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48164:524;48109:579;:::o;47640:461::-;47756:62;47773:4;47788:15;47806:11;47756:8;:62::i;:::-;47857:15;:31;;;47896:9;47929:4;47949:11;47975:1;48010;48045:7;:5;:7::i;:::-;48067:15;47857:236;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47640:461;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:60::-;4161:3;4182:5;4175:12;;4133:60;;;:::o;4199:142::-;4249:9;4282:53;4300:34;4309:24;4327:5;4309:24;:::i;:::-;4300:34;:::i;:::-;4282:53;:::i;:::-;4269:66;;4199:142;;;:::o;4347:126::-;4397:9;4430:37;4461:5;4430:37;:::i;:::-;4417:50;;4347:126;;;:::o;4479:153::-;4556:9;4589:37;4620:5;4589:37;:::i;:::-;4576:50;;4479:153;;;:::o;4638:185::-;4752:64;4810:5;4752:64;:::i;:::-;4747:3;4740:77;4638:185;;:::o;4829:276::-;4949:4;4987:2;4976:9;4972:18;4964:26;;5000:98;5095:1;5084:9;5080:17;5071:6;5000:98;:::i;:::-;4829:276;;;;:::o;5111:118::-;5198:24;5216:5;5198:24;:::i;:::-;5193:3;5186:37;5111:118;;:::o;5235:222::-;5328:4;5366:2;5355:9;5351:18;5343:26;;5379:71;5447:1;5436:9;5432:17;5423:6;5379:71;:::i;:::-;5235:222;;;;:::o;5463:619::-;5540:6;5548;5556;5605:2;5593:9;5584:7;5580:23;5576:32;5573:119;;;5611:79;;:::i;:::-;5573:119;5731:1;5756:53;5801:7;5792:6;5781:9;5777:22;5756:53;:::i;:::-;5746:63;;5702:117;5858:2;5884:53;5929:7;5920:6;5909:9;5905:22;5884:53;:::i;:::-;5874:63;;5829:118;5986:2;6012:53;6057:7;6048:6;6037:9;6033:22;6012:53;:::i;:::-;6002:63;;5957:118;5463:619;;;;;:::o;6088:329::-;6147:6;6196:2;6184:9;6175:7;6171:23;6167:32;6164:119;;;6202:79;;:::i;:::-;6164:119;6322:1;6347:53;6392:7;6383:6;6372:9;6368:22;6347:53;:::i;:::-;6337:63;;6293:117;6088:329;;;;:::o;6423:765::-;6509:6;6517;6525;6533;6582:3;6570:9;6561:7;6557:23;6553:33;6550:120;;;6589:79;;:::i;:::-;6550:120;6709:1;6734:53;6779:7;6770:6;6759:9;6755:22;6734:53;:::i;:::-;6724:63;;6680:117;6836:2;6862:53;6907:7;6898:6;6887:9;6883:22;6862:53;:::i;:::-;6852:63;;6807:118;6964:2;6990:53;7035:7;7026:6;7015:9;7011:22;6990:53;:::i;:::-;6980:63;;6935:118;7092:2;7118:53;7163:7;7154:6;7143:9;7139:22;7118:53;:::i;:::-;7108:63;;7063:118;6423:765;;;;;;;:::o;7194:86::-;7229:7;7269:4;7262:5;7258:16;7247:27;;7194:86;;;:::o;7286:112::-;7369:22;7385:5;7369:22;:::i;:::-;7364:3;7357:35;7286:112;;:::o;7404:214::-;7493:4;7531:2;7520:9;7516:18;7508:26;;7544:67;7608:1;7597:9;7593:17;7584:6;7544:67;:::i;:::-;7404:214;;;;:::o;7624:116::-;7694:21;7709:5;7694:21;:::i;:::-;7687:5;7684:32;7674:60;;7730:1;7727;7720:12;7674:60;7624:116;:::o;7746:133::-;7789:5;7827:6;7814:20;7805:29;;7843:30;7867:5;7843:30;:::i;:::-;7746:133;;;;:::o;7885:468::-;7950:6;7958;8007:2;7995:9;7986:7;7982:23;7978:32;7975:119;;;8013:79;;:::i;:::-;7975:119;8133:1;8158:53;8203:7;8194:6;8183:9;8179:22;8158:53;:::i;:::-;8148:63;;8104:117;8260:2;8286:50;8328:7;8319:6;8308:9;8304:22;8286:50;:::i;:::-;8276:60;;8231:115;7885:468;;;;;:::o;8359:323::-;8415:6;8464:2;8452:9;8443:7;8439:23;8435:32;8432:119;;;8470:79;;:::i;:::-;8432:119;8590:1;8615:50;8657:7;8648:6;8637:9;8633:22;8615:50;:::i;:::-;8605:60;;8561:114;8359:323;;;;:::o;8688:474::-;8756:6;8764;8813:2;8801:9;8792:7;8788:23;8784:32;8781:119;;;8819:79;;:::i;:::-;8781:119;8939:1;8964:53;9009:7;9000:6;8989:9;8985:22;8964:53;:::i;:::-;8954:63;;8910:117;9066:2;9092:53;9137:7;9128:6;9117:9;9113:22;9092:53;:::i;:::-;9082:63;;9037:118;8688:474;;;;;:::o;9168:182::-;9308:34;9304:1;9296:6;9292:14;9285:58;9168:182;:::o;9356:366::-;9498:3;9519:67;9583:2;9578:3;9519:67;:::i;:::-;9512:74;;9595:93;9684:3;9595:93;:::i;:::-;9713:2;9708:3;9704:12;9697:19;;9356:366;;;:::o;9728:419::-;9894:4;9932:2;9921:9;9917:18;9909:26;;9981:9;9975:4;9971:20;9967:1;9956:9;9952:17;9945:47;10009:131;10135:4;10009:131;:::i;:::-;10001:139;;9728:419;;;:::o;10153:143::-;10210:5;10241:6;10235:13;10226:22;;10257:33;10284:5;10257:33;:::i;:::-;10153:143;;;;:::o;10302:351::-;10372:6;10421:2;10409:9;10400:7;10396:23;10392:32;10389:119;;;10427:79;;:::i;:::-;10389:119;10547:1;10572:64;10628:7;10619:6;10608:9;10604:22;10572:64;:::i;:::-;10562:74;;10518:128;10302:351;;;;:::o;10659:332::-;10780:4;10818:2;10807:9;10803:18;10795:26;;10831:71;10899:1;10888:9;10884:17;10875:6;10831:71;:::i;:::-;10912:72;10980:2;10969:9;10965:18;10956:6;10912:72;:::i;:::-;10659:332;;;;;:::o;10997:137::-;11051:5;11082:6;11076:13;11067:22;;11098:30;11122:5;11098:30;:::i;:::-;10997:137;;;;:::o;11140:345::-;11207:6;11256:2;11244:9;11235:7;11231:23;11227:32;11224:119;;;11262:79;;:::i;:::-;11224:119;11382:1;11407:61;11460:7;11451:6;11440:9;11436:22;11407:61;:::i;:::-;11397:71;;11353:125;11140:345;;;;:::o;11491:180::-;11539:77;11536:1;11529:88;11636:4;11633:1;11626:15;11660:4;11657:1;11650:15;11677:320;11721:6;11758:1;11752:4;11748:12;11738:22;;11805:1;11799:4;11795:12;11826:18;11816:81;;11882:4;11874:6;11870:17;11860:27;;11816:81;11944:2;11936:6;11933:14;11913:18;11910:38;11907:84;;11963:18;;:::i;:::-;11907:84;11728:269;11677:320;;;:::o;12003:227::-;12143:34;12139:1;12131:6;12127:14;12120:58;12212:10;12207:2;12199:6;12195:15;12188:35;12003:227;:::o;12236:366::-;12378:3;12399:67;12463:2;12458:3;12399:67;:::i;:::-;12392:74;;12475:93;12564:3;12475:93;:::i;:::-;12593:2;12588:3;12584:12;12577:19;;12236:366;;;:::o;12608:419::-;12774:4;12812:2;12801:9;12797:18;12789:26;;12861:9;12855:4;12851:20;12847:1;12836:9;12832:17;12825:47;12889:131;13015:4;12889:131;:::i;:::-;12881:139;;12608:419;;;:::o;13033:180::-;13081:77;13078:1;13071:88;13178:4;13175:1;13168:15;13202:4;13199:1;13192:15;13219:410;13259:7;13282:20;13300:1;13282:20;:::i;:::-;13277:25;;13316:20;13334:1;13316:20;:::i;:::-;13311:25;;13371:1;13368;13364:9;13393:30;13411:11;13393:30;:::i;:::-;13382:41;;13572:1;13563:7;13559:15;13556:1;13553:22;13533:1;13526:9;13506:83;13483:139;;13602:18;;:::i;:::-;13483:139;13267:362;13219:410;;;;:::o;13635:180::-;13683:77;13680:1;13673:88;13780:4;13777:1;13770:15;13804:4;13801:1;13794:15;13821:185;13861:1;13878:20;13896:1;13878:20;:::i;:::-;13873:25;;13912:20;13930:1;13912:20;:::i;:::-;13907:25;;13951:1;13941:35;;13956:18;;:::i;:::-;13941:35;13998:1;13995;13991:9;13986:14;;13821:185;;;;:::o;14012:164::-;14152:16;14148:1;14140:6;14136:14;14129:40;14012:164;:::o;14182:366::-;14324:3;14345:67;14409:2;14404:3;14345:67;:::i;:::-;14338:74;;14421:93;14510:3;14421:93;:::i;:::-;14539:2;14534:3;14530:12;14523:19;;14182:366;;;:::o;14554:419::-;14720:4;14758:2;14747:9;14743:18;14735:26;;14807:9;14801:4;14797:20;14793:1;14782:9;14778:17;14771:47;14835:131;14961:4;14835:131;:::i;:::-;14827:139;;14554:419;;;:::o;14979:191::-;15019:3;15038:20;15056:1;15038:20;:::i;:::-;15033:25;;15072:20;15090:1;15072:20;:::i;:::-;15067:25;;15115:1;15112;15108:9;15101:16;;15136:3;15133:1;15130:10;15127:36;;;15143:18;;:::i;:::-;15127:36;14979:191;;;;:::o;15176:166::-;15316:18;15312:1;15304:6;15300:14;15293:42;15176:166;:::o;15348:366::-;15490:3;15511:67;15575:2;15570:3;15511:67;:::i;:::-;15504:74;;15587:93;15676:3;15587:93;:::i;:::-;15705:2;15700:3;15696:12;15689:19;;15348:366;;;:::o;15720:419::-;15886:4;15924:2;15913:9;15909:18;15901:26;;15973:9;15967:4;15963:20;15959:1;15948:9;15944:17;15937:47;16001:131;16127:4;16001:131;:::i;:::-;15993:139;;15720:419;;;:::o;16145:147::-;16246:11;16283:3;16268:18;;16145:147;;;;:::o;16298:114::-;;:::o;16418:398::-;16577:3;16598:83;16679:1;16674:3;16598:83;:::i;:::-;16591:90;;16690:93;16779:3;16690:93;:::i;:::-;16808:1;16803:3;16799:11;16792:18;;16418:398;;;:::o;16822:379::-;17006:3;17028:147;17171:3;17028:147;:::i;:::-;17021:154;;17192:3;17185:10;;16822:379;;;:::o;17207:175::-;17347:27;17343:1;17335:6;17331:14;17324:51;17207:175;:::o;17388:366::-;17530:3;17551:67;17615:2;17610:3;17551:67;:::i;:::-;17544:74;;17627:93;17716:3;17627:93;:::i;:::-;17745:2;17740:3;17736:12;17729:19;;17388:366;;;:::o;17760:419::-;17926:4;17964:2;17953:9;17949:18;17941:26;;18013:9;18007:4;18003:20;17999:1;17988:9;17984:17;17977:47;18041:131;18167:4;18041:131;:::i;:::-;18033:139;;17760:419;;;:::o;18185:176::-;18325:28;18321:1;18313:6;18309:14;18302:52;18185:176;:::o;18367:366::-;18509:3;18530:67;18594:2;18589:3;18530:67;:::i;:::-;18523:74;;18606:93;18695:3;18606:93;:::i;:::-;18724:2;18719:3;18715:12;18708:19;;18367:366;;;:::o;18739:419::-;18905:4;18943:2;18932:9;18928:18;18920:26;;18992:9;18986:4;18982:20;18978:1;18967:9;18963:17;18956:47;19020:131;19146:4;19020:131;:::i;:::-;19012:139;;18739:419;;;:::o;19164:224::-;19304:34;19300:1;19292:6;19288:14;19281:58;19373:7;19368:2;19360:6;19356:15;19349:32;19164:224;:::o;19394:366::-;19536:3;19557:67;19621:2;19616:3;19557:67;:::i;:::-;19550:74;;19633:93;19722:3;19633:93;:::i;:::-;19751:2;19746:3;19742:12;19735:19;;19394:366;;;:::o;19766:419::-;19932:4;19970:2;19959:9;19955:18;19947:26;;20019:9;20013:4;20009:20;20005:1;19994:9;19990:17;19983:47;20047:131;20173:4;20047:131;:::i;:::-;20039:139;;19766:419;;;:::o;20191:176::-;20331:28;20327:1;20319:6;20315:14;20308:52;20191:176;:::o;20373:366::-;20515:3;20536:67;20600:2;20595:3;20536:67;:::i;:::-;20529:74;;20612:93;20701:3;20612:93;:::i;:::-;20730:2;20725:3;20721:12;20714:19;;20373:366;;;:::o;20745:419::-;20911:4;20949:2;20938:9;20934:18;20926:26;;20998:9;20992:4;20988:20;20984:1;20973:9;20969:17;20962:47;21026:131;21152:4;21026:131;:::i;:::-;21018:139;;20745:419;;;:::o;21170:164::-;21310:16;21306:1;21298:6;21294:14;21287:40;21170:164;:::o;21340:366::-;21482:3;21503:67;21567:2;21562:3;21503:67;:::i;:::-;21496:74;;21579:93;21668:3;21579:93;:::i;:::-;21697:2;21692:3;21688:12;21681:19;;21340:366;;;:::o;21712:419::-;21878:4;21916:2;21905:9;21901:18;21893:26;;21965:9;21959:4;21955:20;21951:1;21940:9;21936:17;21929:47;21993:131;22119:4;21993:131;:::i;:::-;21985:139;;21712:419;;;:::o;22137:222::-;22277:34;22273:1;22265:6;22261:14;22254:58;22346:5;22341:2;22333:6;22329:15;22322:30;22137:222;:::o;22365:366::-;22507:3;22528:67;22592:2;22587:3;22528:67;:::i;:::-;22521:74;;22604:93;22693:3;22604:93;:::i;:::-;22722:2;22717:3;22713:12;22706:19;;22365:366;;;:::o;22737:419::-;22903:4;22941:2;22930:9;22926:18;22918:26;;22990:9;22984:4;22980:20;22976:1;22965:9;22961:17;22954:47;23018:131;23144:4;23018:131;:::i;:::-;23010:139;;22737:419;;;:::o;23162:220::-;23302:34;23298:1;23290:6;23286:14;23279:58;23371:3;23366:2;23358:6;23354:15;23347:28;23162:220;:::o;23388:366::-;23530:3;23551:67;23615:2;23610:3;23551:67;:::i;:::-;23544:74;;23627:93;23716:3;23627:93;:::i;:::-;23745:2;23740:3;23736:12;23729:19;;23388:366;;;:::o;23760:419::-;23926:4;23964:2;23953:9;23949:18;23941:26;;24013:9;24007:4;24003:20;23999:1;23988:9;23984:17;23977:47;24041:131;24167:4;24041:131;:::i;:::-;24033:139;;23760:419;;;:::o;24185:174::-;24325:26;24321:1;24313:6;24309:14;24302:50;24185:174;:::o;24365:366::-;24507:3;24528:67;24592:2;24587:3;24528:67;:::i;:::-;24521:74;;24604:93;24693:3;24604:93;:::i;:::-;24722:2;24717:3;24713:12;24706:19;;24365:366;;;:::o;24737:419::-;24903:4;24941:2;24930:9;24926:18;24918:26;;24990:9;24984:4;24980:20;24976:1;24965:9;24961:17;24954:47;25018:131;25144:4;25018:131;:::i;:::-;25010:139;;24737:419;;;:::o;25162:181::-;25302:33;25298:1;25290:6;25286:14;25279:57;25162:181;:::o;25349:366::-;25491:3;25512:67;25576:2;25571:3;25512:67;:::i;:::-;25505:74;;25588:93;25677:3;25588:93;:::i;:::-;25706:2;25701:3;25697:12;25690:19;;25349:366;;;:::o;25721:419::-;25887:4;25925:2;25914:9;25910:18;25902:26;;25974:9;25968:4;25964:20;25960:1;25949:9;25945:17;25938:47;26002:131;26128:4;26002:131;:::i;:::-;25994:139;;25721:419;;;:::o;26146:225::-;26286:34;26282:1;26274:6;26270:14;26263:58;26355:8;26350:2;26342:6;26338:15;26331:33;26146:225;:::o;26377:366::-;26519:3;26540:67;26604:2;26599:3;26540:67;:::i;:::-;26533:74;;26616:93;26705:3;26616:93;:::i;:::-;26734:2;26729:3;26725:12;26718:19;;26377:366;;;:::o;26749:419::-;26915:4;26953:2;26942:9;26938:18;26930:26;;27002:9;26996:4;26992:20;26988:1;26977:9;26973:17;26966:47;27030:131;27156:4;27030:131;:::i;:::-;27022:139;;26749:419;;;:::o;27174:223::-;27314:34;27310:1;27302:6;27298:14;27291:58;27383:6;27378:2;27370:6;27366:15;27359:31;27174:223;:::o;27403:366::-;27545:3;27566:67;27630:2;27625:3;27566:67;:::i;:::-;27559:74;;27642:93;27731:3;27642:93;:::i;:::-;27760:2;27755:3;27751:12;27744:19;;27403:366;;;:::o;27775:419::-;27941:4;27979:2;27968:9;27964:18;27956:26;;28028:9;28022:4;28018:20;28014:1;28003:9;27999:17;27992:47;28056:131;28182:4;28056:131;:::i;:::-;28048:139;;27775:419;;;:::o;28200:221::-;28340:34;28336:1;28328:6;28324:14;28317:58;28409:4;28404:2;28396:6;28392:15;28385:29;28200:221;:::o;28427:366::-;28569:3;28590:67;28654:2;28649:3;28590:67;:::i;:::-;28583:74;;28666:93;28755:3;28666:93;:::i;:::-;28784:2;28779:3;28775:12;28768:19;;28427:366;;;:::o;28799:419::-;28965:4;29003:2;28992:9;28988:18;28980:26;;29052:9;29046:4;29042:20;29038:1;29027:9;29023:17;29016:47;29080:131;29206:4;29080:131;:::i;:::-;29072:139;;28799:419;;;:::o;29224:223::-;29364:34;29360:1;29352:6;29348:14;29341:58;29433:6;29428:2;29420:6;29416:15;29409:31;29224:223;:::o;29453:366::-;29595:3;29616:67;29680:2;29675:3;29616:67;:::i;:::-;29609:74;;29692:93;29781:3;29692:93;:::i;:::-;29810:2;29805:3;29801:12;29794:19;;29453:366;;;:::o;29825:419::-;29991:4;30029:2;30018:9;30014:18;30006:26;;30078:9;30072:4;30068:20;30064:1;30053:9;30049:17;30042:47;30106:131;30232:4;30106:131;:::i;:::-;30098:139;;29825:419;;;:::o;30250:221::-;30390:34;30386:1;30378:6;30374:14;30367:58;30459:4;30454:2;30446:6;30442:15;30435:29;30250:221;:::o;30477:366::-;30619:3;30640:67;30704:2;30699:3;30640:67;:::i;:::-;30633:74;;30716:93;30805:3;30716:93;:::i;:::-;30834:2;30829:3;30825:12;30818:19;;30477:366;;;:::o;30849:419::-;31015:4;31053:2;31042:9;31038:18;31030:26;;31102:9;31096:4;31092:20;31088:1;31077:9;31073:17;31066:47;31130:131;31256:4;31130:131;:::i;:::-;31122:139;;30849:419;;;:::o;31274:168::-;31414:20;31410:1;31402:6;31398:14;31391:44;31274:168;:::o;31448:366::-;31590:3;31611:67;31675:2;31670:3;31611:67;:::i;:::-;31604:74;;31687:93;31776:3;31687:93;:::i;:::-;31805:2;31800:3;31796:12;31789:19;;31448:366;;;:::o;31820:419::-;31986:4;32024:2;32013:9;32009:18;32001:26;;32073:9;32067:4;32063:20;32059:1;32048:9;32044:17;32037:47;32101:131;32227:4;32101:131;:::i;:::-;32093:139;;31820:419;;;:::o;32245:170::-;32385:22;32381:1;32373:6;32369:14;32362:46;32245:170;:::o;32421:366::-;32563:3;32584:67;32648:2;32643:3;32584:67;:::i;:::-;32577:74;;32660:93;32749:3;32660:93;:::i;:::-;32778:2;32773:3;32769:12;32762:19;;32421:366;;;:::o;32793:419::-;32959:4;32997:2;32986:9;32982:18;32974:26;;33046:9;33040:4;33036:20;33032:1;33021:9;33017:17;33010:47;33074:131;33200:4;33074:131;:::i;:::-;33066:139;;32793:419;;;:::o;33218:167::-;33358:19;33354:1;33346:6;33342:14;33335:43;33218:167;:::o;33391:366::-;33533:3;33554:67;33618:2;33613:3;33554:67;:::i;:::-;33547:74;;33630:93;33719:3;33630:93;:::i;:::-;33748:2;33743:3;33739:12;33732:19;;33391:366;;;:::o;33763:419::-;33929:4;33967:2;33956:9;33952:18;33944:26;;34016:9;34010:4;34006:20;34002:1;33991:9;33987:17;33980:47;34044:131;34170:4;34044:131;:::i;:::-;34036:139;;33763:419;;;:::o;34188:220::-;34328:34;34324:1;34316:6;34312:14;34305:58;34397:3;34392:2;34384:6;34380:15;34373:28;34188:220;:::o;34414:366::-;34556:3;34577:67;34641:2;34636:3;34577:67;:::i;:::-;34570:74;;34653:93;34742:3;34653:93;:::i;:::-;34771:2;34766:3;34762:12;34755:19;;34414:366;;;:::o;34786:419::-;34952:4;34990:2;34979:9;34975:18;34967:26;;35039:9;35033:4;35029:20;35025:1;35014:9;35010:17;35003:47;35067:131;35193:4;35067:131;:::i;:::-;35059:139;;34786:419;;;:::o;35211:222::-;35351:34;35347:1;35339:6;35335:14;35328:58;35420:5;35415:2;35407:6;35403:15;35396:30;35211:222;:::o;35439:366::-;35581:3;35602:67;35666:2;35661:3;35602:67;:::i;:::-;35595:74;;35678:93;35767:3;35678:93;:::i;:::-;35796:2;35791:3;35787:12;35780:19;;35439:366;;;:::o;35811:419::-;35977:4;36015:2;36004:9;36000:18;35992:26;;36064:9;36058:4;36054:20;36050:1;36039:9;36035:17;36028:47;36092:131;36218:4;36092:131;:::i;:::-;36084:139;;35811:419;;;:::o;36236:221::-;36376:34;36372:1;36364:6;36360:14;36353:58;36445:4;36440:2;36432:6;36428:15;36421:29;36236:221;:::o;36463:366::-;36605:3;36626:67;36690:2;36685:3;36626:67;:::i;:::-;36619:74;;36702:93;36791:3;36702:93;:::i;:::-;36820:2;36815:3;36811:12;36804:19;;36463:366;;;:::o;36835:419::-;37001:4;37039:2;37028:9;37024:18;37016:26;;37088:9;37082:4;37078:20;37074:1;37063:9;37059:17;37052:47;37116:131;37242:4;37116:131;:::i;:::-;37108:139;;36835:419;;;:::o;37260:194::-;37300:4;37320:20;37338:1;37320:20;:::i;:::-;37315:25;;37354:20;37372:1;37354:20;:::i;:::-;37349:25;;37398:1;37395;37391:9;37383:17;;37422:1;37416:4;37413:11;37410:37;;;37427:18;;:::i;:::-;37410:37;37260:194;;;;:::o;37460:224::-;37600:34;37596:1;37588:6;37584:14;37577:58;37669:7;37664:2;37656:6;37652:15;37645:32;37460:224;:::o;37690:366::-;37832:3;37853:67;37917:2;37912:3;37853:67;:::i;:::-;37846:74;;37929:93;38018:3;37929:93;:::i;:::-;38047:2;38042:3;38038:12;38031:19;;37690:366;;;:::o;38062:419::-;38228:4;38266:2;38255:9;38251:18;38243:26;;38315:9;38309:4;38305:20;38301:1;38290:9;38286:17;38279:47;38343:131;38469:4;38343:131;:::i;:::-;38335:139;;38062:419;;;:::o;38487:222::-;38627:34;38623:1;38615:6;38611:14;38604:58;38696:5;38691:2;38683:6;38679:15;38672:30;38487:222;:::o;38715:366::-;38857:3;38878:67;38942:2;38937:3;38878:67;:::i;:::-;38871:74;;38954:93;39043:3;38954:93;:::i;:::-;39072:2;39067:3;39063:12;39056:19;;38715:366;;;:::o;39087:419::-;39253:4;39291:2;39280:9;39276:18;39268:26;;39340:9;39334:4;39330:20;39326:1;39315:9;39311:17;39304:47;39368:131;39494:4;39368:131;:::i;:::-;39360:139;;39087:419;;;:::o;39512:225::-;39652:34;39648:1;39640:6;39636:14;39629:58;39721:8;39716:2;39708:6;39704:15;39697:33;39512:225;:::o;39743:366::-;39885:3;39906:67;39970:2;39965:3;39906:67;:::i;:::-;39899:74;;39982:93;40071:3;39982:93;:::i;:::-;40100:2;40095:3;40091:12;40084:19;;39743:366;;;:::o;40115:419::-;40281:4;40319:2;40308:9;40304:18;40296:26;;40368:9;40362:4;40358:20;40354:1;40343:9;40339:17;40332:47;40396:131;40522:4;40396:131;:::i;:::-;40388:139;;40115:419;;;:::o;40540:442::-;40689:4;40727:2;40716:9;40712:18;40704:26;;40740:71;40808:1;40797:9;40793:17;40784:6;40740:71;:::i;:::-;40821:72;40889:2;40878:9;40874:18;40865:6;40821:72;:::i;:::-;40903;40971:2;40960:9;40956:18;40947:6;40903:72;:::i;:::-;40540:442;;;;;;:::o;40988:180::-;41036:77;41033:1;41026:88;41133:4;41130:1;41123:15;41157:4;41154:1;41147:15;41174:180;41222:77;41219:1;41212:88;41319:4;41316:1;41309:15;41343:4;41340:1;41333:15;41360:143;41417:5;41448:6;41442:13;41433:22;;41464:33;41491:5;41464:33;:::i;:::-;41360:143;;;;:::o;41509:351::-;41579:6;41628:2;41616:9;41607:7;41603:23;41599:32;41596:119;;;41634:79;;:::i;:::-;41596:119;41754:1;41779:64;41835:7;41826:6;41815:9;41811:22;41779:64;:::i;:::-;41769:74;;41725:128;41509:351;;;;:::o;41866:85::-;41911:7;41940:5;41929:16;;41866:85;;;:::o;41957:158::-;42015:9;42048:61;42066:42;42075:32;42101:5;42075:32;:::i;:::-;42066:42;:::i;:::-;42048:61;:::i;:::-;42035:74;;41957:158;;;:::o;42121:147::-;42216:45;42255:5;42216:45;:::i;:::-;42211:3;42204:58;42121:147;;:::o;42274:114::-;42341:6;42375:5;42369:12;42359:22;;42274:114;;;:::o;42394:184::-;42493:11;42527:6;42522:3;42515:19;42567:4;42562:3;42558:14;42543:29;;42394:184;;;;:::o;42584:132::-;42651:4;42674:3;42666:11;;42704:4;42699:3;42695:14;42687:22;;42584:132;;;:::o;42722:108::-;42799:24;42817:5;42799:24;:::i;:::-;42794:3;42787:37;42722:108;;:::o;42836:179::-;42905:10;42926:46;42968:3;42960:6;42926:46;:::i;:::-;43004:4;42999:3;42995:14;42981:28;;42836:179;;;;:::o;43021:113::-;43091:4;43123;43118:3;43114:14;43106:22;;43021:113;;;:::o;43170:732::-;43289:3;43318:54;43366:5;43318:54;:::i;:::-;43388:86;43467:6;43462:3;43388:86;:::i;:::-;43381:93;;43498:56;43548:5;43498:56;:::i;:::-;43577:7;43608:1;43593:284;43618:6;43615:1;43612:13;43593:284;;;43694:6;43688:13;43721:63;43780:3;43765:13;43721:63;:::i;:::-;43714:70;;43807:60;43860:6;43807:60;:::i;:::-;43797:70;;43653:224;43640:1;43637;43633:9;43628:14;;43593:284;;;43597:14;43893:3;43886:10;;43294:608;;;43170:732;;;;:::o;43908:831::-;44171:4;44209:3;44198:9;44194:19;44186:27;;44223:71;44291:1;44280:9;44276:17;44267:6;44223:71;:::i;:::-;44304:80;44380:2;44369:9;44365:18;44356:6;44304:80;:::i;:::-;44431:9;44425:4;44421:20;44416:2;44405:9;44401:18;44394:48;44459:108;44562:4;44553:6;44459:108;:::i;:::-;44451:116;;44577:72;44645:2;44634:9;44630:18;44621:6;44577:72;:::i;:::-;44659:73;44727:3;44716:9;44712:19;44703:6;44659:73;:::i;:::-;43908:831;;;;;;;;:::o;44745:807::-;44994:4;45032:3;45021:9;45017:19;45009:27;;45046:71;45114:1;45103:9;45099:17;45090:6;45046:71;:::i;:::-;45127:72;45195:2;45184:9;45180:18;45171:6;45127:72;:::i;:::-;45209:80;45285:2;45274:9;45270:18;45261:6;45209:80;:::i;:::-;45299;45375:2;45364:9;45360:18;45351:6;45299:80;:::i;:::-;45389:73;45457:3;45446:9;45442:19;45433:6;45389:73;:::i;:::-;45472;45540:3;45529:9;45525:19;45516:6;45472:73;:::i;:::-;44745:807;;;;;;;;;:::o;45558:663::-;45646:6;45654;45662;45711:2;45699:9;45690:7;45686:23;45682:32;45679:119;;;45717:79;;:::i;:::-;45679:119;45837:1;45862:64;45918:7;45909:6;45898:9;45894:22;45862:64;:::i;:::-;45852:74;;45808:128;45975:2;46001:64;46057:7;46048:6;46037:9;46033:22;46001:64;:::i;:::-;45991:74;;45946:129;46114:2;46140:64;46196:7;46187:6;46176:9;46172:22;46140:64;:::i;:::-;46130:74;;46085:129;45558:663;;;;;:::o

Swarm Source

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