ETH Price: $2,447.71 (-0.89%)

Token

STUPID HALFHEARTED YAPPING TOXIC OBNOXIOUS SHORT H... (SHYTOSHI)
 

Overview

Max Total Supply

100,000,000 SHYTOSHI

Holders

20

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,400,000 SHYTOSHI

Value
$0.00
0xbc448373290f8436b047440a51c635866d37d800
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:
SHYTOSHI

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-08-17
*/

/**
TELEGRAM: https://t.me/shytoshiercportal
*/

// 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 SHYTOSHI 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 = 25; // 25 = .25%
    bool public lpBurnEnabled = false;
    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("STUPID HALFHEARTED YAPPING TOXIC OBNOXIOUS SHORT HEIGHTED INDIVIDUAL", "SHYTOSHI") {
        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 = 30;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 30;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount = 2_000_000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 2_000_000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

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

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

        marketingWallet = address(0xe7C2a610F7F0F604515a5F25F082385a15525e97); // set as marketing wallet
        devWallet = address(0xe7C2a610F7F0F604515a5F25F082385a15525e97); // set as dev wallet

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

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

        /*
            _mint is an internal function in ERC20.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;
    }

    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 <= 99, "Must keep fees at 11% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 99, "Must keep fees at 11% or less");
    }

    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"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b556000600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060800160405280604481526020016200692d604491396040518060400160405280600881526020017f534859544f53484900000000000000000000000000000000000000000000000081525081600390805190602001906200011292919062000af0565b5080600490805190602001906200012b92919062000af0565b5050506200014e62000142620005b060201b60201c565b620005b860201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200017a8160016200067e60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000220919062000c0a565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000288573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ae919062000c0a565b6040518363ffffffff1660e01b8152600401620002cd92919062000c4d565b6020604051808303816000875af1158015620002ed573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000313919062000c0a565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200035b60a05160016200067e60201b60201c565b6200037060a05160016200076860201b60201c565b6000601e90506000806000601e905060008060006a52b7d2dcc80cd2e400000090506a01a784379d99db420000006008819055506a01a784379d99db42000000600a81905550612710600a82620003c8919062000cb3565b620003d4919062000d43565b60098190555086601581905550856016819055508460178190555060175460165460155462000404919062000d7b565b62000410919062000d7b565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000440919062000d7b565b6200044c919062000d7b565b60188190555073e7c2a610f7f0f604515a5f25f082385a15525e97600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e7c2a610f7f0f604515a5f25f082385a15525e97600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200051e620005106200080960201b60201c565b60016200083360201b60201c565b620005313060016200083360201b60201c565b6200054661dead60016200083360201b60201c565b620005686200055a6200080960201b60201c565b60016200067e60201b60201c565b6200057b3060016200067e60201b60201c565b6200059061dead60016200067e60201b60201c565b620005a233826200096d60201b60201c565b505050505050505062000f9a565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200068e620005b060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006b46200080960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200070d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007049062000e39565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000843620005b060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008696200080960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008b99062000e39565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000961919062000e78565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009d79062000ee5565b60405180910390fd5b620009f46000838362000ae660201b60201c565b806002600082825462000a08919062000d7b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a5f919062000d7b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ac6919062000f18565b60405180910390a362000ae26000838362000aeb60201b60201c565b5050565b505050565b505050565b82805462000afe9062000f64565b90600052602060002090601f01602090048101928262000b22576000855562000b6e565b82601f1062000b3d57805160ff191683800117855562000b6e565b8280016001018555821562000b6e579182015b8281111562000b6d57825182559160200191906001019062000b50565b5b50905062000b7d919062000b81565b5090565b5b8082111562000b9c57600081600090555060010162000b82565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bd28262000ba5565b9050919050565b62000be48162000bc5565b811462000bf057600080fd5b50565b60008151905062000c048162000bd9565b92915050565b60006020828403121562000c235762000c2262000ba0565b5b600062000c338482850162000bf3565b91505092915050565b62000c478162000bc5565b82525050565b600060408201905062000c64600083018562000c3c565b62000c73602083018462000c3c565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cc08262000c7a565b915062000ccd8362000c7a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d095762000d0862000c84565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d508262000c7a565b915062000d5d8362000c7a565b92508262000d705762000d6f62000d14565b5b828204905092915050565b600062000d888262000c7a565b915062000d958362000c7a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000dcd5762000dcc62000c84565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e2160208362000dd8565b915062000e2e8262000de9565b602082019050919050565b6000602082019050818103600083015262000e548162000e12565b9050919050565b60008115159050919050565b62000e728162000e5b565b82525050565b600060208201905062000e8f600083018462000e67565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ecd601f8362000dd8565b915062000eda8262000e95565b602082019050919050565b6000602082019050818103600083015262000f008162000ebe565b9050919050565b62000f128162000c7a565b82525050565b600060208201905062000f2f600083018462000f07565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f7d57607f821691505b6020821081141562000f945762000f9362000f35565b5b50919050565b60805160a05161590b62001022600039600081816113a501528181611bb5015281816125aa015281816126610152818161268e01528181612cd201528181613dd601528181613e8f0152613ebc015260008181610f4801528181612c7a01528181614032015281816141130152818161413a015281816141d601526141fd015261590b6000f3fe6080604052600436106103a65760003560e01c80638a8c523c116101e7578063b62496f51161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610dbb578063f637434214610de4578063f8b45b0514610e0f578063fe72b27a14610e3a576103ad565b8063dd62ed3e14610cfd578063e2f4560514610d3a578063e884f26014610d65578063f11a24d314610d90576103ad565b8063c18bc195116100dc578063c18bc19514610c53578063c876d0b914610c7c578063c8c8ebe414610ca7578063d85ba06314610cd2576103ad565b8063b62496f514610b99578063bbc0c74214610bd6578063c024666814610c01578063c17b5b8c14610c2a576103ad565b80639c3b4fdc11610185578063a457c2d711610154578063a457c2d714610acb578063a4c82a0014610b08578063a9059cbb14610b33578063aacebbe314610b70576103ad565b80639c3b4fdc14610a1f5780639ec22c0e14610a4a5780639fccce3214610a75578063a0d82dc514610aa0576103ad565b806392136913116101c15780639213691314610977578063924de9b7146109a257806395d89b41146109cb5780639a7a23d6146109f6576103ad565b80638a8c523c1461090a5780638da5cb5b146109215780638ea5220f1461094c576103ad565b8063313ce567116102cc57806370a082311161026a5780637571336a116102395780637571336a1461086257806375f0a8741461088b5780637bce5a04146108b65780638095d564146108e1576103ad565b806370a08231146107ba578063715018a6146107f7578063730c18881461080e578063751039fc14610837576103ad565b80634a62bb65116102a65780634a62bb65146106fc5780634fbee193146107275780636a486a8e146107645780636ddd17131461078f576103ad565b8063313ce56714610669578063395093511461069457806349bd5a5e146106d1576103ad565b8063199ffc721161034457806323b872dd1161031357806323b872dd146105ab57806327c8f835146105e85780632c3e486c146106135780632e82f1a01461063e576103ad565b8063199ffc72146105015780631a8145bb1461052c5780631f3fed8f14610557578063203e727e14610582576103ad565b80631694505e116103805780631694505e1461045757806318160ddd146104825780631816467f146104ad578063184c16c5146104d6576103ad565b806306fdde03146103b2578063095ea7b3146103dd57806310d5de531461041a576103ad565b366103ad57005b600080fd5b3480156103be57600080fd5b506103c7610e77565b6040516103d49190614345565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190614400565b610f09565b604051610411919061445b565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190614476565b610f27565b60405161044e919061445b565b60405180910390f35b34801561046357600080fd5b5061046c610f46565b6040516104799190614502565b60405180910390f35b34801561048e57600080fd5b50610497610f6a565b6040516104a4919061452c565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190614476565b610f74565b005b3480156104e257600080fd5b506104eb6110b0565b6040516104f8919061452c565b60405180910390f35b34801561050d57600080fd5b506105166110b6565b604051610523919061452c565b60405180910390f35b34801561053857600080fd5b506105416110bc565b60405161054e919061452c565b60405180910390f35b34801561056357600080fd5b5061056c6110c2565b604051610579919061452c565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a49190614547565b6110c8565b005b3480156105b757600080fd5b506105d260048036038101906105cd9190614574565b6111d7565b6040516105df919061445b565b60405180910390f35b3480156105f457600080fd5b506105fd6112cf565b60405161060a91906145d6565b60405180910390f35b34801561061f57600080fd5b506106286112d5565b604051610635919061452c565b60405180910390f35b34801561064a57600080fd5b506106536112db565b604051610660919061445b565b60405180910390f35b34801561067557600080fd5b5061067e6112ee565b60405161068b919061460d565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190614400565b6112f7565b6040516106c8919061445b565b60405180910390f35b3480156106dd57600080fd5b506106e66113a3565b6040516106f391906145d6565b60405180910390f35b34801561070857600080fd5b506107116113c7565b60405161071e919061445b565b60405180910390f35b34801561073357600080fd5b5061074e60048036038101906107499190614476565b6113da565b60405161075b919061445b565b60405180910390f35b34801561077057600080fd5b50610779611430565b604051610786919061452c565b60405180910390f35b34801561079b57600080fd5b506107a4611436565b6040516107b1919061445b565b60405180910390f35b3480156107c657600080fd5b506107e160048036038101906107dc9190614476565b611449565b6040516107ee919061452c565b60405180910390f35b34801561080357600080fd5b5061080c611491565b005b34801561081a57600080fd5b5061083560048036038101906108309190614654565b611519565b005b34801561084357600080fd5b5061084c611659565b604051610859919061445b565b60405180910390f35b34801561086e57600080fd5b50610889600480360381019061088491906146a7565b6116f9565b005b34801561089757600080fd5b506108a06117d0565b6040516108ad91906145d6565b60405180910390f35b3480156108c257600080fd5b506108cb6117f6565b6040516108d8919061452c565b60405180910390f35b3480156108ed57600080fd5b50610908600480360381019061090391906146e7565b6117fc565b005b34801561091657600080fd5b5061091f6118fb565b005b34801561092d57600080fd5b506109366119b6565b60405161094391906145d6565b60405180910390f35b34801561095857600080fd5b506109616119e0565b60405161096e91906145d6565b60405180910390f35b34801561098357600080fd5b5061098c611a06565b604051610999919061452c565b60405180910390f35b3480156109ae57600080fd5b506109c960048036038101906109c4919061473a565b611a0c565b005b3480156109d757600080fd5b506109e0611aa5565b6040516109ed9190614345565b60405180910390f35b348015610a0257600080fd5b50610a1d6004803603810190610a1891906146a7565b611b37565b005b348015610a2b57600080fd5b50610a34611c50565b604051610a41919061452c565b60405180910390f35b348015610a5657600080fd5b50610a5f611c56565b604051610a6c919061452c565b60405180910390f35b348015610a8157600080fd5b50610a8a611c5c565b604051610a97919061452c565b60405180910390f35b348015610aac57600080fd5b50610ab5611c62565b604051610ac2919061452c565b60405180910390f35b348015610ad757600080fd5b50610af26004803603810190610aed9190614400565b611c68565b604051610aff919061445b565b60405180910390f35b348015610b1457600080fd5b50610b1d611d53565b604051610b2a919061452c565b60405180910390f35b348015610b3f57600080fd5b50610b5a6004803603810190610b559190614400565b611d59565b604051610b67919061445b565b60405180910390f35b348015610b7c57600080fd5b50610b976004803603810190610b929190614476565b611d77565b005b348015610ba557600080fd5b50610bc06004803603810190610bbb9190614476565b611eb3565b604051610bcd919061445b565b60405180910390f35b348015610be257600080fd5b50610beb611ed3565b604051610bf8919061445b565b60405180910390f35b348015610c0d57600080fd5b50610c286004803603810190610c2391906146a7565b611ee6565b005b348015610c3657600080fd5b50610c516004803603810190610c4c91906146e7565b61200b565b005b348015610c5f57600080fd5b50610c7a6004803603810190610c759190614547565b61210a565b005b348015610c8857600080fd5b50610c91612219565b604051610c9e919061445b565b60405180910390f35b348015610cb357600080fd5b50610cbc61222c565b604051610cc9919061452c565b60405180910390f35b348015610cde57600080fd5b50610ce7612232565b604051610cf4919061452c565b60405180910390f35b348015610d0957600080fd5b50610d246004803603810190610d1f9190614767565b612238565b604051610d31919061452c565b60405180910390f35b348015610d4657600080fd5b50610d4f6122bf565b604051610d5c919061452c565b60405180910390f35b348015610d7157600080fd5b50610d7a6122c5565b604051610d87919061445b565b60405180910390f35b348015610d9c57600080fd5b50610da5612365565b604051610db2919061452c565b60405180910390f35b348015610dc757600080fd5b50610de26004803603810190610ddd9190614476565b61236b565b005b348015610df057600080fd5b50610df9612463565b604051610e06919061452c565b60405180910390f35b348015610e1b57600080fd5b50610e24612469565b604051610e31919061452c565b60405180910390f35b348015610e4657600080fd5b50610e616004803603810190610e5c9190614547565b61246f565b604051610e6e919061445b565b60405180910390f35b606060038054610e86906147d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb2906147d6565b8015610eff5780601f10610ed457610100808354040283529160200191610eff565b820191906000526020600020905b815481529060010190602001808311610ee257829003601f168201915b5050505050905090565b6000610f1d610f16612747565b848461274f565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610f7c612747565b73ffffffffffffffffffffffffffffffffffffffff16610f9a6119b6565b73ffffffffffffffffffffffffffffffffffffffff1614610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe790614854565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110d0612747565b73ffffffffffffffffffffffffffffffffffffffff166110ee6119b6565b73ffffffffffffffffffffffffffffffffffffffff1614611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b90614854565b60405180910390fd5b670de0b6b3a76400006103e8600161115a610f6a565b61116491906148a3565b61116e919061492c565b611178919061492c565b8110156111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b1906149cf565b60405180910390fd5b670de0b6b3a7640000816111ce91906148a3565b60088190555050565b60006111e484848461291a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061122f612747565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690614a61565b60405180910390fd5b6112c3856112bb612747565b85840361274f565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b6000611399611304612747565b848460016000611312612747565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113949190614a81565b61274f565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611499612747565b73ffffffffffffffffffffffffffffffffffffffff166114b76119b6565b73ffffffffffffffffffffffffffffffffffffffff161461150d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150490614854565b60405180910390fd5b61151760006136b2565b565b611521612747565b73ffffffffffffffffffffffffffffffffffffffff1661153f6119b6565b73ffffffffffffffffffffffffffffffffffffffff1614611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90614854565b60405180910390fd5b6102588310156115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d190614b49565b60405180910390fd5b6103e882111580156115ed575060008210155b61162c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162390614bdb565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b6000611663612747565b73ffffffffffffffffffffffffffffffffffffffff166116816119b6565b73ffffffffffffffffffffffffffffffffffffffff16146116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90614854565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b611701612747565b73ffffffffffffffffffffffffffffffffffffffff1661171f6119b6565b73ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90614854565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b611804612747565b73ffffffffffffffffffffffffffffffffffffffff166118226119b6565b73ffffffffffffffffffffffffffffffffffffffff1614611878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186f90614854565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118a09190614a81565b6118aa9190614a81565b601481905550606360145411156118f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ed90614c47565b60405180910390fd5b505050565b611903612747565b73ffffffffffffffffffffffffffffffffffffffff166119216119b6565b73ffffffffffffffffffffffffffffffffffffffff1614611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e90614854565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a14612747565b73ffffffffffffffffffffffffffffffffffffffff16611a326119b6565b73ffffffffffffffffffffffffffffffffffffffff1614611a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7f90614854565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611ab4906147d6565b80601f0160208091040260200160405190810160405280929190818152602001828054611ae0906147d6565b8015611b2d5780601f10611b0257610100808354040283529160200191611b2d565b820191906000526020600020905b815481529060010190602001808311611b1057829003601f168201915b5050505050905090565b611b3f612747565b73ffffffffffffffffffffffffffffffffffffffff16611b5d6119b6565b73ffffffffffffffffffffffffffffffffffffffff1614611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa90614854565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3990614cd9565b60405180910390fd5b611c4c8282613778565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611c77612747565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2b90614d6b565b60405180910390fd5b611d48611d3f612747565b8585840361274f565b600191505092915050565b600e5481565b6000611d6d611d66612747565b848461291a565b6001905092915050565b611d7f612747565b73ffffffffffffffffffffffffffffffffffffffff16611d9d6119b6565b73ffffffffffffffffffffffffffffffffffffffff1614611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea90614854565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611eee612747565b73ffffffffffffffffffffffffffffffffffffffff16611f0c6119b6565b73ffffffffffffffffffffffffffffffffffffffff1614611f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5990614854565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fff919061445b565b60405180910390a25050565b612013612747565b73ffffffffffffffffffffffffffffffffffffffff166120316119b6565b73ffffffffffffffffffffffffffffffffffffffff1614612087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207e90614854565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120af9190614a81565b6120b99190614a81565b60188190555060636018541115612105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fc90614c47565b60405180910390fd5b505050565b612112612747565b73ffffffffffffffffffffffffffffffffffffffff166121306119b6565b73ffffffffffffffffffffffffffffffffffffffff1614612186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217d90614854565b60405180910390fd5b670de0b6b3a76400006103e8600561219c610f6a565b6121a691906148a3565b6121b0919061492c565b6121ba919061492c565b8110156121fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f390614dfd565b60405180910390fd5b670de0b6b3a76400008161221091906148a3565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006122cf612747565b73ffffffffffffffffffffffffffffffffffffffff166122ed6119b6565b73ffffffffffffffffffffffffffffffffffffffff1614612343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233a90614854565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b612373612747565b73ffffffffffffffffffffffffffffffffffffffff166123916119b6565b73ffffffffffffffffffffffffffffffffffffffff16146123e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123de90614854565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244e90614e8f565b60405180910390fd5b612460816136b2565b50565b601a5481565b600a5481565b6000612479612747565b73ffffffffffffffffffffffffffffffffffffffff166124976119b6565b73ffffffffffffffffffffffffffffffffffffffff16146124ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e490614854565b60405180910390fd5b600f546010546124fd9190614a81565b421161253e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253590614efb565b60405180910390fd5b6103e8821115612583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257a90614f8d565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016125e591906145d6565b602060405180830381865afa158015612602573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126269190614fc2565b90506000612651612710612643868561381990919063ffffffff16565b61382f90919063ffffffff16565b9050600081111561268a576126897f000000000000000000000000000000000000000000000000000000000000000061dead83613845565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156126f757600080fd5b505af115801561270b573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b690615061565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561282f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612826906150f3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161290d919061452c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561298a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298190615185565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f190615217565b60405180910390fd5b6000811415612a1457612a0f83836000613845565b6136ad565b601160009054906101000a900460ff16156130d757612a316119b6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a9f5750612a6f6119b6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ad85750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b12575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b2b5750600560149054906101000a900460ff16155b156130d657601160019054906101000a900460ff16612c2557601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612be55750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1b90615283565b60405180910390fd5b5b601360009054906101000a900460ff1615612ded57612c426119b6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612cc957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d2157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612dec5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9e9061533b565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e905750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f3757600854811115612eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed1906153cd565b60405180910390fd5b600a54612ee683611449565b82612ef19190614a81565b1115612f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2990615439565b60405180910390fd5b6130d5565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fda5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561302957600854811115613024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301b906154cb565b60405180910390fd5b6130d4565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166130d357600a5461308683611449565b826130919190614a81565b11156130d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c990615439565b60405180910390fd5b5b5b5b5b5b60006130e230611449565b9050600060095482101590508080156131075750601160029054906101000a900460ff165b80156131205750600560149054906101000a900460ff16155b80156131765750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131cc5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132225750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613266576001600560146101000a81548160ff02191690831515021790555061324a613ac6565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156132cc5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156132e45750600c60009054906101000a900460ff165b80156132ff5750600d54600e546132fb9190614a81565b4210155b80156133555750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561336457613362613dad565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061341a5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561342457600090505b6000811561369d57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561348757506000601854115b15613554576134b460646134a66018548861381990919063ffffffff16565b61382f90919063ffffffff16565b9050601854601a54826134c791906148a3565b6134d1919061492c565b601d60008282546134e29190614a81565b92505081905550601854601b54826134fa91906148a3565b613504919061492c565b601e60008282546135159190614a81565b925050819055506018546019548261352d91906148a3565b613537919061492c565b601c60008282546135489190614a81565b92505081905550613679565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135af57506000601454115b15613678576135dc60646135ce6014548861381990919063ffffffff16565b61382f90919063ffffffff16565b9050601454601654826135ef91906148a3565b6135f9919061492c565b601d600082825461360a9190614a81565b925050819055506014546017548261362291906148a3565b61362c919061492c565b601e600082825461363d9190614a81565b925050819055506014546015548261365591906148a3565b61365f919061492c565b601c60008282546136709190614a81565b925050819055505b5b600081111561368e5761368d873083613845565b5b808561369a91906154eb565b94505b6136a8878787613845565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361382791906148a3565b905092915050565b6000818361383d919061492c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156138b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ac90615185565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161391c90615217565b60405180910390fd5b613930838383613f73565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156139b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139ad90615591565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a499190614a81565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613aad919061452c565b60405180910390a3613ac0848484613f78565b50505050565b6000613ad130611449565b90506000601e54601c54601d54613ae89190614a81565b613af29190614a81565b9050600080831480613b045750600082145b15613b1157505050613dab565b6014600954613b2091906148a3565b831115613b39576014600954613b3691906148a3565b92505b6000600283601d5486613b4c91906148a3565b613b56919061492c565b613b60919061492c565b90506000613b778286613f7d90919063ffffffff16565b90506000479050613b8782613f93565b6000613b9c8247613f7d90919063ffffffff16565b90506000613bc787613bb9601c548561381990919063ffffffff16565b61382f90919063ffffffff16565b90506000613bf288613be4601e548661381990919063ffffffff16565b61382f90919063ffffffff16565b90506000818385613c0391906154eb565b613c0d91906154eb565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c6d906155e2565b60006040518083038185875af1925050503d8060008114613caa576040519150601f19603f3d011682016040523d82523d6000602084013e613caf565b606091505b505080985050600087118015613cc55750600081115b15613d1257613cd487826141d0565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613d09939291906155f7565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613d58906155e2565b60006040518083038185875af1925050503d8060008114613d95576040519150601f19603f3d011682016040523d82523d6000602084013e613d9a565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613e1191906145d6565b602060405180830381865afa158015613e2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e529190614fc2565b90506000613e7f612710613e71600b548561381990919063ffffffff16565b61382f90919063ffffffff16565b90506000811115613eb857613eb77f000000000000000000000000000000000000000000000000000000000000000061dead83613845565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613f2557600080fd5b505af1158015613f39573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613f8b91906154eb565b905092915050565b6000600267ffffffffffffffff811115613fb057613faf61562e565b5b604051908082528060200260200182016040528015613fde5781602001602082028036833780820191505090505b5090503081600081518110613ff657613ff561565d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561409b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140bf91906156a1565b816001815181106140d3576140d261565d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614138307f00000000000000000000000000000000000000000000000000000000000000008461274f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161419a9594939291906157c7565b600060405180830381600087803b1580156141b457600080fd5b505af11580156141c8573d6000803e3d6000fd5b505050505050565b6141fb307f00000000000000000000000000000000000000000000000000000000000000008461274f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161426296959493929190615821565b60606040518083038185885af1158015614280573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142a59190615882565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156142e65780820151818401526020810190506142cb565b838111156142f5576000848401525b50505050565b6000601f19601f8301169050919050565b6000614317826142ac565b61432181856142b7565b93506143318185602086016142c8565b61433a816142fb565b840191505092915050565b6000602082019050818103600083015261435f818461430c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006143978261436c565b9050919050565b6143a78161438c565b81146143b257600080fd5b50565b6000813590506143c48161439e565b92915050565b6000819050919050565b6143dd816143ca565b81146143e857600080fd5b50565b6000813590506143fa816143d4565b92915050565b6000806040838503121561441757614416614367565b5b6000614425858286016143b5565b9250506020614436858286016143eb565b9150509250929050565b60008115159050919050565b61445581614440565b82525050565b6000602082019050614470600083018461444c565b92915050565b60006020828403121561448c5761448b614367565b5b600061449a848285016143b5565b91505092915050565b6000819050919050565b60006144c86144c36144be8461436c565b6144a3565b61436c565b9050919050565b60006144da826144ad565b9050919050565b60006144ec826144cf565b9050919050565b6144fc816144e1565b82525050565b600060208201905061451760008301846144f3565b92915050565b614526816143ca565b82525050565b6000602082019050614541600083018461451d565b92915050565b60006020828403121561455d5761455c614367565b5b600061456b848285016143eb565b91505092915050565b60008060006060848603121561458d5761458c614367565b5b600061459b868287016143b5565b93505060206145ac868287016143b5565b92505060406145bd868287016143eb565b9150509250925092565b6145d08161438c565b82525050565b60006020820190506145eb60008301846145c7565b92915050565b600060ff82169050919050565b614607816145f1565b82525050565b600060208201905061462260008301846145fe565b92915050565b61463181614440565b811461463c57600080fd5b50565b60008135905061464e81614628565b92915050565b60008060006060848603121561466d5761466c614367565b5b600061467b868287016143eb565b935050602061468c868287016143eb565b925050604061469d8682870161463f565b9150509250925092565b600080604083850312156146be576146bd614367565b5b60006146cc858286016143b5565b92505060206146dd8582860161463f565b9150509250929050565b600080600060608486031215614700576146ff614367565b5b600061470e868287016143eb565b935050602061471f868287016143eb565b9250506040614730868287016143eb565b9150509250925092565b6000602082840312156147505761474f614367565b5b600061475e8482850161463f565b91505092915050565b6000806040838503121561477e5761477d614367565b5b600061478c858286016143b5565b925050602061479d858286016143b5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806147ee57607f821691505b60208210811415614802576148016147a7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061483e6020836142b7565b915061484982614808565b602082019050919050565b6000602082019050818103600083015261486d81614831565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006148ae826143ca565b91506148b9836143ca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148f2576148f1614874565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614937826143ca565b9150614942836143ca565b925082614952576149516148fd565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006149b9602f836142b7565b91506149c48261495d565b604082019050919050565b600060208201905081810360008301526149e8816149ac565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614a4b6028836142b7565b9150614a56826149ef565b604082019050919050565b60006020820190508181036000830152614a7a81614a3e565b9050919050565b6000614a8c826143ca565b9150614a97836143ca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614acc57614acb614874565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614b336033836142b7565b9150614b3e82614ad7565b604082019050919050565b60006020820190508181036000830152614b6281614b26565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614bc56030836142b7565b9150614bd082614b69565b604082019050919050565b60006020820190508181036000830152614bf481614bb8565b9050919050565b7f4d757374206b656570206665657320617420313125206f72206c657373000000600082015250565b6000614c31601d836142b7565b9150614c3c82614bfb565b602082019050919050565b60006020820190508181036000830152614c6081614c24565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614cc36039836142b7565b9150614cce82614c67565b604082019050919050565b60006020820190508181036000830152614cf281614cb6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614d556025836142b7565b9150614d6082614cf9565b604082019050919050565b60006020820190508181036000830152614d8481614d48565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614de76024836142b7565b9150614df282614d8b565b604082019050919050565b60006020820190508181036000830152614e1681614dda565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e796026836142b7565b9150614e8482614e1d565b604082019050919050565b60006020820190508181036000830152614ea881614e6c565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614ee56020836142b7565b9150614ef082614eaf565b602082019050919050565b60006020820190508181036000830152614f1481614ed8565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614f77602a836142b7565b9150614f8282614f1b565b604082019050919050565b60006020820190508181036000830152614fa681614f6a565b9050919050565b600081519050614fbc816143d4565b92915050565b600060208284031215614fd857614fd7614367565b5b6000614fe684828501614fad565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061504b6024836142b7565b915061505682614fef565b604082019050919050565b6000602082019050818103600083015261507a8161503e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006150dd6022836142b7565b91506150e882615081565b604082019050919050565b6000602082019050818103600083015261510c816150d0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061516f6025836142b7565b915061517a82615113565b604082019050919050565b6000602082019050818103600083015261519e81615162565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152016023836142b7565b915061520c826151a5565b604082019050919050565b60006020820190508181036000830152615230816151f4565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061526d6016836142b7565b915061527882615237565b602082019050919050565b6000602082019050818103600083015261529c81615260565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006153256049836142b7565b9150615330826152a3565b606082019050919050565b6000602082019050818103600083015261535481615318565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006153b76035836142b7565b91506153c28261535b565b604082019050919050565b600060208201905081810360008301526153e6816153aa565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006154236013836142b7565b915061542e826153ed565b602082019050919050565b6000602082019050818103600083015261545281615416565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006154b56036836142b7565b91506154c082615459565b604082019050919050565b600060208201905081810360008301526154e4816154a8565b9050919050565b60006154f6826143ca565b9150615501836143ca565b92508282101561551457615513614874565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061557b6026836142b7565b91506155868261551f565b604082019050919050565b600060208201905081810360008301526155aa8161556e565b9050919050565b600081905092915050565b50565b60006155cc6000836155b1565b91506155d7826155bc565b600082019050919050565b60006155ed826155bf565b9150819050919050565b600060608201905061560c600083018661451d565b615619602083018561451d565b615626604083018461451d565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061569b8161439e565b92915050565b6000602082840312156156b7576156b6614367565b5b60006156c58482850161568c565b91505092915050565b6000819050919050565b60006156f36156ee6156e9846156ce565b6144a3565b6143ca565b9050919050565b615703816156d8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61573e8161438c565b82525050565b60006157508383615735565b60208301905092915050565b6000602082019050919050565b600061577482615709565b61577e8185615714565b935061578983615725565b8060005b838110156157ba5781516157a18882615744565b97506157ac8361575c565b92505060018101905061578d565b5085935050505092915050565b600060a0820190506157dc600083018861451d565b6157e960208301876156fa565b81810360408301526157fb8186615769565b905061580a60608301856145c7565b615817608083018461451d565b9695505050505050565b600060c08201905061583660008301896145c7565b615843602083018861451d565b61585060408301876156fa565b61585d60608301866156fa565b61586a60808301856145c7565b61587760a083018461451d565b979650505050505050565b60008060006060848603121561589b5761589a614367565b5b60006158a986828701614fad565b93505060206158ba86828701614fad565b92505060406158cb86828701614fad565b915050925092509256fea26469706673582212204a44de016fad2dcddddff3c3cdc757f08c452efd12505b37705a6b4d1e80f79264736f6c634300080a00335354555049442048414c46484541525445442059415050494e4720544f584943204f424e4f58494f55532053484f525420484549474854454420494e444956494455414c

Deployed Bytecode

0x6080604052600436106103a65760003560e01c80638a8c523c116101e7578063b62496f51161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610dbb578063f637434214610de4578063f8b45b0514610e0f578063fe72b27a14610e3a576103ad565b8063dd62ed3e14610cfd578063e2f4560514610d3a578063e884f26014610d65578063f11a24d314610d90576103ad565b8063c18bc195116100dc578063c18bc19514610c53578063c876d0b914610c7c578063c8c8ebe414610ca7578063d85ba06314610cd2576103ad565b8063b62496f514610b99578063bbc0c74214610bd6578063c024666814610c01578063c17b5b8c14610c2a576103ad565b80639c3b4fdc11610185578063a457c2d711610154578063a457c2d714610acb578063a4c82a0014610b08578063a9059cbb14610b33578063aacebbe314610b70576103ad565b80639c3b4fdc14610a1f5780639ec22c0e14610a4a5780639fccce3214610a75578063a0d82dc514610aa0576103ad565b806392136913116101c15780639213691314610977578063924de9b7146109a257806395d89b41146109cb5780639a7a23d6146109f6576103ad565b80638a8c523c1461090a5780638da5cb5b146109215780638ea5220f1461094c576103ad565b8063313ce567116102cc57806370a082311161026a5780637571336a116102395780637571336a1461086257806375f0a8741461088b5780637bce5a04146108b65780638095d564146108e1576103ad565b806370a08231146107ba578063715018a6146107f7578063730c18881461080e578063751039fc14610837576103ad565b80634a62bb65116102a65780634a62bb65146106fc5780634fbee193146107275780636a486a8e146107645780636ddd17131461078f576103ad565b8063313ce56714610669578063395093511461069457806349bd5a5e146106d1576103ad565b8063199ffc721161034457806323b872dd1161031357806323b872dd146105ab57806327c8f835146105e85780632c3e486c146106135780632e82f1a01461063e576103ad565b8063199ffc72146105015780631a8145bb1461052c5780631f3fed8f14610557578063203e727e14610582576103ad565b80631694505e116103805780631694505e1461045757806318160ddd146104825780631816467f146104ad578063184c16c5146104d6576103ad565b806306fdde03146103b2578063095ea7b3146103dd57806310d5de531461041a576103ad565b366103ad57005b600080fd5b3480156103be57600080fd5b506103c7610e77565b6040516103d49190614345565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190614400565b610f09565b604051610411919061445b565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190614476565b610f27565b60405161044e919061445b565b60405180910390f35b34801561046357600080fd5b5061046c610f46565b6040516104799190614502565b60405180910390f35b34801561048e57600080fd5b50610497610f6a565b6040516104a4919061452c565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190614476565b610f74565b005b3480156104e257600080fd5b506104eb6110b0565b6040516104f8919061452c565b60405180910390f35b34801561050d57600080fd5b506105166110b6565b604051610523919061452c565b60405180910390f35b34801561053857600080fd5b506105416110bc565b60405161054e919061452c565b60405180910390f35b34801561056357600080fd5b5061056c6110c2565b604051610579919061452c565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a49190614547565b6110c8565b005b3480156105b757600080fd5b506105d260048036038101906105cd9190614574565b6111d7565b6040516105df919061445b565b60405180910390f35b3480156105f457600080fd5b506105fd6112cf565b60405161060a91906145d6565b60405180910390f35b34801561061f57600080fd5b506106286112d5565b604051610635919061452c565b60405180910390f35b34801561064a57600080fd5b506106536112db565b604051610660919061445b565b60405180910390f35b34801561067557600080fd5b5061067e6112ee565b60405161068b919061460d565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190614400565b6112f7565b6040516106c8919061445b565b60405180910390f35b3480156106dd57600080fd5b506106e66113a3565b6040516106f391906145d6565b60405180910390f35b34801561070857600080fd5b506107116113c7565b60405161071e919061445b565b60405180910390f35b34801561073357600080fd5b5061074e60048036038101906107499190614476565b6113da565b60405161075b919061445b565b60405180910390f35b34801561077057600080fd5b50610779611430565b604051610786919061452c565b60405180910390f35b34801561079b57600080fd5b506107a4611436565b6040516107b1919061445b565b60405180910390f35b3480156107c657600080fd5b506107e160048036038101906107dc9190614476565b611449565b6040516107ee919061452c565b60405180910390f35b34801561080357600080fd5b5061080c611491565b005b34801561081a57600080fd5b5061083560048036038101906108309190614654565b611519565b005b34801561084357600080fd5b5061084c611659565b604051610859919061445b565b60405180910390f35b34801561086e57600080fd5b50610889600480360381019061088491906146a7565b6116f9565b005b34801561089757600080fd5b506108a06117d0565b6040516108ad91906145d6565b60405180910390f35b3480156108c257600080fd5b506108cb6117f6565b6040516108d8919061452c565b60405180910390f35b3480156108ed57600080fd5b50610908600480360381019061090391906146e7565b6117fc565b005b34801561091657600080fd5b5061091f6118fb565b005b34801561092d57600080fd5b506109366119b6565b60405161094391906145d6565b60405180910390f35b34801561095857600080fd5b506109616119e0565b60405161096e91906145d6565b60405180910390f35b34801561098357600080fd5b5061098c611a06565b604051610999919061452c565b60405180910390f35b3480156109ae57600080fd5b506109c960048036038101906109c4919061473a565b611a0c565b005b3480156109d757600080fd5b506109e0611aa5565b6040516109ed9190614345565b60405180910390f35b348015610a0257600080fd5b50610a1d6004803603810190610a1891906146a7565b611b37565b005b348015610a2b57600080fd5b50610a34611c50565b604051610a41919061452c565b60405180910390f35b348015610a5657600080fd5b50610a5f611c56565b604051610a6c919061452c565b60405180910390f35b348015610a8157600080fd5b50610a8a611c5c565b604051610a97919061452c565b60405180910390f35b348015610aac57600080fd5b50610ab5611c62565b604051610ac2919061452c565b60405180910390f35b348015610ad757600080fd5b50610af26004803603810190610aed9190614400565b611c68565b604051610aff919061445b565b60405180910390f35b348015610b1457600080fd5b50610b1d611d53565b604051610b2a919061452c565b60405180910390f35b348015610b3f57600080fd5b50610b5a6004803603810190610b559190614400565b611d59565b604051610b67919061445b565b60405180910390f35b348015610b7c57600080fd5b50610b976004803603810190610b929190614476565b611d77565b005b348015610ba557600080fd5b50610bc06004803603810190610bbb9190614476565b611eb3565b604051610bcd919061445b565b60405180910390f35b348015610be257600080fd5b50610beb611ed3565b604051610bf8919061445b565b60405180910390f35b348015610c0d57600080fd5b50610c286004803603810190610c2391906146a7565b611ee6565b005b348015610c3657600080fd5b50610c516004803603810190610c4c91906146e7565b61200b565b005b348015610c5f57600080fd5b50610c7a6004803603810190610c759190614547565b61210a565b005b348015610c8857600080fd5b50610c91612219565b604051610c9e919061445b565b60405180910390f35b348015610cb357600080fd5b50610cbc61222c565b604051610cc9919061452c565b60405180910390f35b348015610cde57600080fd5b50610ce7612232565b604051610cf4919061452c565b60405180910390f35b348015610d0957600080fd5b50610d246004803603810190610d1f9190614767565b612238565b604051610d31919061452c565b60405180910390f35b348015610d4657600080fd5b50610d4f6122bf565b604051610d5c919061452c565b60405180910390f35b348015610d7157600080fd5b50610d7a6122c5565b604051610d87919061445b565b60405180910390f35b348015610d9c57600080fd5b50610da5612365565b604051610db2919061452c565b60405180910390f35b348015610dc757600080fd5b50610de26004803603810190610ddd9190614476565b61236b565b005b348015610df057600080fd5b50610df9612463565b604051610e06919061452c565b60405180910390f35b348015610e1b57600080fd5b50610e24612469565b604051610e31919061452c565b60405180910390f35b348015610e4657600080fd5b50610e616004803603810190610e5c9190614547565b61246f565b604051610e6e919061445b565b60405180910390f35b606060038054610e86906147d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb2906147d6565b8015610eff5780601f10610ed457610100808354040283529160200191610eff565b820191906000526020600020905b815481529060010190602001808311610ee257829003601f168201915b5050505050905090565b6000610f1d610f16612747565b848461274f565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610f7c612747565b73ffffffffffffffffffffffffffffffffffffffff16610f9a6119b6565b73ffffffffffffffffffffffffffffffffffffffff1614610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe790614854565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110d0612747565b73ffffffffffffffffffffffffffffffffffffffff166110ee6119b6565b73ffffffffffffffffffffffffffffffffffffffff1614611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b90614854565b60405180910390fd5b670de0b6b3a76400006103e8600161115a610f6a565b61116491906148a3565b61116e919061492c565b611178919061492c565b8110156111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b1906149cf565b60405180910390fd5b670de0b6b3a7640000816111ce91906148a3565b60088190555050565b60006111e484848461291a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061122f612747565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690614a61565b60405180910390fd5b6112c3856112bb612747565b85840361274f565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b6000611399611304612747565b848460016000611312612747565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113949190614a81565b61274f565b6001905092915050565b7f000000000000000000000000a82d5ee84bb5f25c720881f5fb7277b90f5edf0b81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611499612747565b73ffffffffffffffffffffffffffffffffffffffff166114b76119b6565b73ffffffffffffffffffffffffffffffffffffffff161461150d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150490614854565b60405180910390fd5b61151760006136b2565b565b611521612747565b73ffffffffffffffffffffffffffffffffffffffff1661153f6119b6565b73ffffffffffffffffffffffffffffffffffffffff1614611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90614854565b60405180910390fd5b6102588310156115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d190614b49565b60405180910390fd5b6103e882111580156115ed575060008210155b61162c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162390614bdb565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b6000611663612747565b73ffffffffffffffffffffffffffffffffffffffff166116816119b6565b73ffffffffffffffffffffffffffffffffffffffff16146116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90614854565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b611701612747565b73ffffffffffffffffffffffffffffffffffffffff1661171f6119b6565b73ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90614854565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b611804612747565b73ffffffffffffffffffffffffffffffffffffffff166118226119b6565b73ffffffffffffffffffffffffffffffffffffffff1614611878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186f90614854565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118a09190614a81565b6118aa9190614a81565b601481905550606360145411156118f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ed90614c47565b60405180910390fd5b505050565b611903612747565b73ffffffffffffffffffffffffffffffffffffffff166119216119b6565b73ffffffffffffffffffffffffffffffffffffffff1614611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e90614854565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a14612747565b73ffffffffffffffffffffffffffffffffffffffff16611a326119b6565b73ffffffffffffffffffffffffffffffffffffffff1614611a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7f90614854565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611ab4906147d6565b80601f0160208091040260200160405190810160405280929190818152602001828054611ae0906147d6565b8015611b2d5780601f10611b0257610100808354040283529160200191611b2d565b820191906000526020600020905b815481529060010190602001808311611b1057829003601f168201915b5050505050905090565b611b3f612747565b73ffffffffffffffffffffffffffffffffffffffff16611b5d6119b6565b73ffffffffffffffffffffffffffffffffffffffff1614611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa90614854565b60405180910390fd5b7f000000000000000000000000a82d5ee84bb5f25c720881f5fb7277b90f5edf0b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3990614cd9565b60405180910390fd5b611c4c8282613778565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611c77612747565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2b90614d6b565b60405180910390fd5b611d48611d3f612747565b8585840361274f565b600191505092915050565b600e5481565b6000611d6d611d66612747565b848461291a565b6001905092915050565b611d7f612747565b73ffffffffffffffffffffffffffffffffffffffff16611d9d6119b6565b73ffffffffffffffffffffffffffffffffffffffff1614611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea90614854565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611eee612747565b73ffffffffffffffffffffffffffffffffffffffff16611f0c6119b6565b73ffffffffffffffffffffffffffffffffffffffff1614611f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5990614854565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fff919061445b565b60405180910390a25050565b612013612747565b73ffffffffffffffffffffffffffffffffffffffff166120316119b6565b73ffffffffffffffffffffffffffffffffffffffff1614612087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207e90614854565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120af9190614a81565b6120b99190614a81565b60188190555060636018541115612105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fc90614c47565b60405180910390fd5b505050565b612112612747565b73ffffffffffffffffffffffffffffffffffffffff166121306119b6565b73ffffffffffffffffffffffffffffffffffffffff1614612186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217d90614854565b60405180910390fd5b670de0b6b3a76400006103e8600561219c610f6a565b6121a691906148a3565b6121b0919061492c565b6121ba919061492c565b8110156121fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f390614dfd565b60405180910390fd5b670de0b6b3a76400008161221091906148a3565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006122cf612747565b73ffffffffffffffffffffffffffffffffffffffff166122ed6119b6565b73ffffffffffffffffffffffffffffffffffffffff1614612343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233a90614854565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b612373612747565b73ffffffffffffffffffffffffffffffffffffffff166123916119b6565b73ffffffffffffffffffffffffffffffffffffffff16146123e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123de90614854565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244e90614e8f565b60405180910390fd5b612460816136b2565b50565b601a5481565b600a5481565b6000612479612747565b73ffffffffffffffffffffffffffffffffffffffff166124976119b6565b73ffffffffffffffffffffffffffffffffffffffff16146124ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e490614854565b60405180910390fd5b600f546010546124fd9190614a81565b421161253e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253590614efb565b60405180910390fd5b6103e8821115612583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257a90614f8d565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000a82d5ee84bb5f25c720881f5fb7277b90f5edf0b6040518263ffffffff1660e01b81526004016125e591906145d6565b602060405180830381865afa158015612602573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126269190614fc2565b90506000612651612710612643868561381990919063ffffffff16565b61382f90919063ffffffff16565b9050600081111561268a576126897f000000000000000000000000a82d5ee84bb5f25c720881f5fb7277b90f5edf0b61dead83613845565b5b60007f000000000000000000000000a82d5ee84bb5f25c720881f5fb7277b90f5edf0b90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156126f757600080fd5b505af115801561270b573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b690615061565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561282f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612826906150f3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161290d919061452c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561298a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298190615185565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f190615217565b60405180910390fd5b6000811415612a1457612a0f83836000613845565b6136ad565b601160009054906101000a900460ff16156130d757612a316119b6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a9f5750612a6f6119b6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ad85750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b12575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b2b5750600560149054906101000a900460ff16155b156130d657601160019054906101000a900460ff16612c2557601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612be55750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1b90615283565b60405180910390fd5b5b601360009054906101000a900460ff1615612ded57612c426119b6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612cc957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d2157507f000000000000000000000000a82d5ee84bb5f25c720881f5fb7277b90f5edf0b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612dec5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9e9061533b565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e905750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f3757600854811115612eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed1906153cd565b60405180910390fd5b600a54612ee683611449565b82612ef19190614a81565b1115612f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2990615439565b60405180910390fd5b6130d5565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fda5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561302957600854811115613024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301b906154cb565b60405180910390fd5b6130d4565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166130d357600a5461308683611449565b826130919190614a81565b11156130d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c990615439565b60405180910390fd5b5b5b5b5b5b60006130e230611449565b9050600060095482101590508080156131075750601160029054906101000a900460ff165b80156131205750600560149054906101000a900460ff16155b80156131765750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131cc5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132225750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613266576001600560146101000a81548160ff02191690831515021790555061324a613ac6565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156132cc5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156132e45750600c60009054906101000a900460ff165b80156132ff5750600d54600e546132fb9190614a81565b4210155b80156133555750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561336457613362613dad565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061341a5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561342457600090505b6000811561369d57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561348757506000601854115b15613554576134b460646134a66018548861381990919063ffffffff16565b61382f90919063ffffffff16565b9050601854601a54826134c791906148a3565b6134d1919061492c565b601d60008282546134e29190614a81565b92505081905550601854601b54826134fa91906148a3565b613504919061492c565b601e60008282546135159190614a81565b925050819055506018546019548261352d91906148a3565b613537919061492c565b601c60008282546135489190614a81565b92505081905550613679565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135af57506000601454115b15613678576135dc60646135ce6014548861381990919063ffffffff16565b61382f90919063ffffffff16565b9050601454601654826135ef91906148a3565b6135f9919061492c565b601d600082825461360a9190614a81565b925050819055506014546017548261362291906148a3565b61362c919061492c565b601e600082825461363d9190614a81565b925050819055506014546015548261365591906148a3565b61365f919061492c565b601c60008282546136709190614a81565b925050819055505b5b600081111561368e5761368d873083613845565b5b808561369a91906154eb565b94505b6136a8878787613845565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361382791906148a3565b905092915050565b6000818361383d919061492c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156138b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ac90615185565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161391c90615217565b60405180910390fd5b613930838383613f73565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156139b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139ad90615591565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a499190614a81565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613aad919061452c565b60405180910390a3613ac0848484613f78565b50505050565b6000613ad130611449565b90506000601e54601c54601d54613ae89190614a81565b613af29190614a81565b9050600080831480613b045750600082145b15613b1157505050613dab565b6014600954613b2091906148a3565b831115613b39576014600954613b3691906148a3565b92505b6000600283601d5486613b4c91906148a3565b613b56919061492c565b613b60919061492c565b90506000613b778286613f7d90919063ffffffff16565b90506000479050613b8782613f93565b6000613b9c8247613f7d90919063ffffffff16565b90506000613bc787613bb9601c548561381990919063ffffffff16565b61382f90919063ffffffff16565b90506000613bf288613be4601e548661381990919063ffffffff16565b61382f90919063ffffffff16565b90506000818385613c0391906154eb565b613c0d91906154eb565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c6d906155e2565b60006040518083038185875af1925050503d8060008114613caa576040519150601f19603f3d011682016040523d82523d6000602084013e613caf565b606091505b505080985050600087118015613cc55750600081115b15613d1257613cd487826141d0565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613d09939291906155f7565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613d58906155e2565b60006040518083038185875af1925050503d8060008114613d95576040519150601f19603f3d011682016040523d82523d6000602084013e613d9a565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000a82d5ee84bb5f25c720881f5fb7277b90f5edf0b6040518263ffffffff1660e01b8152600401613e1191906145d6565b602060405180830381865afa158015613e2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e529190614fc2565b90506000613e7f612710613e71600b548561381990919063ffffffff16565b61382f90919063ffffffff16565b90506000811115613eb857613eb77f000000000000000000000000a82d5ee84bb5f25c720881f5fb7277b90f5edf0b61dead83613845565b5b60007f000000000000000000000000a82d5ee84bb5f25c720881f5fb7277b90f5edf0b90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613f2557600080fd5b505af1158015613f39573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613f8b91906154eb565b905092915050565b6000600267ffffffffffffffff811115613fb057613faf61562e565b5b604051908082528060200260200182016040528015613fde5781602001602082028036833780820191505090505b5090503081600081518110613ff657613ff561565d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561409b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140bf91906156a1565b816001815181106140d3576140d261565d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614138307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461274f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161419a9594939291906157c7565b600060405180830381600087803b1580156141b457600080fd5b505af11580156141c8573d6000803e3d6000fd5b505050505050565b6141fb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461274f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161426296959493929190615821565b60606040518083038185885af1158015614280573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142a59190615882565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156142e65780820151818401526020810190506142cb565b838111156142f5576000848401525b50505050565b6000601f19601f8301169050919050565b6000614317826142ac565b61432181856142b7565b93506143318185602086016142c8565b61433a816142fb565b840191505092915050565b6000602082019050818103600083015261435f818461430c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006143978261436c565b9050919050565b6143a78161438c565b81146143b257600080fd5b50565b6000813590506143c48161439e565b92915050565b6000819050919050565b6143dd816143ca565b81146143e857600080fd5b50565b6000813590506143fa816143d4565b92915050565b6000806040838503121561441757614416614367565b5b6000614425858286016143b5565b9250506020614436858286016143eb565b9150509250929050565b60008115159050919050565b61445581614440565b82525050565b6000602082019050614470600083018461444c565b92915050565b60006020828403121561448c5761448b614367565b5b600061449a848285016143b5565b91505092915050565b6000819050919050565b60006144c86144c36144be8461436c565b6144a3565b61436c565b9050919050565b60006144da826144ad565b9050919050565b60006144ec826144cf565b9050919050565b6144fc816144e1565b82525050565b600060208201905061451760008301846144f3565b92915050565b614526816143ca565b82525050565b6000602082019050614541600083018461451d565b92915050565b60006020828403121561455d5761455c614367565b5b600061456b848285016143eb565b91505092915050565b60008060006060848603121561458d5761458c614367565b5b600061459b868287016143b5565b93505060206145ac868287016143b5565b92505060406145bd868287016143eb565b9150509250925092565b6145d08161438c565b82525050565b60006020820190506145eb60008301846145c7565b92915050565b600060ff82169050919050565b614607816145f1565b82525050565b600060208201905061462260008301846145fe565b92915050565b61463181614440565b811461463c57600080fd5b50565b60008135905061464e81614628565b92915050565b60008060006060848603121561466d5761466c614367565b5b600061467b868287016143eb565b935050602061468c868287016143eb565b925050604061469d8682870161463f565b9150509250925092565b600080604083850312156146be576146bd614367565b5b60006146cc858286016143b5565b92505060206146dd8582860161463f565b9150509250929050565b600080600060608486031215614700576146ff614367565b5b600061470e868287016143eb565b935050602061471f868287016143eb565b9250506040614730868287016143eb565b9150509250925092565b6000602082840312156147505761474f614367565b5b600061475e8482850161463f565b91505092915050565b6000806040838503121561477e5761477d614367565b5b600061478c858286016143b5565b925050602061479d858286016143b5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806147ee57607f821691505b60208210811415614802576148016147a7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061483e6020836142b7565b915061484982614808565b602082019050919050565b6000602082019050818103600083015261486d81614831565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006148ae826143ca565b91506148b9836143ca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148f2576148f1614874565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614937826143ca565b9150614942836143ca565b925082614952576149516148fd565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006149b9602f836142b7565b91506149c48261495d565b604082019050919050565b600060208201905081810360008301526149e8816149ac565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614a4b6028836142b7565b9150614a56826149ef565b604082019050919050565b60006020820190508181036000830152614a7a81614a3e565b9050919050565b6000614a8c826143ca565b9150614a97836143ca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614acc57614acb614874565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614b336033836142b7565b9150614b3e82614ad7565b604082019050919050565b60006020820190508181036000830152614b6281614b26565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614bc56030836142b7565b9150614bd082614b69565b604082019050919050565b60006020820190508181036000830152614bf481614bb8565b9050919050565b7f4d757374206b656570206665657320617420313125206f72206c657373000000600082015250565b6000614c31601d836142b7565b9150614c3c82614bfb565b602082019050919050565b60006020820190508181036000830152614c6081614c24565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614cc36039836142b7565b9150614cce82614c67565b604082019050919050565b60006020820190508181036000830152614cf281614cb6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614d556025836142b7565b9150614d6082614cf9565b604082019050919050565b60006020820190508181036000830152614d8481614d48565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614de76024836142b7565b9150614df282614d8b565b604082019050919050565b60006020820190508181036000830152614e1681614dda565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e796026836142b7565b9150614e8482614e1d565b604082019050919050565b60006020820190508181036000830152614ea881614e6c565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614ee56020836142b7565b9150614ef082614eaf565b602082019050919050565b60006020820190508181036000830152614f1481614ed8565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614f77602a836142b7565b9150614f8282614f1b565b604082019050919050565b60006020820190508181036000830152614fa681614f6a565b9050919050565b600081519050614fbc816143d4565b92915050565b600060208284031215614fd857614fd7614367565b5b6000614fe684828501614fad565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061504b6024836142b7565b915061505682614fef565b604082019050919050565b6000602082019050818103600083015261507a8161503e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006150dd6022836142b7565b91506150e882615081565b604082019050919050565b6000602082019050818103600083015261510c816150d0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061516f6025836142b7565b915061517a82615113565b604082019050919050565b6000602082019050818103600083015261519e81615162565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152016023836142b7565b915061520c826151a5565b604082019050919050565b60006020820190508181036000830152615230816151f4565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061526d6016836142b7565b915061527882615237565b602082019050919050565b6000602082019050818103600083015261529c81615260565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006153256049836142b7565b9150615330826152a3565b606082019050919050565b6000602082019050818103600083015261535481615318565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006153b76035836142b7565b91506153c28261535b565b604082019050919050565b600060208201905081810360008301526153e6816153aa565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006154236013836142b7565b915061542e826153ed565b602082019050919050565b6000602082019050818103600083015261545281615416565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006154b56036836142b7565b91506154c082615459565b604082019050919050565b600060208201905081810360008301526154e4816154a8565b9050919050565b60006154f6826143ca565b9150615501836143ca565b92508282101561551457615513614874565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061557b6026836142b7565b91506155868261551f565b604082019050919050565b600060208201905081810360008301526155aa8161556e565b9050919050565b600081905092915050565b50565b60006155cc6000836155b1565b91506155d7826155bc565b600082019050919050565b60006155ed826155bf565b9150819050919050565b600060608201905061560c600083018661451d565b615619602083018561451d565b615626604083018461451d565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061569b8161439e565b92915050565b6000602082840312156156b7576156b6614367565b5b60006156c58482850161568c565b91505092915050565b6000819050919050565b60006156f36156ee6156e9846156ce565b6144a3565b6143ca565b9050919050565b615703816156d8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61573e8161438c565b82525050565b60006157508383615735565b60208301905092915050565b6000602082019050919050565b600061577482615709565b61577e8185615714565b935061578983615725565b8060005b838110156157ba5781516157a18882615744565b97506157ac8361575c565b92505060018101905061578d565b5085935050505092915050565b600060a0820190506157dc600083018861451d565b6157e960208301876156fa565b81810360408301526157fb8186615769565b905061580a60608301856145c7565b615817608083018461451d565b9695505050505050565b600060c08201905061583660008301896145c7565b615843602083018861451d565b61585060408301876156fa565b61585d60608301866156fa565b61586a60808301856145c7565b61587760a083018461451d565b979650505050505050565b60008060006060848603121561589b5761589a614367565b5b60006158a986828701614fad565b93505060206158ba86828701614fad565b92505060406158cb86828701614fad565b915050925092509256fea26469706673582212204a44de016fad2dcddddff3c3cdc757f08c452efd12505b37705a6b4d1e80f79264736f6c634300080a0033

Deployed Bytecode Sourcemap

32780:18939:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9608:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11775:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34410:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32858:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10728:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41047:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33424:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33238:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34194:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34154;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38361:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12426:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32961:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33334:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33294:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10570:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13327:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32916:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33522:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41212:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34009:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33602:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10899:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2843:103;;;;;;;;;;;;;:::i;:::-;;49301:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38036:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38908:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33053:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33902;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39279:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37829:155;;;;;;;;;;;;;:::i;:::-;;2192:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33090:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34044:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39171:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9827:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40300:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33976:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33478:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34234:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34120:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14045:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33386:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11239:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40808:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34631:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33562:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40110:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39690:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38644:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33820:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33123:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33868:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11477:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33165:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38218:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33939:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3101:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34082:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33205:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50660:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9608:100;9662:13;9695:5;9688:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9608:100;:::o;11775:169::-;11858:4;11875:39;11884:12;:10;:12::i;:::-;11898:7;11907:6;11875:8;:39::i;:::-;11932:4;11925:11;;11775:169;;;;:::o;34410:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32858:51::-;;;:::o;10728:108::-;10789:7;10816:12;;10809:19;;10728:108;:::o;41047:157::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41154:9:::1;;;;;;;;;;;41126:38;;41143:9;41126:38;;;;;;;;;;;;41187:9;41175;;:21;;;;;;;;;;;;;;;;;;41047:157:::0;:::o;33424:47::-;;;;:::o;33238:36::-;;;;:::o;34194:33::-;;;;:::o;34154:::-;;;;:::o;38361:275::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38498:4:::1;38490;38485:1;38469:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38468:26;;;;:::i;:::-;38467:35;;;;:::i;:::-;38457:6;:45;;38435:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38621:6;38611;:17;;;;:::i;:::-;38588:20;:40;;;;38361:275:::0;:::o;12426:492::-;12566:4;12583:36;12593:6;12601:9;12612:6;12583:9;:36::i;:::-;12632:24;12659:11;:19;12671:6;12659:19;;;;;;;;;;;;;;;:33;12679:12;:10;:12::i;:::-;12659:33;;;;;;;;;;;;;;;;12632:60;;12731:6;12711:16;:26;;12703:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12818:57;12827:6;12835:12;:10;:12::i;:::-;12868:6;12849:16;:25;12818:8;:57::i;:::-;12906:4;12899:11;;;12426:492;;;;;:::o;32961:53::-;33007:6;32961:53;:::o;33334:45::-;;;;:::o;33294:33::-;;;;;;;;;;;;;:::o;10570:93::-;10628:5;10653:2;10646:9;;10570:93;:::o;13327:215::-;13415:4;13432:80;13441:12;:10;:12::i;:::-;13455:7;13501:10;13464:11;:25;13476:12;:10;:12::i;:::-;13464:25;;;;;;;;;;;;;;;:34;13490:7;13464:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13432:8;:80::i;:::-;13530:4;13523:11;;13327:215;;;;:::o;32916:38::-;;;:::o;33522:33::-;;;;;;;;;;;;;:::o;41212:126::-;41278:4;41302:19;:28;41322:7;41302:28;;;;;;;;;;;;;;;;;;;;;;;;;41295:35;;41212:126;;;:::o;34009:28::-;;;;:::o;33602:31::-;;;;;;;;;;;;;:::o;10899:127::-;10973:7;11000:9;:18;11010:7;11000:18;;;;;;;;;;;;;;;;10993:25;;10899:127;;;:::o;2843:103::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2908:30:::1;2935:1;2908:18;:30::i;:::-;2843:103::o:0;49301:555::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49503:3:::1;49480:19;:26;;49458:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;49630:4;49618:8;:16;;:33;;;;;49650:1;49638:8;:13;;49618:33;49596:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;49756:19;49738:15;:37;;;;49805:8;49786:16;:27;;;;49840:8;49824:13;;:24;;;;;;;;;;;;;;;;;;49301:555:::0;;;:::o;38036:121::-;38088:4;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38122:5:::1;38105:14;;:22;;;;;;;;;;;;;;;;;;38145:4;38138:11;;38036:121:::0;:::o;38908:167::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39063:4:::1;39021:31;:39;39053:6;39021:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38908:167:::0;;:::o;33053:30::-;;;;;;;;;;;;;:::o;33902:::-;;;;:::o;39279:403::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39447:13:::1;39429:15;:31;;;;39489:13;39471:15;:31;;;;39525:7;39513:9;:19;;;;39594:9;;39576:15;;39558;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;39543:12;:60;;;;39638:2;39622:12;;:18;;39614:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39279:403:::0;;;:::o;37829:155::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37900:4:::1;37884:13;;:20;;;;;;;;;;;;;;;;;;37929:4;37915:11;;:18;;;;;;;;;;;;;;;;;;37961:15;37944:14;:32;;;;37829:155::o:0;2192:87::-;2238:7;2265:6;;;;;;;;;;;2258:13;;2192:87;:::o;33090:24::-;;;;;;;;;;;;;:::o;34044:31::-;;;;:::o;39171:100::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39256:7:::1;39242:11;;:21;;;;;;;;;;;;;;;;;;39171:100:::0;:::o;9827:104::-;9883:13;9916:7;9909:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9827:104;:::o;40300:304::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40444:13:::1;40436:21;;:4;:21;;;;40414:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40555:41;40584:4;40590:5;40555:28;:41::i;:::-;40300:304:::0;;:::o;33976:24::-;;;;:::o;33478:35::-;;;;:::o;34234:27::-;;;;:::o;34120:25::-;;;;:::o;14045:413::-;14138:4;14155:24;14182:11;:25;14194:12;:10;:12::i;:::-;14182:25;;;;;;;;;;;;;;;:34;14208:7;14182:34;;;;;;;;;;;;;;;;14155:61;;14255:15;14235:16;:35;;14227:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14348:67;14357:12;:10;:12::i;:::-;14371:7;14399:15;14380:16;:34;14348:8;:67::i;:::-;14446:4;14439:11;;;14045:413;;;;:::o;33386:29::-;;;;:::o;11239:175::-;11325:4;11342:42;11352:12;:10;:12::i;:::-;11366:9;11377:6;11342:9;:42::i;:::-;11402:4;11395:11;;11239:175;;;;:::o;40808:231::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40968:15:::1;;;;;;;;;;;40925:59;;40948:18;40925:59;;;;;;;;;;;;41013:18;40995:15;;:36;;;;;;;;;;;;;;;;;;40808:231:::0;:::o;34631:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33562:33::-;;;;;;;;;;;;;:::o;40110:182::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40226:8:::1;40195:19;:28;40215:7;40195:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40266:7;40250:34;;;40275:8;40250:34;;;;;;:::i;:::-;;;;;;;;40110:182:::0;;:::o;39690:412::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39860:13:::1;39841:16;:32;;;;39903:13;39884:16;:32;;;;39940:7;39927:10;:20;;;;40012:10;;39993:16;;39974;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;39958:13;:64;;;;40058:2;40041:13;;:19;;40033:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;39690:412:::0;;;:::o;38644:256::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38784:4:::1;38776;38771:1;38755:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38754:26;;;;:::i;:::-;38753:35;;;;:::i;:::-;38743:6;:45;;38721:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;38885:6;38875;:17;;;;:::i;:::-;38863:9;:29;;;;38644:256:::0;:::o;33820:39::-;;;;;;;;;;;;;:::o;33123:35::-;;;;:::o;33868:27::-;;;;:::o;11477:151::-;11566:7;11593:11;:18;11605:5;11593:18;;;;;;;;;;;;;;;:27;11612:7;11593:27;;;;;;;;;;;;;;;;11586:34;;11477:151;;;;:::o;33165:33::-;;;;:::o;38218:135::-;38278:4;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38318:5:::1;38295:20;;:28;;;;;;;;;;;;;;;;;;38341:4;38334:11;;38218:135:::0;:::o;33939:30::-;;;;:::o;3101:201::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3210:1:::1;3190:22;;:8;:22;;;;3182:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3266:28;3285:8;3266:18;:28::i;:::-;3101:201:::0;:::o;34082:31::-;;;;:::o;33205:24::-;;;;:::o;50660:1056::-;50771:4;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50856:19:::1;;50833:20;;:42;;;;:::i;:::-;50815:15;:60;50793:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;50965:4;50954:7;:15;;50946:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51050:15;51027:20;:38;;;;51120:28;51151:4;:14;;;51166:13;51151:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51120:60;;51230:20;51253:44;51291:5;51253:33;51278:7;51253:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51230:67;;51417:1;51402:12;:16;51398:110;;;51435:61;51451:13;51474:6;51483:12;51435:15;:61::i;:::-;51398:110;51583:19;51620:13;51583:51;;51645:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;51672:14;;;;;;;;;;51704:4;51697:11;;;;;50660:1056:::0;;;:::o;865:98::-;918:7;945:10;938:17;;865:98;:::o;17729:380::-;17882:1;17865:19;;:5;:19;;;;17857:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17963:1;17944:21;;:7;:21;;;;17936:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18047:6;18017:11;:18;18029:5;18017:18;;;;;;;;;;;;;;;:27;18036:7;18017:27;;;;;;;;;;;;;;;:36;;;;18085:7;18069:32;;18078:5;18069:32;;;18094:6;18069:32;;;;;;:::i;:::-;;;;;;;;17729:380;;;:::o;41396:5011::-;41544:1;41528:18;;:4;:18;;;;41520:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41621:1;41607:16;;:2;:16;;;;41599:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41690:1;41680:6;:11;41676:93;;;41708:28;41724:4;41730:2;41734:1;41708:15;:28::i;:::-;41751:7;;41676:93;41785:14;;;;;;;;;;;41781:2487;;;41846:7;:5;:7::i;:::-;41838:15;;:4;:15;;;;:49;;;;;41880:7;:5;:7::i;:::-;41874:13;;:2;:13;;;;41838:49;:86;;;;;41922:1;41908:16;;:2;:16;;;;41838:86;:128;;;;;41959:6;41945:21;;:2;:21;;;;41838:128;:158;;;;;41988:8;;;;;;;;;;;41987:9;41838:158;41816:2441;;;42036:13;;;;;;;;;;;42031:223;;42108:19;:25;42128:4;42108:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42137:19;:23;42157:2;42137:23;;;;;;;;;;;;;;;;;;;;;;;;;42108:52;42074:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42031:223;42410:20;;;;;;;;;;;42406:641;;;42491:7;:5;:7::i;:::-;42485:13;;:2;:13;;;;:72;;;;;42541:15;42527:30;;:2;:30;;;;42485:72;:129;;;;;42600:13;42586:28;;:2;:28;;;;42485:129;42455:573;;;42778:12;42703:28;:39;42732:9;42703:39;;;;;;;;;;;;;;;;:87;42665:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;42992:12;42950:28;:39;42979:9;42950:39;;;;;;;;;;;;;;;:54;;;;42455:573;42406:641;43121:25;:31;43147:4;43121:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43178:31;:35;43210:2;43178:35;;;;;;;;;;;;;;;;;;;;;;;;;43177:36;43121:92;43095:1147;;;43300:20;;43290:6;:30;;43256:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43508:9;;43491:13;43501:2;43491:9;:13::i;:::-;43482:6;:22;;;;:::i;:::-;:35;;43448:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43095:1147;;;43686:25;:29;43712:2;43686:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43741:31;:37;43773:4;43741:37;;;;;;;;;;;;;;;;;;;;;;;;;43740:38;43686:92;43660:582;;;43865:20;;43855:6;:30;;43821:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43660:582;;;44022:31;:35;44054:2;44022:35;;;;;;;;;;;;;;;;;;;;;;;;;44017:225;;44142:9;;44125:13;44135:2;44125:9;:13::i;:::-;44116:6;:22;;;;:::i;:::-;:35;;44082:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44017:225;43660:582;43095:1147;41816:2441;41781:2487;44280:28;44311:24;44329:4;44311:9;:24::i;:::-;44280:55;;44348:12;44387:18;;44363:20;:42;;44348:57;;44436:7;:35;;;;;44460:11;;;;;;;;;;;44436:35;:61;;;;;44489:8;;;;;;;;;;;44488:9;44436:61;:110;;;;;44515:25;:31;44541:4;44515:31;;;;;;;;;;;;;;;;;;;;;;;;;44514:32;44436:110;:153;;;;;44564:19;:25;44584:4;44564:25;;;;;;;;;;;;;;;;;;;;;;;;;44563:26;44436:153;:194;;;;;44607:19;:23;44627:2;44607:23;;;;;;;;;;;;;;;;;;;;;;;;;44606:24;44436:194;44418:326;;;44668:4;44657:8;;:15;;;;;;;;;;;;;;;;;;44689:10;:8;:10::i;:::-;44727:5;44716:8;;:16;;;;;;;;;;;;;;;;;;44418:326;44775:8;;;;;;;;;;;44774:9;:55;;;;;44800:25;:29;44826:2;44800:29;;;;;;;;;;;;;;;;;;;;;;;;;44774:55;:85;;;;;44846:13;;;;;;;;;;;44774:85;:153;;;;;44912:15;;44895:14;;:32;;;;:::i;:::-;44876:15;:51;;44774:153;:196;;;;;44945:19;:25;44965:4;44945:25;;;;;;;;;;;;;;;;;;;;;;;;;44944:26;44774:196;44756:282;;;44997:29;:27;:29::i;:::-;;44756:282;45050:12;45066:8;;;;;;;;;;;45065:9;45050:24;;45176:19;:25;45196:4;45176:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45205:19;:23;45225:2;45205:23;;;;;;;;;;;;;;;;;;;;;;;;;45176:52;45172:100;;;45255:5;45245:15;;45172:100;45284:12;45389:7;45385:969;;;45441:25;:29;45467:2;45441:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45490:1;45474:13;;:17;45441:50;45437:768;;;45519:34;45549:3;45519:25;45530:13;;45519:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45512:41;;45622:13;;45602:16;;45595:4;:23;;;;:::i;:::-;45594:41;;;;:::i;:::-;45572:18;;:63;;;;;;;:::i;:::-;;;;;;;;45692:13;;45678:10;;45671:4;:17;;;;:::i;:::-;45670:35;;;;:::i;:::-;45654:12;;:51;;;;;;;:::i;:::-;;;;;;;;45774:13;;45754:16;;45747:4;:23;;;;:::i;:::-;45746:41;;;;:::i;:::-;45724:18;;:63;;;;;;;:::i;:::-;;;;;;;;45437:768;;;45849:25;:31;45875:4;45849:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45899:1;45884:12;;:16;45849:51;45845:360;;;45928:33;45957:3;45928:24;45939:12;;45928:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45921:40;;46029:12;;46010:15;;46003:4;:22;;;;:::i;:::-;46002:39;;;;:::i;:::-;45980:18;;:61;;;;;;;:::i;:::-;;;;;;;;46097:12;;46084:9;;46077:4;:16;;;;:::i;:::-;46076:33;;;;:::i;:::-;46060:12;;:49;;;;;;;:::i;:::-;;;;;;;;46177:12;;46158:15;;46151:4;:22;;;;:::i;:::-;46150:39;;;;:::i;:::-;46128:18;;:61;;;;;;;:::i;:::-;;;;;;;;45845:360;45437:768;46232:1;46225:4;:8;46221:91;;;46254:42;46270:4;46284;46291;46254:15;:42::i;:::-;46221:91;46338:4;46328:14;;;;;:::i;:::-;;;45385:969;46366:33;46382:4;46388:2;46392:6;46366:15;:33::i;:::-;41509:4898;;;;41396:5011;;;;:::o;3462:191::-;3536:16;3555:6;;;;;;;;;;;3536:25;;3581:8;3572:6;;:17;;;;;;;;;;;;;;;;;;3636:8;3605:40;;3626:8;3605:40;;;;;;;;;;;;3525:128;3462:191;:::o;40612:188::-;40729:5;40695:25;:31;40721:4;40695:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40786:5;40752:40;;40780:4;40752:40;;;;;;;;;;;;40612:188;;:::o;23182:98::-;23240:7;23271:1;23267;:5;;;;:::i;:::-;23260:12;;23182:98;;;;:::o;23581:::-;23639:7;23670:1;23666;:5;;;;:::i;:::-;23659:12;;23581:98;;;;:::o;14948:733::-;15106:1;15088:20;;:6;:20;;;;15080:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15190:1;15169:23;;:9;:23;;;;15161:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15245:47;15266:6;15274:9;15285:6;15245:20;:47::i;:::-;15305:21;15329:9;:17;15339:6;15329:17;;;;;;;;;;;;;;;;15305:41;;15382:6;15365:13;:23;;15357:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15503:6;15487:13;:22;15467:9;:17;15477:6;15467:17;;;;;;;;;;;;;;;:42;;;;15555:6;15531:9;:20;15541:9;15531:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15596:9;15579:35;;15588:6;15579:35;;;15607:6;15579:35;;;;;;:::i;:::-;;;;;;;;15627:46;15647:6;15655:9;15666:6;15627:19;:46::i;:::-;15069:612;14948:733;;;:::o;47537:1756::-;47576:23;47602:24;47620:4;47602:9;:24::i;:::-;47576:50;;47637:25;47733:12;;47699:18;;47665;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;47637:108;;47756:12;47804:1;47785:15;:20;:46;;;;47830:1;47809:17;:22;47785:46;47781:85;;;47848:7;;;;;47781:85;47921:2;47900:18;;:23;;;;:::i;:::-;47882:15;:41;47878:115;;;47979:2;47958:18;;:23;;;;:::i;:::-;47940:41;;47878:115;48054:23;48167:1;48134:17;48099:18;;48081:15;:36;;;;:::i;:::-;48080:71;;;;:::i;:::-;:88;;;;:::i;:::-;48054:114;;48179:26;48208:36;48228:15;48208;:19;;:36;;;;:::i;:::-;48179:65;;48257:25;48285:21;48257:49;;48319:36;48336:18;48319:16;:36::i;:::-;48368:18;48389:44;48415:17;48389:21;:25;;:44;;;;:::i;:::-;48368:65;;48446:23;48472:81;48525:17;48472:34;48487:18;;48472:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48446:107;;48564:17;48584:51;48617:17;48584:28;48599:12;;48584:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48564:71;;48648:23;48705:9;48687:15;48674:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;48648:66;;48748:1;48727:18;:22;;;;48781:1;48760:18;:22;;;;48808:1;48793:12;:16;;;;48844:9;;;;;;;;;;;48836:23;;48867:9;48836:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48822:59;;;;;48916:1;48898:15;:19;:42;;;;;48939:1;48921:15;:19;48898:42;48894:278;;;48957:46;48970:15;48987;48957:12;:46::i;:::-;49023:137;49056:18;49093:15;49127:18;;49023:137;;;;;;;;:::i;:::-;;;;;;;;48894:278;49206:15;;;;;;;;;;;49198:29;;49249:21;49198:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49184:101;;;;;47565:1728;;;;;;;;;;47537:1756;:::o;49864:788::-;49921:4;49955:15;49938:14;:32;;;;50025:28;50056:4;:14;;;50071:13;50056:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50025:60;;50135:20;50158:77;50219:5;50158:42;50183:16;;50158:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50135:100;;50355:1;50340:12;:16;50336:110;;;50373:61;50389:13;50412:6;50421:12;50373:15;:61::i;:::-;50336:110;50521:19;50558:13;50521:51;;50583:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50610:12;;;;;;;;;;50640:4;50633:11;;;;;49864:788;:::o;18709:125::-;;;;:::o;19438:124::-;;;;:::o;22825:98::-;22883:7;22914:1;22910;:5;;;;:::i;:::-;22903:12;;22825:98;;;;:::o;46415:589::-;46541:21;46579:1;46565:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46541:40;;46610:4;46592;46597:1;46592:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46636:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46626:4;46631:1;46626:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46671:62;46688:4;46703:15;46721:11;46671:8;:62::i;:::-;46772:15;:66;;;46853:11;46879:1;46923:4;46950;46970:15;46772:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46470:534;46415:589;:::o;47012:517::-;47160:62;47177:4;47192:15;47210:11;47160:8;:62::i;:::-;47265:15;:31;;;47304:9;47337:4;47357:11;47383:1;47426;33007:6;47495:15;47265:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47012: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:179::-;16700:31;16696:1;16688:6;16684:14;16677:55;16560:179;:::o;16745:366::-;16887:3;16908:67;16972:2;16967:3;16908:67;:::i;:::-;16901:74;;16984:93;17073:3;16984:93;:::i;:::-;17102:2;17097:3;17093:12;17086:19;;16745:366;;;:::o;17117:419::-;17283:4;17321:2;17310:9;17306:18;17298:26;;17370:9;17364:4;17360:20;17356:1;17345:9;17341:17;17334:47;17398:131;17524:4;17398:131;:::i;:::-;17390:139;;17117:419;;;:::o;17542:244::-;17682:34;17678:1;17670:6;17666:14;17659:58;17751:27;17746:2;17738:6;17734:15;17727:52;17542:244;:::o;17792:366::-;17934:3;17955:67;18019:2;18014:3;17955:67;:::i;:::-;17948:74;;18031:93;18120:3;18031:93;:::i;:::-;18149:2;18144:3;18140:12;18133:19;;17792:366;;;:::o;18164:419::-;18330:4;18368:2;18357:9;18353:18;18345:26;;18417:9;18411:4;18407:20;18403:1;18392:9;18388:17;18381:47;18445:131;18571:4;18445:131;:::i;:::-;18437:139;;18164:419;;;:::o;18589:224::-;18729:34;18725:1;18717:6;18713:14;18706:58;18798:7;18793:2;18785:6;18781:15;18774:32;18589:224;:::o;18819:366::-;18961:3;18982:67;19046:2;19041:3;18982:67;:::i;:::-;18975:74;;19058:93;19147:3;19058:93;:::i;:::-;19176:2;19171:3;19167:12;19160:19;;18819:366;;;:::o;19191:419::-;19357:4;19395:2;19384:9;19380:18;19372:26;;19444:9;19438:4;19434:20;19430:1;19419:9;19415:17;19408:47;19472:131;19598:4;19472:131;:::i;:::-;19464:139;;19191:419;;;:::o;19616:223::-;19756:34;19752:1;19744:6;19740:14;19733:58;19825:6;19820:2;19812:6;19808:15;19801:31;19616:223;:::o;19845:366::-;19987:3;20008:67;20072:2;20067:3;20008:67;:::i;:::-;20001:74;;20084:93;20173:3;20084:93;:::i;:::-;20202:2;20197:3;20193:12;20186:19;;19845:366;;;:::o;20217:419::-;20383:4;20421:2;20410:9;20406:18;20398:26;;20470:9;20464:4;20460:20;20456:1;20445:9;20441:17;20434:47;20498:131;20624:4;20498:131;:::i;:::-;20490:139;;20217:419;;;:::o;20642:225::-;20782:34;20778:1;20770:6;20766:14;20759:58;20851:8;20846:2;20838:6;20834:15;20827:33;20642:225;:::o;20873:366::-;21015:3;21036:67;21100:2;21095:3;21036:67;:::i;:::-;21029:74;;21112:93;21201:3;21112:93;:::i;:::-;21230:2;21225:3;21221:12;21214:19;;20873:366;;;:::o;21245:419::-;21411:4;21449:2;21438:9;21434:18;21426:26;;21498:9;21492:4;21488:20;21484:1;21473:9;21469:17;21462:47;21526:131;21652:4;21526:131;:::i;:::-;21518:139;;21245:419;;;:::o;21670:182::-;21810:34;21806:1;21798:6;21794:14;21787:58;21670:182;:::o;21858:366::-;22000:3;22021:67;22085:2;22080:3;22021:67;:::i;:::-;22014:74;;22097:93;22186:3;22097:93;:::i;:::-;22215:2;22210:3;22206:12;22199:19;;21858:366;;;:::o;22230:419::-;22396:4;22434:2;22423:9;22419:18;22411:26;;22483:9;22477:4;22473:20;22469:1;22458:9;22454:17;22447:47;22511:131;22637:4;22511:131;:::i;:::-;22503:139;;22230:419;;;:::o;22655:229::-;22795:34;22791:1;22783:6;22779:14;22772:58;22864:12;22859:2;22851:6;22847:15;22840:37;22655:229;:::o;22890:366::-;23032:3;23053:67;23117:2;23112:3;23053:67;:::i;:::-;23046:74;;23129:93;23218:3;23129:93;:::i;:::-;23247:2;23242:3;23238:12;23231:19;;22890:366;;;:::o;23262:419::-;23428:4;23466:2;23455:9;23451:18;23443:26;;23515:9;23509:4;23505:20;23501:1;23490:9;23486:17;23479:47;23543:131;23669:4;23543:131;:::i;:::-;23535:139;;23262:419;;;:::o;23687:143::-;23744:5;23775:6;23769:13;23760:22;;23791:33;23818:5;23791:33;:::i;:::-;23687:143;;;;:::o;23836:351::-;23906:6;23955:2;23943:9;23934:7;23930:23;23926:32;23923:119;;;23961:79;;:::i;:::-;23923:119;24081:1;24106:64;24162:7;24153:6;24142:9;24138:22;24106:64;:::i;:::-;24096:74;;24052:128;23836:351;;;;:::o;24193:223::-;24333:34;24329:1;24321:6;24317:14;24310:58;24402:6;24397:2;24389:6;24385:15;24378:31;24193:223;:::o;24422:366::-;24564:3;24585:67;24649:2;24644:3;24585:67;:::i;:::-;24578:74;;24661:93;24750:3;24661:93;:::i;:::-;24779:2;24774:3;24770:12;24763:19;;24422:366;;;:::o;24794:419::-;24960:4;24998:2;24987:9;24983:18;24975:26;;25047:9;25041:4;25037:20;25033:1;25022:9;25018:17;25011:47;25075:131;25201:4;25075:131;:::i;:::-;25067:139;;24794:419;;;:::o;25219:221::-;25359:34;25355:1;25347:6;25343:14;25336:58;25428:4;25423:2;25415:6;25411:15;25404:29;25219:221;:::o;25446:366::-;25588:3;25609:67;25673:2;25668:3;25609:67;:::i;:::-;25602:74;;25685:93;25774:3;25685:93;:::i;:::-;25803:2;25798:3;25794:12;25787:19;;25446:366;;;:::o;25818:419::-;25984:4;26022:2;26011:9;26007:18;25999:26;;26071:9;26065:4;26061:20;26057:1;26046:9;26042:17;26035:47;26099:131;26225:4;26099:131;:::i;:::-;26091:139;;25818:419;;;:::o;26243:224::-;26383:34;26379:1;26371:6;26367:14;26360:58;26452:7;26447:2;26439:6;26435:15;26428:32;26243:224;:::o;26473:366::-;26615:3;26636:67;26700:2;26695:3;26636:67;:::i;:::-;26629:74;;26712:93;26801:3;26712:93;:::i;:::-;26830:2;26825:3;26821:12;26814:19;;26473:366;;;:::o;26845:419::-;27011:4;27049:2;27038:9;27034:18;27026:26;;27098:9;27092:4;27088:20;27084:1;27073:9;27069:17;27062:47;27126:131;27252:4;27126:131;:::i;:::-;27118:139;;26845:419;;;:::o;27270:222::-;27410:34;27406:1;27398:6;27394:14;27387:58;27479:5;27474:2;27466:6;27462:15;27455:30;27270:222;:::o;27498:366::-;27640:3;27661:67;27725:2;27720:3;27661:67;:::i;:::-;27654:74;;27737:93;27826:3;27737:93;:::i;:::-;27855:2;27850:3;27846:12;27839:19;;27498:366;;;:::o;27870:419::-;28036:4;28074:2;28063:9;28059:18;28051:26;;28123:9;28117:4;28113:20;28109:1;28098:9;28094:17;28087:47;28151:131;28277:4;28151:131;:::i;:::-;28143:139;;27870:419;;;:::o;28295:172::-;28435:24;28431:1;28423:6;28419:14;28412:48;28295:172;:::o;28473:366::-;28615:3;28636:67;28700:2;28695:3;28636:67;:::i;:::-;28629:74;;28712:93;28801:3;28712:93;:::i;:::-;28830:2;28825:3;28821:12;28814:19;;28473:366;;;:::o;28845:419::-;29011:4;29049:2;29038:9;29034:18;29026:26;;29098:9;29092:4;29088:20;29084:1;29073:9;29069:17;29062:47;29126:131;29252:4;29126:131;:::i;:::-;29118:139;;28845:419;;;:::o;29270:297::-;29410:34;29406:1;29398:6;29394:14;29387:58;29479:34;29474:2;29466:6;29462:15;29455:59;29548:11;29543:2;29535:6;29531:15;29524:36;29270:297;:::o;29573:366::-;29715:3;29736:67;29800:2;29795:3;29736:67;:::i;:::-;29729:74;;29812:93;29901:3;29812:93;:::i;:::-;29930:2;29925:3;29921:12;29914:19;;29573:366;;;:::o;29945:419::-;30111:4;30149:2;30138:9;30134:18;30126:26;;30198:9;30192:4;30188:20;30184:1;30173:9;30169:17;30162:47;30226:131;30352:4;30226:131;:::i;:::-;30218:139;;29945:419;;;:::o;30370:240::-;30510:34;30506:1;30498:6;30494:14;30487:58;30579:23;30574:2;30566:6;30562:15;30555:48;30370:240;:::o;30616:366::-;30758:3;30779:67;30843:2;30838:3;30779:67;:::i;:::-;30772:74;;30855:93;30944:3;30855:93;:::i;:::-;30973:2;30968:3;30964:12;30957:19;;30616:366;;;:::o;30988:419::-;31154:4;31192:2;31181:9;31177:18;31169:26;;31241:9;31235:4;31231:20;31227:1;31216:9;31212:17;31205:47;31269:131;31395:4;31269:131;:::i;:::-;31261:139;;30988:419;;;:::o;31413:169::-;31553:21;31549:1;31541:6;31537:14;31530:45;31413:169;:::o;31588:366::-;31730:3;31751:67;31815:2;31810:3;31751:67;:::i;:::-;31744:74;;31827:93;31916:3;31827:93;:::i;:::-;31945:2;31940:3;31936:12;31929:19;;31588:366;;;:::o;31960:419::-;32126:4;32164:2;32153:9;32149:18;32141:26;;32213:9;32207:4;32203:20;32199:1;32188:9;32184:17;32177:47;32241:131;32367:4;32241:131;:::i;:::-;32233:139;;31960:419;;;:::o;32385:241::-;32525:34;32521:1;32513:6;32509:14;32502:58;32594:24;32589:2;32581:6;32577:15;32570:49;32385:241;:::o;32632:366::-;32774:3;32795:67;32859:2;32854:3;32795:67;:::i;:::-;32788:74;;32871:93;32960:3;32871:93;:::i;:::-;32989:2;32984:3;32980:12;32973:19;;32632:366;;;:::o;33004:419::-;33170:4;33208:2;33197:9;33193:18;33185:26;;33257:9;33251:4;33247:20;33243:1;33232:9;33228:17;33221:47;33285:131;33411:4;33285:131;:::i;:::-;33277:139;;33004:419;;;:::o;33429:191::-;33469:4;33489:20;33507:1;33489:20;:::i;:::-;33484:25;;33523:20;33541:1;33523:20;:::i;:::-;33518:25;;33562:1;33559;33556:8;33553:34;;;33567:18;;:::i;:::-;33553:34;33612:1;33609;33605:9;33597:17;;33429:191;;;;:::o;33626:225::-;33766:34;33762:1;33754:6;33750:14;33743:58;33835:8;33830:2;33822:6;33818:15;33811:33;33626:225;:::o;33857:366::-;33999:3;34020:67;34084:2;34079:3;34020:67;:::i;:::-;34013:74;;34096:93;34185:3;34096:93;:::i;:::-;34214:2;34209:3;34205:12;34198:19;;33857:366;;;:::o;34229:419::-;34395:4;34433:2;34422:9;34418:18;34410:26;;34482:9;34476:4;34472:20;34468:1;34457:9;34453:17;34446:47;34510:131;34636:4;34510:131;:::i;:::-;34502:139;;34229:419;;;:::o;34654:147::-;34755:11;34792:3;34777:18;;34654:147;;;;:::o;34807:114::-;;:::o;34927:398::-;35086:3;35107:83;35188:1;35183:3;35107:83;:::i;:::-;35100:90;;35199:93;35288:3;35199:93;:::i;:::-;35317:1;35312:3;35308:11;35301:18;;34927:398;;;:::o;35331:379::-;35515:3;35537:147;35680:3;35537:147;:::i;:::-;35530:154;;35701:3;35694:10;;35331:379;;;:::o;35716:442::-;35865:4;35903:2;35892:9;35888:18;35880:26;;35916:71;35984:1;35973:9;35969:17;35960:6;35916:71;:::i;:::-;35997:72;36065:2;36054:9;36050:18;36041:6;35997:72;:::i;:::-;36079;36147:2;36136:9;36132:18;36123:6;36079:72;:::i;:::-;35716:442;;;;;;:::o;36164:180::-;36212:77;36209:1;36202:88;36309:4;36306:1;36299:15;36333:4;36330:1;36323:15;36350:180;36398:77;36395:1;36388:88;36495:4;36492:1;36485:15;36519:4;36516:1;36509:15;36536:143;36593:5;36624:6;36618:13;36609:22;;36640:33;36667:5;36640:33;:::i;:::-;36536:143;;;;:::o;36685:351::-;36755:6;36804:2;36792:9;36783:7;36779:23;36775:32;36772:119;;;36810:79;;:::i;:::-;36772:119;36930:1;36955:64;37011:7;37002:6;36991:9;36987:22;36955:64;:::i;:::-;36945:74;;36901:128;36685:351;;;;:::o;37042:85::-;37087:7;37116:5;37105:16;;37042:85;;;:::o;37133:158::-;37191:9;37224:61;37242:42;37251:32;37277:5;37251:32;:::i;:::-;37242:42;:::i;:::-;37224:61;:::i;:::-;37211:74;;37133:158;;;:::o;37297:147::-;37392:45;37431:5;37392:45;:::i;:::-;37387:3;37380:58;37297:147;;:::o;37450:114::-;37517:6;37551:5;37545:12;37535:22;;37450:114;;;:::o;37570:184::-;37669:11;37703:6;37698:3;37691:19;37743:4;37738:3;37734:14;37719:29;;37570:184;;;;:::o;37760:132::-;37827:4;37850:3;37842:11;;37880:4;37875:3;37871:14;37863:22;;37760:132;;;:::o;37898:108::-;37975:24;37993:5;37975:24;:::i;:::-;37970:3;37963:37;37898:108;;:::o;38012:179::-;38081:10;38102:46;38144:3;38136:6;38102:46;:::i;:::-;38180:4;38175:3;38171:14;38157:28;;38012:179;;;;:::o;38197:113::-;38267:4;38299;38294:3;38290:14;38282:22;;38197:113;;;:::o;38346:732::-;38465:3;38494:54;38542:5;38494:54;:::i;:::-;38564:86;38643:6;38638:3;38564:86;:::i;:::-;38557:93;;38674:56;38724:5;38674:56;:::i;:::-;38753:7;38784:1;38769:284;38794:6;38791:1;38788:13;38769:284;;;38870:6;38864:13;38897:63;38956:3;38941:13;38897:63;:::i;:::-;38890:70;;38983:60;39036:6;38983:60;:::i;:::-;38973:70;;38829:224;38816:1;38813;38809:9;38804:14;;38769:284;;;38773:14;39069:3;39062:10;;38470:608;;;38346:732;;;;:::o;39084:831::-;39347:4;39385:3;39374:9;39370:19;39362:27;;39399:71;39467:1;39456:9;39452:17;39443:6;39399:71;:::i;:::-;39480:80;39556:2;39545:9;39541:18;39532:6;39480:80;:::i;:::-;39607:9;39601:4;39597:20;39592:2;39581:9;39577:18;39570:48;39635:108;39738:4;39729:6;39635:108;:::i;:::-;39627:116;;39753:72;39821:2;39810:9;39806:18;39797:6;39753:72;:::i;:::-;39835:73;39903:3;39892:9;39888:19;39879:6;39835:73;:::i;:::-;39084:831;;;;;;;;:::o;39921:807::-;40170:4;40208:3;40197:9;40193:19;40185:27;;40222:71;40290:1;40279:9;40275:17;40266:6;40222:71;:::i;:::-;40303:72;40371:2;40360:9;40356:18;40347:6;40303:72;:::i;:::-;40385:80;40461:2;40450:9;40446:18;40437:6;40385:80;:::i;:::-;40475;40551:2;40540:9;40536:18;40527:6;40475:80;:::i;:::-;40565:73;40633:3;40622:9;40618:19;40609:6;40565:73;:::i;:::-;40648;40716:3;40705:9;40701:19;40692:6;40648:73;:::i;:::-;39921:807;;;;;;;;;:::o;40734:663::-;40822:6;40830;40838;40887:2;40875:9;40866:7;40862:23;40858:32;40855:119;;;40893:79;;:::i;:::-;40855:119;41013:1;41038:64;41094:7;41085:6;41074:9;41070:22;41038:64;:::i;:::-;41028:74;;40984:128;41151:2;41177:64;41233:7;41224:6;41213:9;41209:22;41177:64;:::i;:::-;41167:74;;41122:129;41290:2;41316:64;41372:7;41363:6;41352:9;41348:22;41316:64;:::i;:::-;41306:74;;41261:129;40734:663;;;;;:::o

Swarm Source

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