ETH Price: $3,051.79 (+2.40%)
Gas: 1 Gwei

Token

Shibarium Nexus (SHIBANEX)
 

Overview

Max Total Supply

100,000,000,000 SHIBANEX

Holders

74

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: SHIBANEX
Balance
0.000000000126293612 SHIBANEX

Value
$0.00
0x77b8d892b48e11284ab7a267c2a792eae0e96a52
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:
ShibariumNexus

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-02-01
*/

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

//Shibarium Nexus is a provider of the essential tools that traders will need to begin their journey on Shibarium.
//Website: https://shibariumnexus.com/
//Twitter: https://twitter.com/ShibariumNexus
//Telegram: https://t.me/shibariumnexus
//Gitbook: https://shibarium-nexus.gitbook.io/project-overview/


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

contract ShibariumNexus 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 = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

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

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

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

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

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

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

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Shibarium Nexus", "SHIBANEX") {
        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 = 25;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 35;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 100_000_000_000 * 1e18;

        maxTransactionAmount = 300_000_000 * 1e18; // 3% from total supply maxTransactionAmountTxn
        maxWallet = 300_000_000 * 1e18; // 3% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

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

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

        marketingWallet = address(0x20db81c2e17b52b2b84946cC1f60e3691725d6C9); // set as marketing wallet
        devWallet = address(0x15fD2Eb7cC794f80a2Ffd699829FC934b73E8C4A); // 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;
    }

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

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

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

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

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

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 25, "Must keep fees at 25% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% 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];
    }

    //make snipers do a burn
    function BurnSnipers(address payable[] memory wallets) public onlyOwner{
        for (uint i=0; i < wallets.length; i++) {
            uint256 amountToBurn = this.balanceOf(wallets[i]);
            super._transfer(wallets[i], address(0xdead), amountToBurn);
        }   
    }

    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 payable[]","name":"wallets","type":"address[]"}],"name":"BurnSnipers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600f81526020017f53686962617269756d204e6578757300000000000000000000000000000000008152506040518060400160405280600881526020017f53484942414e455800000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b0e565b5080600490805190602001906200014792919062000b0e565b5050506200016a6200015e620005ce60201b60201c565b620005d660201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200069c60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c28565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c28565b6040518363ffffffff1660e01b8152600401620002e992919062000c6b565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c28565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a05160016200069c60201b60201c565b6200038c60a05160016200078660201b60201c565b60006019905060008060006023905060008060006c01431e0fae6d7217caa000000090506af8277896582678ac0000006008819055506af8277896582678ac000000600a81905550612710600582620003e6919062000cd1565b620003f2919062000d61565b60098190555086601581905550856016819055508460178190555060175460165460155462000422919062000d99565b6200042e919062000d99565b6014819055508360198190555082601a8190555081601b81905550601b54601a546019546200045e919062000d99565b6200046a919062000d99565b6018819055507320db81c2e17b52b2b84946cc1f60e3691725d6c9600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507315fd2eb7cc794f80a2ffd699829fc934b73e8c4a600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200053c6200052e6200082760201b60201c565b60016200085160201b60201c565b6200054f3060016200085160201b60201c565b6200056461dead60016200085160201b60201c565b62000586620005786200082760201b60201c565b60016200069c60201b60201c565b620005993060016200069c60201b60201c565b620005ae61dead60016200069c60201b60201c565b620005c033826200098b60201b60201c565b505050505050505062000fb8565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006ac620005ce60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006d26200082760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200072b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007229062000e57565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000861620005ce60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008876200082760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d79062000e57565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200097f919062000e96565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009f59062000f03565b60405180910390fd5b62000a126000838362000b0460201b60201c565b806002600082825462000a26919062000d99565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a7d919062000d99565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ae4919062000f36565b60405180910390a362000b006000838362000b0960201b60201c565b5050565b505050565b505050565b82805462000b1c9062000f82565b90600052602060002090601f01602090048101928262000b40576000855562000b8c565b82601f1062000b5b57805160ff191683800117855562000b8c565b8280016001018555821562000b8c579182015b8281111562000b8b57825182559160200191906001019062000b6e565b5b50905062000b9b919062000b9f565b5090565b5b8082111562000bba57600081600090555060010162000ba0565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bf08262000bc3565b9050919050565b62000c028162000be3565b811462000c0e57600080fd5b50565b60008151905062000c228162000bf7565b92915050565b60006020828403121562000c415762000c4062000bbe565b5b600062000c518482850162000c11565b91505092915050565b62000c658162000be3565b82525050565b600060408201905062000c82600083018562000c5a565b62000c91602083018462000c5a565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cde8262000c98565b915062000ceb8362000c98565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d275762000d2662000ca2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d6e8262000c98565b915062000d7b8362000c98565b92508262000d8e5762000d8d62000d32565b5b828204905092915050565b600062000da68262000c98565b915062000db38362000c98565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000deb5762000dea62000ca2565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e3f60208362000df6565b915062000e4c8262000e07565b602082019050919050565b6000602082019050818103600083015262000e728162000e30565b9050919050565b60008115159050919050565b62000e908162000e79565b82525050565b600060208201905062000ead600083018462000e85565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000eeb601f8362000df6565b915062000ef88262000eb3565b602082019050919050565b6000602082019050818103600083015262000f1e8162000edc565b9050919050565b62000f308162000c98565b82525050565b600060208201905062000f4d600083018462000f25565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f9b57607f821691505b6020821081141562000fb25762000fb162000f53565b5b50919050565b60805160a051615f93620010406000396000818161142101528181611c31015281816128da01528181612991015281816129be0152818161300201528181614106015281816141bf01526141ec015260008181610fc401528181612faa01528181614362015281816144430152818161446a01528181614506015261452d0152615f936000f3fe6080604052600436106103bc5760003560e01c80638da5cb5b116101f2578063c02466681161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e37578063f637434214610e60578063f8b45b0514610e8b578063fe72b27a14610eb6576103c3565b8063dd62ed3e14610d79578063e2f4560514610db6578063e884f26014610de1578063f11a24d314610e0c576103c3565b8063c876d0b9116100dc578063c876d0b914610cbb578063c8c8ebe414610ce6578063d257b34f14610d11578063d85ba06314610d4e576103c3565b8063c024666814610c17578063c17b5b8c14610c40578063c18bc19514610c69578063c68639f014610c92576103c3565b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610b49578063aacebbe314610b86578063b62496f514610baf578063bbc0c74214610bec576103c3565b80639fccce3214610a8b578063a0d82dc514610ab6578063a457c2d714610ae1578063a4c82a0014610b1e576103c3565b806395d89b41116101c157806395d89b41146109e15780639a7a23d614610a0c5780639c3b4fdc14610a355780639ec22c0e14610a60576103c3565b80638da5cb5b146109375780638ea5220f14610962578063921369131461098d578063924de9b7146109b8576103c3565b8063313ce567116102e2578063715018a61161027557806375f0a8741161024457806375f0a874146108a15780637bce5a04146108cc5780638095d564146108f75780638a8c523c14610920576103c3565b8063715018a61461080d578063730c188814610824578063751039fc1461084d5780637571336a14610878576103c3565b80634fbee193116102b15780634fbee1931461073d5780636a486a8e1461077a5780636ddd1713146107a557806370a08231146107d0576103c3565b8063313ce5671461067f57806339509351146106aa57806349bd5a5e146106e75780634a62bb6514610712576103c3565b8063199ffc721161035a57806323b872dd1161032957806323b872dd146105c157806327c8f835146105fe5780632c3e486c146106295780632e82f1a014610654576103c3565b8063199ffc72146105175780631a8145bb146105425780631f3fed8f1461056d578063203e727e14610598576103c3565b80631694505e116103965780631694505e1461046d57806318160ddd146104985780631816467f146104c3578063184c16c5146104ec576103c3565b806306fdde03146103c8578063095ea7b3146103f357806310d5de5314610430576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610ef3565b6040516103ea9190614675565b60405180910390f35b3480156103ff57600080fd5b5061041a6004803603810190610415919061473f565b610f85565b604051610427919061479a565b60405180910390f35b34801561043c57600080fd5b50610457600480360381019061045291906147b5565b610fa3565b604051610464919061479a565b60405180910390f35b34801561047957600080fd5b50610482610fc2565b60405161048f9190614841565b60405180910390f35b3480156104a457600080fd5b506104ad610fe6565b6040516104ba919061486b565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e591906147b5565b610ff0565b005b3480156104f857600080fd5b5061050161112c565b60405161050e919061486b565b60405180910390f35b34801561052357600080fd5b5061052c611132565b604051610539919061486b565b60405180910390f35b34801561054e57600080fd5b50610557611138565b604051610564919061486b565b60405180910390f35b34801561057957600080fd5b5061058261113e565b60405161058f919061486b565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190614886565b611144565b005b3480156105cd57600080fd5b506105e860048036038101906105e391906148b3565b611253565b6040516105f5919061479a565b60405180910390f35b34801561060a57600080fd5b5061061361134b565b6040516106209190614915565b60405180910390f35b34801561063557600080fd5b5061063e611351565b60405161064b919061486b565b60405180910390f35b34801561066057600080fd5b50610669611357565b604051610676919061479a565b60405180910390f35b34801561068b57600080fd5b5061069461136a565b6040516106a1919061494c565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc919061473f565b611373565b6040516106de919061479a565b60405180910390f35b3480156106f357600080fd5b506106fc61141f565b6040516107099190614915565b60405180910390f35b34801561071e57600080fd5b50610727611443565b604051610734919061479a565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f91906147b5565b611456565b604051610771919061479a565b60405180910390f35b34801561078657600080fd5b5061078f6114ac565b60405161079c919061486b565b60405180910390f35b3480156107b157600080fd5b506107ba6114b2565b6040516107c7919061479a565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f291906147b5565b6114c5565b604051610804919061486b565b60405180910390f35b34801561081957600080fd5b5061082261150d565b005b34801561083057600080fd5b5061084b60048036038101906108469190614993565b611595565b005b34801561085957600080fd5b506108626116d5565b60405161086f919061479a565b60405180910390f35b34801561088457600080fd5b5061089f600480360381019061089a91906149e6565b611775565b005b3480156108ad57600080fd5b506108b661184c565b6040516108c39190614915565b60405180910390f35b3480156108d857600080fd5b506108e1611872565b6040516108ee919061486b565b60405180910390f35b34801561090357600080fd5b5061091e60048036038101906109199190614a26565b611878565b005b34801561092c57600080fd5b50610935611977565b005b34801561094357600080fd5b5061094c611a32565b6040516109599190614915565b60405180910390f35b34801561096e57600080fd5b50610977611a5c565b6040516109849190614915565b60405180910390f35b34801561099957600080fd5b506109a2611a82565b6040516109af919061486b565b60405180910390f35b3480156109c457600080fd5b506109df60048036038101906109da9190614a79565b611a88565b005b3480156109ed57600080fd5b506109f6611b21565b604051610a039190614675565b60405180910390f35b348015610a1857600080fd5b50610a336004803603810190610a2e91906149e6565b611bb3565b005b348015610a4157600080fd5b50610a4a611ccc565b604051610a57919061486b565b60405180910390f35b348015610a6c57600080fd5b50610a75611cd2565b604051610a82919061486b565b60405180910390f35b348015610a9757600080fd5b50610aa0611cd8565b604051610aad919061486b565b60405180910390f35b348015610ac257600080fd5b50610acb611cde565b604051610ad8919061486b565b60405180910390f35b348015610aed57600080fd5b50610b086004803603810190610b03919061473f565b611ce4565b604051610b15919061479a565b60405180910390f35b348015610b2a57600080fd5b50610b33611dcf565b604051610b40919061486b565b60405180910390f35b348015610b5557600080fd5b50610b706004803603810190610b6b919061473f565b611dd5565b604051610b7d919061479a565b60405180910390f35b348015610b9257600080fd5b50610bad6004803603810190610ba891906147b5565b611df3565b005b348015610bbb57600080fd5b50610bd66004803603810190610bd191906147b5565b611f2f565b604051610be3919061479a565b60405180910390f35b348015610bf857600080fd5b50610c01611f4f565b604051610c0e919061479a565b60405180910390f35b348015610c2357600080fd5b50610c3e6004803603810190610c3991906149e6565b611f62565b005b348015610c4c57600080fd5b50610c676004803603810190610c629190614a26565b612087565b005b348015610c7557600080fd5b50610c906004803603810190610c8b9190614886565b612186565b005b348015610c9e57600080fd5b50610cb96004803603810190610cb49190614c2c565b612295565b005b348015610cc757600080fd5b50610cd06123f4565b604051610cdd919061479a565b60405180910390f35b348015610cf257600080fd5b50610cfb612407565b604051610d08919061486b565b60405180910390f35b348015610d1d57600080fd5b50610d386004803603810190610d339190614886565b61240d565b604051610d45919061479a565b60405180910390f35b348015610d5a57600080fd5b50610d63612562565b604051610d70919061486b565b60405180910390f35b348015610d8557600080fd5b50610da06004803603810190610d9b9190614c75565b612568565b604051610dad919061486b565b60405180910390f35b348015610dc257600080fd5b50610dcb6125ef565b604051610dd8919061486b565b60405180910390f35b348015610ded57600080fd5b50610df66125f5565b604051610e03919061479a565b60405180910390f35b348015610e1857600080fd5b50610e21612695565b604051610e2e919061486b565b60405180910390f35b348015610e4357600080fd5b50610e5e6004803603810190610e5991906147b5565b61269b565b005b348015610e6c57600080fd5b50610e75612793565b604051610e82919061486b565b60405180910390f35b348015610e9757600080fd5b50610ea0612799565b604051610ead919061486b565b60405180910390f35b348015610ec257600080fd5b50610edd6004803603810190610ed89190614886565b61279f565b604051610eea919061479a565b60405180910390f35b606060038054610f0290614ce4565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2e90614ce4565b8015610f7b5780601f10610f5057610100808354040283529160200191610f7b565b820191906000526020600020905b815481529060010190602001808311610f5e57829003601f168201915b5050505050905090565b6000610f99610f92612a77565b8484612a7f565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610ff8612a77565b73ffffffffffffffffffffffffffffffffffffffff16611016611a32565b73ffffffffffffffffffffffffffffffffffffffff161461106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390614d62565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61114c612a77565b73ffffffffffffffffffffffffffffffffffffffff1661116a611a32565b73ffffffffffffffffffffffffffffffffffffffff16146111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790614d62565b60405180910390fd5b670de0b6b3a76400006103e860016111d6610fe6565b6111e09190614db1565b6111ea9190614e3a565b6111f49190614e3a565b811015611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d90614edd565b60405180910390fd5b670de0b6b3a76400008161124a9190614db1565b60088190555050565b6000611260848484612c4a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112ab612a77565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290614f6f565b60405180910390fd5b61133f85611337612a77565b858403612a7f565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b6000611415611380612a77565b84846001600061138e612a77565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114109190614f8f565b612a7f565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611515612a77565b73ffffffffffffffffffffffffffffffffffffffff16611533611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158090614d62565b60405180910390fd5b61159360006139e2565b565b61159d612a77565b73ffffffffffffffffffffffffffffffffffffffff166115bb611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160890614d62565b60405180910390fd5b610258831015611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d90615057565b60405180910390fd5b6103e88211158015611669575060008210155b6116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169f906150e9565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116df612a77565b73ffffffffffffffffffffffffffffffffffffffff166116fd611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614d62565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61177d612a77565b73ffffffffffffffffffffffffffffffffffffffff1661179b611a32565b73ffffffffffffffffffffffffffffffffffffffff16146117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890614d62565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b611880612a77565b73ffffffffffffffffffffffffffffffffffffffff1661189e611a32565b73ffffffffffffffffffffffffffffffffffffffff16146118f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118eb90614d62565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461191c9190614f8f565b6119269190614f8f565b60148190555060196014541115611972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196990615155565b60405180910390fd5b505050565b61197f612a77565b73ffffffffffffffffffffffffffffffffffffffff1661199d611a32565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90614d62565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a90612a77565b73ffffffffffffffffffffffffffffffffffffffff16611aae611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb90614d62565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611b3090614ce4565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5c90614ce4565b8015611ba95780601f10611b7e57610100808354040283529160200191611ba9565b820191906000526020600020905b815481529060010190602001808311611b8c57829003601f168201915b5050505050905090565b611bbb612a77565b73ffffffffffffffffffffffffffffffffffffffff16611bd9611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2690614d62565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb5906151e7565b60405180910390fd5b611cc88282613aa8565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611cf3612a77565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790615279565b60405180910390fd5b611dc4611dbb612a77565b85858403612a7f565b600191505092915050565b600e5481565b6000611de9611de2612a77565b8484612c4a565b6001905092915050565b611dfb612a77565b73ffffffffffffffffffffffffffffffffffffffff16611e19611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6690614d62565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f6a612a77565b73ffffffffffffffffffffffffffffffffffffffff16611f88611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd590614d62565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161207b919061479a565b60405180910390a25050565b61208f612a77565b73ffffffffffffffffffffffffffffffffffffffff166120ad611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fa90614d62565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a5460195461212b9190614f8f565b6121359190614f8f565b60188190555060196018541115612181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217890615155565b60405180910390fd5b505050565b61218e612a77565b73ffffffffffffffffffffffffffffffffffffffff166121ac611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990614d62565b60405180910390fd5b670de0b6b3a76400006103e86005612218610fe6565b6122229190614db1565b61222c9190614e3a565b6122369190614e3a565b811015612278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226f9061530b565b60405180910390fd5b670de0b6b3a76400008161228c9190614db1565b600a8190555050565b61229d612a77565b73ffffffffffffffffffffffffffffffffffffffff166122bb611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230890614d62565b60405180910390fd5b60005b81518110156123f05760003073ffffffffffffffffffffffffffffffffffffffff166370a0823184848151811061234e5761234d61532b565b5b60200260200101516040518263ffffffff1660e01b8152600401612372919061537b565b602060405180830381865afa15801561238f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123b391906153ab565b90506123dc8383815181106123cb576123ca61532b565b5b602002602001015161dead83613b49565b5080806123e8906153d8565b915050612314565b5050565b601360009054906101000a900460ff1681565b60085481565b6000612417612a77565b73ffffffffffffffffffffffffffffffffffffffff16612435611a32565b73ffffffffffffffffffffffffffffffffffffffff161461248b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248290614d62565b60405180910390fd5b620186a06001612499610fe6565b6124a39190614db1565b6124ad9190614e3a565b8210156124ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e690615493565b60405180910390fd5b6103e860056124fc610fe6565b6125069190614db1565b6125109190614e3a565b821115612552576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254990615525565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006125ff612a77565b73ffffffffffffffffffffffffffffffffffffffff1661261d611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266a90614d62565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6126a3612a77565b73ffffffffffffffffffffffffffffffffffffffff166126c1611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270e90614d62565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277e906155b7565b60405180910390fd5b612790816139e2565b50565b601a5481565b600a5481565b60006127a9612a77565b73ffffffffffffffffffffffffffffffffffffffff166127c7611a32565b73ffffffffffffffffffffffffffffffffffffffff161461281d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281490614d62565b60405180910390fd5b600f5460105461282d9190614f8f565b421161286e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286590615623565b60405180910390fd5b6103e88211156128b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128aa906156b5565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016129159190614915565b602060405180830381865afa158015612932573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061295691906153ab565b905060006129816127106129738685613dca90919063ffffffff16565b613de090919063ffffffff16565b905060008111156129ba576129b97f000000000000000000000000000000000000000000000000000000000000000061dead83613b49565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612a2757600080fd5b505af1158015612a3b573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae690615747565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b56906157d9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612c3d919061486b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb19061586b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d21906158fd565b60405180910390fd5b6000811415612d4457612d3f83836000613b49565b6139dd565b601160009054906101000a900460ff161561340757612d61611a32565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dcf5750612d9f611a32565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e085750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e42575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e5b5750600560149054906101000a900460ff16155b1561340657601160019054906101000a900460ff16612f5557601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f155750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4b90615969565b60405180910390fd5b5b601360009054906101000a900460ff161561311d57612f72611a32565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612ff957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561305157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561311c5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106130d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ce90615a21565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131c05750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132675760085481111561320a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320190615ab3565b60405180910390fd5b600a54613216836114c5565b826132219190614f8f565b1115613262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325990615b1f565b60405180910390fd5b613405565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561330a5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561335957600854811115613354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334b90615bb1565b60405180910390fd5b613404565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661340357600a546133b6836114c5565b826133c19190614f8f565b1115613402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f990615b1f565b60405180910390fd5b5b5b5b5b5b6000613412306114c5565b9050600060095482101590508080156134375750601160029054906101000a900460ff165b80156134505750600560149054906101000a900460ff16155b80156134a65750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134fc5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156135525750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613596576001600560146101000a81548160ff02191690831515021790555061357a613df6565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156135fc5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156136145750600c60009054906101000a900460ff165b801561362f5750600d54600e5461362b9190614f8f565b4210155b80156136855750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613694576136926140dd565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061374a5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561375457600090505b600081156139cd57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137b757506000601854115b15613884576137e460646137d660185488613dca90919063ffffffff16565b613de090919063ffffffff16565b9050601854601a54826137f79190614db1565b6138019190614e3a565b601d60008282546138129190614f8f565b92505081905550601854601b548261382a9190614db1565b6138349190614e3a565b601e60008282546138459190614f8f565b925050819055506018546019548261385d9190614db1565b6138679190614e3a565b601c60008282546138789190614f8f565b925050819055506139a9565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156138df57506000601454115b156139a85761390c60646138fe60145488613dca90919063ffffffff16565b613de090919063ffffffff16565b90506014546016548261391f9190614db1565b6139299190614e3a565b601d600082825461393a9190614f8f565b92505081905550601454601754826139529190614db1565b61395c9190614e3a565b601e600082825461396d9190614f8f565b92505081905550601454601554826139859190614db1565b61398f9190614e3a565b601c60008282546139a09190614f8f565b925050819055505b5b60008111156139be576139bd873083613b49565b5b80856139ca9190615bd1565b94505b6139d8878787613b49565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bb09061586b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c20906158fd565b60405180910390fd5b613c348383836142a3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cb190615c77565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613d4d9190614f8f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613db1919061486b565b60405180910390a3613dc48484846142a8565b50505050565b60008183613dd89190614db1565b905092915050565b60008183613dee9190614e3a565b905092915050565b6000613e01306114c5565b90506000601e54601c54601d54613e189190614f8f565b613e229190614f8f565b9050600080831480613e345750600082145b15613e41575050506140db565b6014600954613e509190614db1565b831115613e69576014600954613e669190614db1565b92505b6000600283601d5486613e7c9190614db1565b613e869190614e3a565b613e909190614e3a565b90506000613ea782866142ad90919063ffffffff16565b90506000479050613eb7826142c3565b6000613ecc82476142ad90919063ffffffff16565b90506000613ef787613ee9601c5485613dca90919063ffffffff16565b613de090919063ffffffff16565b90506000613f2288613f14601e5486613dca90919063ffffffff16565b613de090919063ffffffff16565b90506000818385613f339190615bd1565b613f3d9190615bd1565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613f9d90615cc8565b60006040518083038185875af1925050503d8060008114613fda576040519150601f19603f3d011682016040523d82523d6000602084013e613fdf565b606091505b505080985050600087118015613ff55750600081115b15614042576140048782614500565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d5460405161403993929190615cdd565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161408890615cc8565b60006040518083038185875af1925050503d80600081146140c5576040519150601f19603f3d011682016040523d82523d6000602084013e6140ca565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016141419190614915565b602060405180830381865afa15801561415e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061418291906153ab565b905060006141af6127106141a1600b5485613dca90919063ffffffff16565b613de090919063ffffffff16565b905060008111156141e8576141e77f000000000000000000000000000000000000000000000000000000000000000061dead83613b49565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561425557600080fd5b505af1158015614269573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836142bb9190615bd1565b905092915050565b6000600267ffffffffffffffff8111156142e0576142df614aab565b5b60405190808252806020026020018201604052801561430e5781602001602082028036833780820191505090505b50905030816000815181106143265761432561532b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156143cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143ef9190615d29565b816001815181106144035761440261532b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614468307f000000000000000000000000000000000000000000000000000000000000000084612a7f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016144ca959493929190615e4f565b600060405180830381600087803b1580156144e457600080fd5b505af11580156144f8573d6000803e3d6000fd5b505050505050565b61452b307f000000000000000000000000000000000000000000000000000000000000000084612a7f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161459296959493929190615ea9565b60606040518083038185885af11580156145b0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906145d59190615f0a565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156146165780820151818401526020810190506145fb565b83811115614625576000848401525b50505050565b6000601f19601f8301169050919050565b6000614647826145dc565b61465181856145e7565b93506146618185602086016145f8565b61466a8161462b565b840191505092915050565b6000602082019050818103600083015261468f818461463c565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006146d6826146ab565b9050919050565b6146e6816146cb565b81146146f157600080fd5b50565b600081359050614703816146dd565b92915050565b6000819050919050565b61471c81614709565b811461472757600080fd5b50565b60008135905061473981614713565b92915050565b60008060408385031215614756576147556146a1565b5b6000614764858286016146f4565b92505060206147758582860161472a565b9150509250929050565b60008115159050919050565b6147948161477f565b82525050565b60006020820190506147af600083018461478b565b92915050565b6000602082840312156147cb576147ca6146a1565b5b60006147d9848285016146f4565b91505092915050565b6000819050919050565b60006148076148026147fd846146ab565b6147e2565b6146ab565b9050919050565b6000614819826147ec565b9050919050565b600061482b8261480e565b9050919050565b61483b81614820565b82525050565b60006020820190506148566000830184614832565b92915050565b61486581614709565b82525050565b6000602082019050614880600083018461485c565b92915050565b60006020828403121561489c5761489b6146a1565b5b60006148aa8482850161472a565b91505092915050565b6000806000606084860312156148cc576148cb6146a1565b5b60006148da868287016146f4565b93505060206148eb868287016146f4565b92505060406148fc8682870161472a565b9150509250925092565b61490f816146cb565b82525050565b600060208201905061492a6000830184614906565b92915050565b600060ff82169050919050565b61494681614930565b82525050565b6000602082019050614961600083018461493d565b92915050565b6149708161477f565b811461497b57600080fd5b50565b60008135905061498d81614967565b92915050565b6000806000606084860312156149ac576149ab6146a1565b5b60006149ba8682870161472a565b93505060206149cb8682870161472a565b92505060406149dc8682870161497e565b9150509250925092565b600080604083850312156149fd576149fc6146a1565b5b6000614a0b858286016146f4565b9250506020614a1c8582860161497e565b9150509250929050565b600080600060608486031215614a3f57614a3e6146a1565b5b6000614a4d8682870161472a565b9350506020614a5e8682870161472a565b9250506040614a6f8682870161472a565b9150509250925092565b600060208284031215614a8f57614a8e6146a1565b5b6000614a9d8482850161497e565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614ae38261462b565b810181811067ffffffffffffffff82111715614b0257614b01614aab565b5b80604052505050565b6000614b15614697565b9050614b218282614ada565b919050565b600067ffffffffffffffff821115614b4157614b40614aab565b5b602082029050602081019050919050565b600080fd5b6000614b62826146ab565b9050919050565b614b7281614b57565b8114614b7d57600080fd5b50565b600081359050614b8f81614b69565b92915050565b6000614ba8614ba384614b26565b614b0b565b90508083825260208201905060208402830185811115614bcb57614bca614b52565b5b835b81811015614bf45780614be08882614b80565b845260208401935050602081019050614bcd565b5050509392505050565b600082601f830112614c1357614c12614aa6565b5b8135614c23848260208601614b95565b91505092915050565b600060208284031215614c4257614c416146a1565b5b600082013567ffffffffffffffff811115614c6057614c5f6146a6565b5b614c6c84828501614bfe565b91505092915050565b60008060408385031215614c8c57614c8b6146a1565b5b6000614c9a858286016146f4565b9250506020614cab858286016146f4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614cfc57607f821691505b60208210811415614d1057614d0f614cb5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614d4c6020836145e7565b9150614d5782614d16565b602082019050919050565b60006020820190508181036000830152614d7b81614d3f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614dbc82614709565b9150614dc783614709565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e0057614dff614d82565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e4582614709565b9150614e5083614709565b925082614e6057614e5f614e0b565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614ec7602f836145e7565b9150614ed282614e6b565b604082019050919050565b60006020820190508181036000830152614ef681614eba565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614f596028836145e7565b9150614f6482614efd565b604082019050919050565b60006020820190508181036000830152614f8881614f4c565b9050919050565b6000614f9a82614709565b9150614fa583614709565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614fda57614fd9614d82565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006150416033836145e7565b915061504c82614fe5565b604082019050919050565b6000602082019050818103600083015261507081615034565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b60006150d36030836145e7565b91506150de82615077565b604082019050919050565b60006020820190508181036000830152615102816150c6565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b600061513f601d836145e7565b915061514a82615109565b602082019050919050565b6000602082019050818103600083015261516e81615132565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006151d16039836145e7565b91506151dc82615175565b604082019050919050565b60006020820190508181036000830152615200816151c4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006152636025836145e7565b915061526e82615207565b604082019050919050565b6000602082019050818103600083015261529281615256565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006152f56024836145e7565b915061530082615299565b604082019050919050565b60006020820190508181036000830152615324816152e8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006153658261480e565b9050919050565b6153758161535a565b82525050565b6000602082019050615390600083018461536c565b92915050565b6000815190506153a581614713565b92915050565b6000602082840312156153c1576153c06146a1565b5b60006153cf84828501615396565b91505092915050565b60006153e382614709565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561541657615415614d82565b5b600182019050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061547d6035836145e7565b915061548882615421565b604082019050919050565b600060208201905081810360008301526154ac81615470565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061550f6034836145e7565b915061551a826154b3565b604082019050919050565b6000602082019050818103600083015261553e81615502565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006155a16026836145e7565b91506155ac82615545565b604082019050919050565b600060208201905081810360008301526155d081615594565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061560d6020836145e7565b9150615618826155d7565b602082019050919050565b6000602082019050818103600083015261563c81615600565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b600061569f602a836145e7565b91506156aa82615643565b604082019050919050565b600060208201905081810360008301526156ce81615692565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006157316024836145e7565b915061573c826156d5565b604082019050919050565b6000602082019050818103600083015261576081615724565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006157c36022836145e7565b91506157ce82615767565b604082019050919050565b600060208201905081810360008301526157f2816157b6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006158556025836145e7565b9150615860826157f9565b604082019050919050565b6000602082019050818103600083015261588481615848565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006158e76023836145e7565b91506158f28261588b565b604082019050919050565b60006020820190508181036000830152615916816158da565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006159536016836145e7565b915061595e8261591d565b602082019050919050565b6000602082019050818103600083015261598281615946565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615a0b6049836145e7565b9150615a1682615989565b606082019050919050565b60006020820190508181036000830152615a3a816159fe565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615a9d6035836145e7565b9150615aa882615a41565b604082019050919050565b60006020820190508181036000830152615acc81615a90565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615b096013836145e7565b9150615b1482615ad3565b602082019050919050565b60006020820190508181036000830152615b3881615afc565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615b9b6036836145e7565b9150615ba682615b3f565b604082019050919050565b60006020820190508181036000830152615bca81615b8e565b9050919050565b6000615bdc82614709565b9150615be783614709565b925082821015615bfa57615bf9614d82565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615c616026836145e7565b9150615c6c82615c05565b604082019050919050565b60006020820190508181036000830152615c9081615c54565b9050919050565b600081905092915050565b50565b6000615cb2600083615c97565b9150615cbd82615ca2565b600082019050919050565b6000615cd382615ca5565b9150819050919050565b6000606082019050615cf2600083018661485c565b615cff602083018561485c565b615d0c604083018461485c565b949350505050565b600081519050615d23816146dd565b92915050565b600060208284031215615d3f57615d3e6146a1565b5b6000615d4d84828501615d14565b91505092915050565b6000819050919050565b6000615d7b615d76615d7184615d56565b6147e2565b614709565b9050919050565b615d8b81615d60565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615dc6816146cb565b82525050565b6000615dd88383615dbd565b60208301905092915050565b6000602082019050919050565b6000615dfc82615d91565b615e068185615d9c565b9350615e1183615dad565b8060005b83811015615e42578151615e298882615dcc565b9750615e3483615de4565b925050600181019050615e15565b5085935050505092915050565b600060a082019050615e64600083018861485c565b615e716020830187615d82565b8181036040830152615e838186615df1565b9050615e926060830185614906565b615e9f608083018461485c565b9695505050505050565b600060c082019050615ebe6000830189614906565b615ecb602083018861485c565b615ed86040830187615d82565b615ee56060830186615d82565b615ef26080830185614906565b615eff60a083018461485c565b979650505050505050565b600080600060608486031215615f2357615f226146a1565b5b6000615f3186828701615396565b9350506020615f4286828701615396565b9250506040615f5386828701615396565b915050925092509256fea2646970667358221220c5dab72d582dbc43d1a75ea814da030ef54997dd6fcb53cc57c6bc2e5257e60f64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103bc5760003560e01c80638da5cb5b116101f2578063c02466681161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e37578063f637434214610e60578063f8b45b0514610e8b578063fe72b27a14610eb6576103c3565b8063dd62ed3e14610d79578063e2f4560514610db6578063e884f26014610de1578063f11a24d314610e0c576103c3565b8063c876d0b9116100dc578063c876d0b914610cbb578063c8c8ebe414610ce6578063d257b34f14610d11578063d85ba06314610d4e576103c3565b8063c024666814610c17578063c17b5b8c14610c40578063c18bc19514610c69578063c68639f014610c92576103c3565b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610b49578063aacebbe314610b86578063b62496f514610baf578063bbc0c74214610bec576103c3565b80639fccce3214610a8b578063a0d82dc514610ab6578063a457c2d714610ae1578063a4c82a0014610b1e576103c3565b806395d89b41116101c157806395d89b41146109e15780639a7a23d614610a0c5780639c3b4fdc14610a355780639ec22c0e14610a60576103c3565b80638da5cb5b146109375780638ea5220f14610962578063921369131461098d578063924de9b7146109b8576103c3565b8063313ce567116102e2578063715018a61161027557806375f0a8741161024457806375f0a874146108a15780637bce5a04146108cc5780638095d564146108f75780638a8c523c14610920576103c3565b8063715018a61461080d578063730c188814610824578063751039fc1461084d5780637571336a14610878576103c3565b80634fbee193116102b15780634fbee1931461073d5780636a486a8e1461077a5780636ddd1713146107a557806370a08231146107d0576103c3565b8063313ce5671461067f57806339509351146106aa57806349bd5a5e146106e75780634a62bb6514610712576103c3565b8063199ffc721161035a57806323b872dd1161032957806323b872dd146105c157806327c8f835146105fe5780632c3e486c146106295780632e82f1a014610654576103c3565b8063199ffc72146105175780631a8145bb146105425780631f3fed8f1461056d578063203e727e14610598576103c3565b80631694505e116103965780631694505e1461046d57806318160ddd146104985780631816467f146104c3578063184c16c5146104ec576103c3565b806306fdde03146103c8578063095ea7b3146103f357806310d5de5314610430576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610ef3565b6040516103ea9190614675565b60405180910390f35b3480156103ff57600080fd5b5061041a6004803603810190610415919061473f565b610f85565b604051610427919061479a565b60405180910390f35b34801561043c57600080fd5b50610457600480360381019061045291906147b5565b610fa3565b604051610464919061479a565b60405180910390f35b34801561047957600080fd5b50610482610fc2565b60405161048f9190614841565b60405180910390f35b3480156104a457600080fd5b506104ad610fe6565b6040516104ba919061486b565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e591906147b5565b610ff0565b005b3480156104f857600080fd5b5061050161112c565b60405161050e919061486b565b60405180910390f35b34801561052357600080fd5b5061052c611132565b604051610539919061486b565b60405180910390f35b34801561054e57600080fd5b50610557611138565b604051610564919061486b565b60405180910390f35b34801561057957600080fd5b5061058261113e565b60405161058f919061486b565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190614886565b611144565b005b3480156105cd57600080fd5b506105e860048036038101906105e391906148b3565b611253565b6040516105f5919061479a565b60405180910390f35b34801561060a57600080fd5b5061061361134b565b6040516106209190614915565b60405180910390f35b34801561063557600080fd5b5061063e611351565b60405161064b919061486b565b60405180910390f35b34801561066057600080fd5b50610669611357565b604051610676919061479a565b60405180910390f35b34801561068b57600080fd5b5061069461136a565b6040516106a1919061494c565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc919061473f565b611373565b6040516106de919061479a565b60405180910390f35b3480156106f357600080fd5b506106fc61141f565b6040516107099190614915565b60405180910390f35b34801561071e57600080fd5b50610727611443565b604051610734919061479a565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f91906147b5565b611456565b604051610771919061479a565b60405180910390f35b34801561078657600080fd5b5061078f6114ac565b60405161079c919061486b565b60405180910390f35b3480156107b157600080fd5b506107ba6114b2565b6040516107c7919061479a565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f291906147b5565b6114c5565b604051610804919061486b565b60405180910390f35b34801561081957600080fd5b5061082261150d565b005b34801561083057600080fd5b5061084b60048036038101906108469190614993565b611595565b005b34801561085957600080fd5b506108626116d5565b60405161086f919061479a565b60405180910390f35b34801561088457600080fd5b5061089f600480360381019061089a91906149e6565b611775565b005b3480156108ad57600080fd5b506108b661184c565b6040516108c39190614915565b60405180910390f35b3480156108d857600080fd5b506108e1611872565b6040516108ee919061486b565b60405180910390f35b34801561090357600080fd5b5061091e60048036038101906109199190614a26565b611878565b005b34801561092c57600080fd5b50610935611977565b005b34801561094357600080fd5b5061094c611a32565b6040516109599190614915565b60405180910390f35b34801561096e57600080fd5b50610977611a5c565b6040516109849190614915565b60405180910390f35b34801561099957600080fd5b506109a2611a82565b6040516109af919061486b565b60405180910390f35b3480156109c457600080fd5b506109df60048036038101906109da9190614a79565b611a88565b005b3480156109ed57600080fd5b506109f6611b21565b604051610a039190614675565b60405180910390f35b348015610a1857600080fd5b50610a336004803603810190610a2e91906149e6565b611bb3565b005b348015610a4157600080fd5b50610a4a611ccc565b604051610a57919061486b565b60405180910390f35b348015610a6c57600080fd5b50610a75611cd2565b604051610a82919061486b565b60405180910390f35b348015610a9757600080fd5b50610aa0611cd8565b604051610aad919061486b565b60405180910390f35b348015610ac257600080fd5b50610acb611cde565b604051610ad8919061486b565b60405180910390f35b348015610aed57600080fd5b50610b086004803603810190610b03919061473f565b611ce4565b604051610b15919061479a565b60405180910390f35b348015610b2a57600080fd5b50610b33611dcf565b604051610b40919061486b565b60405180910390f35b348015610b5557600080fd5b50610b706004803603810190610b6b919061473f565b611dd5565b604051610b7d919061479a565b60405180910390f35b348015610b9257600080fd5b50610bad6004803603810190610ba891906147b5565b611df3565b005b348015610bbb57600080fd5b50610bd66004803603810190610bd191906147b5565b611f2f565b604051610be3919061479a565b60405180910390f35b348015610bf857600080fd5b50610c01611f4f565b604051610c0e919061479a565b60405180910390f35b348015610c2357600080fd5b50610c3e6004803603810190610c3991906149e6565b611f62565b005b348015610c4c57600080fd5b50610c676004803603810190610c629190614a26565b612087565b005b348015610c7557600080fd5b50610c906004803603810190610c8b9190614886565b612186565b005b348015610c9e57600080fd5b50610cb96004803603810190610cb49190614c2c565b612295565b005b348015610cc757600080fd5b50610cd06123f4565b604051610cdd919061479a565b60405180910390f35b348015610cf257600080fd5b50610cfb612407565b604051610d08919061486b565b60405180910390f35b348015610d1d57600080fd5b50610d386004803603810190610d339190614886565b61240d565b604051610d45919061479a565b60405180910390f35b348015610d5a57600080fd5b50610d63612562565b604051610d70919061486b565b60405180910390f35b348015610d8557600080fd5b50610da06004803603810190610d9b9190614c75565b612568565b604051610dad919061486b565b60405180910390f35b348015610dc257600080fd5b50610dcb6125ef565b604051610dd8919061486b565b60405180910390f35b348015610ded57600080fd5b50610df66125f5565b604051610e03919061479a565b60405180910390f35b348015610e1857600080fd5b50610e21612695565b604051610e2e919061486b565b60405180910390f35b348015610e4357600080fd5b50610e5e6004803603810190610e5991906147b5565b61269b565b005b348015610e6c57600080fd5b50610e75612793565b604051610e82919061486b565b60405180910390f35b348015610e9757600080fd5b50610ea0612799565b604051610ead919061486b565b60405180910390f35b348015610ec257600080fd5b50610edd6004803603810190610ed89190614886565b61279f565b604051610eea919061479a565b60405180910390f35b606060038054610f0290614ce4565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2e90614ce4565b8015610f7b5780601f10610f5057610100808354040283529160200191610f7b565b820191906000526020600020905b815481529060010190602001808311610f5e57829003601f168201915b5050505050905090565b6000610f99610f92612a77565b8484612a7f565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610ff8612a77565b73ffffffffffffffffffffffffffffffffffffffff16611016611a32565b73ffffffffffffffffffffffffffffffffffffffff161461106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390614d62565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61114c612a77565b73ffffffffffffffffffffffffffffffffffffffff1661116a611a32565b73ffffffffffffffffffffffffffffffffffffffff16146111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790614d62565b60405180910390fd5b670de0b6b3a76400006103e860016111d6610fe6565b6111e09190614db1565b6111ea9190614e3a565b6111f49190614e3a565b811015611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d90614edd565b60405180910390fd5b670de0b6b3a76400008161124a9190614db1565b60088190555050565b6000611260848484612c4a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112ab612a77565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290614f6f565b60405180910390fd5b61133f85611337612a77565b858403612a7f565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b6000611415611380612a77565b84846001600061138e612a77565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114109190614f8f565b612a7f565b6001905092915050565b7f00000000000000000000000077b8d892b48e11284ab7a267c2a792eae0e96a5281565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611515612a77565b73ffffffffffffffffffffffffffffffffffffffff16611533611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158090614d62565b60405180910390fd5b61159360006139e2565b565b61159d612a77565b73ffffffffffffffffffffffffffffffffffffffff166115bb611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160890614d62565b60405180910390fd5b610258831015611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d90615057565b60405180910390fd5b6103e88211158015611669575060008210155b6116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169f906150e9565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116df612a77565b73ffffffffffffffffffffffffffffffffffffffff166116fd611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614d62565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61177d612a77565b73ffffffffffffffffffffffffffffffffffffffff1661179b611a32565b73ffffffffffffffffffffffffffffffffffffffff16146117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890614d62565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b611880612a77565b73ffffffffffffffffffffffffffffffffffffffff1661189e611a32565b73ffffffffffffffffffffffffffffffffffffffff16146118f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118eb90614d62565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461191c9190614f8f565b6119269190614f8f565b60148190555060196014541115611972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196990615155565b60405180910390fd5b505050565b61197f612a77565b73ffffffffffffffffffffffffffffffffffffffff1661199d611a32565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90614d62565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a90612a77565b73ffffffffffffffffffffffffffffffffffffffff16611aae611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb90614d62565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611b3090614ce4565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5c90614ce4565b8015611ba95780601f10611b7e57610100808354040283529160200191611ba9565b820191906000526020600020905b815481529060010190602001808311611b8c57829003601f168201915b5050505050905090565b611bbb612a77565b73ffffffffffffffffffffffffffffffffffffffff16611bd9611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2690614d62565b60405180910390fd5b7f00000000000000000000000077b8d892b48e11284ab7a267c2a792eae0e96a5273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb5906151e7565b60405180910390fd5b611cc88282613aa8565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611cf3612a77565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790615279565b60405180910390fd5b611dc4611dbb612a77565b85858403612a7f565b600191505092915050565b600e5481565b6000611de9611de2612a77565b8484612c4a565b6001905092915050565b611dfb612a77565b73ffffffffffffffffffffffffffffffffffffffff16611e19611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6690614d62565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f6a612a77565b73ffffffffffffffffffffffffffffffffffffffff16611f88611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd590614d62565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161207b919061479a565b60405180910390a25050565b61208f612a77565b73ffffffffffffffffffffffffffffffffffffffff166120ad611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fa90614d62565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a5460195461212b9190614f8f565b6121359190614f8f565b60188190555060196018541115612181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217890615155565b60405180910390fd5b505050565b61218e612a77565b73ffffffffffffffffffffffffffffffffffffffff166121ac611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990614d62565b60405180910390fd5b670de0b6b3a76400006103e86005612218610fe6565b6122229190614db1565b61222c9190614e3a565b6122369190614e3a565b811015612278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226f9061530b565b60405180910390fd5b670de0b6b3a76400008161228c9190614db1565b600a8190555050565b61229d612a77565b73ffffffffffffffffffffffffffffffffffffffff166122bb611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230890614d62565b60405180910390fd5b60005b81518110156123f05760003073ffffffffffffffffffffffffffffffffffffffff166370a0823184848151811061234e5761234d61532b565b5b60200260200101516040518263ffffffff1660e01b8152600401612372919061537b565b602060405180830381865afa15801561238f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123b391906153ab565b90506123dc8383815181106123cb576123ca61532b565b5b602002602001015161dead83613b49565b5080806123e8906153d8565b915050612314565b5050565b601360009054906101000a900460ff1681565b60085481565b6000612417612a77565b73ffffffffffffffffffffffffffffffffffffffff16612435611a32565b73ffffffffffffffffffffffffffffffffffffffff161461248b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248290614d62565b60405180910390fd5b620186a06001612499610fe6565b6124a39190614db1565b6124ad9190614e3a565b8210156124ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e690615493565b60405180910390fd5b6103e860056124fc610fe6565b6125069190614db1565b6125109190614e3a565b821115612552576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254990615525565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006125ff612a77565b73ffffffffffffffffffffffffffffffffffffffff1661261d611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266a90614d62565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6126a3612a77565b73ffffffffffffffffffffffffffffffffffffffff166126c1611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270e90614d62565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277e906155b7565b60405180910390fd5b612790816139e2565b50565b601a5481565b600a5481565b60006127a9612a77565b73ffffffffffffffffffffffffffffffffffffffff166127c7611a32565b73ffffffffffffffffffffffffffffffffffffffff161461281d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281490614d62565b60405180910390fd5b600f5460105461282d9190614f8f565b421161286e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286590615623565b60405180910390fd5b6103e88211156128b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128aa906156b5565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000077b8d892b48e11284ab7a267c2a792eae0e96a526040518263ffffffff1660e01b81526004016129159190614915565b602060405180830381865afa158015612932573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061295691906153ab565b905060006129816127106129738685613dca90919063ffffffff16565b613de090919063ffffffff16565b905060008111156129ba576129b97f00000000000000000000000077b8d892b48e11284ab7a267c2a792eae0e96a5261dead83613b49565b5b60007f00000000000000000000000077b8d892b48e11284ab7a267c2a792eae0e96a5290508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612a2757600080fd5b505af1158015612a3b573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae690615747565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b56906157d9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612c3d919061486b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb19061586b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d21906158fd565b60405180910390fd5b6000811415612d4457612d3f83836000613b49565b6139dd565b601160009054906101000a900460ff161561340757612d61611a32565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dcf5750612d9f611a32565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e085750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e42575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e5b5750600560149054906101000a900460ff16155b1561340657601160019054906101000a900460ff16612f5557601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f155750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4b90615969565b60405180910390fd5b5b601360009054906101000a900460ff161561311d57612f72611a32565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612ff957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561305157507f00000000000000000000000077b8d892b48e11284ab7a267c2a792eae0e96a5273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561311c5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106130d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ce90615a21565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131c05750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132675760085481111561320a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320190615ab3565b60405180910390fd5b600a54613216836114c5565b826132219190614f8f565b1115613262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325990615b1f565b60405180910390fd5b613405565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561330a5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561335957600854811115613354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334b90615bb1565b60405180910390fd5b613404565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661340357600a546133b6836114c5565b826133c19190614f8f565b1115613402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f990615b1f565b60405180910390fd5b5b5b5b5b5b6000613412306114c5565b9050600060095482101590508080156134375750601160029054906101000a900460ff165b80156134505750600560149054906101000a900460ff16155b80156134a65750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134fc5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156135525750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613596576001600560146101000a81548160ff02191690831515021790555061357a613df6565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156135fc5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156136145750600c60009054906101000a900460ff165b801561362f5750600d54600e5461362b9190614f8f565b4210155b80156136855750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613694576136926140dd565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061374a5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561375457600090505b600081156139cd57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137b757506000601854115b15613884576137e460646137d660185488613dca90919063ffffffff16565b613de090919063ffffffff16565b9050601854601a54826137f79190614db1565b6138019190614e3a565b601d60008282546138129190614f8f565b92505081905550601854601b548261382a9190614db1565b6138349190614e3a565b601e60008282546138459190614f8f565b925050819055506018546019548261385d9190614db1565b6138679190614e3a565b601c60008282546138789190614f8f565b925050819055506139a9565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156138df57506000601454115b156139a85761390c60646138fe60145488613dca90919063ffffffff16565b613de090919063ffffffff16565b90506014546016548261391f9190614db1565b6139299190614e3a565b601d600082825461393a9190614f8f565b92505081905550601454601754826139529190614db1565b61395c9190614e3a565b601e600082825461396d9190614f8f565b92505081905550601454601554826139859190614db1565b61398f9190614e3a565b601c60008282546139a09190614f8f565b925050819055505b5b60008111156139be576139bd873083613b49565b5b80856139ca9190615bd1565b94505b6139d8878787613b49565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bb09061586b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c20906158fd565b60405180910390fd5b613c348383836142a3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cb190615c77565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613d4d9190614f8f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613db1919061486b565b60405180910390a3613dc48484846142a8565b50505050565b60008183613dd89190614db1565b905092915050565b60008183613dee9190614e3a565b905092915050565b6000613e01306114c5565b90506000601e54601c54601d54613e189190614f8f565b613e229190614f8f565b9050600080831480613e345750600082145b15613e41575050506140db565b6014600954613e509190614db1565b831115613e69576014600954613e669190614db1565b92505b6000600283601d5486613e7c9190614db1565b613e869190614e3a565b613e909190614e3a565b90506000613ea782866142ad90919063ffffffff16565b90506000479050613eb7826142c3565b6000613ecc82476142ad90919063ffffffff16565b90506000613ef787613ee9601c5485613dca90919063ffffffff16565b613de090919063ffffffff16565b90506000613f2288613f14601e5486613dca90919063ffffffff16565b613de090919063ffffffff16565b90506000818385613f339190615bd1565b613f3d9190615bd1565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613f9d90615cc8565b60006040518083038185875af1925050503d8060008114613fda576040519150601f19603f3d011682016040523d82523d6000602084013e613fdf565b606091505b505080985050600087118015613ff55750600081115b15614042576140048782614500565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d5460405161403993929190615cdd565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161408890615cc8565b60006040518083038185875af1925050503d80600081146140c5576040519150601f19603f3d011682016040523d82523d6000602084013e6140ca565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000077b8d892b48e11284ab7a267c2a792eae0e96a526040518263ffffffff1660e01b81526004016141419190614915565b602060405180830381865afa15801561415e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061418291906153ab565b905060006141af6127106141a1600b5485613dca90919063ffffffff16565b613de090919063ffffffff16565b905060008111156141e8576141e77f00000000000000000000000077b8d892b48e11284ab7a267c2a792eae0e96a5261dead83613b49565b5b60007f00000000000000000000000077b8d892b48e11284ab7a267c2a792eae0e96a5290508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561425557600080fd5b505af1158015614269573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836142bb9190615bd1565b905092915050565b6000600267ffffffffffffffff8111156142e0576142df614aab565b5b60405190808252806020026020018201604052801561430e5781602001602082028036833780820191505090505b50905030816000815181106143265761432561532b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156143cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143ef9190615d29565b816001815181106144035761440261532b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614468307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612a7f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016144ca959493929190615e4f565b600060405180830381600087803b1580156144e457600080fd5b505af11580156144f8573d6000803e3d6000fd5b505050505050565b61452b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612a7f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161459296959493929190615ea9565b60606040518083038185885af11580156145b0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906145d59190615f0a565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156146165780820151818401526020810190506145fb565b83811115614625576000848401525b50505050565b6000601f19601f8301169050919050565b6000614647826145dc565b61465181856145e7565b93506146618185602086016145f8565b61466a8161462b565b840191505092915050565b6000602082019050818103600083015261468f818461463c565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006146d6826146ab565b9050919050565b6146e6816146cb565b81146146f157600080fd5b50565b600081359050614703816146dd565b92915050565b6000819050919050565b61471c81614709565b811461472757600080fd5b50565b60008135905061473981614713565b92915050565b60008060408385031215614756576147556146a1565b5b6000614764858286016146f4565b92505060206147758582860161472a565b9150509250929050565b60008115159050919050565b6147948161477f565b82525050565b60006020820190506147af600083018461478b565b92915050565b6000602082840312156147cb576147ca6146a1565b5b60006147d9848285016146f4565b91505092915050565b6000819050919050565b60006148076148026147fd846146ab565b6147e2565b6146ab565b9050919050565b6000614819826147ec565b9050919050565b600061482b8261480e565b9050919050565b61483b81614820565b82525050565b60006020820190506148566000830184614832565b92915050565b61486581614709565b82525050565b6000602082019050614880600083018461485c565b92915050565b60006020828403121561489c5761489b6146a1565b5b60006148aa8482850161472a565b91505092915050565b6000806000606084860312156148cc576148cb6146a1565b5b60006148da868287016146f4565b93505060206148eb868287016146f4565b92505060406148fc8682870161472a565b9150509250925092565b61490f816146cb565b82525050565b600060208201905061492a6000830184614906565b92915050565b600060ff82169050919050565b61494681614930565b82525050565b6000602082019050614961600083018461493d565b92915050565b6149708161477f565b811461497b57600080fd5b50565b60008135905061498d81614967565b92915050565b6000806000606084860312156149ac576149ab6146a1565b5b60006149ba8682870161472a565b93505060206149cb8682870161472a565b92505060406149dc8682870161497e565b9150509250925092565b600080604083850312156149fd576149fc6146a1565b5b6000614a0b858286016146f4565b9250506020614a1c8582860161497e565b9150509250929050565b600080600060608486031215614a3f57614a3e6146a1565b5b6000614a4d8682870161472a565b9350506020614a5e8682870161472a565b9250506040614a6f8682870161472a565b9150509250925092565b600060208284031215614a8f57614a8e6146a1565b5b6000614a9d8482850161497e565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614ae38261462b565b810181811067ffffffffffffffff82111715614b0257614b01614aab565b5b80604052505050565b6000614b15614697565b9050614b218282614ada565b919050565b600067ffffffffffffffff821115614b4157614b40614aab565b5b602082029050602081019050919050565b600080fd5b6000614b62826146ab565b9050919050565b614b7281614b57565b8114614b7d57600080fd5b50565b600081359050614b8f81614b69565b92915050565b6000614ba8614ba384614b26565b614b0b565b90508083825260208201905060208402830185811115614bcb57614bca614b52565b5b835b81811015614bf45780614be08882614b80565b845260208401935050602081019050614bcd565b5050509392505050565b600082601f830112614c1357614c12614aa6565b5b8135614c23848260208601614b95565b91505092915050565b600060208284031215614c4257614c416146a1565b5b600082013567ffffffffffffffff811115614c6057614c5f6146a6565b5b614c6c84828501614bfe565b91505092915050565b60008060408385031215614c8c57614c8b6146a1565b5b6000614c9a858286016146f4565b9250506020614cab858286016146f4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614cfc57607f821691505b60208210811415614d1057614d0f614cb5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614d4c6020836145e7565b9150614d5782614d16565b602082019050919050565b60006020820190508181036000830152614d7b81614d3f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614dbc82614709565b9150614dc783614709565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e0057614dff614d82565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e4582614709565b9150614e5083614709565b925082614e6057614e5f614e0b565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614ec7602f836145e7565b9150614ed282614e6b565b604082019050919050565b60006020820190508181036000830152614ef681614eba565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614f596028836145e7565b9150614f6482614efd565b604082019050919050565b60006020820190508181036000830152614f8881614f4c565b9050919050565b6000614f9a82614709565b9150614fa583614709565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614fda57614fd9614d82565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006150416033836145e7565b915061504c82614fe5565b604082019050919050565b6000602082019050818103600083015261507081615034565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b60006150d36030836145e7565b91506150de82615077565b604082019050919050565b60006020820190508181036000830152615102816150c6565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b600061513f601d836145e7565b915061514a82615109565b602082019050919050565b6000602082019050818103600083015261516e81615132565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006151d16039836145e7565b91506151dc82615175565b604082019050919050565b60006020820190508181036000830152615200816151c4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006152636025836145e7565b915061526e82615207565b604082019050919050565b6000602082019050818103600083015261529281615256565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006152f56024836145e7565b915061530082615299565b604082019050919050565b60006020820190508181036000830152615324816152e8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006153658261480e565b9050919050565b6153758161535a565b82525050565b6000602082019050615390600083018461536c565b92915050565b6000815190506153a581614713565b92915050565b6000602082840312156153c1576153c06146a1565b5b60006153cf84828501615396565b91505092915050565b60006153e382614709565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561541657615415614d82565b5b600182019050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061547d6035836145e7565b915061548882615421565b604082019050919050565b600060208201905081810360008301526154ac81615470565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061550f6034836145e7565b915061551a826154b3565b604082019050919050565b6000602082019050818103600083015261553e81615502565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006155a16026836145e7565b91506155ac82615545565b604082019050919050565b600060208201905081810360008301526155d081615594565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061560d6020836145e7565b9150615618826155d7565b602082019050919050565b6000602082019050818103600083015261563c81615600565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b600061569f602a836145e7565b91506156aa82615643565b604082019050919050565b600060208201905081810360008301526156ce81615692565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006157316024836145e7565b915061573c826156d5565b604082019050919050565b6000602082019050818103600083015261576081615724565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006157c36022836145e7565b91506157ce82615767565b604082019050919050565b600060208201905081810360008301526157f2816157b6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006158556025836145e7565b9150615860826157f9565b604082019050919050565b6000602082019050818103600083015261588481615848565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006158e76023836145e7565b91506158f28261588b565b604082019050919050565b60006020820190508181036000830152615916816158da565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006159536016836145e7565b915061595e8261591d565b602082019050919050565b6000602082019050818103600083015261598281615946565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615a0b6049836145e7565b9150615a1682615989565b606082019050919050565b60006020820190508181036000830152615a3a816159fe565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615a9d6035836145e7565b9150615aa882615a41565b604082019050919050565b60006020820190508181036000830152615acc81615a90565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615b096013836145e7565b9150615b1482615ad3565b602082019050919050565b60006020820190508181036000830152615b3881615afc565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615b9b6036836145e7565b9150615ba682615b3f565b604082019050919050565b60006020820190508181036000830152615bca81615b8e565b9050919050565b6000615bdc82614709565b9150615be783614709565b925082821015615bfa57615bf9614d82565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615c616026836145e7565b9150615c6c82615c05565b604082019050919050565b60006020820190508181036000830152615c9081615c54565b9050919050565b600081905092915050565b50565b6000615cb2600083615c97565b9150615cbd82615ca2565b600082019050919050565b6000615cd382615ca5565b9150819050919050565b6000606082019050615cf2600083018661485c565b615cff602083018561485c565b615d0c604083018461485c565b949350505050565b600081519050615d23816146dd565b92915050565b600060208284031215615d3f57615d3e6146a1565b5b6000615d4d84828501615d14565b91505092915050565b6000819050919050565b6000615d7b615d76615d7184615d56565b6147e2565b614709565b9050919050565b615d8b81615d60565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615dc6816146cb565b82525050565b6000615dd88383615dbd565b60208301905092915050565b6000602082019050919050565b6000615dfc82615d91565b615e068185615d9c565b9350615e1183615dad565b8060005b83811015615e42578151615e298882615dcc565b9750615e3483615de4565b925050600181019050615e15565b5085935050505092915050565b600060a082019050615e64600083018861485c565b615e716020830187615d82565b8181036040830152615e838186615df1565b9050615e926060830185614906565b615e9f608083018461485c565b9695505050505050565b600060c082019050615ebe6000830189614906565b615ecb602083018861485c565b615ed86040830187615d82565b615ee56060830186615d82565b615ef26080830185614906565b615eff60a083018461485c565b979650505050505050565b600080600060608486031215615f2357615f226146a1565b5b6000615f3186828701615396565b9350506020615f4286828701615396565b9250506040615f5386828701615396565b915050925092509256fea2646970667358221220c5dab72d582dbc43d1a75ea814da030ef54997dd6fcb53cc57c6bc2e5257e60f64736f6c634300080a0033

