ETH Price: $3,358.75 (-1.74%)
Gas: 10 Gwei

Token

Knife Money (KNIFE)
 

Overview

Max Total Supply

1,000,000,000,000,000,000,000,000,000 KNIFE

Holders

197

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
618,651,371,830,289,784,098,632 KNIFE

Value
$0.00
0xe551d6eb69de620370b5f63c8da0f4e31a1c2e99
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KnifeMoney

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-07
*/

// Web: https://knife.money
// Telegram: https://t.me/knife_money
// Gitbook: https://knife-money.gitbook.io/knife-money-mixer/

// Uncover the historical charm of ancient Chinese "Knife Money 刀幣" 
// in a radical new form with Knife Money ($KNIFE). https://t.me/knife_money

// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

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

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

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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 {}
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

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

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

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

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

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

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 35; // 35 = .35%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could 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 marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Knife Money", "KNIFE") {
        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);

        uint256 _buyMarketingFee = 17;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 17;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 20_000_000 * 1e18;
        maxWallet = 20_000_000 * 1e18;
        swapTokensAtAmount = 5_000_000 * 1e18;

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0x9D678F1fA3114ab73478ED55578b6202BD90f7f9); 
        devWallet = address(0x9D678F1fA3114ab73478ED55578b6202BD90f7f9); 

        // 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.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = 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 amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

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

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 4, "Security.");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 4, "Security.");
    }

    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,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

    event BoughtEarly(address indexed sniper);

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

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

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

        // 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;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

    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, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        );
    }

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

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

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

        // Halve the amount of liquidity tokens
        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 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

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

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

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","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":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","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":"buyDevFee","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":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","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":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","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":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526023600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600b81526020017f4b6e696665204d6f6e65790000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4b4e49464500000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000afb565b5080600490805190602001906200014792919062000afb565b5050506200016a6200015e620005bb60201b60201c565b620005c360201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200068960201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c15565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c15565b6040518363ffffffff1660e01b8152600401620002e992919062000c58565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c15565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a05160016200068960201b60201c565b6200038c60a05160016200077360201b60201c565b60006011905060008060006011905060008060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006008819055506a108b2a2c28029094000000600a819055506a0422ca8b0a00a4250000006009819055508660158190555085601681905550846017819055506017546016546015546200040f919062000cbe565b6200041b919062000cbe565b6014819055508360198190555082601a8190555081601b81905550601b54601a546019546200044b919062000cbe565b62000457919062000cbe565b601881905550739d678f1fa3114ab73478ed55578b6202bd90f7f9600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550739d678f1fa3114ab73478ed55578b6202bd90f7f9600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005296200051b6200081460201b60201c565b60016200083e60201b60201c565b6200053c3060016200083e60201b60201c565b6200055161dead60016200083e60201b60201c565b62000573620005656200081460201b60201c565b60016200068960201b60201c565b620005863060016200068960201b60201c565b6200059b61dead60016200068960201b60201c565b620005ad33826200097860201b60201c565b505050505050505062000edd565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000699620005bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006bf6200081460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000718576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200070f9062000d7c565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200084e620005bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008746200081460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008c49062000d7c565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200096c919062000dbb565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009e29062000e28565b60405180910390fd5b620009ff6000838362000af160201b60201c565b806002600082825462000a13919062000cbe565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a6a919062000cbe565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ad1919062000e5b565b60405180910390a362000aed6000838362000af660201b60201c565b5050565b505050565b505050565b82805462000b099062000ea7565b90600052602060002090601f01602090048101928262000b2d576000855562000b79565b82601f1062000b4857805160ff191683800117855562000b79565b8280016001018555821562000b79579182015b8281111562000b7857825182559160200191906001019062000b5b565b5b50905062000b88919062000b8c565b5090565b5b8082111562000ba757600081600090555060010162000b8d565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bdd8262000bb0565b9050919050565b62000bef8162000bd0565b811462000bfb57600080fd5b50565b60008151905062000c0f8162000be4565b92915050565b60006020828403121562000c2e5762000c2d62000bab565b5b600062000c3e8482850162000bfe565b91505092915050565b62000c528162000bd0565b82525050565b600060408201905062000c6f600083018562000c47565b62000c7e602083018462000c47565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ccb8262000c85565b915062000cd88362000c85565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d105762000d0f62000c8f565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000d6460208362000d1b565b915062000d718262000d2c565b602082019050919050565b6000602082019050818103600083015262000d978162000d55565b9050919050565b60008115159050919050565b62000db58162000d9e565b82525050565b600060208201905062000dd2600083018462000daa565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e10601f8362000d1b565b915062000e1d8262000dd8565b602082019050919050565b6000602082019050818103600083015262000e438162000e01565b9050919050565b62000e558162000c85565b82525050565b600060208201905062000e72600083018462000e4a565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ec057607f821691505b6020821081141562000ed75762000ed662000e78565b5b50919050565b60805160a051615bcc62000f65600039600081816113ed01528181611bfd01528181612747015281816127fe0152818161282b01528181612e6f01528181613f730152818161402c0152614059015260008181610f9001528181612e17015281816141cf015281816142b0015281816142d701528181614373015261439a0152615bcc6000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906144e2565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061459d565b610f51565b60405161041c91906145f8565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614613565b610f6f565b60405161045991906145f8565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b604051610484919061469f565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906146c9565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614613565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906146c9565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906146c9565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906146c9565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b60405161058491906146c9565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906146e4565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190614711565b61121f565b6040516105ea91906145f8565b60405180910390f35b3480156105ff57600080fd5b50610608611317565b6040516106159190614773565b60405180910390f35b34801561062a57600080fd5b5061063361131d565b60405161064091906146c9565b60405180910390f35b34801561065557600080fd5b5061065e611323565b60405161066b91906145f8565b60405180910390f35b34801561068057600080fd5b50610689611336565b60405161069691906147aa565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061459d565b61133f565b6040516106d391906145f8565b60405180910390f35b3480156106e857600080fd5b506106f16113eb565b6040516106fe9190614773565b60405180910390f35b34801561071357600080fd5b5061071c61140f565b60405161072991906145f8565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190614613565b611422565b60405161076691906145f8565b60405180910390f35b34801561077b57600080fd5b50610784611478565b60405161079191906146c9565b60405180910390f35b3480156107a657600080fd5b506107af61147e565b6040516107bc91906145f8565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190614613565b611491565b6040516107f991906146c9565b60405180910390f35b34801561080e57600080fd5b506108176114d9565b005b34801561082557600080fd5b50610840600480360381019061083b91906147f1565b611561565b005b34801561084e57600080fd5b506108576116a1565b60405161086491906145f8565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614844565b611741565b005b3480156108a257600080fd5b506108ab611818565b6040516108b89190614773565b60405180910390f35b3480156108cd57600080fd5b506108d661183e565b6040516108e391906146c9565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614884565b611844565b005b34801561092157600080fd5b5061092a611943565b005b34801561093857600080fd5b506109416119fe565b60405161094e9190614773565b60405180910390f35b34801561096357600080fd5b5061096c611a28565b6040516109799190614773565b60405180910390f35b34801561098e57600080fd5b50610997611a4e565b6040516109a491906146c9565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906148d7565b611a54565b005b3480156109e257600080fd5b506109eb611aed565b6040516109f891906144e2565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614844565b611b7f565b005b348015610a3657600080fd5b50610a3f611c98565b604051610a4c91906146c9565b60405180910390f35b348015610a6157600080fd5b50610a6a611c9e565b604051610a7791906146c9565b60405180910390f35b348015610a8c57600080fd5b50610a95611ca4565b604051610aa291906146c9565b60405180910390f35b348015610ab757600080fd5b50610ac0611caa565b604051610acd91906146c9565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af8919061459d565b611cb0565b604051610b0a91906145f8565b60405180910390f35b348015610b1f57600080fd5b50610b28611d9b565b604051610b3591906146c9565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b60919061459d565b611da1565b604051610b7291906145f8565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190614613565b611dbf565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614613565b611efb565b604051610bd891906145f8565b60405180910390f35b348015610bed57600080fd5b50610bf6611f1b565b604051610c0391906145f8565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614844565b611f2e565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614884565b612053565b005b348015610c6a57600080fd5b50610c856004803603810190610c8091906146e4565b612152565b005b348015610c9357600080fd5b50610c9c612261565b604051610ca991906145f8565b60405180910390f35b348015610cbe57600080fd5b50610cc7612274565b604051610cd491906146c9565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff91906146e4565b61227a565b604051610d1191906145f8565b60405180910390f35b348015610d2657600080fd5b50610d2f6123cf565b604051610d3c91906146c9565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614904565b6123d5565b604051610d7991906146c9565b60405180910390f35b348015610d8e57600080fd5b50610d9761245c565b604051610da491906146c9565b60405180910390f35b348015610db957600080fd5b50610dc2612462565b604051610dcf91906145f8565b60405180910390f35b348015610de457600080fd5b50610ded612502565b604051610dfa91906146c9565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190614613565b612508565b005b348015610e3857600080fd5b50610e41612600565b604051610e4e91906146c9565b60405180910390f35b348015610e6357600080fd5b50610e6c612606565b604051610e7991906146c9565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906146e4565b61260c565b604051610eb691906145f8565b60405180910390f35b606060038054610ece90614973565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614973565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6128e4565b84846128ec565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc46128e4565b73ffffffffffffffffffffffffffffffffffffffff16610fe26119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906149f1565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111186128e4565b73ffffffffffffffffffffffffffffffffffffffff166111366119fe565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611183906149f1565b60405180910390fd5b670de0b6b3a76400006103e860016111a2610fb2565b6111ac9190614a40565b6111b69190614ac9565b6111c09190614ac9565b811015611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990614b6c565b60405180910390fd5b670de0b6b3a7640000816112169190614a40565b60088190555050565b600061122c848484612ab7565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112776128e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90614bfe565b60405180910390fd5b61130b856113036128e4565b8584036128ec565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113e161134c6128e4565b84846001600061135a6128e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113dc9190614c1e565b6128ec565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e16128e4565b73ffffffffffffffffffffffffffffffffffffffff166114ff6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c906149f1565b60405180910390fd5b61155f600061384f565b565b6115696128e4565b73ffffffffffffffffffffffffffffffffffffffff166115876119fe565b73ffffffffffffffffffffffffffffffffffffffff16146115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d4906149f1565b60405180910390fd5b610258831015611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990614ce6565b60405180910390fd5b6103e88211158015611635575060008210155b611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90614d78565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116ab6128e4565b73ffffffffffffffffffffffffffffffffffffffff166116c96119fe565b73ffffffffffffffffffffffffffffffffffffffff161461171f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611716906149f1565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117496128e4565b73ffffffffffffffffffffffffffffffffffffffff166117676119fe565b73ffffffffffffffffffffffffffffffffffffffff16146117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b4906149f1565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61184c6128e4565b73ffffffffffffffffffffffffffffffffffffffff1661186a6119fe565b73ffffffffffffffffffffffffffffffffffffffff16146118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b7906149f1565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118e89190614c1e565b6118f29190614c1e565b6014819055506004601454111561193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590614de4565b60405180910390fd5b505050565b61194b6128e4565b73ffffffffffffffffffffffffffffffffffffffff166119696119fe565b73ffffffffffffffffffffffffffffffffffffffff16146119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b6906149f1565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a5c6128e4565b73ffffffffffffffffffffffffffffffffffffffff16611a7a6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac7906149f1565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611afc90614973565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2890614973565b8015611b755780601f10611b4a57610100808354040283529160200191611b75565b820191906000526020600020905b815481529060010190602001808311611b5857829003601f168201915b5050505050905090565b611b876128e4565b73ffffffffffffffffffffffffffffffffffffffff16611ba56119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf2906149f1565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8190614e76565b60405180910390fd5b611c948282613915565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611cbf6128e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7390614f08565b60405180910390fd5b611d90611d876128e4565b858584036128ec565b600191505092915050565b600e5481565b6000611db5611dae6128e4565b8484612ab7565b6001905092915050565b611dc76128e4565b73ffffffffffffffffffffffffffffffffffffffff16611de56119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e32906149f1565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f366128e4565b73ffffffffffffffffffffffffffffffffffffffff16611f546119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa1906149f1565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161204791906145f8565b60405180910390a25050565b61205b6128e4565b73ffffffffffffffffffffffffffffffffffffffff166120796119fe565b73ffffffffffffffffffffffffffffffffffffffff16146120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c6906149f1565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120f79190614c1e565b6121019190614c1e565b6018819055506004601854111561214d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214490614de4565b60405180910390fd5b505050565b61215a6128e4565b73ffffffffffffffffffffffffffffffffffffffff166121786119fe565b73ffffffffffffffffffffffffffffffffffffffff16146121ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c5906149f1565b60405180910390fd5b670de0b6b3a76400006103e860056121e4610fb2565b6121ee9190614a40565b6121f89190614ac9565b6122029190614ac9565b811015612244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223b90614f9a565b60405180910390fd5b670de0b6b3a7640000816122589190614a40565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006122846128e4565b73ffffffffffffffffffffffffffffffffffffffff166122a26119fe565b73ffffffffffffffffffffffffffffffffffffffff16146122f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ef906149f1565b60405180910390fd5b620186a06001612306610fb2565b6123109190614a40565b61231a9190614ac9565b82101561235c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123539061502c565b60405180910390fd5b6103e86005612369610fb2565b6123739190614a40565b61237d9190614ac9565b8211156123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b6906150be565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061246c6128e4565b73ffffffffffffffffffffffffffffffffffffffff1661248a6119fe565b73ffffffffffffffffffffffffffffffffffffffff16146124e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d7906149f1565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6125106128e4565b73ffffffffffffffffffffffffffffffffffffffff1661252e6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614612584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257b906149f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125eb90615150565b60405180910390fd5b6125fd8161384f565b50565b601a5481565b600a5481565b60006126166128e4565b73ffffffffffffffffffffffffffffffffffffffff166126346119fe565b73ffffffffffffffffffffffffffffffffffffffff161461268a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612681906149f1565b60405180910390fd5b600f5460105461269a9190614c1e565b42116126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d2906151bc565b60405180910390fd5b6103e8821115612720576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127179061524e565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016127829190614773565b602060405180830381865afa15801561279f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c39190615283565b905060006127ee6127106127e086856139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000811115612827576128267f000000000000000000000000000000000000000000000000000000000000000061dead836139e2565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561289457600080fd5b505af11580156128a8573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561295c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295390615322565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c3906153b4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612aaa91906146c9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1e90615446565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8e906154d8565b60405180910390fd5b6000811415612bb157612bac838360006139e2565b61384a565b601160009054906101000a900460ff161561327457612bce6119fe565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c3c5750612c0c6119fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c755750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612caf575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cc85750600560149054906101000a900460ff16155b1561327357601160019054906101000a900460ff16612dc257601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d825750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db890615544565b60405180910390fd5b5b601360009054906101000a900460ff1615612f8a57612ddf6119fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e6657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ebe57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f895743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3b906155fc565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561302d5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130d457600854811115613077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306e9061568e565b60405180910390fd5b600a5461308383611491565b8261308e9190614c1e565b11156130cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c6906156fa565b60405180910390fd5b613272565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131775750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131c6576008548111156131c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b89061578c565b60405180910390fd5b613271565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661327057600a5461322383611491565b8261322e9190614c1e565b111561326f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613266906156fa565b60405180910390fd5b5b5b5b5b5b600061327f30611491565b9050600060095482101590508080156132a45750601160029054906101000a900460ff165b80156132bd5750600560149054906101000a900460ff16155b80156133135750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133695750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133bf5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613403576001600560146101000a81548160ff0219169083151502179055506133e7613c63565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156134695750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156134815750600c60009054906101000a900460ff165b801561349c5750600d54600e546134989190614c1e565b4210155b80156134f25750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613501576134ff613f4a565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135b75750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135c157600090505b6000811561383a57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561362457506000601854115b156136f1576136516064613643601854886139b690919063ffffffff16565b6139cc90919063ffffffff16565b9050601854601a54826136649190614a40565b61366e9190614ac9565b601d600082825461367f9190614c1e565b92505081905550601854601b54826136979190614a40565b6136a19190614ac9565b601e60008282546136b29190614c1e565b92505081905550601854601954826136ca9190614a40565b6136d49190614ac9565b601c60008282546136e59190614c1e565b92505081905550613816565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561374c57506000601454115b1561381557613779606461376b601454886139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506014546016548261378c9190614a40565b6137969190614ac9565b601d60008282546137a79190614c1e565b92505081905550601454601754826137bf9190614a40565b6137c99190614ac9565b601e60008282546137da9190614c1e565b92505081905550601454601554826137f29190614a40565b6137fc9190614ac9565b601c600082825461380d9190614c1e565b925050819055505b5b600081111561382b5761382a8730836139e2565b5b808561383791906157ac565b94505b6138458787876139e2565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836139c49190614a40565b905092915050565b600081836139da9190614ac9565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4990615446565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab9906154d8565b60405180910390fd5b613acd838383614110565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4a90615852565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613be69190614c1e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c4a91906146c9565b60405180910390a3613c5d848484614115565b50505050565b6000613c6e30611491565b90506000601e54601c54601d54613c859190614c1e565b613c8f9190614c1e565b9050600080831480613ca15750600082145b15613cae57505050613f48565b6014600954613cbd9190614a40565b831115613cd6576014600954613cd39190614a40565b92505b6000600283601d5486613ce99190614a40565b613cf39190614ac9565b613cfd9190614ac9565b90506000613d14828661411a90919063ffffffff16565b90506000479050613d2482614130565b6000613d39824761411a90919063ffffffff16565b90506000613d6487613d56601c54856139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000613d8f88613d81601e54866139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000818385613da091906157ac565b613daa91906157ac565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e0a906158a3565b60006040518083038185875af1925050503d8060008114613e47576040519150601f19603f3d011682016040523d82523d6000602084013e613e4c565b606091505b505080985050600087118015613e625750600081115b15613eaf57613e71878261436d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613ea6939291906158b8565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613ef5906158a3565b60006040518083038185875af1925050503d8060008114613f32576040519150601f19603f3d011682016040523d82523d6000602084013e613f37565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613fae9190614773565b602060405180830381865afa158015613fcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fef9190615283565b9050600061401c61271061400e600b54856139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000811115614055576140547f000000000000000000000000000000000000000000000000000000000000000061dead836139e2565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156140c257600080fd5b505af11580156140d6573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361412891906157ac565b905092915050565b6000600267ffffffffffffffff81111561414d5761414c6158ef565b5b60405190808252806020026020018201604052801561417b5781602001602082028036833780820191505090505b50905030816000815181106141935761419261591e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614238573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061425c9190615962565b816001815181106142705761426f61591e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506142d5307f0000000000000000000000000000000000000000000000000000000000000000846128ec565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614337959493929190615a88565b600060405180830381600087803b15801561435157600080fd5b505af1158015614365573d6000803e3d6000fd5b505050505050565b614398307f0000000000000000000000000000000000000000000000000000000000000000846128ec565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016143ff96959493929190615ae2565b60606040518083038185885af115801561441d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144429190615b43565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614483578082015181840152602081019050614468565b83811115614492576000848401525b50505050565b6000601f19601f8301169050919050565b60006144b482614449565b6144be8185614454565b93506144ce818560208601614465565b6144d781614498565b840191505092915050565b600060208201905081810360008301526144fc81846144a9565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061453482614509565b9050919050565b61454481614529565b811461454f57600080fd5b50565b6000813590506145618161453b565b92915050565b6000819050919050565b61457a81614567565b811461458557600080fd5b50565b60008135905061459781614571565b92915050565b600080604083850312156145b4576145b3614504565b5b60006145c285828601614552565b92505060206145d385828601614588565b9150509250929050565b60008115159050919050565b6145f2816145dd565b82525050565b600060208201905061460d60008301846145e9565b92915050565b60006020828403121561462957614628614504565b5b600061463784828501614552565b91505092915050565b6000819050919050565b600061466561466061465b84614509565b614640565b614509565b9050919050565b60006146778261464a565b9050919050565b60006146898261466c565b9050919050565b6146998161467e565b82525050565b60006020820190506146b46000830184614690565b92915050565b6146c381614567565b82525050565b60006020820190506146de60008301846146ba565b92915050565b6000602082840312156146fa576146f9614504565b5b600061470884828501614588565b91505092915050565b60008060006060848603121561472a57614729614504565b5b600061473886828701614552565b935050602061474986828701614552565b925050604061475a86828701614588565b9150509250925092565b61476d81614529565b82525050565b60006020820190506147886000830184614764565b92915050565b600060ff82169050919050565b6147a48161478e565b82525050565b60006020820190506147bf600083018461479b565b92915050565b6147ce816145dd565b81146147d957600080fd5b50565b6000813590506147eb816147c5565b92915050565b60008060006060848603121561480a57614809614504565b5b600061481886828701614588565b935050602061482986828701614588565b925050604061483a868287016147dc565b9150509250925092565b6000806040838503121561485b5761485a614504565b5b600061486985828601614552565b925050602061487a858286016147dc565b9150509250929050565b60008060006060848603121561489d5761489c614504565b5b60006148ab86828701614588565b93505060206148bc86828701614588565b92505060406148cd86828701614588565b9150509250925092565b6000602082840312156148ed576148ec614504565b5b60006148fb848285016147dc565b91505092915050565b6000806040838503121561491b5761491a614504565b5b600061492985828601614552565b925050602061493a85828601614552565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061498b57607f821691505b6020821081141561499f5761499e614944565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149db602083614454565b91506149e6826149a5565b602082019050919050565b60006020820190508181036000830152614a0a816149ce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a4b82614567565b9150614a5683614567565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a8f57614a8e614a11565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ad482614567565b9150614adf83614567565b925082614aef57614aee614a9a565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614b56602f83614454565b9150614b6182614afa565b604082019050919050565b60006020820190508181036000830152614b8581614b49565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614be8602883614454565b9150614bf382614b8c565b604082019050919050565b60006020820190508181036000830152614c1781614bdb565b9050919050565b6000614c2982614567565b9150614c3483614567565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c6957614c68614a11565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614cd0603383614454565b9150614cdb82614c74565b604082019050919050565b60006020820190508181036000830152614cff81614cc3565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614d62603083614454565b9150614d6d82614d06565b604082019050919050565b60006020820190508181036000830152614d9181614d55565b9050919050565b7f53656375726974792e0000000000000000000000000000000000000000000000600082015250565b6000614dce600983614454565b9150614dd982614d98565b602082019050919050565b60006020820190508181036000830152614dfd81614dc1565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e60603983614454565b9150614e6b82614e04565b604082019050919050565b60006020820190508181036000830152614e8f81614e53565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614ef2602583614454565b9150614efd82614e96565b604082019050919050565b60006020820190508181036000830152614f2181614ee5565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614f84602483614454565b9150614f8f82614f28565b604082019050919050565b60006020820190508181036000830152614fb381614f77565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000615016603583614454565b915061502182614fba565b604082019050919050565b6000602082019050818103600083015261504581615009565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006150a8603483614454565b91506150b38261504c565b604082019050919050565b600060208201905081810360008301526150d78161509b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061513a602683614454565b9150615145826150de565b604082019050919050565b600060208201905081810360008301526151698161512d565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006151a6602083614454565b91506151b182615170565b602082019050919050565b600060208201905081810360008301526151d581615199565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615238602a83614454565b9150615243826151dc565b604082019050919050565b600060208201905081810360008301526152678161522b565b9050919050565b60008151905061527d81614571565b92915050565b60006020828403121561529957615298614504565b5b60006152a78482850161526e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061530c602483614454565b9150615317826152b0565b604082019050919050565b6000602082019050818103600083015261533b816152ff565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061539e602283614454565b91506153a982615342565b604082019050919050565b600060208201905081810360008301526153cd81615391565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615430602583614454565b915061543b826153d4565b604082019050919050565b6000602082019050818103600083015261545f81615423565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006154c2602383614454565b91506154cd82615466565b604082019050919050565b600060208201905081810360008301526154f1816154b5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061552e601683614454565b9150615539826154f8565b602082019050919050565b6000602082019050818103600083015261555d81615521565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006155e6604983614454565b91506155f182615564565b606082019050919050565b60006020820190508181036000830152615615816155d9565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615678603583614454565b91506156838261561c565b604082019050919050565b600060208201905081810360008301526156a78161566b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006156e4601383614454565b91506156ef826156ae565b602082019050919050565b60006020820190508181036000830152615713816156d7565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615776603683614454565b91506157818261571a565b604082019050919050565b600060208201905081810360008301526157a581615769565b9050919050565b60006157b782614567565b91506157c283614567565b9250828210156157d5576157d4614a11565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061583c602683614454565b9150615847826157e0565b604082019050919050565b6000602082019050818103600083015261586b8161582f565b9050919050565b600081905092915050565b50565b600061588d600083615872565b91506158988261587d565b600082019050919050565b60006158ae82615880565b9150819050919050565b60006060820190506158cd60008301866146ba565b6158da60208301856146ba565b6158e760408301846146ba565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061595c8161453b565b92915050565b60006020828403121561597857615977614504565b5b60006159868482850161594d565b91505092915050565b6000819050919050565b60006159b46159af6159aa8461598f565b614640565b614567565b9050919050565b6159c481615999565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6159ff81614529565b82525050565b6000615a1183836159f6565b60208301905092915050565b6000602082019050919050565b6000615a35826159ca565b615a3f81856159d5565b9350615a4a836159e6565b8060005b83811015615a7b578151615a628882615a05565b9750615a6d83615a1d565b925050600181019050615a4e565b5085935050505092915050565b600060a082019050615a9d60008301886146ba565b615aaa60208301876159bb565b8181036040830152615abc8186615a2a565b9050615acb6060830185614764565b615ad860808301846146ba565b9695505050505050565b600060c082019050615af76000830189614764565b615b0460208301886146ba565b615b1160408301876159bb565b615b1e60608301866159bb565b615b2b6080830185614764565b615b3860a08301846146ba565b979650505050505050565b600080600060608486031215615b5c57615b5b614504565b5b6000615b6a8682870161526e565b9350506020615b7b8682870161526e565b9250506040615b8c8682870161526e565b915050925092509256fea2646970667358221220bab867fb85914ee402f86d72c31d3cd461fab7779e9e28b8ac3b53e908cf395364736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906144e2565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061459d565b610f51565b60405161041c91906145f8565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614613565b610f6f565b60405161045991906145f8565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b604051610484919061469f565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906146c9565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614613565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906146c9565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906146c9565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906146c9565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b60405161058491906146c9565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906146e4565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190614711565b61121f565b6040516105ea91906145f8565b60405180910390f35b3480156105ff57600080fd5b50610608611317565b6040516106159190614773565b60405180910390f35b34801561062a57600080fd5b5061063361131d565b60405161064091906146c9565b60405180910390f35b34801561065557600080fd5b5061065e611323565b60405161066b91906145f8565b60405180910390f35b34801561068057600080fd5b50610689611336565b60405161069691906147aa565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061459d565b61133f565b6040516106d391906145f8565b60405180910390f35b3480156106e857600080fd5b506106f16113eb565b6040516106fe9190614773565b60405180910390f35b34801561071357600080fd5b5061071c61140f565b60405161072991906145f8565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190614613565b611422565b60405161076691906145f8565b60405180910390f35b34801561077b57600080fd5b50610784611478565b60405161079191906146c9565b60405180910390f35b3480156107a657600080fd5b506107af61147e565b6040516107bc91906145f8565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190614613565b611491565b6040516107f991906146c9565b60405180910390f35b34801561080e57600080fd5b506108176114d9565b005b34801561082557600080fd5b50610840600480360381019061083b91906147f1565b611561565b005b34801561084e57600080fd5b506108576116a1565b60405161086491906145f8565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614844565b611741565b005b3480156108a257600080fd5b506108ab611818565b6040516108b89190614773565b60405180910390f35b3480156108cd57600080fd5b506108d661183e565b6040516108e391906146c9565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614884565b611844565b005b34801561092157600080fd5b5061092a611943565b005b34801561093857600080fd5b506109416119fe565b60405161094e9190614773565b60405180910390f35b34801561096357600080fd5b5061096c611a28565b6040516109799190614773565b60405180910390f35b34801561098e57600080fd5b50610997611a4e565b6040516109a491906146c9565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906148d7565b611a54565b005b3480156109e257600080fd5b506109eb611aed565b6040516109f891906144e2565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614844565b611b7f565b005b348015610a3657600080fd5b50610a3f611c98565b604051610a4c91906146c9565b60405180910390f35b348015610a6157600080fd5b50610a6a611c9e565b604051610a7791906146c9565b60405180910390f35b348015610a8c57600080fd5b50610a95611ca4565b604051610aa291906146c9565b60405180910390f35b348015610ab757600080fd5b50610ac0611caa565b604051610acd91906146c9565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af8919061459d565b611cb0565b604051610b0a91906145f8565b60405180910390f35b348015610b1f57600080fd5b50610b28611d9b565b604051610b3591906146c9565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b60919061459d565b611da1565b604051610b7291906145f8565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190614613565b611dbf565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614613565b611efb565b604051610bd891906145f8565b60405180910390f35b348015610bed57600080fd5b50610bf6611f1b565b604051610c0391906145f8565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614844565b611f2e565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614884565b612053565b005b348015610c6a57600080fd5b50610c856004803603810190610c8091906146e4565b612152565b005b348015610c9357600080fd5b50610c9c612261565b604051610ca991906145f8565b60405180910390f35b348015610cbe57600080fd5b50610cc7612274565b604051610cd491906146c9565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff91906146e4565b61227a565b604051610d1191906145f8565b60405180910390f35b348015610d2657600080fd5b50610d2f6123cf565b604051610d3c91906146c9565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614904565b6123d5565b604051610d7991906146c9565b60405180910390f35b348015610d8e57600080fd5b50610d9761245c565b604051610da491906146c9565b60405180910390f35b348015610db957600080fd5b50610dc2612462565b604051610dcf91906145f8565b60405180910390f35b348015610de457600080fd5b50610ded612502565b604051610dfa91906146c9565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190614613565b612508565b005b348015610e3857600080fd5b50610e41612600565b604051610e4e91906146c9565b60405180910390f35b348015610e6357600080fd5b50610e6c612606565b604051610e7991906146c9565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906146e4565b61260c565b604051610eb691906145f8565b60405180910390f35b606060038054610ece90614973565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614973565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6128e4565b84846128ec565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc46128e4565b73ffffffffffffffffffffffffffffffffffffffff16610fe26119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906149f1565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111186128e4565b73ffffffffffffffffffffffffffffffffffffffff166111366119fe565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611183906149f1565b60405180910390fd5b670de0b6b3a76400006103e860016111a2610fb2565b6111ac9190614a40565b6111b69190614ac9565b6111c09190614ac9565b811015611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990614b6c565b60405180910390fd5b670de0b6b3a7640000816112169190614a40565b60088190555050565b600061122c848484612ab7565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112776128e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90614bfe565b60405180910390fd5b61130b856113036128e4565b8584036128ec565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113e161134c6128e4565b84846001600061135a6128e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113dc9190614c1e565b6128ec565b6001905092915050565b7f000000000000000000000000c09650bf246e3d50e13be466db23fe6ce7b8949781565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e16128e4565b73ffffffffffffffffffffffffffffffffffffffff166114ff6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c906149f1565b60405180910390fd5b61155f600061384f565b565b6115696128e4565b73ffffffffffffffffffffffffffffffffffffffff166115876119fe565b73ffffffffffffffffffffffffffffffffffffffff16146115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d4906149f1565b60405180910390fd5b610258831015611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990614ce6565b60405180910390fd5b6103e88211158015611635575060008210155b611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90614d78565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116ab6128e4565b73ffffffffffffffffffffffffffffffffffffffff166116c96119fe565b73ffffffffffffffffffffffffffffffffffffffff161461171f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611716906149f1565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117496128e4565b73ffffffffffffffffffffffffffffffffffffffff166117676119fe565b73ffffffffffffffffffffffffffffffffffffffff16146117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b4906149f1565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61184c6128e4565b73ffffffffffffffffffffffffffffffffffffffff1661186a6119fe565b73ffffffffffffffffffffffffffffffffffffffff16146118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b7906149f1565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118e89190614c1e565b6118f29190614c1e565b6014819055506004601454111561193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590614de4565b60405180910390fd5b505050565b61194b6128e4565b73ffffffffffffffffffffffffffffffffffffffff166119696119fe565b73ffffffffffffffffffffffffffffffffffffffff16146119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b6906149f1565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a5c6128e4565b73ffffffffffffffffffffffffffffffffffffffff16611a7a6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac7906149f1565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611afc90614973565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2890614973565b8015611b755780601f10611b4a57610100808354040283529160200191611b75565b820191906000526020600020905b815481529060010190602001808311611b5857829003601f168201915b5050505050905090565b611b876128e4565b73ffffffffffffffffffffffffffffffffffffffff16611ba56119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf2906149f1565b60405180910390fd5b7f000000000000000000000000c09650bf246e3d50e13be466db23fe6ce7b8949773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8190614e76565b60405180910390fd5b611c948282613915565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611cbf6128e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7390614f08565b60405180910390fd5b611d90611d876128e4565b858584036128ec565b600191505092915050565b600e5481565b6000611db5611dae6128e4565b8484612ab7565b6001905092915050565b611dc76128e4565b73ffffffffffffffffffffffffffffffffffffffff16611de56119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e32906149f1565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f366128e4565b73ffffffffffffffffffffffffffffffffffffffff16611f546119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa1906149f1565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161204791906145f8565b60405180910390a25050565b61205b6128e4565b73ffffffffffffffffffffffffffffffffffffffff166120796119fe565b73ffffffffffffffffffffffffffffffffffffffff16146120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c6906149f1565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120f79190614c1e565b6121019190614c1e565b6018819055506004601854111561214d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214490614de4565b60405180910390fd5b505050565b61215a6128e4565b73ffffffffffffffffffffffffffffffffffffffff166121786119fe565b73ffffffffffffffffffffffffffffffffffffffff16146121ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c5906149f1565b60405180910390fd5b670de0b6b3a76400006103e860056121e4610fb2565b6121ee9190614a40565b6121f89190614ac9565b6122029190614ac9565b811015612244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223b90614f9a565b60405180910390fd5b670de0b6b3a7640000816122589190614a40565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006122846128e4565b73ffffffffffffffffffffffffffffffffffffffff166122a26119fe565b73ffffffffffffffffffffffffffffffffffffffff16146122f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ef906149f1565b60405180910390fd5b620186a06001612306610fb2565b6123109190614a40565b61231a9190614ac9565b82101561235c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123539061502c565b60405180910390fd5b6103e86005612369610fb2565b6123739190614a40565b61237d9190614ac9565b8211156123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b6906150be565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061246c6128e4565b73ffffffffffffffffffffffffffffffffffffffff1661248a6119fe565b73ffffffffffffffffffffffffffffffffffffffff16146124e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d7906149f1565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6125106128e4565b73ffffffffffffffffffffffffffffffffffffffff1661252e6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614612584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257b906149f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125eb90615150565b60405180910390fd5b6125fd8161384f565b50565b601a5481565b600a5481565b60006126166128e4565b73ffffffffffffffffffffffffffffffffffffffff166126346119fe565b73ffffffffffffffffffffffffffffffffffffffff161461268a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612681906149f1565b60405180910390fd5b600f5460105461269a9190614c1e565b42116126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d2906151bc565b60405180910390fd5b6103e8821115612720576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127179061524e565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000c09650bf246e3d50e13be466db23fe6ce7b894976040518263ffffffff1660e01b81526004016127829190614773565b602060405180830381865afa15801561279f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c39190615283565b905060006127ee6127106127e086856139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000811115612827576128267f000000000000000000000000c09650bf246e3d50e13be466db23fe6ce7b8949761dead836139e2565b5b60007f000000000000000000000000c09650bf246e3d50e13be466db23fe6ce7b8949790508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561289457600080fd5b505af11580156128a8573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561295c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295390615322565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c3906153b4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612aaa91906146c9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1e90615446565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8e906154d8565b60405180910390fd5b6000811415612bb157612bac838360006139e2565b61384a565b601160009054906101000a900460ff161561327457612bce6119fe565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c3c5750612c0c6119fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c755750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612caf575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cc85750600560149054906101000a900460ff16155b1561327357601160019054906101000a900460ff16612dc257601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d825750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db890615544565b60405180910390fd5b5b601360009054906101000a900460ff1615612f8a57612ddf6119fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e6657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ebe57507f000000000000000000000000c09650bf246e3d50e13be466db23fe6ce7b8949773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f895743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3b906155fc565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561302d5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130d457600854811115613077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306e9061568e565b60405180910390fd5b600a5461308383611491565b8261308e9190614c1e565b11156130cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c6906156fa565b60405180910390fd5b613272565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131775750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131c6576008548111156131c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b89061578c565b60405180910390fd5b613271565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661327057600a5461322383611491565b8261322e9190614c1e565b111561326f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613266906156fa565b60405180910390fd5b5b5b5b5b5b600061327f30611491565b9050600060095482101590508080156132a45750601160029054906101000a900460ff165b80156132bd5750600560149054906101000a900460ff16155b80156133135750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133695750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133bf5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613403576001600560146101000a81548160ff0219169083151502179055506133e7613c63565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156134695750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156134815750600c60009054906101000a900460ff165b801561349c5750600d54600e546134989190614c1e565b4210155b80156134f25750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613501576134ff613f4a565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135b75750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135c157600090505b6000811561383a57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561362457506000601854115b156136f1576136516064613643601854886139b690919063ffffffff16565b6139cc90919063ffffffff16565b9050601854601a54826136649190614a40565b61366e9190614ac9565b601d600082825461367f9190614c1e565b92505081905550601854601b54826136979190614a40565b6136a19190614ac9565b601e60008282546136b29190614c1e565b92505081905550601854601954826136ca9190614a40565b6136d49190614ac9565b601c60008282546136e59190614c1e565b92505081905550613816565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561374c57506000601454115b1561381557613779606461376b601454886139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506014546016548261378c9190614a40565b6137969190614ac9565b601d60008282546137a79190614c1e565b92505081905550601454601754826137bf9190614a40565b6137c99190614ac9565b601e60008282546137da9190614c1e565b92505081905550601454601554826137f29190614a40565b6137fc9190614ac9565b601c600082825461380d9190614c1e565b925050819055505b5b600081111561382b5761382a8730836139e2565b5b808561383791906157ac565b94505b6138458787876139e2565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836139c49190614a40565b905092915050565b600081836139da9190614ac9565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4990615446565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab9906154d8565b60405180910390fd5b613acd838383614110565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4a90615852565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613be69190614c1e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c4a91906146c9565b60405180910390a3613c5d848484614115565b50505050565b6000613c6e30611491565b90506000601e54601c54601d54613c859190614c1e565b613c8f9190614c1e565b9050600080831480613ca15750600082145b15613cae57505050613f48565b6014600954613cbd9190614a40565b831115613cd6576014600954613cd39190614a40565b92505b6000600283601d5486613ce99190614a40565b613cf39190614ac9565b613cfd9190614ac9565b90506000613d14828661411a90919063ffffffff16565b90506000479050613d2482614130565b6000613d39824761411a90919063ffffffff16565b90506000613d6487613d56601c54856139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000613d8f88613d81601e54866139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000818385613da091906157ac565b613daa91906157ac565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e0a906158a3565b60006040518083038185875af1925050503d8060008114613e47576040519150601f19603f3d011682016040523d82523d6000602084013e613e4c565b606091505b505080985050600087118015613e625750600081115b15613eaf57613e71878261436d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613ea6939291906158b8565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613ef5906158a3565b60006040518083038185875af1925050503d8060008114613f32576040519150601f19603f3d011682016040523d82523d6000602084013e613f37565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000c09650bf246e3d50e13be466db23fe6ce7b894976040518263ffffffff1660e01b8152600401613fae9190614773565b602060405180830381865afa158015613fcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fef9190615283565b9050600061401c61271061400e600b54856139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000811115614055576140547f000000000000000000000000c09650bf246e3d50e13be466db23fe6ce7b8949761dead836139e2565b5b60007f000000000000000000000000c09650bf246e3d50e13be466db23fe6ce7b8949790508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156140c257600080fd5b505af11580156140d6573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361412891906157ac565b905092915050565b6000600267ffffffffffffffff81111561414d5761414c6158ef565b5b60405190808252806020026020018201604052801561417b5781602001602082028036833780820191505090505b50905030816000815181106141935761419261591e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614238573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061425c9190615962565b816001815181106142705761426f61591e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506142d5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128ec565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614337959493929190615a88565b600060405180830381600087803b15801561435157600080fd5b505af1158015614365573d6000803e3d6000fd5b505050505050565b614398307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128ec565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016143ff96959493929190615ae2565b60606040518083038185885af115801561441d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144429190615b43565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614483578082015181840152602081019050614468565b83811115614492576000848401525b50505050565b6000601f19601f8301169050919050565b60006144b482614449565b6144be8185614454565b93506144ce818560208601614465565b6144d781614498565b840191505092915050565b600060208201905081810360008301526144fc81846144a9565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061453482614509565b9050919050565b61454481614529565b811461454f57600080fd5b50565b6000813590506145618161453b565b92915050565b6000819050919050565b61457a81614567565b811461458557600080fd5b50565b60008135905061459781614571565b92915050565b600080604083850312156145b4576145b3614504565b5b60006145c285828601614552565b92505060206145d385828601614588565b9150509250929050565b60008115159050919050565b6145f2816145dd565b82525050565b600060208201905061460d60008301846145e9565b92915050565b60006020828403121561462957614628614504565b5b600061463784828501614552565b91505092915050565b6000819050919050565b600061466561466061465b84614509565b614640565b614509565b9050919050565b60006146778261464a565b9050919050565b60006146898261466c565b9050919050565b6146998161467e565b82525050565b60006020820190506146b46000830184614690565b92915050565b6146c381614567565b82525050565b60006020820190506146de60008301846146ba565b92915050565b6000602082840312156146fa576146f9614504565b5b600061470884828501614588565b91505092915050565b60008060006060848603121561472a57614729614504565b5b600061473886828701614552565b935050602061474986828701614552565b925050604061475a86828701614588565b9150509250925092565b61476d81614529565b82525050565b60006020820190506147886000830184614764565b92915050565b600060ff82169050919050565b6147a48161478e565b82525050565b60006020820190506147bf600083018461479b565b92915050565b6147ce816145dd565b81146147d957600080fd5b50565b6000813590506147eb816147c5565b92915050565b60008060006060848603121561480a57614809614504565b5b600061481886828701614588565b935050602061482986828701614588565b925050604061483a868287016147dc565b9150509250925092565b6000806040838503121561485b5761485a614504565b5b600061486985828601614552565b925050602061487a858286016147dc565b9150509250929050565b60008060006060848603121561489d5761489c614504565b5b60006148ab86828701614588565b93505060206148bc86828701614588565b92505060406148cd86828701614588565b9150509250925092565b6000602082840312156148ed576148ec614504565b5b60006148fb848285016147dc565b91505092915050565b6000806040838503121561491b5761491a614504565b5b600061492985828601614552565b925050602061493a85828601614552565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061498b57607f821691505b6020821081141561499f5761499e614944565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149db602083614454565b91506149e6826149a5565b602082019050919050565b60006020820190508181036000830152614a0a816149ce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a4b82614567565b9150614a5683614567565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a8f57614a8e614a11565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ad482614567565b9150614adf83614567565b925082614aef57614aee614a9a565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614b56602f83614454565b9150614b6182614afa565b604082019050919050565b60006020820190508181036000830152614b8581614b49565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614be8602883614454565b9150614bf382614b8c565b604082019050919050565b60006020820190508181036000830152614c1781614bdb565b9050919050565b6000614c2982614567565b9150614c3483614567565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c6957614c68614a11565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614cd0603383614454565b9150614cdb82614c74565b604082019050919050565b60006020820190508181036000830152614cff81614cc3565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614d62603083614454565b9150614d6d82614d06565b604082019050919050565b60006020820190508181036000830152614d9181614d55565b9050919050565b7f53656375726974792e0000000000000000000000000000000000000000000000600082015250565b6000614dce600983614454565b9150614dd982614d98565b602082019050919050565b60006020820190508181036000830152614dfd81614dc1565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e60603983614454565b9150614e6b82614e04565b604082019050919050565b60006020820190508181036000830152614e8f81614e53565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614ef2602583614454565b9150614efd82614e96565b604082019050919050565b60006020820190508181036000830152614f2181614ee5565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614f84602483614454565b9150614f8f82614f28565b604082019050919050565b60006020820190508181036000830152614fb381614f77565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000615016603583614454565b915061502182614fba565b604082019050919050565b6000602082019050818103600083015261504581615009565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006150a8603483614454565b91506150b38261504c565b604082019050919050565b600060208201905081810360008301526150d78161509b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061513a602683614454565b9150615145826150de565b604082019050919050565b600060208201905081810360008301526151698161512d565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006151a6602083614454565b91506151b182615170565b602082019050919050565b600060208201905081810360008301526151d581615199565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615238602a83614454565b9150615243826151dc565b604082019050919050565b600060208201905081810360008301526152678161522b565b9050919050565b60008151905061527d81614571565b92915050565b60006020828403121561529957615298614504565b5b60006152a78482850161526e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061530c602483614454565b9150615317826152b0565b604082019050919050565b6000602082019050818103600083015261533b816152ff565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061539e602283614454565b91506153a982615342565b604082019050919050565b600060208201905081810360008301526153cd81615391565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615430602583614454565b915061543b826153d4565b604082019050919050565b6000602082019050818103600083015261545f81615423565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006154c2602383614454565b91506154cd82615466565b604082019050919050565b600060208201905081810360008301526154f1816154b5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061552e601683614454565b9150615539826154f8565b602082019050919050565b6000602082019050818103600083015261555d81615521565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006155e6604983614454565b91506155f182615564565b606082019050919050565b60006020820190508181036000830152615615816155d9565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615678603583614454565b91506156838261561c565b604082019050919050565b600060208201905081810360008301526156a78161566b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006156e4601383614454565b91506156ef826156ae565b602082019050919050565b60006020820190508181036000830152615713816156d7565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615776603683614454565b91506157818261571a565b604082019050919050565b600060208201905081810360008301526157a581615769565b9050919050565b60006157b782614567565b91506157c283614567565b9250828210156157d5576157d4614a11565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061583c602683614454565b9150615847826157e0565b604082019050919050565b6000602082019050818103600083015261586b8161582f565b9050919050565b600081905092915050565b50565b600061588d600083615872565b91506158988261587d565b600082019050919050565b60006158ae82615880565b9150819050919050565b60006060820190506158cd60008301866146ba565b6158da60208301856146ba565b6158e760408301846146ba565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061595c8161453b565b92915050565b60006020828403121561597857615977614504565b5b60006159868482850161594d565b91505092915050565b6000819050919050565b60006159b46159af6159aa8461598f565b614640565b614567565b9050919050565b6159c481615999565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6159ff81614529565b82525050565b6000615a1183836159f6565b60208301905092915050565b6000602082019050919050565b6000615a35826159ca565b615a3f81856159d5565b9350615a4a836159e6565b8060005b83811015615a7b578151615a628882615a05565b9750615a6d83615a1d565b925050600181019050615a4e565b5085935050505092915050565b600060a082019050615a9d60008301886146ba565b615aaa60208301876159bb565b8181036040830152615abc8186615a2a565b9050615acb6060830185614764565b615ad860808301846146ba565b9695505050505050565b600060c082019050615af76000830189614764565b615b0460208301886146ba565b615b1160408301876159bb565b615b1e60608301866159bb565b615b2b6080830185614764565b615b3860a08301846146ba565b979650505050505050565b600080600060608486031215615b5c57615b5b614504565b5b6000615b6a8682870161526e565b9350506020615b7b8682870161526e565b9250506040615b8c8682870161526e565b915050925092509256fea2646970667358221220bab867fb85914ee402f86d72c31d3cd461fab7779e9e28b8ac3b53e908cf395364736f6c634300080a0033

Deployed Bytecode Sourcemap

33016:19251:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9844:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12011:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34647:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33096:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10964:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41595:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33661:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33476:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34431:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34391;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38951:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12662:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33199:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33571:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33532:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10806:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13563:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33154:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33759:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41760:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34246:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33839:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11135:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3079:103;;;;;;;;;;;;;:::i;:::-;;49849:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38059:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39498:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33291:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34139;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39869:382;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37852:155;;;;;;;;;;;;;:::i;:::-;;2428:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33328:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34281:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39761:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10063:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40848:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34213:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33715:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34471:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34357:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14281:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33623:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11475:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41356:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34868:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33799:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40658:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40259:391;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39234:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34057:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33361:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38446:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34105:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11713:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33403:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38241:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34176:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3337:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34319:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33443:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51208:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9844:100;9898:13;9931:5;9924:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9844:100;:::o;12011:169::-;12094:4;12111:39;12120:12;:10;:12::i;:::-;12134:7;12143:6;12111:8;:39::i;:::-;12168:4;12161:11;;12011:169;;;;:::o;34647:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;33096:51::-;;;:::o;10964:108::-;11025:7;11052:12;;11045:19;;10964:108;:::o;41595:157::-;2659:12;:10;:12::i;:::-;2648:23;;:7;:5;:7::i;:::-;:23;;;2640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41702:9:::1;;;;;;;;;;;41674:38;;41691:9;41674:38;;;;;;;;;;;;41735:9;41723;;:21;;;;;;;;;;;;;;;;;;41595:157:::0;:::o;33661:47::-;;;;:::o;33476:36::-;;;;:::o;34431:33::-;;;;:::o;34391:::-;;;;:::o;38951:275::-;2659:12;:10;:12::i;:::-;2648:23;;:7;:5;:7::i;:::-;:23;;;2640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39088:4:::1;39080;39075:1;39059:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39058:26;;;;:::i;:::-;39057:35;;;;:::i;:::-;39047:6;:45;;39025:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39211:6;39201;:17;;;;:::i;:::-;39178:20;:40;;;;38951:275:::0;:::o;12662:492::-;12802:4;12819:36;12829:6;12837:9;12848:6;12819:9;:36::i;:::-;12868:24;12895:11;:19;12907:6;12895:19;;;;;;;;;;;;;;;:33;12915:12;:10;:12::i;:::-;12895:33;;;;;;;;;;;;;;;;12868:60;;12967:6;12947:16;:26;;12939:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13054:57;13063:6;13071:12;:10;:12::i;:::-;13104:6;13085:16;:25;13054:8;:57::i;:::-;13142:4;13135:11;;;12662:492;;;;;:::o;33199:53::-;33245:6;33199:53;:::o;33571:45::-;;;;:::o;33532:32::-;;;;;;;;;;;;;:::o;10806:93::-;10864:5;10889:2;10882:9;;10806:93;:::o;13563:215::-;13651:4;13668:80;13677:12;:10;:12::i;:::-;13691:7;13737:10;13700:11;:25;13712:12;:10;:12::i;:::-;13700:25;;;;;;;;;;;;;;;:34;13726:7;13700:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13668:8;:80::i;:::-;13766:4;13759:11;;13563:215;;;;:::o;33154:38::-;;;:::o;33759:33::-;;;;;;;;;;;;;:::o;41760:126::-;41826:4;41850:19;:28;41870:7;41850:28;;;;;;;;;;;;;;;;;;;;;;;;;41843:35;;41760:126;;;:::o;34246:28::-;;;;:::o;33839:31::-;;;;;;;;;;;;;:::o;11135:127::-;11209:7;11236:9;:18;11246:7;11236:18;;;;;;;;;;;;;;;;11229:25;;11135:127;;;:::o;3079:103::-;2659:12;:10;:12::i;:::-;2648:23;;:7;:5;:7::i;:::-;:23;;;2640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3144:30:::1;3171:1;3144:18;:30::i;:::-;3079:103::o:0;49849:555::-;2659:12;:10;:12::i;:::-;2648:23;;:7;:5;:7::i;:::-;:23;;;2640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50051:3:::1;50028:19;:26;;50006:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50178:4;50166:8;:16;;:33;;;;;50198:1;50186:8;:13;;50166:33;50144:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50304:19;50286:15;:37;;;;50353:8;50334:16;:27;;;;50388:8;50372:13;;:24;;;;;;;;;;;;;;;;;;49849:555:::0;;;:::o;38059:121::-;38111:4;2659:12;:10;:12::i;:::-;2648:23;;:7;:5;:7::i;:::-;:23;;;2640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38145:5:::1;38128:14;;:22;;;;;;;;;;;;;;;;;;38168:4;38161:11;;38059:121:::0;:::o;39498:167::-;2659:12;:10;:12::i;:::-;2648:23;;:7;:5;:7::i;:::-;:23;;;2640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39653:4:::1;39611:31;:39;39643:6;39611:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39498:167:::0;;:::o;33291:30::-;;;;;;;;;;;;;:::o;34139:::-;;;;:::o;39869:382::-;2659:12;:10;:12::i;:::-;2648:23;;:7;:5;:7::i;:::-;:23;;;2640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40037:13:::1;40019:15;:31;;;;40079:13;40061:15;:31;;;;40115:7;40103:9;:19;;;;40184:9;;40166:15;;40148;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;40133:12;:60;;;;40228:1;40212:12;;:17;;40204:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;39869:382:::0;;;:::o;37852:155::-;2659:12;:10;:12::i;:::-;2648:23;;:7;:5;:7::i;:::-;:23;;;2640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37923:4:::1;37907:13;;:20;;;;;;;;;;;;;;;;;;37952:4;37938:11;;:18;;;;;;;;;;;;;;;;;;37984:15;37967:14;:32;;;;37852:155::o:0;2428:87::-;2474:7;2501:6;;;;;;;;;;;2494:13;;2428:87;:::o;33328:24::-;;;;;;;;;;;;;:::o;34281:31::-;;;;:::o;39761:100::-;2659:12;:10;:12::i;:::-;2648:23;;:7;:5;:7::i;:::-;:23;;;2640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39846:7:::1;39832:11;;:21;;;;;;;;;;;;;;;;;;39761:100:::0;:::o;10063:104::-;10119:13;10152:7;10145:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10063:104;:::o;40848:304::-;2659:12;:10;:12::i;:::-;2648:23;;:7;:5;:7::i;:::-;:23;;;2640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40992:13:::1;40984:21;;:4;:21;;;;40962:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41103:41;41132:4;41138:5;41103:28;:41::i;:::-;40848:304:::0;;:::o;34213:24::-;;;;:::o;33715:35::-;;;;:::o;34471:27::-;;;;:::o;34357:25::-;;;;:::o;14281:413::-;14374:4;14391:24;14418:11;:25;14430:12;:10;:12::i;:::-;14418:25;;;;;;;;;;;;;;;:34;14444:7;14418:34;;;;;;;;;;;;;;;;14391:61;;14491:15;14471:16;:35;;14463:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14584:67;14593:12;:10;:12::i;:::-;14607:7;14635:15;14616:16;:34;14584:8;:67::i;:::-;14682:4;14675:11;;;14281:413;;;;:::o;33623:29::-;;;;:::o;11475:175::-;11561:4;11578:42;11588:12;:10;:12::i;:::-;11602:9;11613:6;11578:9;:42::i;:::-;11638:4;11631:11;;11475:175;;;;:::o;41356:231::-;2659:12;:10;:12::i;:::-;2648:23;;:7;:5;:7::i;:::-;:23;;;2640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41516:15:::1;;;;;;;;;;;41473:59;;41496:18;41473:59;;;;;;;;;;;;41561:18;41543:15;;:36;;;;;;;;;;;;;;;;;;41356:231:::0;:::o;34868:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33799:33::-;;;;;;;;;;;;;:::o;40658:182::-;2659:12;:10;:12::i;:::-;2648:23;;:7;:5;:7::i;:::-;:23;;;2640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40774:8:::1;40743:19;:28;40763:7;40743:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40814:7;40798:34;;;40823:8;40798:34;;;;;;:::i;:::-;;;;;;;;40658:182:::0;;:::o;40259:391::-;2659:12;:10;:12::i;:::-;2648:23;;:7;:5;:7::i;:::-;:23;;;2640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40429:13:::1;40410:16;:32;;;;40472:13;40453:16;:32;;;;40509:7;40496:10;:20;;;;40581:10;;40562:16;;40543;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40527:13;:64;;;;40627:1;40610:13;;:18;;40602:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;40259:391:::0;;;:::o;39234:256::-;2659:12;:10;:12::i;:::-;2648:23;;:7;:5;:7::i;:::-;:23;;;2640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39374:4:::1;39366;39361:1;39345:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39344:26;;;;:::i;:::-;39343:35;;;;:::i;:::-;39333:6;:45;;39311:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39475:6;39465;:17;;;;:::i;:::-;39453:9;:29;;;;39234:256:::0;:::o;34057:39::-;;;;;;;;;;;;;:::o;33361:35::-;;;;:::o;38446:497::-;38554:4;2659:12;:10;:12::i;:::-;2648:23;;:7;:5;:7::i;:::-;:23;;;2640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38633:6:::1;38628:1;38612:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38611:28;;;;:::i;:::-;38598:9;:41;;38576:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38788:4;38783:1;38767:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38766:26;;;;:::i;:::-;38753:9;:39;;38731:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38904:9;38883:18;:30;;;;38931:4;38924:11;;38446:497:::0;;;:::o;34105:27::-;;;;:::o;11713:151::-;11802:7;11829:11;:18;11841:5;11829:18;;;;;;;;;;;;;;;:27;11848:7;11829:27;;;;;;;;;;;;;;;;11822:34;;11713:151;;;;:::o;33403:33::-;;;;:::o;38241:135::-;38301:4;2659:12;:10;:12::i;:::-;2648:23;;:7;:5;:7::i;:::-;:23;;;2640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38341:5:::1;38318:20;;:28;;;;;;;;;;;;;;;;;;38364:4;38357:11;;38241:135:::0;:::o;34176:30::-;;;;:::o;3337:201::-;2659:12;:10;:12::i;:::-;2648:23;;:7;:5;:7::i;:::-;:23;;;2640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3446:1:::1;3426:22;;:8;:22;;;;3418:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3502:28;3521:8;3502:18;:28::i;:::-;3337:201:::0;:::o;34319:31::-;;;;:::o;33443:24::-;;;;:::o;51208:1056::-;51319:4;2659:12;:10;:12::i;:::-;2648:23;;:7;:5;:7::i;:::-;:23;;;2640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51404:19:::1;;51381:20;;:42;;;;:::i;:::-;51363:15;:60;51341:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51513:4;51502:7;:15;;51494:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51598:15;51575:20;:38;;;;51668:28;51699:4;:14;;;51714:13;51699:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51668:60;;51778:20;51801:44;51839:5;51801:33;51826:7;51801:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51778:67;;51965:1;51950:12;:16;51946:110;;;51983:61;51999:13;52022:6;52031:12;51983:15;:61::i;:::-;51946:110;52131:19;52168:13;52131:51;;52193:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52220:14;;;;;;;;;;52252:4;52245:11;;;;;51208:1056:::0;;;:::o;1101:98::-;1154:7;1181:10;1174:17;;1101:98;:::o;17965:380::-;18118:1;18101:19;;:5;:19;;;;18093:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18199:1;18180:21;;:7;:21;;;;18172:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18283:6;18253:11;:18;18265:5;18253:18;;;;;;;;;;;;;;;:27;18272:7;18253:27;;;;;;;;;;;;;;;:36;;;;18321:7;18305:32;;18314:5;18305:32;;;18330:6;18305:32;;;;;;:::i;:::-;;;;;;;;17965:380;;;:::o;41944:5011::-;42092:1;42076:18;;:4;:18;;;;42068:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42169:1;42155:16;;:2;:16;;;;42147:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42238:1;42228:6;:11;42224:93;;;42256:28;42272:4;42278:2;42282:1;42256:15;:28::i;:::-;42299:7;;42224:93;42333:14;;;;;;;;;;;42329:2487;;;42394:7;:5;:7::i;:::-;42386:15;;:4;:15;;;;:49;;;;;42428:7;:5;:7::i;:::-;42422:13;;:2;:13;;;;42386:49;:86;;;;;42470:1;42456:16;;:2;:16;;;;42386:86;:128;;;;;42507:6;42493:21;;:2;:21;;;;42386:128;:158;;;;;42536:8;;;;;;;;;;;42535:9;42386:158;42364:2441;;;42584:13;;;;;;;;;;;42579:223;;42656:19;:25;42676:4;42656:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42685:19;:23;42705:2;42685:23;;;;;;;;;;;;;;;;;;;;;;;;;42656:52;42622:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42579:223;42958:20;;;;;;;;;;;42954:641;;;43039:7;:5;:7::i;:::-;43033:13;;:2;:13;;;;:72;;;;;43089:15;43075:30;;:2;:30;;;;43033:72;:129;;;;;43148:13;43134:28;;:2;:28;;;;43033:129;43003:573;;;43326:12;43251:28;:39;43280:9;43251:39;;;;;;;;;;;;;;;;:87;43213:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43540:12;43498:28;:39;43527:9;43498:39;;;;;;;;;;;;;;;:54;;;;43003:573;42954:641;43669:25;:31;43695:4;43669:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43726:31;:35;43758:2;43726:35;;;;;;;;;;;;;;;;;;;;;;;;;43725:36;43669:92;43643:1147;;;43848:20;;43838:6;:30;;43804:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44056:9;;44039:13;44049:2;44039:9;:13::i;:::-;44030:6;:22;;;;:::i;:::-;:35;;43996:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43643:1147;;;44234:25;:29;44260:2;44234:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44289:31;:37;44321:4;44289:37;;;;;;;;;;;;;;;;;;;;;;;;;44288:38;44234:92;44208:582;;;44413:20;;44403:6;:30;;44369:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44208:582;;;44570:31;:35;44602:2;44570:35;;;;;;;;;;;;;;;;;;;;;;;;;44565:225;;44690:9;;44673:13;44683:2;44673:9;:13::i;:::-;44664:6;:22;;;;:::i;:::-;:35;;44630:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44565:225;44208:582;43643:1147;42364:2441;42329:2487;44828:28;44859:24;44877:4;44859:9;:24::i;:::-;44828:55;;44896:12;44935:18;;44911:20;:42;;44896:57;;44984:7;:35;;;;;45008:11;;;;;;;;;;;44984:35;:61;;;;;45037:8;;;;;;;;;;;45036:9;44984:61;:110;;;;;45063:25;:31;45089:4;45063:31;;;;;;;;;;;;;;;;;;;;;;;;;45062:32;44984:110;:153;;;;;45112:19;:25;45132:4;45112:25;;;;;;;;;;;;;;;;;;;;;;;;;45111:26;44984:153;:194;;;;;45155:19;:23;45175:2;45155:23;;;;;;;;;;;;;;;;;;;;;;;;;45154:24;44984:194;44966:326;;;45216:4;45205:8;;:15;;;;;;;;;;;;;;;;;;45237:10;:8;:10::i;:::-;45275:5;45264:8;;:16;;;;;;;;;;;;;;;;;;44966:326;45323:8;;;;;;;;;;;45322:9;:55;;;;;45348:25;:29;45374:2;45348:29;;;;;;;;;;;;;;;;;;;;;;;;;45322:55;:85;;;;;45394:13;;;;;;;;;;;45322:85;:153;;;;;45460:15;;45443:14;;:32;;;;:::i;:::-;45424:15;:51;;45322:153;:196;;;;;45493:19;:25;45513:4;45493:25;;;;;;;;;;;;;;;;;;;;;;;;;45492:26;45322:196;45304:282;;;45545:29;:27;:29::i;:::-;;45304:282;45598:12;45614:8;;;;;;;;;;;45613:9;45598:24;;45724:19;:25;45744:4;45724:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45753:19;:23;45773:2;45753:23;;;;;;;;;;;;;;;;;;;;;;;;;45724:52;45720:100;;;45803:5;45793:15;;45720:100;45832:12;45937:7;45933:969;;;45989:25;:29;46015:2;45989:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;46038:1;46022:13;;:17;45989:50;45985:768;;;46067:34;46097:3;46067:25;46078:13;;46067:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;46060:41;;46170:13;;46150:16;;46143:4;:23;;;;:::i;:::-;46142:41;;;;:::i;:::-;46120:18;;:63;;;;;;;:::i;:::-;;;;;;;;46240:13;;46226:10;;46219:4;:17;;;;:::i;:::-;46218:35;;;;:::i;:::-;46202:12;;:51;;;;;;;:::i;:::-;;;;;;;;46322:13;;46302:16;;46295:4;:23;;;;:::i;:::-;46294:41;;;;:::i;:::-;46272:18;;:63;;;;;;;:::i;:::-;;;;;;;;45985:768;;;46397:25;:31;46423:4;46397:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46447:1;46432:12;;:16;46397:51;46393:360;;;46476:33;46505:3;46476:24;46487:12;;46476:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46469:40;;46577:12;;46558:15;;46551:4;:22;;;;:::i;:::-;46550:39;;;;:::i;:::-;46528:18;;:61;;;;;;;:::i;:::-;;;;;;;;46645:12;;46632:9;;46625:4;:16;;;;:::i;:::-;46624:33;;;;:::i;:::-;46608:12;;:49;;;;;;;:::i;:::-;;;;;;;;46725:12;;46706:15;;46699:4;:22;;;;:::i;:::-;46698:39;;;;:::i;:::-;46676:18;;:61;;;;;;;:::i;:::-;;;;;;;;46393:360;45985:768;46780:1;46773:4;:8;46769:91;;;46802:42;46818:4;46832;46839;46802:15;:42::i;:::-;46769:91;46886:4;46876:14;;;;;:::i;:::-;;;45933:969;46914:33;46930:4;46936:2;46940:6;46914:15;:33::i;:::-;42057:4898;;;;41944:5011;;;;:::o;3698:191::-;3772:16;3791:6;;;;;;;;;;;3772:25;;3817:8;3808:6;;:17;;;;;;;;;;;;;;;;;;3872:8;3841:40;;3862:8;3841:40;;;;;;;;;;;;3761:128;3698:191;:::o;41160:188::-;41277:5;41243:25;:31;41269:4;41243:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41334:5;41300:40;;41328:4;41300:40;;;;;;;;;;;;41160:188;;:::o;23418:98::-;23476:7;23507:1;23503;:5;;;;:::i;:::-;23496:12;;23418:98;;;;:::o;23817:::-;23875:7;23906:1;23902;:5;;;;:::i;:::-;23895:12;;23817:98;;;;:::o;15184:733::-;15342:1;15324:20;;:6;:20;;;;15316:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15426:1;15405:23;;:9;:23;;;;15397:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15481:47;15502:6;15510:9;15521:6;15481:20;:47::i;:::-;15541:21;15565:9;:17;15575:6;15565:17;;;;;;;;;;;;;;;;15541:41;;15618:6;15601:13;:23;;15593:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15739:6;15723:13;:22;15703:9;:17;15713:6;15703:17;;;;;;;;;;;;;;;:42;;;;15791:6;15767:9;:20;15777:9;15767:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15832:9;15815:35;;15824:6;15815:35;;;15843:6;15815:35;;;;;;:::i;:::-;;;;;;;;15863:46;15883:6;15891:9;15902:6;15863:19;:46::i;:::-;15305:612;15184:733;;;:::o;48085:1756::-;48124:23;48150:24;48168:4;48150:9;:24::i;:::-;48124:50;;48185:25;48281:12;;48247:18;;48213;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48185:108;;48304:12;48352:1;48333:15;:20;:46;;;;48378:1;48357:17;:22;48333:46;48329:85;;;48396:7;;;;;48329:85;48469:2;48448:18;;:23;;;;:::i;:::-;48430:15;:41;48426:115;;;48527:2;48506:18;;:23;;;;:::i;:::-;48488:41;;48426:115;48602:23;48715:1;48682:17;48647:18;;48629:15;:36;;;;:::i;:::-;48628:71;;;;:::i;:::-;:88;;;;:::i;:::-;48602:114;;48727:26;48756:36;48776:15;48756;:19;;:36;;;;:::i;:::-;48727:65;;48805:25;48833:21;48805:49;;48867:36;48884:18;48867:16;:36::i;:::-;48916:18;48937:44;48963:17;48937:21;:25;;:44;;;;:::i;:::-;48916:65;;48994:23;49020:81;49073:17;49020:34;49035:18;;49020:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48994:107;;49112:17;49132:51;49165:17;49132:28;49147:12;;49132:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49112:71;;49196:23;49253:9;49235:15;49222:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49196:66;;49296:1;49275:18;:22;;;;49329:1;49308:18;:22;;;;49356:1;49341:12;:16;;;;49392:9;;;;;;;;;;;49384:23;;49415:9;49384:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49370:59;;;;;49464:1;49446:15;:19;:42;;;;;49487:1;49469:15;:19;49446:42;49442:278;;;49505:46;49518:15;49535;49505:12;:46::i;:::-;49571:137;49604:18;49641:15;49675:18;;49571:137;;;;;;;;:::i;:::-;;;;;;;;49442:278;49754:15;;;;;;;;;;;49746:29;;49797:21;49746:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49732:101;;;;;48113:1728;;;;;;;;;;48085:1756;:::o;50412:788::-;50469:4;50503:15;50486:14;:32;;;;50573:28;50604:4;:14;;;50619:13;50604:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50573:60;;50683:20;50706:77;50767:5;50706:42;50731:16;;50706:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50683:100;;50903:1;50888:12;:16;50884:110;;;50921:61;50937:13;50960:6;50969:12;50921:15;:61::i;:::-;50884:110;51069:19;51106:13;51069:51;;51131:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51158:12;;;;;;;;;;51188:4;51181:11;;;;;50412:788;:::o;18945:125::-;;;;:::o;19674:124::-;;;;:::o;23061:98::-;23119:7;23150:1;23146;:5;;;;:::i;:::-;23139:12;;23061:98;;;;:::o;46963:589::-;47089:21;47127:1;47113:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47089:40;;47158:4;47140;47145:1;47140:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47184:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47174:4;47179:1;47174:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47219:62;47236:4;47251:15;47269:11;47219:8;:62::i;:::-;47320:15;:66;;;47401:11;47427:1;47471:4;47498;47518:15;47320:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47018:534;46963:589;:::o;47560:517::-;47708:62;47725:4;47740:15;47758:11;47708:8;:62::i;:::-;47813:15;:31;;;47852:9;47885:4;47905:11;47931:1;47974;33245:6;48043:15;47813:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47560:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:180::-;9737:77;9734:1;9727:88;9834:4;9831:1;9824:15;9858:4;9855:1;9848:15;9875:320;9919:6;9956:1;9950:4;9946:12;9936:22;;10003:1;9997:4;9993:12;10024:18;10014:81;;10080:4;10072:6;10068:17;10058:27;;10014:81;10142:2;10134:6;10131:14;10111:18;10108:38;10105:84;;;10161:18;;:::i;:::-;10105:84;9926:269;9875:320;;;:::o;10201:182::-;10341:34;10337:1;10329:6;10325:14;10318:58;10201:182;:::o;10389:366::-;10531:3;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10628:93;10717:3;10628:93;:::i;:::-;10746:2;10741:3;10737:12;10730:19;;10389:366;;;:::o;10761:419::-;10927:4;10965:2;10954:9;10950:18;10942:26;;11014:9;11008:4;11004:20;11000:1;10989:9;10985:17;10978:47;11042:131;11168:4;11042:131;:::i;:::-;11034:139;;10761:419;;;:::o;11186:180::-;11234:77;11231:1;11224:88;11331:4;11328:1;11321:15;11355:4;11352:1;11345:15;11372:348;11412:7;11435:20;11453:1;11435:20;:::i;:::-;11430:25;;11469:20;11487:1;11469:20;:::i;:::-;11464:25;;11657:1;11589:66;11585:74;11582:1;11579:81;11574:1;11567:9;11560:17;11556:105;11553:131;;;11664:18;;:::i;:::-;11553:131;11712:1;11709;11705:9;11694:20;;11372:348;;;;:::o;11726:180::-;11774:77;11771:1;11764:88;11871:4;11868:1;11861:15;11895:4;11892:1;11885:15;11912:185;11952:1;11969:20;11987:1;11969:20;:::i;:::-;11964:25;;12003:20;12021:1;12003:20;:::i;:::-;11998:25;;12042:1;12032:35;;12047:18;;:::i;:::-;12032:35;12089:1;12086;12082:9;12077:14;;11912:185;;;;:::o;12103:234::-;12243:34;12239:1;12231:6;12227:14;12220:58;12312:17;12307:2;12299:6;12295:15;12288:42;12103:234;:::o;12343:366::-;12485:3;12506:67;12570:2;12565:3;12506:67;:::i;:::-;12499:74;;12582:93;12671:3;12582:93;:::i;:::-;12700:2;12695:3;12691:12;12684:19;;12343:366;;;:::o;12715:419::-;12881:4;12919:2;12908:9;12904:18;12896:26;;12968:9;12962:4;12958:20;12954:1;12943:9;12939:17;12932:47;12996:131;13122:4;12996:131;:::i;:::-;12988:139;;12715:419;;;:::o;13140:227::-;13280:34;13276:1;13268:6;13264:14;13257:58;13349:10;13344:2;13336:6;13332:15;13325:35;13140:227;:::o;13373:366::-;13515:3;13536:67;13600:2;13595:3;13536:67;:::i;:::-;13529:74;;13612:93;13701:3;13612:93;:::i;:::-;13730:2;13725:3;13721:12;13714:19;;13373:366;;;:::o;13745:419::-;13911:4;13949:2;13938:9;13934:18;13926:26;;13998:9;13992:4;13988:20;13984:1;13973:9;13969:17;13962:47;14026:131;14152:4;14026:131;:::i;:::-;14018:139;;13745:419;;;:::o;14170:305::-;14210:3;14229:20;14247:1;14229:20;:::i;:::-;14224:25;;14263:20;14281:1;14263:20;:::i;:::-;14258:25;;14417:1;14349:66;14345:74;14342:1;14339:81;14336:107;;;14423:18;;:::i;:::-;14336:107;14467:1;14464;14460:9;14453:16;;14170:305;;;;:::o;14481:238::-;14621:34;14617:1;14609:6;14605:14;14598:58;14690:21;14685:2;14677:6;14673:15;14666:46;14481:238;:::o;14725:366::-;14867:3;14888:67;14952:2;14947:3;14888:67;:::i;:::-;14881:74;;14964:93;15053:3;14964:93;:::i;:::-;15082:2;15077:3;15073:12;15066:19;;14725:366;;;:::o;15097:419::-;15263:4;15301:2;15290:9;15286:18;15278:26;;15350:9;15344:4;15340:20;15336:1;15325:9;15321:17;15314:47;15378:131;15504:4;15378:131;:::i;:::-;15370:139;;15097:419;;;:::o;15522:235::-;15662:34;15658:1;15650:6;15646:14;15639:58;15731:18;15726:2;15718:6;15714:15;15707:43;15522:235;:::o;15763:366::-;15905:3;15926:67;15990:2;15985:3;15926:67;:::i;:::-;15919:74;;16002:93;16091:3;16002:93;:::i;:::-;16120:2;16115:3;16111:12;16104:19;;15763:366;;;:::o;16135:419::-;16301:4;16339:2;16328:9;16324:18;16316:26;;16388:9;16382:4;16378:20;16374:1;16363:9;16359:17;16352:47;16416:131;16542:4;16416:131;:::i;:::-;16408:139;;16135:419;;;:::o;16560:159::-;16700:11;16696:1;16688:6;16684:14;16677:35;16560:159;:::o;16725:365::-;16867:3;16888:66;16952:1;16947:3;16888:66;:::i;:::-;16881:73;;16963:93;17052:3;16963:93;:::i;:::-;17081:2;17076:3;17072:12;17065:19;;16725:365;;;:::o;17096:419::-;17262:4;17300:2;17289:9;17285:18;17277:26;;17349:9;17343:4;17339:20;17335:1;17324:9;17320:17;17313:47;17377:131;17503:4;17377:131;:::i;:::-;17369:139;;17096:419;;;:::o;17521:244::-;17661:34;17657:1;17649:6;17645:14;17638:58;17730:27;17725:2;17717:6;17713:15;17706:52;17521:244;:::o;17771:366::-;17913:3;17934:67;17998:2;17993:3;17934:67;:::i;:::-;17927:74;;18010:93;18099:3;18010:93;:::i;:::-;18128:2;18123:3;18119:12;18112:19;;17771:366;;;:::o;18143:419::-;18309:4;18347:2;18336:9;18332:18;18324:26;;18396:9;18390:4;18386:20;18382:1;18371:9;18367:17;18360:47;18424:131;18550:4;18424:131;:::i;:::-;18416:139;;18143:419;;;:::o;18568:224::-;18708:34;18704:1;18696:6;18692:14;18685:58;18777:7;18772:2;18764:6;18760:15;18753:32;18568:224;:::o;18798:366::-;18940:3;18961:67;19025:2;19020:3;18961:67;:::i;:::-;18954:74;;19037:93;19126:3;19037:93;:::i;:::-;19155:2;19150:3;19146:12;19139:19;;18798:366;;;:::o;19170:419::-;19336:4;19374:2;19363:9;19359:18;19351:26;;19423:9;19417:4;19413:20;19409:1;19398:9;19394:17;19387:47;19451:131;19577:4;19451:131;:::i;:::-;19443:139;;19170:419;;;:::o;19595:223::-;19735:34;19731:1;19723:6;19719:14;19712:58;19804:6;19799:2;19791:6;19787:15;19780:31;19595:223;:::o;19824:366::-;19966:3;19987:67;20051:2;20046:3;19987:67;:::i;:::-;19980:74;;20063:93;20152:3;20063:93;:::i;:::-;20181:2;20176:3;20172:12;20165:19;;19824:366;;;:::o;20196:419::-;20362:4;20400:2;20389:9;20385:18;20377:26;;20449:9;20443:4;20439:20;20435:1;20424:9;20420:17;20413:47;20477:131;20603:4;20477:131;:::i;:::-;20469:139;;20196:419;;;:::o;20621:240::-;20761:34;20757:1;20749:6;20745:14;20738:58;20830:23;20825:2;20817:6;20813:15;20806:48;20621:240;:::o;20867:366::-;21009:3;21030:67;21094:2;21089:3;21030:67;:::i;:::-;21023:74;;21106:93;21195:3;21106:93;:::i;:::-;21224:2;21219:3;21215:12;21208:19;;20867:366;;;:::o;21239:419::-;21405:4;21443:2;21432:9;21428:18;21420:26;;21492:9;21486:4;21482:20;21478:1;21467:9;21463:17;21456:47;21520:131;21646:4;21520:131;:::i;:::-;21512:139;;21239:419;;;:::o;21664:239::-;21804:34;21800:1;21792:6;21788:14;21781:58;21873:22;21868:2;21860:6;21856:15;21849:47;21664:239;:::o;21909:366::-;22051:3;22072:67;22136:2;22131:3;22072:67;:::i;:::-;22065:74;;22148:93;22237:3;22148:93;:::i;:::-;22266:2;22261:3;22257:12;22250:19;;21909:366;;;:::o;22281:419::-;22447:4;22485:2;22474:9;22470:18;22462:26;;22534:9;22528:4;22524:20;22520:1;22509:9;22505:17;22498:47;22562:131;22688:4;22562:131;:::i;:::-;22554:139;;22281:419;;;:::o;22706:225::-;22846:34;22842:1;22834:6;22830:14;22823:58;22915:8;22910:2;22902:6;22898:15;22891:33;22706:225;:::o;22937:366::-;23079:3;23100:67;23164:2;23159:3;23100:67;:::i;:::-;23093:74;;23176:93;23265:3;23176:93;:::i;:::-;23294:2;23289:3;23285:12;23278:19;;22937:366;;;:::o;23309:419::-;23475:4;23513:2;23502:9;23498:18;23490:26;;23562:9;23556:4;23552:20;23548:1;23537:9;23533:17;23526:47;23590:131;23716:4;23590:131;:::i;:::-;23582:139;;23309:419;;;:::o;23734:182::-;23874:34;23870:1;23862:6;23858:14;23851:58;23734:182;:::o;23922:366::-;24064:3;24085:67;24149:2;24144:3;24085:67;:::i;:::-;24078:74;;24161:93;24250:3;24161:93;:::i;:::-;24279:2;24274:3;24270:12;24263:19;;23922:366;;;:::o;24294:419::-;24460:4;24498:2;24487:9;24483:18;24475:26;;24547:9;24541:4;24537:20;24533:1;24522:9;24518:17;24511:47;24575:131;24701:4;24575:131;:::i;:::-;24567:139;;24294:419;;;:::o;24719:229::-;24859:34;24855:1;24847:6;24843:14;24836:58;24928:12;24923:2;24915:6;24911:15;24904:37;24719:229;:::o;24954:366::-;25096:3;25117:67;25181:2;25176:3;25117:67;:::i;:::-;25110:74;;25193:93;25282:3;25193:93;:::i;:::-;25311:2;25306:3;25302:12;25295:19;;24954:366;;;:::o;25326:419::-;25492:4;25530:2;25519:9;25515:18;25507:26;;25579:9;25573:4;25569:20;25565:1;25554:9;25550:17;25543:47;25607:131;25733:4;25607:131;:::i;:::-;25599:139;;25326:419;;;:::o;25751:143::-;25808:5;25839:6;25833:13;25824:22;;25855:33;25882:5;25855:33;:::i;:::-;25751:143;;;;:::o;25900:351::-;25970:6;26019:2;26007:9;25998:7;25994:23;25990:32;25987:119;;;26025:79;;:::i;:::-;25987:119;26145:1;26170:64;26226:7;26217:6;26206:9;26202:22;26170:64;:::i;:::-;26160:74;;26116:128;25900:351;;;;:::o;26257:223::-;26397:34;26393:1;26385:6;26381:14;26374:58;26466:6;26461:2;26453:6;26449:15;26442:31;26257:223;:::o;26486:366::-;26628:3;26649:67;26713:2;26708:3;26649:67;:::i;:::-;26642:74;;26725:93;26814:3;26725:93;:::i;:::-;26843:2;26838:3;26834:12;26827:19;;26486:366;;;:::o;26858:419::-;27024:4;27062:2;27051:9;27047:18;27039:26;;27111:9;27105:4;27101:20;27097:1;27086:9;27082:17;27075:47;27139:131;27265:4;27139:131;:::i;:::-;27131:139;;26858:419;;;:::o;27283:221::-;27423:34;27419:1;27411:6;27407:14;27400:58;27492:4;27487:2;27479:6;27475:15;27468:29;27283:221;:::o;27510:366::-;27652:3;27673:67;27737:2;27732:3;27673:67;:::i;:::-;27666:74;;27749:93;27838:3;27749:93;:::i;:::-;27867:2;27862:3;27858:12;27851:19;;27510:366;;;:::o;27882:419::-;28048:4;28086:2;28075:9;28071:18;28063:26;;28135:9;28129:4;28125:20;28121:1;28110:9;28106:17;28099:47;28163:131;28289:4;28163:131;:::i;:::-;28155:139;;27882:419;;;:::o;28307:224::-;28447:34;28443:1;28435:6;28431:14;28424:58;28516:7;28511:2;28503:6;28499:15;28492:32;28307:224;:::o;28537:366::-;28679:3;28700:67;28764:2;28759:3;28700:67;:::i;:::-;28693:74;;28776:93;28865:3;28776:93;:::i;:::-;28894:2;28889:3;28885:12;28878:19;;28537:366;;;:::o;28909:419::-;29075:4;29113:2;29102:9;29098:18;29090:26;;29162:9;29156:4;29152:20;29148:1;29137:9;29133:17;29126:47;29190:131;29316:4;29190:131;:::i;:::-;29182:139;;28909:419;;;:::o;29334:222::-;29474:34;29470:1;29462:6;29458:14;29451:58;29543:5;29538:2;29530:6;29526:15;29519:30;29334:222;:::o;29562:366::-;29704:3;29725:67;29789:2;29784:3;29725:67;:::i;:::-;29718:74;;29801:93;29890:3;29801:93;:::i;:::-;29919:2;29914:3;29910:12;29903:19;;29562:366;;;:::o;29934:419::-;30100:4;30138:2;30127:9;30123:18;30115:26;;30187:9;30181:4;30177:20;30173:1;30162:9;30158:17;30151:47;30215:131;30341:4;30215:131;:::i;:::-;30207:139;;29934:419;;;:::o;30359:172::-;30499:24;30495:1;30487:6;30483:14;30476:48;30359:172;:::o;30537:366::-;30679:3;30700:67;30764:2;30759:3;30700:67;:::i;:::-;30693:74;;30776:93;30865:3;30776:93;:::i;:::-;30894:2;30889:3;30885:12;30878:19;;30537:366;;;:::o;30909:419::-;31075:4;31113:2;31102:9;31098:18;31090:26;;31162:9;31156:4;31152:20;31148:1;31137:9;31133:17;31126:47;31190:131;31316:4;31190:131;:::i;:::-;31182:139;;30909:419;;;:::o;31334:297::-;31474:34;31470:1;31462:6;31458:14;31451:58;31543:34;31538:2;31530:6;31526:15;31519:59;31612:11;31607:2;31599:6;31595:15;31588:36;31334:297;:::o;31637:366::-;31779:3;31800:67;31864:2;31859:3;31800:67;:::i;:::-;31793:74;;31876:93;31965:3;31876:93;:::i;:::-;31994:2;31989:3;31985:12;31978:19;;31637:366;;;:::o;32009:419::-;32175:4;32213:2;32202:9;32198:18;32190:26;;32262:9;32256:4;32252:20;32248:1;32237:9;32233:17;32226:47;32290:131;32416:4;32290:131;:::i;:::-;32282:139;;32009:419;;;:::o;32434:240::-;32574:34;32570:1;32562:6;32558:14;32551:58;32643:23;32638:2;32630:6;32626:15;32619:48;32434:240;:::o;32680:366::-;32822:3;32843:67;32907:2;32902:3;32843:67;:::i;:::-;32836:74;;32919:93;33008:3;32919:93;:::i;:::-;33037:2;33032:3;33028:12;33021:19;;32680:366;;;:::o;33052:419::-;33218:4;33256:2;33245:9;33241:18;33233:26;;33305:9;33299:4;33295:20;33291:1;33280:9;33276:17;33269:47;33333:131;33459:4;33333:131;:::i;:::-;33325:139;;33052:419;;;:::o;33477:169::-;33617:21;33613:1;33605:6;33601:14;33594:45;33477:169;:::o;33652:366::-;33794:3;33815:67;33879:2;33874:3;33815:67;:::i;:::-;33808:74;;33891:93;33980:3;33891:93;:::i;:::-;34009:2;34004:3;34000:12;33993:19;;33652:366;;;:::o;34024:419::-;34190:4;34228:2;34217:9;34213:18;34205:26;;34277:9;34271:4;34267:20;34263:1;34252:9;34248:17;34241:47;34305:131;34431:4;34305:131;:::i;:::-;34297:139;;34024:419;;;:::o;34449:241::-;34589:34;34585:1;34577:6;34573:14;34566:58;34658:24;34653:2;34645:6;34641:15;34634:49;34449:241;:::o;34696:366::-;34838:3;34859:67;34923:2;34918:3;34859:67;:::i;:::-;34852:74;;34935:93;35024:3;34935:93;:::i;:::-;35053:2;35048:3;35044:12;35037:19;;34696:366;;;:::o;35068:419::-;35234:4;35272:2;35261:9;35257:18;35249:26;;35321:9;35315:4;35311:20;35307:1;35296:9;35292:17;35285:47;35349:131;35475:4;35349:131;:::i;:::-;35341:139;;35068:419;;;:::o;35493:191::-;35533:4;35553:20;35571:1;35553:20;:::i;:::-;35548:25;;35587:20;35605:1;35587:20;:::i;:::-;35582:25;;35626:1;35623;35620:8;35617:34;;;35631:18;;:::i;:::-;35617:34;35676:1;35673;35669:9;35661:17;;35493:191;;;;:::o;35690:225::-;35830:34;35826:1;35818:6;35814:14;35807:58;35899:8;35894:2;35886:6;35882:15;35875:33;35690:225;:::o;35921:366::-;36063:3;36084:67;36148:2;36143:3;36084:67;:::i;:::-;36077:74;;36160:93;36249:3;36160:93;:::i;:::-;36278:2;36273:3;36269:12;36262:19;;35921:366;;;:::o;36293:419::-;36459:4;36497:2;36486:9;36482:18;36474:26;;36546:9;36540:4;36536:20;36532:1;36521:9;36517:17;36510:47;36574:131;36700:4;36574:131;:::i;:::-;36566:139;;36293:419;;;:::o;36718:147::-;36819:11;36856:3;36841:18;;36718:147;;;;:::o;36871:114::-;;:::o;36991:398::-;37150:3;37171:83;37252:1;37247:3;37171:83;:::i;:::-;37164:90;;37263:93;37352:3;37263:93;:::i;:::-;37381:1;37376:3;37372:11;37365:18;;36991:398;;;:::o;37395:379::-;37579:3;37601:147;37744:3;37601:147;:::i;:::-;37594:154;;37765:3;37758:10;;37395:379;;;:::o;37780:442::-;37929:4;37967:2;37956:9;37952:18;37944:26;;37980:71;38048:1;38037:9;38033:17;38024:6;37980:71;:::i;:::-;38061:72;38129:2;38118:9;38114:18;38105:6;38061:72;:::i;:::-;38143;38211:2;38200:9;38196:18;38187:6;38143:72;:::i;:::-;37780:442;;;;;;:::o;38228:180::-;38276:77;38273:1;38266:88;38373:4;38370:1;38363:15;38397:4;38394:1;38387:15;38414:180;38462:77;38459:1;38452:88;38559:4;38556:1;38549:15;38583:4;38580:1;38573:15;38600:143;38657:5;38688:6;38682:13;38673:22;;38704:33;38731:5;38704:33;:::i;:::-;38600:143;;;;:::o;38749:351::-;38819:6;38868:2;38856:9;38847:7;38843:23;38839:32;38836:119;;;38874:79;;:::i;:::-;38836:119;38994:1;39019:64;39075:7;39066:6;39055:9;39051:22;39019:64;:::i;:::-;39009:74;;38965:128;38749:351;;;;:::o;39106:85::-;39151:7;39180:5;39169:16;;39106:85;;;:::o;39197:158::-;39255:9;39288:61;39306:42;39315:32;39341:5;39315:32;:::i;:::-;39306:42;:::i;:::-;39288:61;:::i;:::-;39275:74;;39197:158;;;:::o;39361:147::-;39456:45;39495:5;39456:45;:::i;:::-;39451:3;39444:58;39361:147;;:::o;39514:114::-;39581:6;39615:5;39609:12;39599:22;;39514:114;;;:::o;39634:184::-;39733:11;39767:6;39762:3;39755:19;39807:4;39802:3;39798:14;39783:29;;39634:184;;;;:::o;39824:132::-;39891:4;39914:3;39906:11;;39944:4;39939:3;39935:14;39927:22;;39824:132;;;:::o;39962:108::-;40039:24;40057:5;40039:24;:::i;:::-;40034:3;40027:37;39962:108;;:::o;40076:179::-;40145:10;40166:46;40208:3;40200:6;40166:46;:::i;:::-;40244:4;40239:3;40235:14;40221:28;;40076:179;;;;:::o;40261:113::-;40331:4;40363;40358:3;40354:14;40346:22;;40261:113;;;:::o;40410:732::-;40529:3;40558:54;40606:5;40558:54;:::i;:::-;40628:86;40707:6;40702:3;40628:86;:::i;:::-;40621:93;;40738:56;40788:5;40738:56;:::i;:::-;40817:7;40848:1;40833:284;40858:6;40855:1;40852:13;40833:284;;;40934:6;40928:13;40961:63;41020:3;41005:13;40961:63;:::i;:::-;40954:70;;41047:60;41100:6;41047:60;:::i;:::-;41037:70;;40893:224;40880:1;40877;40873:9;40868:14;;40833:284;;;40837:14;41133:3;41126:10;;40534:608;;;40410:732;;;;:::o;41148:831::-;41411:4;41449:3;41438:9;41434:19;41426:27;;41463:71;41531:1;41520:9;41516:17;41507:6;41463:71;:::i;:::-;41544:80;41620:2;41609:9;41605:18;41596:6;41544:80;:::i;:::-;41671:9;41665:4;41661:20;41656:2;41645:9;41641:18;41634:48;41699:108;41802:4;41793:6;41699:108;:::i;:::-;41691:116;;41817:72;41885:2;41874:9;41870:18;41861:6;41817:72;:::i;:::-;41899:73;41967:3;41956:9;41952:19;41943:6;41899:73;:::i;:::-;41148:831;;;;;;;;:::o;41985:807::-;42234:4;42272:3;42261:9;42257:19;42249:27;;42286:71;42354:1;42343:9;42339:17;42330:6;42286:71;:::i;:::-;42367:72;42435:2;42424:9;42420:18;42411:6;42367:72;:::i;:::-;42449:80;42525:2;42514:9;42510:18;42501:6;42449:80;:::i;:::-;42539;42615:2;42604:9;42600:18;42591:6;42539:80;:::i;:::-;42629:73;42697:3;42686:9;42682:19;42673:6;42629:73;:::i;:::-;42712;42780:3;42769:9;42765:19;42756:6;42712:73;:::i;:::-;41985:807;;;;;;;;;:::o;42798:663::-;42886:6;42894;42902;42951:2;42939:9;42930:7;42926:23;42922:32;42919:119;;;42957:79;;:::i;:::-;42919:119;43077:1;43102:64;43158:7;43149:6;43138:9;43134:22;43102:64;:::i;:::-;43092:74;;43048:128;43215:2;43241:64;43297:7;43288:6;43277:9;43273:22;43241:64;:::i;:::-;43231:74;;43186:129;43354:2;43380:64;43436:7;43427:6;43416:9;43412:22;43380:64;:::i;:::-;43370:74;;43325:129;42798:663;;;;;:::o

Swarm Source

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