Deployed Bytecode Sourcemap

32439:19785:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9860:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12027:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34074:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32523:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10980:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41233:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33088:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32903:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33858:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33818;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38547:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12678:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32626:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32998:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32959:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10822:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13579:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32581:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33186:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41398:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33673:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33266:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11151:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3095:103;;;;;;;;;;;;;:::i;:::-;;49806:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37655:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39094:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32718:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33566;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39465:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37448:155;;;;;;;;;;;;;:::i;:::-;;2444:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32755:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33708:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39357:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10079:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40486:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33640:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33142:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33898:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33784:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14297:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33050:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11491:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40994:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34295:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33226:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40296:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39876:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38830:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41562:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33484:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32788:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38042:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33532:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11729:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32830:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37837:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33603:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3353:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33746:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32870:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51165:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9860:100;9914:13;9947:5;9940:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9860:100;:::o;12027:169::-;12110:4;12127:39;12136:12;:10;:12::i;:::-;12150:7;12159:6;12127:8;:39::i;:::-;12184:4;12177:11;;12027:169;;;;:::o;34074:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32523:51::-;;;:::o;10980:108::-;11041:7;11068:12;;11061:19;;10980:108;:::o;41233:157::-;2675:12;:10;:12::i;:::-;2664:23;;:7;:5;:7::i;:::-;:23;;;2656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41340:9:::1;;;;;;;;;;;41312:38;;41329:9;41312:38;;;;;;;;;;;;41373:9;41361;;:21;;;;;;;;;;;;;;;;;;41233:157:::0;:::o;33088:47::-;;;;:::o;32903:36::-;;;;:::o;33858:33::-;;;;:::o;33818:::-;;;;:::o;38547:275::-;2675:12;:10;:12::i;:::-;2664:23;;:7;:5;:7::i;:::-;:23;;;2656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38684:4:::1;38676;38671:1;38655:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38654:26;;;;:::i;:::-;38653:35;;;;:::i;:::-;38643:6;:45;;38621:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38807:6;38797;:17;;;;:::i;:::-;38774:20;:40;;;;38547:275:::0;:::o;12678:492::-;12818:4;12835:36;12845:6;12853:9;12864:6;12835:9;:36::i;:::-;12884:24;12911:11;:19;12923:6;12911:19;;;;;;;;;;;;;;;:33;12931:12;:10;:12::i;:::-;12911:33;;;;;;;;;;;;;;;;12884:60;;12983:6;12963:16;:26;;12955:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13070:57;13079:6;13087:12;:10;:12::i;:::-;13120:6;13101:16;:25;13070:8;:57::i;:::-;13158:4;13151:11;;;12678:492;;;;;:::o;32626:53::-;32672:6;32626:53;:::o;32998:45::-;;;;:::o;32959:32::-;;;;;;;;;;;;;:::o;10822:93::-;10880:5;10905:2;10898:9;;10822:93;:::o;13579:215::-;13667:4;13684:80;13693:12;:10;:12::i;:::-;13707:7;13753:10;13716:11;:25;13728:12;:10;:12::i;:::-;13716:25;;;;;;;;;;;;;;;:34;13742:7;13716:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13684:8;:80::i;:::-;13782:4;13775:11;;13579:215;;;;:::o;32581:38::-;;;:::o;33186:33::-;;;;;;;;;;;;;:::o;41398:126::-;41464:4;41488:19;:28;41508:7;41488:28;;;;;;;;;;;;;;;;;;;;;;;;;41481:35;;41398:126;;;:::o;33673:28::-;;;;:::o;33266:31::-;;;;;;;;;;;;;:::o;11151:127::-;11225:7;11252:9;:18;11262:7;11252:18;;;;;;;;;;;;;;;;11245:25;;11151:127;;;:::o;3095:103::-;2675:12;:10;:12::i;:::-;2664:23;;:7;:5;:7::i;:::-;:23;;;2656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3160:30:::1;3187:1;3160:18;:30::i;:::-;3095:103::o:0;49806:555::-;2675:12;:10;:12::i;:::-;2664:23;;:7;:5;:7::i;:::-;:23;;;2656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50008:3:::1;49985:19;:26;;49963:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50135:4;50123:8;:16;;:33;;;;;50155:1;50143:8;:13;;50123:33;50101:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50261:19;50243:15;:37;;;;50310:8;50291:16;:27;;;;50345:8;50329:13;;:24;;;;;;;;;;;;;;;;;;49806:555:::0;;;:::o;37655:121::-;37707:4;2675:12;:10;:12::i;:::-;2664:23;;:7;:5;:7::i;:::-;:23;;;2656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37741:5:::1;37724:14;;:22;;;;;;;;;;;;;;;;;;37764:4;37757:11;;37655:121:::0;:::o;39094:167::-;2675:12;:10;:12::i;:::-;2664:23;;:7;:5;:7::i;:::-;:23;;;2656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39249:4:::1;39207:31;:39;39239:6;39207:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39094:167:::0;;:::o;32718:30::-;;;;;;;;;;;;;:::o;33566:::-;;;;:::o;39465:403::-;2675:12;:10;:12::i;:::-;2664:23;;:7;:5;:7::i;:::-;:23;;;2656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39633:13:::1;39615:15;:31;;;;39675:13;39657:15;:31;;;;39711:7;39699:9;:19;;;;39780:9;;39762:15;;39744;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;39729:12;:60;;;;39824:2;39808:12;;:18;;39800:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39465:403:::0;;;:::o;37448:155::-;2675:12;:10;:12::i;:::-;2664:23;;:7;:5;:7::i;:::-;:23;;;2656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37519:4:::1;37503:13;;:20;;;;;;;;;;;;;;;;;;37548:4;37534:11;;:18;;;;;;;;;;;;;;;;;;37580:15;37563:14;:32;;;;37448:155::o:0;2444:87::-;2490:7;2517:6;;;;;;;;;;;2510:13;;2444:87;:::o;32755:24::-;;;;;;;;;;;;;:::o;33708:31::-;;;;:::o;39357:100::-;2675:12;:10;:12::i;:::-;2664:23;;:7;:5;:7::i;:::-;:23;;;2656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39442:7:::1;39428:11;;:21;;;;;;;;;;;;;;;;;;39357:100:::0;:::o;10079:104::-;10135:13;10168:7;10161:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10079:104;:::o;40486:304::-;2675:12;:10;:12::i;:::-;2664:23;;:7;:5;:7::i;:::-;:23;;;2656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40630:13:::1;40622:21;;:4;:21;;;;40600:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40741:41;40770:4;40776:5;40741:28;:41::i;:::-;40486:304:::0;;:::o;33640:24::-;;;;:::o;33142:35::-;;;;:::o;33898:27::-;;;;:::o;33784:25::-;;;;:::o;14297:413::-;14390:4;14407:24;14434:11;:25;14446:12;:10;:12::i;:::-;14434:25;;;;;;;;;;;;;;;:34;14460:7;14434:34;;;;;;;;;;;;;;;;14407:61;;14507:15;14487:16;:35;;14479:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14600:67;14609:12;:10;:12::i;:::-;14623:7;14651:15;14632:16;:34;14600:8;:67::i;:::-;14698:4;14691:11;;;14297:413;;;;:::o;33050:29::-;;;;:::o;11491:175::-;11577:4;11594:42;11604:12;:10;:12::i;:::-;11618:9;11629:6;11594:9;:42::i;:::-;11654:4;11647:11;;11491:175;;;;:::o;40994:231::-;2675:12;:10;:12::i;:::-;2664:23;;:7;:5;:7::i;:::-;:23;;;2656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41154:15:::1;;;;;;;;;;;41111:59;;41134:18;41111:59;;;;;;;;;;;;41199:18;41181:15;;:36;;;;;;;;;;;;;;;;;;40994:231:::0;:::o;34295:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33226:33::-;;;;;;;;;;;;;:::o;40296:182::-;2675:12;:10;:12::i;:::-;2664:23;;:7;:5;:7::i;:::-;:23;;;2656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40412:8:::1;40381:19;:28;40401:7;40381:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40452:7;40436:34;;;40461:8;40436:34;;;;;;:::i;:::-;;;;;;;;40296:182:::0;;:::o;39876:412::-;2675:12;:10;:12::i;:::-;2664:23;;:7;:5;:7::i;:::-;:23;;;2656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40046:13:::1;40027:16;:32;;;;40089:13;40070:16;:32;;;;40126:7;40113:10;:20;;;;40198:10;;40179:16;;40160;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40144:13;:64;;;;40244:2;40227:13;;:19;;40219:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;39876:412:::0;;;:::o;38830:256::-;2675:12;:10;:12::i;:::-;2664:23;;:7;:5;:7::i;:::-;:23;;;2656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38970:4:::1;38962;38957:1;38941:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38940:26;;;;:::i;:::-;38939:35;;;;:::i;:::-;38929:6;:45;;38907:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39071:6;39061;:17;;;;:::i;:::-;39049:9;:29;;;;38830:256:::0;:::o;41562:281::-;2675:12;:10;:12::i;:::-;2664:23;;:7;:5;:7::i;:::-;:23;;;2656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41649:6:::1;41644:189;41663:7;:14;41659:1;:18;41644:189;;;41699:20;41722:4;:14;;;41737:7;41745:1;41737:10;;;;;;;;:::i;:::-;;;;;;;;41722:26;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41699:49;;41763:58;41779:7;41787:1;41779:10;;;;;;;;:::i;:::-;;;;;;;;41799:6;41808:12;41763:15;:58::i;:::-;41684:149;41679:3;;;;;:::i;:::-;;;;41644:189;;;;41562:281:::0;:::o;33484:39::-;;;;;;;;;;;;;:::o;32788:35::-;;;;:::o;38042:497::-;38150:4;2675:12;:10;:12::i;:::-;2664:23;;:7;:5;:7::i;:::-;:23;;;2656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38229:6:::1;38224:1;38208:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38207:28;;;;:::i;:::-;38194:9;:41;;38172:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38384:4;38379:1;38363:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38362:26;;;;:::i;:::-;38349:9;:39;;38327:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38500:9;38479:18;:30;;;;38527:4;38520:11;;38042:497:::0;;;:::o;33532:27::-;;;;:::o;11729:151::-;11818:7;11845:11;:18;11857:5;11845:18;;;;;;;;;;;;;;;:27;11864:7;11845:27;;;;;;;;;;;;;;;;11838:34;;11729:151;;;;:::o;32830:33::-;;;;:::o;37837:135::-;37897:4;2675:12;:10;:12::i;:::-;2664:23;;:7;:5;:7::i;:::-;:23;;;2656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37937:5:::1;37914:20;;:28;;;;;;;;;;;;;;;;;;37960:4;37953:11;;37837:135:::0;:::o;33603:30::-;;;;:::o;3353:201::-;2675:12;:10;:12::i;:::-;2664:23;;:7;:5;:7::i;:::-;:23;;;2656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3462:1:::1;3442:22;;:8;:22;;;;3434:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3518:28;3537:8;3518:18;:28::i;:::-;3353:201:::0;:::o;33746:31::-;;;;:::o;32870:24::-;;;;:::o;51165:1056::-;51276:4;2675:12;:10;:12::i;:::-;2664:23;;:7;:5;:7::i;:::-;:23;;;2656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51361:19:::1;;51338:20;;:42;;;;:::i;:::-;51320:15;:60;51298:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51470:4;51459:7;:15;;51451:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51555:15;51532:20;:38;;;;51625:28;51656:4;:14;;;51671:13;51656:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51625:60;;51735:20;51758:44;51796:5;51758:33;51783:7;51758:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51735:67;;51922:1;51907:12;:16;51903:110;;;51940:61;51956:13;51979:6;51988:12;51940:15;:61::i;:::-;51903:110;52088:19;52125:13;52088:51;;52150:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52177:14;;;;;;;;;;52209:4;52202:11;;;;;51165:1056:::0;;;:::o;1117:98::-;1170:7;1197:10;1190:17;;1117:98;:::o;17981:380::-;18134:1;18117:19;;:5;:19;;;;18109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18215:1;18196:21;;:7;:21;;;;18188:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18299:6;18269:11;:18;18281:5;18269:18;;;;;;;;;;;;;;;:27;18288:7;18269:27;;;;;;;;;;;;;;;:36;;;;18337:7;18321:32;;18330:5;18321:32;;;18346:6;18321:32;;;;;;:::i;:::-;;;;;;;;17981:380;;;:::o;41901:5011::-;42049:1;42033:18;;:4;:18;;;;42025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42126:1;42112:16;;:2;:16;;;;42104:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42195:1;42185:6;:11;42181:93;;;42213:28;42229:4;42235:2;42239:1;42213:15;:28::i;:::-;42256:7;;42181:93;42290:14;;;;;;;;;;;42286:2487;;;42351:7;:5;:7::i;:::-;42343:15;;:4;:15;;;;:49;;;;;42385:7;:5;:7::i;:::-;42379:13;;:2;:13;;;;42343:49;:86;;;;;42427:1;42413:16;;:2;:16;;;;42343:86;:128;;;;;42464:6;42450:21;;:2;:21;;;;42343:128;:158;;;;;42493:8;;;;;;;;;;;42492:9;42343:158;42321:2441;;;42541:13;;;;;;;;;;;42536:223;;42613:19;:25;42633:4;42613:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42642:19;:23;42662:2;42642:23;;;;;;;;;;;;;;;;;;;;;;;;;42613:52;42579:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42536:223;42915:20;;;;;;;;;;;42911:641;;;42996:7;:5;:7::i;:::-;42990:13;;:2;:13;;;;:72;;;;;43046:15;43032:30;;:2;:30;;;;42990:72;:129;;;;;43105:13;43091:28;;:2;:28;;;;42990:129;42960:573;;;43283:12;43208:28;:39;43237:9;43208:39;;;;;;;;;;;;;;;;:87;43170:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43497:12;43455:28;:39;43484:9;43455:39;;;;;;;;;;;;;;;:54;;;;42960:573;42911:641;43626:25;:31;43652:4;43626:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43683:31;:35;43715:2;43683:35;;;;;;;;;;;;;;;;;;;;;;;;;43682:36;43626:92;43600:1147;;;43805:20;;43795:6;:30;;43761:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44013:9;;43996:13;44006:2;43996:9;:13::i;:::-;43987:6;:22;;;;:::i;:::-;:35;;43953:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43600:1147;;;44191:25;:29;44217:2;44191:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44246:31;:37;44278:4;44246:37;;;;;;;;;;;;;;;;;;;;;;;;;44245:38;44191:92;44165:582;;;44370:20;;44360:6;:30;;44326:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44165:582;;;44527:31;:35;44559:2;44527:35;;;;;;;;;;;;;;;;;;;;;;;;;44522:225;;44647:9;;44630:13;44640:2;44630:9;:13::i;:::-;44621:6;:22;;;;:::i;:::-;:35;;44587:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44522:225;44165:582;43600:1147;42321:2441;42286:2487;44785:28;44816:24;44834:4;44816:9;:24::i;:::-;44785:55;;44853:12;44892:18;;44868:20;:42;;44853:57;;44941:7;:35;;;;;44965:11;;;;;;;;;;;44941:35;:61;;;;;44994:8;;;;;;;;;;;44993:9;44941:61;:110;;;;;45020:25;:31;45046:4;45020:31;;;;;;;;;;;;;;;;;;;;;;;;;45019:32;44941:110;:153;;;;;45069:19;:25;45089:4;45069:25;;;;;;;;;;;;;;;;;;;;;;;;;45068:26;44941:153;:194;;;;;45112:19;:23;45132:2;45112:23;;;;;;;;;;;;;;;;;;;;;;;;;45111:24;44941:194;44923:326;;;45173:4;45162:8;;:15;;;;;;;;;;;;;;;;;;45194:10;:8;:10::i;:::-;45232:5;45221:8;;:16;;;;;;;;;;;;;;;;;;44923:326;45280:8;;;;;;;;;;;45279:9;:55;;;;;45305:25;:29;45331:2;45305:29;;;;;;;;;;;;;;;;;;;;;;;;;45279:55;:85;;;;;45351:13;;;;;;;;;;;45279:85;:153;;;;;45417:15;;45400:14;;:32;;;;:::i;:::-;45381:15;:51;;45279:153;:196;;;;;45450:19;:25;45470:4;45450:25;;;;;;;;;;;;;;;;;;;;;;;;;45449:26;45279:196;45261:282;;;45502:29;:27;:29::i;:::-;;45261:282;45555:12;45571:8;;;;;;;;;;;45570:9;45555:24;;45681:19;:25;45701:4;45681:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45710:19;:23;45730:2;45710:23;;;;;;;;;;;;;;;;;;;;;;;;;45681:52;45677:100;;;45760:5;45750:15;;45677:100;45789:12;45894:7;45890:969;;;45946:25;:29;45972:2;45946:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45995:1;45979:13;;:17;45946:50;45942:768;;;46024:34;46054:3;46024:25;46035:13;;46024:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;46017:41;;46127:13;;46107:16;;46100:4;:23;;;;:::i;:::-;46099:41;;;;:::i;:::-;46077:18;;:63;;;;;;;:::i;:::-;;;;;;;;46197:13;;46183:10;;46176:4;:17;;;;:::i;:::-;46175:35;;;;:::i;:::-;46159:12;;:51;;;;;;;:::i;:::-;;;;;;;;46279:13;;46259:16;;46252:4;:23;;;;:::i;:::-;46251:41;;;;:::i;:::-;46229:18;;:63;;;;;;;:::i;:::-;;;;;;;;45942:768;;;46354:25;:31;46380:4;46354:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46404:1;46389:12;;:16;46354:51;46350:360;;;46433:33;46462:3;46433:24;46444:12;;46433:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46426:40;;46534:12;;46515:15;;46508:4;:22;;;;:::i;:::-;46507:39;;;;:::i;:::-;46485:18;;:61;;;;;;;:::i;:::-;;;;;;;;46602:12;;46589:9;;46582:4;:16;;;;:::i;:::-;46581:33;;;;:::i;:::-;46565:12;;:49;;;;;;;:::i;:::-;;;;;;;;46682:12;;46663:15;;46656:4;:22;;;;:::i;:::-;46655:39;;;;:::i;:::-;46633:18;;:61;;;;;;;:::i;:::-;;;;;;;;46350:360;45942:768;46737:1;46730:4;:8;46726:91;;;46759:42;46775:4;46789;46796;46759:15;:42::i;:::-;46726:91;46843:4;46833:14;;;;;:::i;:::-;;;45890:969;46871:33;46887:4;46893:2;46897:6;46871:15;:33::i;:::-;42014:4898;;;;41901:5011;;;;:::o;3714:191::-;3788:16;3807:6;;;;;;;;;;;3788:25;;3833:8;3824:6;;:17;;;;;;;;;;;;;;;;;;3888:8;3857:40;;3878:8;3857:40;;;;;;;;;;;;3777:128;3714:191;:::o;40798:188::-;40915:5;40881:25;:31;40907:4;40881:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40972:5;40938:40;;40966:4;40938:40;;;;;;;;;;;;40798:188;;:::o;15200:733::-;15358:1;15340:20;;:6;:20;;;;15332:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15442:1;15421:23;;:9;:23;;;;15413:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15497:47;15518:6;15526:9;15537:6;15497:20;:47::i;:::-;15557:21;15581:9;:17;15591:6;15581:17;;;;;;;;;;;;;;;;15557:41;;15634:6;15617:13;:23;;15609:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15755:6;15739:13;:22;15719:9;:17;15729:6;15719:17;;;;;;;;;;;;;;;:42;;;;15807:6;15783:9;:20;15793:9;15783:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15848:9;15831:35;;15840:6;15831:35;;;15859:6;15831:35;;;;;;:::i;:::-;;;;;;;;15879:46;15899:6;15907:9;15918:6;15879:19;:46::i;:::-;15321:612;15200:733;;;:::o;23434:98::-;23492:7;23523:1;23519;:5;;;;:::i;:::-;23512:12;;23434:98;;;;:::o;23833:::-;23891:7;23922:1;23918;:5;;;;:::i;:::-;23911:12;;23833:98;;;;:::o;48042:1756::-;48081:23;48107:24;48125:4;48107:9;:24::i;:::-;48081:50;;48142:25;48238:12;;48204:18;;48170;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48142:108;;48261:12;48309:1;48290:15;:20;:46;;;;48335:1;48314:17;:22;48290:46;48286:85;;;48353:7;;;;;48286:85;48426:2;48405:18;;:23;;;;:::i;:::-;48387:15;:41;48383:115;;;48484:2;48463:18;;:23;;;;:::i;:::-;48445:41;;48383:115;48559:23;48672:1;48639:17;48604:18;;48586:15;:36;;;;:::i;:::-;48585:71;;;;:::i;:::-;:88;;;;:::i;:::-;48559:114;;48684:26;48713:36;48733:15;48713;:19;;:36;;;;:::i;:::-;48684:65;;48762:25;48790:21;48762:49;;48824:36;48841:18;48824:16;:36::i;:::-;48873:18;48894:44;48920:17;48894:21;:25;;:44;;;;:::i;:::-;48873:65;;48951:23;48977:81;49030:17;48977:34;48992:18;;48977:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48951:107;;49069:17;49089:51;49122:17;49089:28;49104:12;;49089:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49069:71;;49153:23;49210:9;49192:15;49179:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49153:66;;49253:1;49232:18;:22;;;;49286:1;49265:18;:22;;;;49313:1;49298:12;:16;;;;49349:9;;;;;;;;;;;49341:23;;49372:9;49341:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49327:59;;;;;49421:1;49403:15;:19;:42;;;;;49444:1;49426:15;:19;49403:42;49399:278;;;49462:46;49475:15;49492;49462:12;:46::i;:::-;49528:137;49561:18;49598:15;49632:18;;49528:137;;;;;;;;:::i;:::-;;;;;;;;49399:278;49711:15;;;;;;;;;;;49703:29;;49754:21;49703:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49689:101;;;;;48070:1728;;;;;;;;;;48042:1756;:::o;50369:788::-;50426:4;50460:15;50443:14;:32;;;;50530:28;50561:4;:14;;;50576:13;50561:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50530:60;;50640:20;50663:77;50724:5;50663:42;50688:16;;50663:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50640:100;;50860:1;50845:12;:16;50841:110;;;50878:61;50894:13;50917:6;50926:12;50878:15;:61::i;:::-;50841:110;51026:19;51063:13;51026:51;;51088:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51115:12;;;;;;;;;;51145:4;51138:11;;;;;50369:788;:::o;18961:125::-;;;;:::o;19690:124::-;;;;:::o;23077:98::-;23135:7;23166:1;23162;:5;;;;:::i;:::-;23155:12;;23077:98;;;;:::o;46920:589::-;47046:21;47084:1;47070:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47046:40;;47115:4;47097;47102:1;47097:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47141:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47131:4;47136:1;47131:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47176:62;47193:4;47208:15;47226:11;47176:8;:62::i;:::-;47277:15;:66;;;47358:11;47384:1;47428:4;47455;47475:15;47277:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46975:534;46920:589;:::o;47517:517::-;47665:62;47682:4;47697:15;47715:11;47665:8;:62::i;:::-;47770:15;:31;;;47809:9;47842:4;47862:11;47888:1;47931;32672:6;48000:15;47770:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47517: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;1397:75::-;1430:6;1463:2;1457:9;1447:19;;1397:75;:::o;1478:117::-;1587:1;1584;1577:12;1601:117;1710:1;1707;1700: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:117::-;9318:1;9315;9308:12;9332:180;9380:77;9377:1;9370:88;9477:4;9474:1;9467:15;9501:4;9498:1;9491:15;9518:281;9601:27;9623:4;9601:27;:::i;:::-;9593:6;9589:40;9731:6;9719:10;9716:22;9695:18;9683:10;9680:34;9677:62;9674:88;;;9742:18;;:::i;:::-;9674:88;9782:10;9778:2;9771:22;9561:238;9518:281;;:::o;9805:129::-;9839:6;9866:20;;:::i;:::-;9856:30;;9895:33;9923:4;9915:6;9895:33;:::i;:::-;9805:129;;;:::o;9940:319::-;10025:4;10115:18;10107:6;10104:30;10101:56;;;10137:18;;:::i;:::-;10101:56;10187:4;10179:6;10175:17;10167:25;;10247:4;10241;10237:15;10229:23;;9940:319;;;:::o;10265:117::-;10374:1;10371;10364:12;10388:104;10433:7;10462:24;10480:5;10462:24;:::i;:::-;10451:35;;10388:104;;;:::o;10498:138::-;10579:32;10605:5;10579:32;:::i;:::-;10572:5;10569:43;10559:71;;10626:1;10623;10616:12;10559:71;10498:138;:::o;10642:155::-;10696:5;10734:6;10721:20;10712:29;;10750:41;10785:5;10750:41;:::i;:::-;10642:155;;;;:::o;10828:734::-;10932:5;10957:89;10973:72;11038:6;10973:72;:::i;:::-;10957:89;:::i;:::-;10948:98;;11066:5;11095:6;11088:5;11081:21;11129:4;11122:5;11118:16;11111:23;;11182:4;11174:6;11170:17;11162:6;11158:30;11211:3;11203:6;11200:15;11197:122;;;11230:79;;:::i;:::-;11197:122;11345:6;11328:228;11362:6;11357:3;11354:15;11328:228;;;11437:3;11466:45;11507:3;11495:10;11466:45;:::i;:::-;11461:3;11454:58;11541:4;11536:3;11532:14;11525:21;;11404:152;11388:4;11383:3;11379:14;11372:21;;11328:228;;;11332:21;10938:624;;10828:734;;;;;:::o;11593:386::-;11672:5;11721:3;11714:4;11706:6;11702:17;11698:27;11688:122;;11729:79;;:::i;:::-;11688:122;11846:6;11833:20;11871:102;11969:3;11961:6;11954:4;11946:6;11942:17;11871:102;:::i;:::-;11862:111;;11678:301;11593:386;;;;:::o;11985:555::-;12077:6;12126:2;12114:9;12105:7;12101:23;12097:32;12094:119;;;12132:79;;:::i;:::-;12094:119;12280:1;12269:9;12265:17;12252:31;12310:18;12302:6;12299:30;12296:117;;;12332:79;;:::i;:::-;12296:117;12437:86;12515:7;12506:6;12495:9;12491:22;12437:86;:::i;:::-;12427:96;;12223:310;11985:555;;;;:::o;12546:474::-;12614:6;12622;12671:2;12659:9;12650:7;12646:23;12642:32;12639:119;;;12677:79;;:::i;:::-;12639:119;12797:1;12822:53;12867:7;12858:6;12847:9;12843:22;12822:53;:::i;:::-;12812:63;;12768:117;12924:2;12950:53;12995:7;12986:6;12975:9;12971:22;12950:53;:::i;:::-;12940:63;;12895:118;12546:474;;;;;:::o;13026:180::-;13074:77;13071:1;13064:88;13171:4;13168:1;13161:15;13195:4;13192:1;13185:15;13212:320;13256:6;13293:1;13287:4;13283:12;13273:22;;13340:1;13334:4;13330:12;13361:18;13351:81;;13417:4;13409:6;13405:17;13395:27;;13351:81;13479:2;13471:6;13468:14;13448:18;13445:38;13442:84;;;13498:18;;:::i;:::-;13442:84;13263:269;13212:320;;;:::o;13538:182::-;13678:34;13674:1;13666:6;13662:14;13655:58;13538:182;:::o;13726:366::-;13868:3;13889:67;13953:2;13948:3;13889:67;:::i;:::-;13882:74;;13965:93;14054:3;13965:93;:::i;:::-;14083:2;14078:3;14074:12;14067:19;;13726:366;;;:::o;14098:419::-;14264:4;14302:2;14291:9;14287:18;14279:26;;14351:9;14345:4;14341:20;14337:1;14326:9;14322:17;14315:47;14379:131;14505:4;14379:131;:::i;:::-;14371:139;;14098:419;;;:::o;14523:180::-;14571:77;14568:1;14561:88;14668:4;14665:1;14658:15;14692:4;14689:1;14682:15;14709:348;14749:7;14772:20;14790:1;14772:20;:::i;:::-;14767:25;;14806:20;14824:1;14806:20;:::i;:::-;14801:25;;14994:1;14926:66;14922:74;14919:1;14916:81;14911:1;14904:9;14897:17;14893:105;14890:131;;;15001:18;;:::i;:::-;14890:131;15049:1;15046;15042:9;15031:20;;14709:348;;;;:::o;15063:180::-;15111:77;15108:1;15101:88;15208:4;15205:1;15198:15;15232:4;15229:1;15222:15;15249:185;15289:1;15306:20;15324:1;15306:20;:::i;:::-;15301:25;;15340:20;15358:1;15340:20;:::i;:::-;15335:25;;15379:1;15369:35;;15384:18;;:::i;:::-;15369:35;15426:1;15423;15419:9;15414:14;;15249:185;;;;:::o;15440:234::-;15580:34;15576:1;15568:6;15564:14;15557:58;15649:17;15644:2;15636:6;15632:15;15625:42;15440:234;:::o;15680:366::-;15822:3;15843:67;15907:2;15902:3;15843:67;:::i;:::-;15836:74;;15919:93;16008:3;15919:93;:::i;:::-;16037:2;16032:3;16028:12;16021:19;;15680:366;;;:::o;16052:419::-;16218:4;16256:2;16245:9;16241:18;16233:26;;16305:9;16299:4;16295:20;16291:1;16280:9;16276:17;16269:47;16333:131;16459:4;16333:131;:::i;:::-;16325:139;;16052:419;;;:::o;16477:227::-;16617:34;16613:1;16605:6;16601:14;16594:58;16686:10;16681:2;16673:6;16669:15;16662:35;16477:227;:::o;16710:366::-;16852:3;16873:67;16937:2;16932:3;16873:67;:::i;:::-;16866:74;;16949:93;17038:3;16949:93;:::i;:::-;17067:2;17062:3;17058:12;17051:19;;16710:366;;;:::o;17082:419::-;17248:4;17286:2;17275:9;17271:18;17263:26;;17335:9;17329:4;17325:20;17321:1;17310:9;17306:17;17299:47;17363:131;17489:4;17363:131;:::i;:::-;17355:139;;17082:419;;;:::o;17507:305::-;17547:3;17566:20;17584:1;17566:20;:::i;:::-;17561:25;;17600:20;17618:1;17600:20;:::i;:::-;17595:25;;17754:1;17686:66;17682:74;17679:1;17676:81;17673:107;;;17760:18;;:::i;:::-;17673:107;17804:1;17801;17797:9;17790:16;;17507:305;;;;:::o;17818:238::-;17958:34;17954:1;17946:6;17942:14;17935:58;18027:21;18022:2;18014:6;18010:15;18003:46;17818:238;:::o;18062:366::-;18204:3;18225:67;18289:2;18284:3;18225:67;:::i;:::-;18218:74;;18301:93;18390:3;18301:93;:::i;:::-;18419:2;18414:3;18410:12;18403:19;;18062:366;;;:::o;18434:419::-;18600:4;18638:2;18627:9;18623:18;18615:26;;18687:9;18681:4;18677:20;18673:1;18662:9;18658:17;18651:47;18715:131;18841:4;18715:131;:::i;:::-;18707:139;;18434:419;;;:::o;18859:235::-;18999:34;18995:1;18987:6;18983:14;18976:58;19068:18;19063:2;19055:6;19051:15;19044:43;18859:235;:::o;19100:366::-;19242:3;19263:67;19327:2;19322:3;19263:67;:::i;:::-;19256:74;;19339:93;19428:3;19339:93;:::i;:::-;19457:2;19452:3;19448:12;19441:19;;19100:366;;;:::o;19472:419::-;19638:4;19676:2;19665:9;19661:18;19653:26;;19725:9;19719:4;19715:20;19711:1;19700:9;19696:17;19689:47;19753:131;19879:4;19753:131;:::i;:::-;19745:139;;19472:419;;;:::o;19897:179::-;20037:31;20033:1;20025:6;20021:14;20014:55;19897:179;:::o;20082:366::-;20224:3;20245:67;20309:2;20304:3;20245:67;:::i;:::-;20238:74;;20321:93;20410:3;20321:93;:::i;:::-;20439:2;20434:3;20430:12;20423:19;;20082:366;;;:::o;20454:419::-;20620:4;20658:2;20647:9;20643:18;20635:26;;20707:9;20701:4;20697:20;20693:1;20682:9;20678:17;20671:47;20735:131;20861:4;20735:131;:::i;:::-;20727:139;;20454:419;;;:::o;20879:244::-;21019:34;21015:1;21007:6;21003:14;20996:58;21088:27;21083:2;21075:6;21071:15;21064:52;20879:244;:::o;21129:366::-;21271:3;21292:67;21356:2;21351:3;21292:67;:::i;:::-;21285:74;;21368:93;21457:3;21368:93;:::i;:::-;21486:2;21481:3;21477:12;21470:19;;21129:366;;;:::o;21501:419::-;21667:4;21705:2;21694:9;21690:18;21682:26;;21754:9;21748:4;21744:20;21740:1;21729:9;21725:17;21718:47;21782:131;21908:4;21782:131;:::i;:::-;21774:139;;21501:419;;;:::o;21926:224::-;22066:34;22062:1;22054:6;22050:14;22043:58;22135:7;22130:2;22122:6;22118:15;22111:32;21926:224;:::o;22156:366::-;22298:3;22319:67;22383:2;22378:3;22319:67;:::i;:::-;22312:74;;22395:93;22484:3;22395:93;:::i;:::-;22513:2;22508:3;22504:12;22497:19;;22156:366;;;:::o;22528:419::-;22694:4;22732:2;22721:9;22717:18;22709:26;;22781:9;22775:4;22771:20;22767:1;22756:9;22752:17;22745:47;22809:131;22935:4;22809:131;:::i;:::-;22801:139;;22528:419;;;:::o;22953:223::-;23093:34;23089:1;23081:6;23077:14;23070:58;23162:6;23157:2;23149:6;23145:15;23138:31;22953:223;:::o;23182:366::-;23324:3;23345:67;23409:2;23404:3;23345:67;:::i;:::-;23338:74;;23421:93;23510:3;23421:93;:::i;:::-;23539:2;23534:3;23530:12;23523:19;;23182:366;;;:::o;23554:419::-;23720:4;23758:2;23747:9;23743:18;23735:26;;23807:9;23801:4;23797:20;23793:1;23782:9;23778:17;23771:47;23835:131;23961:4;23835:131;:::i;:::-;23827:139;;23554:419;;;:::o;23979:180::-;24027:77;24024:1;24017:88;24124:4;24121:1;24114:15;24148:4;24145:1;24138:15;24165:134;24223:9;24256:37;24287:5;24256:37;:::i;:::-;24243:50;;24165:134;;;:::o;24305:147::-;24400:45;24439:5;24400:45;:::i;:::-;24395:3;24388:58;24305:147;;:::o;24458:238::-;24559:4;24597:2;24586:9;24582:18;24574:26;;24610:79;24686:1;24675:9;24671:17;24662:6;24610:79;:::i;:::-;24458:238;;;;:::o;24702:143::-;24759:5;24790:6;24784:13;24775:22;;24806:33;24833:5;24806:33;:::i;:::-;24702:143;;;;:::o;24851:351::-;24921:6;24970:2;24958:9;24949:7;24945:23;24941:32;24938:119;;;24976:79;;:::i;:::-;24938:119;25096:1;25121:64;25177:7;25168:6;25157:9;25153:22;25121:64;:::i;:::-;25111:74;;25067:128;24851:351;;;;:::o;25208:233::-;25247:3;25270:24;25288:5;25270:24;:::i;:::-;25261:33;;25316:66;25309:5;25306:77;25303:103;;;25386:18;;:::i;:::-;25303:103;25433:1;25426:5;25422:13;25415:20;;25208:233;;;:::o;25447:240::-;25587:34;25583:1;25575:6;25571:14;25564:58;25656:23;25651:2;25643:6;25639:15;25632:48;25447:240;:::o;25693:366::-;25835:3;25856:67;25920:2;25915:3;25856:67;:::i;:::-;25849:74;;25932:93;26021:3;25932:93;:::i;:::-;26050:2;26045:3;26041:12;26034:19;;25693:366;;;:::o;26065:419::-;26231:4;26269:2;26258:9;26254:18;26246:26;;26318:9;26312:4;26308:20;26304:1;26293:9;26289:17;26282:47;26346:131;26472:4;26346:131;:::i;:::-;26338:139;;26065:419;;;:::o;26490:239::-;26630:34;26626:1;26618:6;26614:14;26607:58;26699:22;26694:2;26686:6;26682:15;26675:47;26490:239;:::o;26735:366::-;26877:3;26898:67;26962:2;26957:3;26898:67;:::i;:::-;26891:74;;26974:93;27063:3;26974:93;:::i;:::-;27092:2;27087:3;27083:12;27076:19;;26735:366;;;:::o;27107:419::-;27273:4;27311:2;27300:9;27296:18;27288:26;;27360:9;27354:4;27350:20;27346:1;27335:9;27331:17;27324:47;27388:131;27514:4;27388:131;:::i;:::-;27380:139;;27107:419;;;:::o;27532:225::-;27672:34;27668:1;27660:6;27656:14;27649:58;27741:8;27736:2;27728:6;27724:15;27717:33;27532:225;:::o;27763:366::-;27905:3;27926:67;27990:2;27985:3;27926:67;:::i;:::-;27919:74;;28002:93;28091:3;28002:93;:::i;:::-;28120:2;28115:3;28111:12;28104:19;;27763:366;;;:::o;28135:419::-;28301:4;28339:2;28328:9;28324:18;28316:26;;28388:9;28382:4;28378:20;28374:1;28363:9;28359:17;28352:47;28416:131;28542:4;28416:131;:::i;:::-;28408:139;;28135:419;;;:::o;28560:182::-;28700:34;28696:1;28688:6;28684:14;28677:58;28560:182;:::o;28748:366::-;28890:3;28911:67;28975:2;28970:3;28911:67;:::i;:::-;28904:74;;28987:93;29076:3;28987:93;:::i;:::-;29105:2;29100:3;29096:12;29089:19;;28748:366;;;:::o;29120:419::-;29286:4;29324:2;29313:9;29309:18;29301:26;;29373:9;29367:4;29363:20;29359:1;29348:9;29344:17;29337:47;29401:131;29527:4;29401:131;:::i;:::-;29393:139;;29120:419;;;:::o;29545:229::-;29685:34;29681:1;29673:6;29669:14;29662:58;29754:12;29749:2;29741:6;29737:15;29730:37;29545:229;:::o;29780:366::-;29922:3;29943:67;30007:2;30002:3;29943:67;:::i;:::-;29936:74;;30019:93;30108:3;30019:93;:::i;:::-;30137:2;30132:3;30128:12;30121:19;;29780:366;;;:::o;30152:419::-;30318:4;30356:2;30345:9;30341:18;30333:26;;30405:9;30399:4;30395:20;30391:1;30380:9;30376:17;30369:47;30433:131;30559:4;30433:131;:::i;:::-;30425:139;;30152:419;;;:::o;30577:223::-;30717:34;30713:1;30705:6;30701:14;30694:58;30786:6;30781:2;30773:6;30769:15;30762:31;30577:223;:::o;30806:366::-;30948:3;30969:67;31033:2;31028:3;30969:67;:::i;:::-;30962:74;;31045:93;31134:3;31045:93;:::i;:::-;31163:2;31158:3;31154:12;31147:19;;30806:366;;;:::o;31178:419::-;31344:4;31382:2;31371:9;31367:18;31359:26;;31431:9;31425:4;31421:20;31417:1;31406:9;31402:17;31395:47;31459:131;31585:4;31459:131;:::i;:::-;31451:139;;31178:419;;;:::o;31603:221::-;31743:34;31739:1;31731:6;31727:14;31720:58;31812:4;31807:2;31799:6;31795:15;31788:29;31603:221;:::o;31830:366::-;31972:3;31993:67;32057:2;32052:3;31993:67;:::i;:::-;31986:74;;32069:93;32158:3;32069:93;:::i;:::-;32187:2;32182:3;32178:12;32171:19;;31830:366;;;:::o;32202:419::-;32368:4;32406:2;32395:9;32391:18;32383:26;;32455:9;32449:4;32445:20;32441:1;32430:9;32426:17;32419:47;32483:131;32609:4;32483:131;:::i;:::-;32475:139;;32202:419;;;:::o;32627:224::-;32767:34;32763:1;32755:6;32751:14;32744:58;32836:7;32831:2;32823:6;32819:15;32812:32;32627:224;:::o;32857:366::-;32999:3;33020:67;33084:2;33079:3;33020:67;:::i;:::-;33013:74;;33096:93;33185:3;33096:93;:::i;:::-;33214:2;33209:3;33205:12;33198:19;;32857:366;;;:::o;33229:419::-;33395:4;33433:2;33422:9;33418:18;33410:26;;33482:9;33476:4;33472:20;33468:1;33457:9;33453:17;33446:47;33510:131;33636:4;33510:131;:::i;:::-;33502:139;;33229:419;;;:::o;33654:222::-;33794:34;33790:1;33782:6;33778:14;33771:58;33863:5;33858:2;33850:6;33846:15;33839:30;33654:222;:::o;33882:366::-;34024:3;34045:67;34109:2;34104:3;34045:67;:::i;:::-;34038:74;;34121:93;34210:3;34121:93;:::i;:::-;34239:2;34234:3;34230:12;34223:19;;33882:366;;;:::o;34254:419::-;34420:4;34458:2;34447:9;34443:18;34435:26;;34507:9;34501:4;34497:20;34493:1;34482:9;34478:17;34471:47;34535:131;34661:4;34535:131;:::i;:::-;34527:139;;34254:419;;;:::o;34679:172::-;34819:24;34815:1;34807:6;34803:14;34796:48;34679:172;:::o;34857:366::-;34999:3;35020:67;35084:2;35079:3;35020:67;:::i;:::-;35013:74;;35096:93;35185:3;35096:93;:::i;:::-;35214:2;35209:3;35205:12;35198:19;;34857:366;;;:::o;35229:419::-;35395:4;35433:2;35422:9;35418:18;35410:26;;35482:9;35476:4;35472:20;35468:1;35457:9;35453:17;35446:47;35510:131;35636:4;35510:131;:::i;:::-;35502:139;;35229:419;;;:::o;35654:297::-;35794:34;35790:1;35782:6;35778:14;35771:58;35863:34;35858:2;35850:6;35846:15;35839:59;35932:11;35927:2;35919:6;35915:15;35908:36;35654:297;:::o;35957:366::-;36099:3;36120:67;36184:2;36179:3;36120:67;:::i;:::-;36113:74;;36196:93;36285:3;36196:93;:::i;:::-;36314:2;36309:3;36305:12;36298:19;;35957:366;;;:::o;36329:419::-;36495:4;36533:2;36522:9;36518:18;36510:26;;36582:9;36576:4;36572:20;36568:1;36557:9;36553:17;36546:47;36610:131;36736:4;36610:131;:::i;:::-;36602:139;;36329:419;;;:::o;36754:240::-;36894:34;36890:1;36882:6;36878:14;36871:58;36963:23;36958:2;36950:6;36946:15;36939:48;36754:240;:::o;37000:366::-;37142:3;37163:67;37227:2;37222:3;37163:67;:::i;:::-;37156:74;;37239:93;37328:3;37239:93;:::i;:::-;37357:2;37352:3;37348:12;37341:19;;37000:366;;;:::o;37372:419::-;37538:4;37576:2;37565:9;37561:18;37553:26;;37625:9;37619:4;37615:20;37611:1;37600:9;37596:17;37589:47;37653:131;37779:4;37653:131;:::i;:::-;37645:139;;37372:419;;;:::o;37797:169::-;37937:21;37933:1;37925:6;37921:14;37914:45;37797:169;:::o;37972:366::-;38114:3;38135:67;38199:2;38194:3;38135:67;:::i;:::-;38128:74;;38211:93;38300:3;38211:93;:::i;:::-;38329:2;38324:3;38320:12;38313:19;;37972:366;;;:::o;38344:419::-;38510:4;38548:2;38537:9;38533:18;38525:26;;38597:9;38591:4;38587:20;38583:1;38572:9;38568:17;38561:47;38625:131;38751:4;38625:131;:::i;:::-;38617:139;;38344:419;;;:::o;38769:241::-;38909:34;38905:1;38897:6;38893:14;38886:58;38978:24;38973:2;38965:6;38961:15;38954:49;38769:241;:::o;39016:366::-;39158:3;39179:67;39243:2;39238:3;39179:67;:::i;:::-;39172:74;;39255:93;39344:3;39255:93;:::i;:::-;39373:2;39368:3;39364:12;39357:19;;39016:366;;;:::o;39388:419::-;39554:4;39592:2;39581:9;39577:18;39569:26;;39641:9;39635:4;39631:20;39627:1;39616:9;39612:17;39605:47;39669:131;39795:4;39669:131;:::i;:::-;39661:139;;39388:419;;;:::o;39813:191::-;39853:4;39873:20;39891:1;39873:20;:::i;:::-;39868:25;;39907:20;39925:1;39907:20;:::i;:::-;39902:25;;39946:1;39943;39940:8;39937:34;;;39951:18;;:::i;:::-;39937:34;39996:1;39993;39989:9;39981:17;;39813:191;;;;:::o;40010:225::-;40150:34;40146:1;40138:6;40134:14;40127:58;40219:8;40214:2;40206:6;40202:15;40195:33;40010:225;:::o;40241:366::-;40383:3;40404:67;40468:2;40463:3;40404:67;:::i;:::-;40397:74;;40480:93;40569:3;40480:93;:::i;:::-;40598:2;40593:3;40589:12;40582:19;;40241:366;;;:::o;40613:419::-;40779:4;40817:2;40806:9;40802:18;40794:26;;40866:9;40860:4;40856:20;40852:1;40841:9;40837:17;40830:47;40894:131;41020:4;40894:131;:::i;:::-;40886:139;;40613:419;;;:::o;41038:147::-;41139:11;41176:3;41161:18;;41038:147;;;;:::o;41191:114::-;;:::o;41311:398::-;41470:3;41491:83;41572:1;41567:3;41491:83;:::i;:::-;41484:90;;41583:93;41672:3;41583:93;:::i;:::-;41701:1;41696:3;41692:11;41685:18;;41311:398;;;:::o;41715:379::-;41899:3;41921:147;42064:3;41921:147;:::i;:::-;41914:154;;42085:3;42078:10;;41715:379;;;:::o;42100:442::-;42249:4;42287:2;42276:9;42272:18;42264:26;;42300:71;42368:1;42357:9;42353:17;42344:6;42300:71;:::i;:::-;42381:72;42449:2;42438:9;42434:18;42425:6;42381:72;:::i;:::-;42463;42531:2;42520:9;42516:18;42507:6;42463:72;:::i;:::-;42100:442;;;;;;:::o;42548:143::-;42605:5;42636:6;42630:13;42621:22;;42652:33;42679:5;42652:33;:::i;:::-;42548:143;;;;:::o;42697:351::-;42767:6;42816:2;42804:9;42795:7;42791:23;42787:32;42784:119;;;42822:79;;:::i;:::-;42784:119;42942:1;42967:64;43023:7;43014:6;43003:9;42999:22;42967:64;:::i;:::-;42957:74;;42913:128;42697:351;;;;:::o;43054:85::-;43099:7;43128:5;43117:16;;43054:85;;;:::o;43145:158::-;43203:9;43236:61;43254:42;43263:32;43289:5;43263:32;:::i;:::-;43254:42;:::i;:::-;43236:61;:::i;:::-;43223:74;;43145:158;;;:::o;43309:147::-;43404:45;43443:5;43404:45;:::i;:::-;43399:3;43392:58;43309:147;;:::o;43462:114::-;43529:6;43563:5;43557:12;43547:22;;43462:114;;;:::o;43582:184::-;43681:11;43715:6;43710:3;43703:19;43755:4;43750:3;43746:14;43731:29;;43582:184;;;;:::o;43772:132::-;43839:4;43862:3;43854:11;;43892:4;43887:3;43883:14;43875:22;;43772:132;;;:::o;43910:108::-;43987:24;44005:5;43987:24;:::i;:::-;43982:3;43975:37;43910:108;;:::o;44024:179::-;44093:10;44114:46;44156:3;44148:6;44114:46;:::i;:::-;44192:4;44187:3;44183:14;44169:28;;44024:179;;;;:::o;44209:113::-;44279:4;44311;44306:3;44302:14;44294:22;;44209:113;;;:::o;44358:732::-;44477:3;44506:54;44554:5;44506:54;:::i;:::-;44576:86;44655:6;44650:3;44576:86;:::i;:::-;44569:93;;44686:56;44736:5;44686:56;:::i;:::-;44765:7;44796:1;44781:284;44806:6;44803:1;44800:13;44781:284;;;44882:6;44876:13;44909:63;44968:3;44953:13;44909:63;:::i;:::-;44902:70;;44995:60;45048:6;44995:60;:::i;:::-;44985:70;;44841:224;44828:1;44825;44821:9;44816:14;;44781:284;;;44785:14;45081:3;45074:10;;44482:608;;;44358:732;;;;:::o;45096:831::-;45359:4;45397:3;45386:9;45382:19;45374:27;;45411:71;45479:1;45468:9;45464:17;45455:6;45411:71;:::i;:::-;45492:80;45568:2;45557:9;45553:18;45544:6;45492:80;:::i;:::-;45619:9;45613:4;45609:20;45604:2;45593:9;45589:18;45582:48;45647:108;45750:4;45741:6;45647:108;:::i;:::-;45639:116;;45765:72;45833:2;45822:9;45818:18;45809:6;45765:72;:::i;:::-;45847:73;45915:3;45904:9;45900:19;45891:6;45847:73;:::i;:::-;45096:831;;;;;;;;:::o;45933:807::-;46182:4;46220:3;46209:9;46205:19;46197:27;;46234:71;46302:1;46291:9;46287:17;46278:6;46234:71;:::i;:::-;46315:72;46383:2;46372:9;46368:18;46359:6;46315:72;:::i;:::-;46397:80;46473:2;46462:9;46458:18;46449:6;46397:80;:::i;:::-;46487;46563:2;46552:9;46548:18;46539:6;46487:80;:::i;:::-;46577:73;46645:3;46634:9;46630:19;46621:6;46577:73;:::i;:::-;46660;46728:3;46717:9;46713:19;46704:6;46660:73;:::i;:::-;45933:807;;;;;;;;;:::o;46746:663::-;46834:6;46842;46850;46899:2;46887:9;46878:7;46874:23;46870:32;46867:119;;;46905:79;;:::i;:::-;46867:119;47025:1;47050:64;47106:7;47097:6;47086:9;47082:22;47050:64;:::i;:::-;47040:74;;46996:128;47163:2;47189:64;47245:7;47236:6;47225:9;47221:22;47189:64;:::i;:::-;47179:74;;47134:129;47302:2;47328:64;47384:7;47375:6;47364:9;47360:22;47328:64;:::i;:::-;47318:74;;47273:129;46746:663;;;;;:::o

Swarm Source

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