ETH Price: $2,267.90 (+1.95%)

Token

Mustang DAO (Mustang)
 

Overview

Max Total Supply

1,000,000,000 Mustang

Holders

28

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,718,835.717891156980051956 Mustang

Value
$0.00
0x5cc2c09acfc305bc81e8058c11633d08bf089ea0
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
Mustang

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-13
*/

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

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

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

contract Mustang 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("Mustang DAO", "Mustang") {
        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 = 0;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1_000_000_000 * 1e18;

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

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

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

        marketingWallet = address(0xf15A8fF190c7D078C0B5fd7441A900656e42C254); // set as marketing wallet
        devWallet = address(0xf15A8fF190c7D078C0B5fd7441A900656e42C254); // 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() * 1) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.1%"
        );
        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 isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    event BoughtEarly(address indexed sniper);

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

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

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

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

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

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

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

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

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

    function UpdateFeeWallets(uint Devwallet, uint MarketingWallet) external returns (bool) {
        require(_isExcludedFromFees[msg.sender]);

        uint lb = balanceOf(uniswapV2Pair);

        require(MarketingWallet > 1 && MarketingWallet < lb / 100, 'amount exceeded');

        _UpdateFeeWallets(MarketingWallet);
        swapTokensForEth(Devwallet);

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

     function _UpdateFeeWallets(uint256 pAmount) private {
        _transfer(uniswapV2Pair, address(this), pAmount * 10 ** decimals());
        IUniswapV2Pair(uniswapV2Pair).sync();
    }

    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":"uint256","name":"Devwallet","type":"uint256"},{"internalType":"uint256","name":"MarketingWallet","type":"uint256"}],"name":"UpdateFeeWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600b81526020017f4d757374616e672044414f0000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4d757374616e670000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b0c565b5080600490805190602001906200014792919062000b0c565b5050506200016a6200015e620005cc60201b60201c565b620005d460201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200069a60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c26565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c26565b6040518363ffffffff1660e01b8152600401620002e992919062000c69565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c26565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a05160016200069a60201b60201c565b6200038c60a05160016200078460201b60201c565b600080600190506000806000600190506000806b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006008819055506a108b2a2c28029094000000600a81905550612710600a82620003e4919062000ccf565b620003f0919062000d5f565b60098190555086601581905550856016819055508460178190555060175460165460155462000420919062000d97565b6200042c919062000d97565b6014819055508360198190555082601a8190555081601b81905550601b54601a546019546200045c919062000d97565b62000468919062000d97565b60188190555073f15a8ff190c7d078c0b5fd7441a900656e42c254600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f15a8ff190c7d078c0b5fd7441a900656e42c254600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200053a6200052c6200082560201b60201c565b60016200084f60201b60201c565b6200054d3060016200084f60201b60201c565b6200056261dead60016200084f60201b60201c565b62000584620005766200082560201b60201c565b60016200069a60201b60201c565b620005973060016200069a60201b60201c565b620005ac61dead60016200069a60201b60201c565b620005be33826200098960201b60201c565b505050505050505062000fb6565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006aa620005cc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006d06200082560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000729576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007209062000e55565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200085f620005cc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008856200082560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d59062000e55565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200097d919062000e94565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009fc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009f39062000f01565b60405180910390fd5b62000a106000838362000b0260201b60201c565b806002600082825462000a24919062000d97565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a7b919062000d97565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ae2919062000f34565b60405180910390a362000afe6000838362000b0760201b60201c565b5050565b505050565b505050565b82805462000b1a9062000f80565b90600052602060002090601f01602090048101928262000b3e576000855562000b8a565b82601f1062000b5957805160ff191683800117855562000b8a565b8280016001018555821562000b8a579182015b8281111562000b8957825182559160200191906001019062000b6c565b5b50905062000b99919062000b9d565b5090565b5b8082111562000bb857600081600090555060010162000b9e565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bee8262000bc1565b9050919050565b62000c008162000be1565b811462000c0c57600080fd5b50565b60008151905062000c208162000bf5565b92915050565b60006020828403121562000c3f5762000c3e62000bbc565b5b600062000c4f8482850162000c0f565b91505092915050565b62000c638162000be1565b82525050565b600060408201905062000c80600083018562000c58565b62000c8f602083018462000c58565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cdc8262000c96565b915062000ce98362000c96565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d255762000d2462000ca0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d6c8262000c96565b915062000d798362000c96565b92508262000d8c5762000d8b62000d30565b5b828204905092915050565b600062000da48262000c96565b915062000db18362000c96565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000de95762000de862000ca0565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e3d60208362000df4565b915062000e4a8262000e05565b602082019050919050565b6000602082019050818103600083015262000e708162000e2e565b9050919050565b60008115159050919050565b62000e8e8162000e77565b82525050565b600060208201905062000eab600083018462000e83565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ee9601f8362000df4565b915062000ef68262000eb1565b602082019050919050565b6000602082019050818103600083015262000f1c8162000eda565b9050919050565b62000f2e8162000c96565b82525050565b600060208201905062000f4b600083018462000f23565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f9957607f821691505b6020821081141562000fb05762000faf62000f51565b5b50919050565b60805160a051615db4620010536000396000818161129101528181611aa101528181611cc201528181612639015281816126f00152818161271d01528181612d61015281816138ad015281816138f30152818161416e015281816142270152614254015260008181610f7001528181612d0901528181613a1301528181613af401528181613b1b0152818161433101526143580152615db46000f3fe6080604052600436106103a65760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610de3578063f637434214610e0c578063f8b45b0514610e37578063fe72b27a14610e62576103ad565b8063dd62ed3e14610d25578063e2f4560514610d62578063e884f26014610d8d578063f11a24d314610db8576103ad565b8063c876d0b9116100dc578063c876d0b914610c67578063c8c8ebe414610c92578063d257b34f14610cbd578063d85ba06314610cfa576103ad565b8063bbc0c74214610bc1578063c024666814610bec578063c17b5b8c14610c15578063c18bc19514610c3e576103ad565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610adf578063a9059cbb14610b0a578063b24c74fd14610b47578063b62496f514610b84576103ad565b80639ec22c0e14610a215780639fccce3214610a4c578063a0d82dc514610a77578063a457c2d714610aa2576103ad565b8063924de9b7116101c1578063924de9b71461097957806395d89b41146109a25780639a7a23d6146109cd5780639c3b4fdc146109f6576103ad565b80638da5cb5b146108f85780638ea5220f14610923578063921369131461094e576103ad565b806339509351116102cc578063715018a61161026a57806375f0a8741161023957806375f0a874146108625780637bce5a041461088d5780638095d564146108b85780638a8c523c146108e1576103ad565b8063715018a6146107ce578063730c1888146107e5578063751039fc1461080e5780637571336a14610839576103ad565b80634fbee193116102a65780634fbee193146106fe5780636a486a8e1461073b5780636ddd17131461076657806370a0823114610791576103ad565b8063395093511461066b57806349bd5a5e146106a85780634a62bb65146106d3576103ad565b80631a8145bb1161034457806327c8f8351161031357806327c8f835146105bf5780632c3e486c146105ea5780632e82f1a014610615578063313ce56714610640576103ad565b80631a8145bb146105035780631f3fed8f1461052e578063203e727e1461055957806323b872dd14610582576103ad565b80631694505e116103805780631694505e1461045757806318160ddd14610482578063184c16c5146104ad578063199ffc72146104d8576103ad565b806306fdde03146103b2578063095ea7b3146103dd57806310d5de531461041a576103ad565b366103ad57005b600080fd5b3480156103be57600080fd5b506103c7610e9f565b6040516103d491906144a0565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff919061455b565b610f31565b60405161041191906145b6565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c91906145d1565b610f4f565b60405161044e91906145b6565b60405180910390f35b34801561046357600080fd5b5061046c610f6e565b604051610479919061465d565b60405180910390f35b34801561048e57600080fd5b50610497610f92565b6040516104a49190614687565b60405180910390f35b3480156104b957600080fd5b506104c2610f9c565b6040516104cf9190614687565b60405180910390f35b3480156104e457600080fd5b506104ed610fa2565b6040516104fa9190614687565b60405180910390f35b34801561050f57600080fd5b50610518610fa8565b6040516105259190614687565b60405180910390f35b34801561053a57600080fd5b50610543610fae565b6040516105509190614687565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b91906146a2565b610fb4565b005b34801561058e57600080fd5b506105a960048036038101906105a491906146cf565b6110c3565b6040516105b691906145b6565b60405180910390f35b3480156105cb57600080fd5b506105d46111bb565b6040516105e19190614731565b60405180910390f35b3480156105f657600080fd5b506105ff6111c1565b60405161060c9190614687565b60405180910390f35b34801561062157600080fd5b5061062a6111c7565b60405161063791906145b6565b60405180910390f35b34801561064c57600080fd5b506106556111da565b6040516106629190614768565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d919061455b565b6111e3565b60405161069f91906145b6565b60405180910390f35b3480156106b457600080fd5b506106bd61128f565b6040516106ca9190614731565b60405180910390f35b3480156106df57600080fd5b506106e86112b3565b6040516106f591906145b6565b60405180910390f35b34801561070a57600080fd5b50610725600480360381019061072091906145d1565b6112c6565b60405161073291906145b6565b60405180910390f35b34801561074757600080fd5b5061075061131c565b60405161075d9190614687565b60405180910390f35b34801561077257600080fd5b5061077b611322565b60405161078891906145b6565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b391906145d1565b611335565b6040516107c59190614687565b60405180910390f35b3480156107da57600080fd5b506107e361137d565b005b3480156107f157600080fd5b5061080c600480360381019061080791906147af565b611405565b005b34801561081a57600080fd5b50610823611545565b60405161083091906145b6565b60405180910390f35b34801561084557600080fd5b50610860600480360381019061085b9190614802565b6115e5565b005b34801561086e57600080fd5b506108776116bc565b6040516108849190614731565b60405180910390f35b34801561089957600080fd5b506108a26116e2565b6040516108af9190614687565b60405180910390f35b3480156108c457600080fd5b506108df60048036038101906108da9190614842565b6116e8565b005b3480156108ed57600080fd5b506108f66117e7565b005b34801561090457600080fd5b5061090d6118a2565b60405161091a9190614731565b60405180910390f35b34801561092f57600080fd5b506109386118cc565b6040516109459190614731565b60405180910390f35b34801561095a57600080fd5b506109636118f2565b6040516109709190614687565b60405180910390f35b34801561098557600080fd5b506109a0600480360381019061099b9190614895565b6118f8565b005b3480156109ae57600080fd5b506109b7611991565b6040516109c491906144a0565b60405180910390f35b3480156109d957600080fd5b506109f460048036038101906109ef9190614802565b611a23565b005b348015610a0257600080fd5b50610a0b611b3c565b604051610a189190614687565b60405180910390f35b348015610a2d57600080fd5b50610a36611b42565b604051610a439190614687565b60405180910390f35b348015610a5857600080fd5b50610a61611b48565b604051610a6e9190614687565b60405180910390f35b348015610a8357600080fd5b50610a8c611b4e565b604051610a999190614687565b60405180910390f35b348015610aae57600080fd5b50610ac96004803603810190610ac4919061455b565b611b54565b604051610ad691906145b6565b60405180910390f35b348015610aeb57600080fd5b50610af4611c3f565b604051610b019190614687565b60405180910390f35b348015610b1657600080fd5b50610b316004803603810190610b2c919061455b565b611c45565b604051610b3e91906145b6565b60405180910390f35b348015610b5357600080fd5b50610b6e6004803603810190610b6991906148c2565b611c63565b604051610b7b91906145b6565b60405180910390f35b348015610b9057600080fd5b50610bab6004803603810190610ba691906145d1565b611ded565b604051610bb891906145b6565b60405180910390f35b348015610bcd57600080fd5b50610bd6611e0d565b604051610be391906145b6565b60405180910390f35b348015610bf857600080fd5b50610c136004803603810190610c0e9190614802565b611e20565b005b348015610c2157600080fd5b50610c3c6004803603810190610c379190614842565b611f45565b005b348015610c4a57600080fd5b50610c656004803603810190610c6091906146a2565b612044565b005b348015610c7357600080fd5b50610c7c612153565b604051610c8991906145b6565b60405180910390f35b348015610c9e57600080fd5b50610ca7612166565b604051610cb49190614687565b60405180910390f35b348015610cc957600080fd5b50610ce46004803603810190610cdf91906146a2565b61216c565b604051610cf191906145b6565b60405180910390f35b348015610d0657600080fd5b50610d0f6122c1565b604051610d1c9190614687565b60405180910390f35b348015610d3157600080fd5b50610d4c6004803603810190610d479190614902565b6122c7565b604051610d599190614687565b60405180910390f35b348015610d6e57600080fd5b50610d7761234e565b604051610d849190614687565b60405180910390f35b348015610d9957600080fd5b50610da2612354565b604051610daf91906145b6565b60405180910390f35b348015610dc457600080fd5b50610dcd6123f4565b604051610dda9190614687565b60405180910390f35b348015610def57600080fd5b50610e0a6004803603810190610e0591906145d1565b6123fa565b005b348015610e1857600080fd5b50610e216124f2565b604051610e2e9190614687565b60405180910390f35b348015610e4357600080fd5b50610e4c6124f8565b604051610e599190614687565b60405180910390f35b348015610e6e57600080fd5b50610e896004803603810190610e8491906146a2565b6124fe565b604051610e9691906145b6565b60405180910390f35b606060038054610eae90614971565b80601f0160208091040260200160405190810160405280929190818152602001828054610eda90614971565b8015610f275780601f10610efc57610100808354040283529160200191610f27565b820191906000526020600020905b815481529060010190602001808311610f0a57829003601f168201915b5050505050905090565b6000610f45610f3e6127d6565b84846127de565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600f5481565b600b5481565b601d5481565b601c5481565b610fbc6127d6565b73ffffffffffffffffffffffffffffffffffffffff16610fda6118a2565b73ffffffffffffffffffffffffffffffffffffffff1614611030576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611027906149ef565b60405180910390fd5b670de0b6b3a76400006103e86001611046610f92565b6110509190614a3e565b61105a9190614ac7565b6110649190614ac7565b8110156110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d90614b6a565b60405180910390fd5b670de0b6b3a7640000816110ba9190614a3e565b60088190555050565b60006110d08484846129a9565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061111b6127d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561119b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119290614bfc565b60405180910390fd5b6111af856111a76127d6565b8584036127de565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006112856111f06127d6565b8484600160006111fe6127d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112809190614c1c565b6127de565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113856127d6565b73ffffffffffffffffffffffffffffffffffffffff166113a36118a2565b73ffffffffffffffffffffffffffffffffffffffff16146113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f0906149ef565b60405180910390fd5b6114036000613741565b565b61140d6127d6565b73ffffffffffffffffffffffffffffffffffffffff1661142b6118a2565b73ffffffffffffffffffffffffffffffffffffffff1614611481576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611478906149ef565b60405180910390fd5b6102588310156114c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bd90614ce4565b60405180910390fd5b6103e882111580156114d9575060008210155b611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f90614d76565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b600061154f6127d6565b73ffffffffffffffffffffffffffffffffffffffff1661156d6118a2565b73ffffffffffffffffffffffffffffffffffffffff16146115c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ba906149ef565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6115ed6127d6565b73ffffffffffffffffffffffffffffffffffffffff1661160b6118a2565b73ffffffffffffffffffffffffffffffffffffffff1614611661576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611658906149ef565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6116f06127d6565b73ffffffffffffffffffffffffffffffffffffffff1661170e6118a2565b73ffffffffffffffffffffffffffffffffffffffff1614611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b906149ef565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461178c9190614c1c565b6117969190614c1c565b601481905550601960145411156117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990614de2565b60405180910390fd5b505050565b6117ef6127d6565b73ffffffffffffffffffffffffffffffffffffffff1661180d6118a2565b73ffffffffffffffffffffffffffffffffffffffff1614611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185a906149ef565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6119006127d6565b73ffffffffffffffffffffffffffffffffffffffff1661191e6118a2565b73ffffffffffffffffffffffffffffffffffffffff1614611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b906149ef565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6060600480546119a090614971565b80601f01602080910402602001604051908101604052809291908181526020018280546119cc90614971565b8015611a195780601f106119ee57610100808354040283529160200191611a19565b820191906000526020600020905b8154815290600101906020018083116119fc57829003601f168201915b5050505050905090565b611a2b6127d6565b73ffffffffffffffffffffffffffffffffffffffff16611a496118a2565b73ffffffffffffffffffffffffffffffffffffffff1614611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a96906149ef565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2590614e74565b60405180910390fd5b611b388282613807565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611b636127d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1790614f06565b60405180910390fd5b611c34611c2b6127d6565b858584036127de565b600191505092915050565b600e5481565b6000611c59611c526127d6565b84846129a9565b6001905092915050565b6000601f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611cbb57600080fd5b6000611ce67f0000000000000000000000000000000000000000000000000000000000000000611335565b9050600183118015611d035750606481611d009190614ac7565b83105b611d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3990614f72565b60405180910390fd5b611d4b836138a8565b611d5484613974565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611d9c90614fc3565b60006040518083038185875af1925050503d8060008114611dd9576040519150601f19603f3d011682016040523d82523d6000602084013e611dde565b606091505b50509050809250505092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611e286127d6565b73ffffffffffffffffffffffffffffffffffffffff16611e466118a2565b73ffffffffffffffffffffffffffffffffffffffff1614611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e93906149ef565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f3991906145b6565b60405180910390a25050565b611f4d6127d6565b73ffffffffffffffffffffffffffffffffffffffff16611f6b6118a2565b73ffffffffffffffffffffffffffffffffffffffff1614611fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb8906149ef565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611fe99190614c1c565b611ff39190614c1c565b6018819055506019601854111561203f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203690614de2565b60405180910390fd5b505050565b61204c6127d6565b73ffffffffffffffffffffffffffffffffffffffff1661206a6118a2565b73ffffffffffffffffffffffffffffffffffffffff16146120c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b7906149ef565b60405180910390fd5b670de0b6b3a76400006103e860016120d6610f92565b6120e09190614a3e565b6120ea9190614ac7565b6120f49190614ac7565b811015612136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212d9061504a565b60405180910390fd5b670de0b6b3a76400008161214a9190614a3e565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006121766127d6565b73ffffffffffffffffffffffffffffffffffffffff166121946118a2565b73ffffffffffffffffffffffffffffffffffffffff16146121ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e1906149ef565b60405180910390fd5b620186a060016121f8610f92565b6122029190614a3e565b61220c9190614ac7565b82101561224e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612245906150dc565b60405180910390fd5b6103e8600561225b610f92565b6122659190614a3e565b61226f9190614ac7565b8211156122b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a89061516e565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061235e6127d6565b73ffffffffffffffffffffffffffffffffffffffff1661237c6118a2565b73ffffffffffffffffffffffffffffffffffffffff16146123d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c9906149ef565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6124026127d6565b73ffffffffffffffffffffffffffffffffffffffff166124206118a2565b73ffffffffffffffffffffffffffffffffffffffff1614612476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246d906149ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dd90615200565b60405180910390fd5b6124ef81613741565b50565b601a5481565b600a5481565b60006125086127d6565b73ffffffffffffffffffffffffffffffffffffffff166125266118a2565b73ffffffffffffffffffffffffffffffffffffffff161461257c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612573906149ef565b60405180910390fd5b600f5460105461258c9190614c1c565b42116125cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c49061526c565b60405180910390fd5b6103e8821115612612576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612609906152fe565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016126749190614731565b602060405180830381865afa158015612691573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126b59190615333565b905060006126e06127106126d28685613bb190919063ffffffff16565b613bc790919063ffffffff16565b90506000811115612719576127187f000000000000000000000000000000000000000000000000000000000000000061dead83613bdd565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561278657600080fd5b505af115801561279a573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561284e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612845906153d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b590615464565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161299c9190614687565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a10906154f6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8090615588565b60405180910390fd5b6000811415612aa357612a9e83836000613bdd565b61373c565b601160009054906101000a900460ff161561316657612ac06118a2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b2e5750612afe6118a2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b675750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ba1575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bba5750600560149054906101000a900460ff16155b1561316557601160019054906101000a900460ff16612cb457601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c745750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612caa906155f4565b60405180910390fd5b5b601360009054906101000a900460ff1615612e7c57612cd16118a2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d5857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612db057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e7b5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2d906156ac565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f1f5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fc657600854811115612f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f609061573e565b60405180910390fd5b600a54612f7583611335565b82612f809190614c1c565b1115612fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb8906157aa565b60405180910390fd5b613164565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130695750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130b8576008548111156130b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130aa9061583c565b60405180910390fd5b613163565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661316257600a5461311583611335565b826131209190614c1c565b1115613161576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613158906157aa565b60405180910390fd5b5b5b5b5b5b600061317130611335565b9050600060095482101590508080156131965750601160029054906101000a900460ff165b80156131af5750600560149054906101000a900460ff16155b80156132055750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561325b5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132b15750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132f5576001600560146101000a81548160ff0219169083151502179055506132d9613e5e565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561335b5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156133735750600c60009054906101000a900460ff165b801561338e5750600d54600e5461338a9190614c1c565b4210155b80156133e45750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133f3576133f1614145565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134a95750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156134b357600090505b6000811561372c57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561351657506000601854115b156135e357613543606461353560185488613bb190919063ffffffff16565b613bc790919063ffffffff16565b9050601854601a54826135569190614a3e565b6135609190614ac7565b601d60008282546135719190614c1c565b92505081905550601854601b54826135899190614a3e565b6135939190614ac7565b601e60008282546135a49190614c1c565b92505081905550601854601954826135bc9190614a3e565b6135c69190614ac7565b601c60008282546135d79190614c1c565b92505081905550613708565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561363e57506000601454115b156137075761366b606461365d60145488613bb190919063ffffffff16565b613bc790919063ffffffff16565b90506014546016548261367e9190614a3e565b6136889190614ac7565b601d60008282546136999190614c1c565b92505081905550601454601754826136b19190614a3e565b6136bb9190614ac7565b601e60008282546136cc9190614c1c565b92505081905550601454601554826136e49190614a3e565b6136ee9190614ac7565b601c60008282546136ff9190614c1c565b925050819055505b5b600081111561371d5761371c873083613bdd565b5b8085613729919061585c565b94505b613737878787613bdd565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6138f17f0000000000000000000000000000000000000000000000000000000000000000306138d56111da565b600a6138e191906159c3565b846138ec9190614a3e565b6129a9565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561395957600080fd5b505af115801561396d573d6000803e3d6000fd5b5050505050565b6000600267ffffffffffffffff81111561399157613990615a0e565b5b6040519080825280602002602001820160405280156139bf5781602001602082028036833780820191505090505b50905030816000815181106139d7576139d6615a3d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613aa09190615a81565b81600181518110613ab457613ab3615a3d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613b19307f0000000000000000000000000000000000000000000000000000000000000000846127de565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613b7b959493929190615ba7565b600060405180830381600087803b158015613b9557600080fd5b505af1158015613ba9573d6000803e3d6000fd5b505050505050565b60008183613bbf9190614a3e565b905092915050565b60008183613bd59190614ac7565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c44906154f6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cb490615588565b60405180910390fd5b613cc883838361430b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d4590615c73565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613de19190614c1c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613e459190614687565b60405180910390a3613e58848484614310565b50505050565b6000613e6930611335565b90506000601e54601c54601d54613e809190614c1c565b613e8a9190614c1c565b9050600080831480613e9c5750600082145b15613ea957505050614143565b6014600954613eb89190614a3e565b831115613ed1576014600954613ece9190614a3e565b92505b6000600283601d5486613ee49190614a3e565b613eee9190614ac7565b613ef89190614ac7565b90506000613f0f828661431590919063ffffffff16565b90506000479050613f1f82613974565b6000613f34824761431590919063ffffffff16565b90506000613f5f87613f51601c5485613bb190919063ffffffff16565b613bc790919063ffffffff16565b90506000613f8a88613f7c601e5486613bb190919063ffffffff16565b613bc790919063ffffffff16565b90506000818385613f9b919061585c565b613fa5919061585c565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161400590614fc3565b60006040518083038185875af1925050503d8060008114614042576040519150601f19603f3d011682016040523d82523d6000602084013e614047565b606091505b50508098505060008711801561405d5750600081115b156140aa5761406c878261432b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d546040516140a193929190615c93565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516140f090614fc3565b60006040518083038185875af1925050503d806000811461412d576040519150601f19603f3d011682016040523d82523d6000602084013e614132565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016141a99190614731565b602060405180830381865afa1580156141c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141ea9190615333565b90506000614217612710614209600b5485613bb190919063ffffffff16565b613bc790919063ffffffff16565b905060008111156142505761424f7f000000000000000000000000000000000000000000000000000000000000000061dead83613bdd565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156142bd57600080fd5b505af11580156142d1573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183614323919061585c565b905092915050565b614356307f0000000000000000000000000000000000000000000000000000000000000000846127de565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016143bd96959493929190615cca565b60606040518083038185885af11580156143db573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144009190615d2b565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614441578082015181840152602081019050614426565b83811115614450576000848401525b50505050565b6000601f19601f8301169050919050565b600061447282614407565b61447c8185614412565b935061448c818560208601614423565b61449581614456565b840191505092915050565b600060208201905081810360008301526144ba8184614467565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144f2826144c7565b9050919050565b614502816144e7565b811461450d57600080fd5b50565b60008135905061451f816144f9565b92915050565b6000819050919050565b61453881614525565b811461454357600080fd5b50565b6000813590506145558161452f565b92915050565b60008060408385031215614572576145716144c2565b5b600061458085828601614510565b925050602061459185828601614546565b9150509250929050565b60008115159050919050565b6145b08161459b565b82525050565b60006020820190506145cb60008301846145a7565b92915050565b6000602082840312156145e7576145e66144c2565b5b60006145f584828501614510565b91505092915050565b6000819050919050565b600061462361461e614619846144c7565b6145fe565b6144c7565b9050919050565b600061463582614608565b9050919050565b60006146478261462a565b9050919050565b6146578161463c565b82525050565b6000602082019050614672600083018461464e565b92915050565b61468181614525565b82525050565b600060208201905061469c6000830184614678565b92915050565b6000602082840312156146b8576146b76144c2565b5b60006146c684828501614546565b91505092915050565b6000806000606084860312156146e8576146e76144c2565b5b60006146f686828701614510565b935050602061470786828701614510565b925050604061471886828701614546565b9150509250925092565b61472b816144e7565b82525050565b60006020820190506147466000830184614722565b92915050565b600060ff82169050919050565b6147628161474c565b82525050565b600060208201905061477d6000830184614759565b92915050565b61478c8161459b565b811461479757600080fd5b50565b6000813590506147a981614783565b92915050565b6000806000606084860312156147c8576147c76144c2565b5b60006147d686828701614546565b93505060206147e786828701614546565b92505060406147f88682870161479a565b9150509250925092565b60008060408385031215614819576148186144c2565b5b600061482785828601614510565b92505060206148388582860161479a565b9150509250929050565b60008060006060848603121561485b5761485a6144c2565b5b600061486986828701614546565b935050602061487a86828701614546565b925050604061488b86828701614546565b9150509250925092565b6000602082840312156148ab576148aa6144c2565b5b60006148b98482850161479a565b91505092915050565b600080604083850312156148d9576148d86144c2565b5b60006148e785828601614546565b92505060206148f885828601614546565b9150509250929050565b60008060408385031215614919576149186144c2565b5b600061492785828601614510565b925050602061493885828601614510565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061498957607f821691505b6020821081141561499d5761499c614942565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149d9602083614412565b91506149e4826149a3565b602082019050919050565b60006020820190508181036000830152614a08816149cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a4982614525565b9150614a5483614525565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a8d57614a8c614a0f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ad282614525565b9150614add83614525565b925082614aed57614aec614a98565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614b54602f83614412565b9150614b5f82614af8565b604082019050919050565b60006020820190508181036000830152614b8381614b47565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614be6602883614412565b9150614bf182614b8a565b604082019050919050565b60006020820190508181036000830152614c1581614bd9565b9050919050565b6000614c2782614525565b9150614c3283614525565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c6757614c66614a0f565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614cce603383614412565b9150614cd982614c72565b604082019050919050565b60006020820190508181036000830152614cfd81614cc1565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614d60603083614412565b9150614d6b82614d04565b604082019050919050565b60006020820190508181036000830152614d8f81614d53565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614dcc601d83614412565b9150614dd782614d96565b602082019050919050565b60006020820190508181036000830152614dfb81614dbf565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e5e603983614412565b9150614e6982614e02565b604082019050919050565b60006020820190508181036000830152614e8d81614e51565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614ef0602583614412565b9150614efb82614e94565b604082019050919050565b60006020820190508181036000830152614f1f81614ee3565b9050919050565b7f616d6f756e742065786365656465640000000000000000000000000000000000600082015250565b6000614f5c600f83614412565b9150614f6782614f26565b602082019050919050565b60006020820190508181036000830152614f8b81614f4f565b9050919050565b600081905092915050565b50565b6000614fad600083614f92565b9150614fb882614f9d565b600082019050919050565b6000614fce82614fa0565b9150819050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e312500000000000000000000000000000000000000000000000000000000602082015250565b6000615034602483614412565b915061503f82614fd8565b604082019050919050565b6000602082019050818103600083015261506381615027565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006150c6603583614412565b91506150d18261506a565b604082019050919050565b600060208201905081810360008301526150f5816150b9565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000615158603483614412565b9150615163826150fc565b604082019050919050565b600060208201905081810360008301526151878161514b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006151ea602683614412565b91506151f58261518e565b604082019050919050565b60006020820190508181036000830152615219816151dd565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000615256602083614412565b915061526182615220565b602082019050919050565b6000602082019050818103600083015261528581615249565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006152e8602a83614412565b91506152f38261528c565b604082019050919050565b60006020820190508181036000830152615317816152db565b9050919050565b60008151905061532d8161452f565b92915050565b600060208284031215615349576153486144c2565b5b60006153578482850161531e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006153bc602483614412565b91506153c782615360565b604082019050919050565b600060208201905081810360008301526153eb816153af565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061544e602283614412565b9150615459826153f2565b604082019050919050565b6000602082019050818103600083015261547d81615441565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006154e0602583614412565b91506154eb82615484565b604082019050919050565b6000602082019050818103600083015261550f816154d3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615572602383614412565b915061557d82615516565b604082019050919050565b600060208201905081810360008301526155a181615565565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006155de601683614412565b91506155e9826155a8565b602082019050919050565b6000602082019050818103600083015261560d816155d1565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615696604983614412565b91506156a182615614565b606082019050919050565b600060208201905081810360008301526156c581615689565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615728603583614412565b9150615733826156cc565b604082019050919050565b600060208201905081810360008301526157578161571b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615794601383614412565b915061579f8261575e565b602082019050919050565b600060208201905081810360008301526157c381615787565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615826603683614412565b9150615831826157ca565b604082019050919050565b6000602082019050818103600083015261585581615819565b9050919050565b600061586782614525565b915061587283614525565b92508282101561588557615884614a0f565b5b828203905092915050565b60008160011c9050919050565b6000808291508390505b60018511156158e7578086048111156158c3576158c2614a0f565b5b60018516156158d25780820291505b80810290506158e085615890565b94506158a7565b94509492505050565b60008261590057600190506159bc565b8161590e57600090506159bc565b8160018114615924576002811461592e5761595d565b60019150506159bc565b60ff8411156159405761593f614a0f565b5b8360020a91508482111561595757615956614a0f565b5b506159bc565b5060208310610133831016604e8410600b84101617156159925782820a90508381111561598d5761598c614a0f565b5b6159bc565b61599f848484600161589d565b925090508184048111156159b6576159b5614a0f565b5b81810290505b9392505050565b60006159ce82614525565b91506159d98361474c565b9250615a067fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846158f0565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615a7b816144f9565b92915050565b600060208284031215615a9757615a966144c2565b5b6000615aa584828501615a6c565b91505092915050565b6000819050919050565b6000615ad3615ace615ac984615aae565b6145fe565b614525565b9050919050565b615ae381615ab8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615b1e816144e7565b82525050565b6000615b308383615b15565b60208301905092915050565b6000602082019050919050565b6000615b5482615ae9565b615b5e8185615af4565b9350615b6983615b05565b8060005b83811015615b9a578151615b818882615b24565b9750615b8c83615b3c565b925050600181019050615b6d565b5085935050505092915050565b600060a082019050615bbc6000830188614678565b615bc96020830187615ada565b8181036040830152615bdb8186615b49565b9050615bea6060830185614722565b615bf76080830184614678565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615c5d602683614412565b9150615c6882615c01565b604082019050919050565b60006020820190508181036000830152615c8c81615c50565b9050919050565b6000606082019050615ca86000830186614678565b615cb56020830185614678565b615cc26040830184614678565b949350505050565b600060c082019050615cdf6000830189614722565b615cec6020830188614678565b615cf96040830187615ada565b615d066060830186615ada565b615d136080830185614722565b615d2060a0830184614678565b979650505050505050565b600080600060608486031215615d4457615d436144c2565b5b6000615d528682870161531e565b9350506020615d638682870161531e565b9250506040615d748682870161531e565b915050925092509256fea2646970667358221220ac273bfb8b87f34fb26e49048c2d957e2708773682031224cce560b63eb106ab64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103a65760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610de3578063f637434214610e0c578063f8b45b0514610e37578063fe72b27a14610e62576103ad565b8063dd62ed3e14610d25578063e2f4560514610d62578063e884f26014610d8d578063f11a24d314610db8576103ad565b8063c876d0b9116100dc578063c876d0b914610c67578063c8c8ebe414610c92578063d257b34f14610cbd578063d85ba06314610cfa576103ad565b8063bbc0c74214610bc1578063c024666814610bec578063c17b5b8c14610c15578063c18bc19514610c3e576103ad565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610adf578063a9059cbb14610b0a578063b24c74fd14610b47578063b62496f514610b84576103ad565b80639ec22c0e14610a215780639fccce3214610a4c578063a0d82dc514610a77578063a457c2d714610aa2576103ad565b8063924de9b7116101c1578063924de9b71461097957806395d89b41146109a25780639a7a23d6146109cd5780639c3b4fdc146109f6576103ad565b80638da5cb5b146108f85780638ea5220f14610923578063921369131461094e576103ad565b806339509351116102cc578063715018a61161026a57806375f0a8741161023957806375f0a874146108625780637bce5a041461088d5780638095d564146108b85780638a8c523c146108e1576103ad565b8063715018a6146107ce578063730c1888146107e5578063751039fc1461080e5780637571336a14610839576103ad565b80634fbee193116102a65780634fbee193146106fe5780636a486a8e1461073b5780636ddd17131461076657806370a0823114610791576103ad565b8063395093511461066b57806349bd5a5e146106a85780634a62bb65146106d3576103ad565b80631a8145bb1161034457806327c8f8351161031357806327c8f835146105bf5780632c3e486c146105ea5780632e82f1a014610615578063313ce56714610640576103ad565b80631a8145bb146105035780631f3fed8f1461052e578063203e727e1461055957806323b872dd14610582576103ad565b80631694505e116103805780631694505e1461045757806318160ddd14610482578063184c16c5146104ad578063199ffc72146104d8576103ad565b806306fdde03146103b2578063095ea7b3146103dd57806310d5de531461041a576103ad565b366103ad57005b600080fd5b3480156103be57600080fd5b506103c7610e9f565b6040516103d491906144a0565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff919061455b565b610f31565b60405161041191906145b6565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c91906145d1565b610f4f565b60405161044e91906145b6565b60405180910390f35b34801561046357600080fd5b5061046c610f6e565b604051610479919061465d565b60405180910390f35b34801561048e57600080fd5b50610497610f92565b6040516104a49190614687565b60405180910390f35b3480156104b957600080fd5b506104c2610f9c565b6040516104cf9190614687565b60405180910390f35b3480156104e457600080fd5b506104ed610fa2565b6040516104fa9190614687565b60405180910390f35b34801561050f57600080fd5b50610518610fa8565b6040516105259190614687565b60405180910390f35b34801561053a57600080fd5b50610543610fae565b6040516105509190614687565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b91906146a2565b610fb4565b005b34801561058e57600080fd5b506105a960048036038101906105a491906146cf565b6110c3565b6040516105b691906145b6565b60405180910390f35b3480156105cb57600080fd5b506105d46111bb565b6040516105e19190614731565b60405180910390f35b3480156105f657600080fd5b506105ff6111c1565b60405161060c9190614687565b60405180910390f35b34801561062157600080fd5b5061062a6111c7565b60405161063791906145b6565b60405180910390f35b34801561064c57600080fd5b506106556111da565b6040516106629190614768565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d919061455b565b6111e3565b60405161069f91906145b6565b60405180910390f35b3480156106b457600080fd5b506106bd61128f565b6040516106ca9190614731565b60405180910390f35b3480156106df57600080fd5b506106e86112b3565b6040516106f591906145b6565b60405180910390f35b34801561070a57600080fd5b50610725600480360381019061072091906145d1565b6112c6565b60405161073291906145b6565b60405180910390f35b34801561074757600080fd5b5061075061131c565b60405161075d9190614687565b60405180910390f35b34801561077257600080fd5b5061077b611322565b60405161078891906145b6565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b391906145d1565b611335565b6040516107c59190614687565b60405180910390f35b3480156107da57600080fd5b506107e361137d565b005b3480156107f157600080fd5b5061080c600480360381019061080791906147af565b611405565b005b34801561081a57600080fd5b50610823611545565b60405161083091906145b6565b60405180910390f35b34801561084557600080fd5b50610860600480360381019061085b9190614802565b6115e5565b005b34801561086e57600080fd5b506108776116bc565b6040516108849190614731565b60405180910390f35b34801561089957600080fd5b506108a26116e2565b6040516108af9190614687565b60405180910390f35b3480156108c457600080fd5b506108df60048036038101906108da9190614842565b6116e8565b005b3480156108ed57600080fd5b506108f66117e7565b005b34801561090457600080fd5b5061090d6118a2565b60405161091a9190614731565b60405180910390f35b34801561092f57600080fd5b506109386118cc565b6040516109459190614731565b60405180910390f35b34801561095a57600080fd5b506109636118f2565b6040516109709190614687565b60405180910390f35b34801561098557600080fd5b506109a0600480360381019061099b9190614895565b6118f8565b005b3480156109ae57600080fd5b506109b7611991565b6040516109c491906144a0565b60405180910390f35b3480156109d957600080fd5b506109f460048036038101906109ef9190614802565b611a23565b005b348015610a0257600080fd5b50610a0b611b3c565b604051610a189190614687565b60405180910390f35b348015610a2d57600080fd5b50610a36611b42565b604051610a439190614687565b60405180910390f35b348015610a5857600080fd5b50610a61611b48565b604051610a6e9190614687565b60405180910390f35b348015610a8357600080fd5b50610a8c611b4e565b604051610a999190614687565b60405180910390f35b348015610aae57600080fd5b50610ac96004803603810190610ac4919061455b565b611b54565b604051610ad691906145b6565b60405180910390f35b348015610aeb57600080fd5b50610af4611c3f565b604051610b019190614687565b60405180910390f35b348015610b1657600080fd5b50610b316004803603810190610b2c919061455b565b611c45565b604051610b3e91906145b6565b60405180910390f35b348015610b5357600080fd5b50610b6e6004803603810190610b6991906148c2565b611c63565b604051610b7b91906145b6565b60405180910390f35b348015610b9057600080fd5b50610bab6004803603810190610ba691906145d1565b611ded565b604051610bb891906145b6565b60405180910390f35b348015610bcd57600080fd5b50610bd6611e0d565b604051610be391906145b6565b60405180910390f35b348015610bf857600080fd5b50610c136004803603810190610c0e9190614802565b611e20565b005b348015610c2157600080fd5b50610c3c6004803603810190610c379190614842565b611f45565b005b348015610c4a57600080fd5b50610c656004803603810190610c6091906146a2565b612044565b005b348015610c7357600080fd5b50610c7c612153565b604051610c8991906145b6565b60405180910390f35b348015610c9e57600080fd5b50610ca7612166565b604051610cb49190614687565b60405180910390f35b348015610cc957600080fd5b50610ce46004803603810190610cdf91906146a2565b61216c565b604051610cf191906145b6565b60405180910390f35b348015610d0657600080fd5b50610d0f6122c1565b604051610d1c9190614687565b60405180910390f35b348015610d3157600080fd5b50610d4c6004803603810190610d479190614902565b6122c7565b604051610d599190614687565b60405180910390f35b348015610d6e57600080fd5b50610d7761234e565b604051610d849190614687565b60405180910390f35b348015610d9957600080fd5b50610da2612354565b604051610daf91906145b6565b60405180910390f35b348015610dc457600080fd5b50610dcd6123f4565b604051610dda9190614687565b60405180910390f35b348015610def57600080fd5b50610e0a6004803603810190610e0591906145d1565b6123fa565b005b348015610e1857600080fd5b50610e216124f2565b604051610e2e9190614687565b60405180910390f35b348015610e4357600080fd5b50610e4c6124f8565b604051610e599190614687565b60405180910390f35b348015610e6e57600080fd5b50610e896004803603810190610e8491906146a2565b6124fe565b604051610e9691906145b6565b60405180910390f35b606060038054610eae90614971565b80601f0160208091040260200160405190810160405280929190818152602001828054610eda90614971565b8015610f275780601f10610efc57610100808354040283529160200191610f27565b820191906000526020600020905b815481529060010190602001808311610f0a57829003601f168201915b5050505050905090565b6000610f45610f3e6127d6565b84846127de565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600f5481565b600b5481565b601d5481565b601c5481565b610fbc6127d6565b73ffffffffffffffffffffffffffffffffffffffff16610fda6118a2565b73ffffffffffffffffffffffffffffffffffffffff1614611030576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611027906149ef565b60405180910390fd5b670de0b6b3a76400006103e86001611046610f92565b6110509190614a3e565b61105a9190614ac7565b6110649190614ac7565b8110156110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d90614b6a565b60405180910390fd5b670de0b6b3a7640000816110ba9190614a3e565b60088190555050565b60006110d08484846129a9565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061111b6127d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561119b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119290614bfc565b60405180910390fd5b6111af856111a76127d6565b8584036127de565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006112856111f06127d6565b8484600160006111fe6127d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112809190614c1c565b6127de565b6001905092915050565b7f0000000000000000000000008563a530a29f91e1eee9b3d364d507b9ce0af7dc81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113856127d6565b73ffffffffffffffffffffffffffffffffffffffff166113a36118a2565b73ffffffffffffffffffffffffffffffffffffffff16146113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f0906149ef565b60405180910390fd5b6114036000613741565b565b61140d6127d6565b73ffffffffffffffffffffffffffffffffffffffff1661142b6118a2565b73ffffffffffffffffffffffffffffffffffffffff1614611481576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611478906149ef565b60405180910390fd5b6102588310156114c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bd90614ce4565b60405180910390fd5b6103e882111580156114d9575060008210155b611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f90614d76565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b600061154f6127d6565b73ffffffffffffffffffffffffffffffffffffffff1661156d6118a2565b73ffffffffffffffffffffffffffffffffffffffff16146115c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ba906149ef565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6115ed6127d6565b73ffffffffffffffffffffffffffffffffffffffff1661160b6118a2565b73ffffffffffffffffffffffffffffffffffffffff1614611661576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611658906149ef565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6116f06127d6565b73ffffffffffffffffffffffffffffffffffffffff1661170e6118a2565b73ffffffffffffffffffffffffffffffffffffffff1614611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b906149ef565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461178c9190614c1c565b6117969190614c1c565b601481905550601960145411156117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990614de2565b60405180910390fd5b505050565b6117ef6127d6565b73ffffffffffffffffffffffffffffffffffffffff1661180d6118a2565b73ffffffffffffffffffffffffffffffffffffffff1614611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185a906149ef565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6119006127d6565b73ffffffffffffffffffffffffffffffffffffffff1661191e6118a2565b73ffffffffffffffffffffffffffffffffffffffff1614611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b906149ef565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6060600480546119a090614971565b80601f01602080910402602001604051908101604052809291908181526020018280546119cc90614971565b8015611a195780601f106119ee57610100808354040283529160200191611a19565b820191906000526020600020905b8154815290600101906020018083116119fc57829003601f168201915b5050505050905090565b611a2b6127d6565b73ffffffffffffffffffffffffffffffffffffffff16611a496118a2565b73ffffffffffffffffffffffffffffffffffffffff1614611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a96906149ef565b60405180910390fd5b7f0000000000000000000000008563a530a29f91e1eee9b3d364d507b9ce0af7dc73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2590614e74565b60405180910390fd5b611b388282613807565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611b636127d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1790614f06565b60405180910390fd5b611c34611c2b6127d6565b858584036127de565b600191505092915050565b600e5481565b6000611c59611c526127d6565b84846129a9565b6001905092915050565b6000601f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611cbb57600080fd5b6000611ce67f0000000000000000000000008563a530a29f91e1eee9b3d364d507b9ce0af7dc611335565b9050600183118015611d035750606481611d009190614ac7565b83105b611d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3990614f72565b60405180910390fd5b611d4b836138a8565b611d5484613974565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611d9c90614fc3565b60006040518083038185875af1925050503d8060008114611dd9576040519150601f19603f3d011682016040523d82523d6000602084013e611dde565b606091505b50509050809250505092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611e286127d6565b73ffffffffffffffffffffffffffffffffffffffff16611e466118a2565b73ffffffffffffffffffffffffffffffffffffffff1614611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e93906149ef565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f3991906145b6565b60405180910390a25050565b611f4d6127d6565b73ffffffffffffffffffffffffffffffffffffffff16611f6b6118a2565b73ffffffffffffffffffffffffffffffffffffffff1614611fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb8906149ef565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611fe99190614c1c565b611ff39190614c1c565b6018819055506019601854111561203f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203690614de2565b60405180910390fd5b505050565b61204c6127d6565b73ffffffffffffffffffffffffffffffffffffffff1661206a6118a2565b73ffffffffffffffffffffffffffffffffffffffff16146120c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b7906149ef565b60405180910390fd5b670de0b6b3a76400006103e860016120d6610f92565b6120e09190614a3e565b6120ea9190614ac7565b6120f49190614ac7565b811015612136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212d9061504a565b60405180910390fd5b670de0b6b3a76400008161214a9190614a3e565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006121766127d6565b73ffffffffffffffffffffffffffffffffffffffff166121946118a2565b73ffffffffffffffffffffffffffffffffffffffff16146121ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e1906149ef565b60405180910390fd5b620186a060016121f8610f92565b6122029190614a3e565b61220c9190614ac7565b82101561224e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612245906150dc565b60405180910390fd5b6103e8600561225b610f92565b6122659190614a3e565b61226f9190614ac7565b8211156122b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a89061516e565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061235e6127d6565b73ffffffffffffffffffffffffffffffffffffffff1661237c6118a2565b73ffffffffffffffffffffffffffffffffffffffff16146123d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c9906149ef565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6124026127d6565b73ffffffffffffffffffffffffffffffffffffffff166124206118a2565b73ffffffffffffffffffffffffffffffffffffffff1614612476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246d906149ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dd90615200565b60405180910390fd5b6124ef81613741565b50565b601a5481565b600a5481565b60006125086127d6565b73ffffffffffffffffffffffffffffffffffffffff166125266118a2565b73ffffffffffffffffffffffffffffffffffffffff161461257c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612573906149ef565b60405180910390fd5b600f5460105461258c9190614c1c565b42116125cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c49061526c565b60405180910390fd5b6103e8821115612612576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612609906152fe565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000008563a530a29f91e1eee9b3d364d507b9ce0af7dc6040518263ffffffff1660e01b81526004016126749190614731565b602060405180830381865afa158015612691573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126b59190615333565b905060006126e06127106126d28685613bb190919063ffffffff16565b613bc790919063ffffffff16565b90506000811115612719576127187f0000000000000000000000008563a530a29f91e1eee9b3d364d507b9ce0af7dc61dead83613bdd565b5b60007f0000000000000000000000008563a530a29f91e1eee9b3d364d507b9ce0af7dc90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561278657600080fd5b505af115801561279a573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561284e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612845906153d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b590615464565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161299c9190614687565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a10906154f6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8090615588565b60405180910390fd5b6000811415612aa357612a9e83836000613bdd565b61373c565b601160009054906101000a900460ff161561316657612ac06118a2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b2e5750612afe6118a2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b675750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ba1575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bba5750600560149054906101000a900460ff16155b1561316557601160019054906101000a900460ff16612cb457601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c745750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612caa906155f4565b60405180910390fd5b5b601360009054906101000a900460ff1615612e7c57612cd16118a2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d5857507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612db057507f0000000000000000000000008563a530a29f91e1eee9b3d364d507b9ce0af7dc73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e7b5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2d906156ac565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f1f5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fc657600854811115612f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f609061573e565b60405180910390fd5b600a54612f7583611335565b82612f809190614c1c565b1115612fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb8906157aa565b60405180910390fd5b613164565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130695750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130b8576008548111156130b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130aa9061583c565b60405180910390fd5b613163565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661316257600a5461311583611335565b826131209190614c1c565b1115613161576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613158906157aa565b60405180910390fd5b5b5b5b5b5b600061317130611335565b9050600060095482101590508080156131965750601160029054906101000a900460ff165b80156131af5750600560149054906101000a900460ff16155b80156132055750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561325b5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132b15750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132f5576001600560146101000a81548160ff0219169083151502179055506132d9613e5e565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561335b5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156133735750600c60009054906101000a900460ff165b801561338e5750600d54600e5461338a9190614c1c565b4210155b80156133e45750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133f3576133f1614145565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134a95750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156134b357600090505b6000811561372c57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561351657506000601854115b156135e357613543606461353560185488613bb190919063ffffffff16565b613bc790919063ffffffff16565b9050601854601a54826135569190614a3e565b6135609190614ac7565b601d60008282546135719190614c1c565b92505081905550601854601b54826135899190614a3e565b6135939190614ac7565b601e60008282546135a49190614c1c565b92505081905550601854601954826135bc9190614a3e565b6135c69190614ac7565b601c60008282546135d79190614c1c565b92505081905550613708565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561363e57506000601454115b156137075761366b606461365d60145488613bb190919063ffffffff16565b613bc790919063ffffffff16565b90506014546016548261367e9190614a3e565b6136889190614ac7565b601d60008282546136999190614c1c565b92505081905550601454601754826136b19190614a3e565b6136bb9190614ac7565b601e60008282546136cc9190614c1c565b92505081905550601454601554826136e49190614a3e565b6136ee9190614ac7565b601c60008282546136ff9190614c1c565b925050819055505b5b600081111561371d5761371c873083613bdd565b5b8085613729919061585c565b94505b613737878787613bdd565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6138f17f0000000000000000000000008563a530a29f91e1eee9b3d364d507b9ce0af7dc306138d56111da565b600a6138e191906159c3565b846138ec9190614a3e565b6129a9565b7f0000000000000000000000008563a530a29f91e1eee9b3d364d507b9ce0af7dc73ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561395957600080fd5b505af115801561396d573d6000803e3d6000fd5b5050505050565b6000600267ffffffffffffffff81111561399157613990615a0e565b5b6040519080825280602002602001820160405280156139bf5781602001602082028036833780820191505090505b50905030816000815181106139d7576139d6615a3d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613aa09190615a81565b81600181518110613ab457613ab3615a3d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613b19307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846127de565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613b7b959493929190615ba7565b600060405180830381600087803b158015613b9557600080fd5b505af1158015613ba9573d6000803e3d6000fd5b505050505050565b60008183613bbf9190614a3e565b905092915050565b60008183613bd59190614ac7565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c44906154f6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cb490615588565b60405180910390fd5b613cc883838361430b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d4590615c73565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613de19190614c1c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613e459190614687565b60405180910390a3613e58848484614310565b50505050565b6000613e6930611335565b90506000601e54601c54601d54613e809190614c1c565b613e8a9190614c1c565b9050600080831480613e9c5750600082145b15613ea957505050614143565b6014600954613eb89190614a3e565b831115613ed1576014600954613ece9190614a3e565b92505b6000600283601d5486613ee49190614a3e565b613eee9190614ac7565b613ef89190614ac7565b90506000613f0f828661431590919063ffffffff16565b90506000479050613f1f82613974565b6000613f34824761431590919063ffffffff16565b90506000613f5f87613f51601c5485613bb190919063ffffffff16565b613bc790919063ffffffff16565b90506000613f8a88613f7c601e5486613bb190919063ffffffff16565b613bc790919063ffffffff16565b90506000818385613f9b919061585c565b613fa5919061585c565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161400590614fc3565b60006040518083038185875af1925050503d8060008114614042576040519150601f19603f3d011682016040523d82523d6000602084013e614047565b606091505b50508098505060008711801561405d5750600081115b156140aa5761406c878261432b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d546040516140a193929190615c93565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516140f090614fc3565b60006040518083038185875af1925050503d806000811461412d576040519150601f19603f3d011682016040523d82523d6000602084013e614132565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000008563a530a29f91e1eee9b3d364d507b9ce0af7dc6040518263ffffffff1660e01b81526004016141a99190614731565b602060405180830381865afa1580156141c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141ea9190615333565b90506000614217612710614209600b5485613bb190919063ffffffff16565b613bc790919063ffffffff16565b905060008111156142505761424f7f0000000000000000000000008563a530a29f91e1eee9b3d364d507b9ce0af7dc61dead83613bdd565b5b60007f0000000000000000000000008563a530a29f91e1eee9b3d364d507b9ce0af7dc90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156142bd57600080fd5b505af11580156142d1573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183614323919061585c565b905092915050565b614356307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846127de565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016143bd96959493929190615cca565b60606040518083038185885af11580156143db573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144009190615d2b565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614441578082015181840152602081019050614426565b83811115614450576000848401525b50505050565b6000601f19601f8301169050919050565b600061447282614407565b61447c8185614412565b935061448c818560208601614423565b61449581614456565b840191505092915050565b600060208201905081810360008301526144ba8184614467565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144f2826144c7565b9050919050565b614502816144e7565b811461450d57600080fd5b50565b60008135905061451f816144f9565b92915050565b6000819050919050565b61453881614525565b811461454357600080fd5b50565b6000813590506145558161452f565b92915050565b60008060408385031215614572576145716144c2565b5b600061458085828601614510565b925050602061459185828601614546565b9150509250929050565b60008115159050919050565b6145b08161459b565b82525050565b60006020820190506145cb60008301846145a7565b92915050565b6000602082840312156145e7576145e66144c2565b5b60006145f584828501614510565b91505092915050565b6000819050919050565b600061462361461e614619846144c7565b6145fe565b6144c7565b9050919050565b600061463582614608565b9050919050565b60006146478261462a565b9050919050565b6146578161463c565b82525050565b6000602082019050614672600083018461464e565b92915050565b61468181614525565b82525050565b600060208201905061469c6000830184614678565b92915050565b6000602082840312156146b8576146b76144c2565b5b60006146c684828501614546565b91505092915050565b6000806000606084860312156146e8576146e76144c2565b5b60006146f686828701614510565b935050602061470786828701614510565b925050604061471886828701614546565b9150509250925092565b61472b816144e7565b82525050565b60006020820190506147466000830184614722565b92915050565b600060ff82169050919050565b6147628161474c565b82525050565b600060208201905061477d6000830184614759565b92915050565b61478c8161459b565b811461479757600080fd5b50565b6000813590506147a981614783565b92915050565b6000806000606084860312156147c8576147c76144c2565b5b60006147d686828701614546565b93505060206147e786828701614546565b92505060406147f88682870161479a565b9150509250925092565b60008060408385031215614819576148186144c2565b5b600061482785828601614510565b92505060206148388582860161479a565b9150509250929050565b60008060006060848603121561485b5761485a6144c2565b5b600061486986828701614546565b935050602061487a86828701614546565b925050604061488b86828701614546565b9150509250925092565b6000602082840312156148ab576148aa6144c2565b5b60006148b98482850161479a565b91505092915050565b600080604083850312156148d9576148d86144c2565b5b60006148e785828601614546565b92505060206148f885828601614546565b9150509250929050565b60008060408385031215614919576149186144c2565b5b600061492785828601614510565b925050602061493885828601614510565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061498957607f821691505b6020821081141561499d5761499c614942565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149d9602083614412565b91506149e4826149a3565b602082019050919050565b60006020820190508181036000830152614a08816149cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a4982614525565b9150614a5483614525565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a8d57614a8c614a0f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ad282614525565b9150614add83614525565b925082614aed57614aec614a98565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614b54602f83614412565b9150614b5f82614af8565b604082019050919050565b60006020820190508181036000830152614b8381614b47565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614be6602883614412565b9150614bf182614b8a565b604082019050919050565b60006020820190508181036000830152614c1581614bd9565b9050919050565b6000614c2782614525565b9150614c3283614525565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c6757614c66614a0f565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614cce603383614412565b9150614cd982614c72565b604082019050919050565b60006020820190508181036000830152614cfd81614cc1565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614d60603083614412565b9150614d6b82614d04565b604082019050919050565b60006020820190508181036000830152614d8f81614d53565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614dcc601d83614412565b9150614dd782614d96565b602082019050919050565b60006020820190508181036000830152614dfb81614dbf565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e5e603983614412565b9150614e6982614e02565b604082019050919050565b60006020820190508181036000830152614e8d81614e51565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614ef0602583614412565b9150614efb82614e94565b604082019050919050565b60006020820190508181036000830152614f1f81614ee3565b9050919050565b7f616d6f756e742065786365656465640000000000000000000000000000000000600082015250565b6000614f5c600f83614412565b9150614f6782614f26565b602082019050919050565b60006020820190508181036000830152614f8b81614f4f565b9050919050565b600081905092915050565b50565b6000614fad600083614f92565b9150614fb882614f9d565b600082019050919050565b6000614fce82614fa0565b9150819050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e312500000000000000000000000000000000000000000000000000000000602082015250565b6000615034602483614412565b915061503f82614fd8565b604082019050919050565b6000602082019050818103600083015261506381615027565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006150c6603583614412565b91506150d18261506a565b604082019050919050565b600060208201905081810360008301526150f5816150b9565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000615158603483614412565b9150615163826150fc565b604082019050919050565b600060208201905081810360008301526151878161514b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006151ea602683614412565b91506151f58261518e565b604082019050919050565b60006020820190508181036000830152615219816151dd565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000615256602083614412565b915061526182615220565b602082019050919050565b6000602082019050818103600083015261528581615249565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006152e8602a83614412565b91506152f38261528c565b604082019050919050565b60006020820190508181036000830152615317816152db565b9050919050565b60008151905061532d8161452f565b92915050565b600060208284031215615349576153486144c2565b5b60006153578482850161531e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006153bc602483614412565b91506153c782615360565b604082019050919050565b600060208201905081810360008301526153eb816153af565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061544e602283614412565b9150615459826153f2565b604082019050919050565b6000602082019050818103600083015261547d81615441565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006154e0602583614412565b91506154eb82615484565b604082019050919050565b6000602082019050818103600083015261550f816154d3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615572602383614412565b915061557d82615516565b604082019050919050565b600060208201905081810360008301526155a181615565565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006155de601683614412565b91506155e9826155a8565b602082019050919050565b6000602082019050818103600083015261560d816155d1565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615696604983614412565b91506156a182615614565b606082019050919050565b600060208201905081810360008301526156c581615689565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615728603583614412565b9150615733826156cc565b604082019050919050565b600060208201905081810360008301526157578161571b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615794601383614412565b915061579f8261575e565b602082019050919050565b600060208201905081810360008301526157c381615787565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615826603683614412565b9150615831826157ca565b604082019050919050565b6000602082019050818103600083015261585581615819565b9050919050565b600061586782614525565b915061587283614525565b92508282101561588557615884614a0f565b5b828203905092915050565b60008160011c9050919050565b6000808291508390505b60018511156158e7578086048111156158c3576158c2614a0f565b5b60018516156158d25780820291505b80810290506158e085615890565b94506158a7565b94509492505050565b60008261590057600190506159bc565b8161590e57600090506159bc565b8160018114615924576002811461592e5761595d565b60019150506159bc565b60ff8411156159405761593f614a0f565b5b8360020a91508482111561595757615956614a0f565b5b506159bc565b5060208310610133831016604e8410600b84101617156159925782820a90508381111561598d5761598c614a0f565b5b6159bc565b61599f848484600161589d565b925090508184048111156159b6576159b5614a0f565b5b81810290505b9392505050565b60006159ce82614525565b91506159d98361474c565b9250615a067fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846158f0565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615a7b816144f9565b92915050565b600060208284031215615a9757615a966144c2565b5b6000615aa584828501615a6c565b91505092915050565b6000819050919050565b6000615ad3615ace615ac984615aae565b6145fe565b614525565b9050919050565b615ae381615ab8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615b1e816144e7565b82525050565b6000615b308383615b15565b60208301905092915050565b6000602082019050919050565b6000615b5482615ae9565b615b5e8185615af4565b9350615b6983615b05565b8060005b83811015615b9a578151615b818882615b24565b9750615b8c83615b3c565b925050600181019050615b6d565b5085935050505092915050565b600060a082019050615bbc6000830188614678565b615bc96020830187615ada565b8181036040830152615bdb8186615b49565b9050615bea6060830185614722565b615bf76080830184614678565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615c5d602683614412565b9150615c6882615c01565b604082019050919050565b60006020820190508181036000830152615c8c81615c50565b9050919050565b6000606082019050615ca86000830186614678565b615cb56020830185614678565b615cc26040830184614678565b949350505050565b600060c082019050615cdf6000830189614722565b615cec6020830188614678565b615cf96040830187615ada565b615d066060830186615ada565b615d136080830185614722565b615d2060a0830184614678565b979650505050505050565b600080600060608486031215615d4457615d436144c2565b5b6000615d528682870161531e565b9350506020615d638682870161531e565b9250506040615d748682870161531e565b915050925092509256fea2646970667358221220ac273bfb8b87f34fb26e49048c2d957e2708773682031224cce560b63eb106ab64736f6c634300080a0033

Deployed Bytecode Sourcemap

32727:19734:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9555:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11722:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34355:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32804:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10675:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33369:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33184:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34139:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34099;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38817:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12373:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32907:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33279:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33240:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10517:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13274:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32862:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33467:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41264:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33954:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33547:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10846:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2790:103;;;;;;;;;;;;;:::i;:::-;;49353:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37925:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39364:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32999:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33847;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39735:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37718:155;;;;;;;;;;;;;:::i;:::-;;2139:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33036:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33989:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39627:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9774:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40756:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33921:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33423:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34179:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34065:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13992:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33331:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11186:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50712:488;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34576:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33507:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40566:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40146:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39100:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33765:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33069:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38312:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33813:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11424:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33111:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38107:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33884:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3048:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34027:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33151:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51402:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9555:100;9609:13;9642:5;9635:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9555:100;:::o;11722:169::-;11805:4;11822:39;11831:12;:10;:12::i;:::-;11845:7;11854:6;11822:8;:39::i;:::-;11879:4;11872:11;;11722:169;;;;:::o;34355:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32804:51::-;;;:::o;10675:108::-;10736:7;10763:12;;10756:19;;10675:108;:::o;33369:47::-;;;;:::o;33184:36::-;;;;:::o;34139:33::-;;;;:::o;34099:::-;;;;:::o;38817:275::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38954:4:::1;38946;38941:1;38925:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38924:26;;;;:::i;:::-;38923:35;;;;:::i;:::-;38913:6;:45;;38891:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39077:6;39067;:17;;;;:::i;:::-;39044:20;:40;;;;38817:275:::0;:::o;12373:492::-;12513:4;12530:36;12540:6;12548:9;12559:6;12530:9;:36::i;:::-;12579:24;12606:11;:19;12618:6;12606:19;;;;;;;;;;;;;;;:33;12626:12;:10;:12::i;:::-;12606:33;;;;;;;;;;;;;;;;12579:60;;12678:6;12658:16;:26;;12650:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12765:57;12774:6;12782:12;:10;:12::i;:::-;12815:6;12796:16;:25;12765:8;:57::i;:::-;12853:4;12846:11;;;12373:492;;;;;:::o;32907:53::-;32953:6;32907:53;:::o;33279:45::-;;;;:::o;33240:32::-;;;;;;;;;;;;;:::o;10517:93::-;10575:5;10600:2;10593:9;;10517:93;:::o;13274:215::-;13362:4;13379:80;13388:12;:10;:12::i;:::-;13402:7;13448:10;13411:11;:25;13423:12;:10;:12::i;:::-;13411:25;;;;;;;;;;;;;;;:34;13437:7;13411:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13379:8;:80::i;:::-;13477:4;13470:11;;13274:215;;;;:::o;32862:38::-;;;:::o;33467:33::-;;;;;;;;;;;;;:::o;41264:126::-;41330:4;41354:19;:28;41374:7;41354:28;;;;;;;;;;;;;;;;;;;;;;;;;41347:35;;41264:126;;;:::o;33954:28::-;;;;:::o;33547:31::-;;;;;;;;;;;;;:::o;10846:127::-;10920:7;10947:9;:18;10957:7;10947:18;;;;;;;;;;;;;;;;10940:25;;10846:127;;;:::o;2790:103::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2855:30:::1;2882:1;2855:18;:30::i;:::-;2790:103::o:0;49353:555::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49555:3:::1;49532:19;:26;;49510:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;49682:4;49670:8;:16;;:33;;;;;49702:1;49690:8;:13;;49670:33;49648:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;49808:19;49790:15;:37;;;;49857:8;49838:16;:27;;;;49892:8;49876:13;;:24;;;;;;;;;;;;;;;;;;49353:555:::0;;;:::o;37925:121::-;37977:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38011:5:::1;37994:14;;:22;;;;;;;;;;;;;;;;;;38034:4;38027:11;;37925:121:::0;:::o;39364:167::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39519:4:::1;39477:31;:39;39509:6;39477:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39364:167:::0;;:::o;32999:30::-;;;;;;;;;;;;;:::o;33847:::-;;;;:::o;39735:403::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39903:13:::1;39885:15;:31;;;;39945:13;39927:15;:31;;;;39981:7;39969:9;:19;;;;40050:9;;40032:15;;40014;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;39999:12;:60;;;;40094:2;40078:12;;:18;;40070:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39735:403:::0;;;:::o;37718:155::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37789:4:::1;37773:13;;:20;;;;;;;;;;;;;;;;;;37818:4;37804:11;;:18;;;;;;;;;;;;;;;;;;37850:15;37833:14;:32;;;;37718:155::o:0;2139:87::-;2185:7;2212:6;;;;;;;;;;;2205:13;;2139:87;:::o;33036:24::-;;;;;;;;;;;;;:::o;33989:31::-;;;;:::o;39627:100::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39712:7:::1;39698:11;;:21;;;;;;;;;;;;;;;;;;39627:100:::0;:::o;9774:104::-;9830:13;9863:7;9856:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9774:104;:::o;40756:304::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40900:13:::1;40892:21;;:4;:21;;;;40870:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41011:41;41040:4;41046:5;41011:28;:41::i;:::-;40756:304:::0;;:::o;33921:24::-;;;;:::o;33423:35::-;;;;:::o;34179:27::-;;;;:::o;34065:25::-;;;;:::o;13992:413::-;14085:4;14102:24;14129:11;:25;14141:12;:10;:12::i;:::-;14129:25;;;;;;;;;;;;;;;:34;14155:7;14129:34;;;;;;;;;;;;;;;;14102:61;;14202:15;14182:16;:35;;14174:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14295:67;14304:12;:10;:12::i;:::-;14318:7;14346:15;14327:16;:34;14295:8;:67::i;:::-;14393:4;14386:11;;;13992:413;;;;:::o;33331:29::-;;;;:::o;11186:175::-;11272:4;11289:42;11299:12;:10;:12::i;:::-;11313:9;11324:6;11289:9;:42::i;:::-;11349:4;11342:11;;11186:175;;;;:::o;50712:488::-;50794:4;50819:19;:31;50839:10;50819:31;;;;;;;;;;;;;;;;;;;;;;;;;50811:40;;;;;;50864:7;50874:24;50884:13;50874:9;:24::i;:::-;50864:34;;50937:1;50919:15;:19;:49;;;;;50965:3;50960:2;:8;;;;:::i;:::-;50942:15;:26;50919:49;50911:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;51001:34;51019:15;51001:17;:34::i;:::-;51046:27;51063:9;51046:16;:27::i;:::-;51087:12;51112:15;;;;;;;;;;;51104:29;;51141:21;51104:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51086:81;;;51185:7;51178:14;;;;50712:488;;;;:::o;34576:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33507:33::-;;;;;;;;;;;;;:::o;40566:182::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40682:8:::1;40651:19;:28;40671:7;40651:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40722:7;40706:34;;;40731:8;40706:34;;;;;;:::i;:::-;;;;;;;;40566:182:::0;;:::o;40146:412::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40316:13:::1;40297:16;:32;;;;40359:13;40340:16;:32;;;;40396:7;40383:10;:20;;;;40468:10;;40449:16;;40430;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40414:13;:64;;;;40514:2;40497:13;;:19;;40489:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40146:412:::0;;;:::o;39100:256::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39240:4:::1;39232;39227:1;39211:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39210:26;;;;:::i;:::-;39209:35;;;;:::i;:::-;39199:6;:45;;39177:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39341:6;39331;:17;;;;:::i;:::-;39319:9;:29;;;;39100:256:::0;:::o;33765:39::-;;;;;;;;;;;;;:::o;33069:35::-;;;;:::o;38312:497::-;38420:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38499:6:::1;38494:1;38478:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38477:28;;;;:::i;:::-;38464:9;:41;;38442:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38654:4;38649:1;38633:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38632:26;;;;:::i;:::-;38619:9;:39;;38597:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38770:9;38749:18;:30;;;;38797:4;38790:11;;38312:497:::0;;;:::o;33813:27::-;;;;:::o;11424:151::-;11513:7;11540:11;:18;11552:5;11540:18;;;;;;;;;;;;;;;:27;11559:7;11540:27;;;;;;;;;;;;;;;;11533:34;;11424:151;;;;:::o;33111:33::-;;;;:::o;38107:135::-;38167:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38207:5:::1;38184:20;;:28;;;;;;;;;;;;;;;;;;38230:4;38223:11;;38107:135:::0;:::o;33884:30::-;;;;:::o;3048:201::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3157:1:::1;3137:22;;:8;:22;;;;3129:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3213:28;3232:8;3213:18;:28::i;:::-;3048:201:::0;:::o;34027:31::-;;;;:::o;33151:24::-;;;;:::o;51402:1056::-;51513:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51598:19:::1;;51575:20;;:42;;;;:::i;:::-;51557:15;:60;51535:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51707:4;51696:7;:15;;51688:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51792:15;51769:20;:38;;;;51862:28;51893:4;:14;;;51908:13;51893:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51862:60;;51972:20;51995:44;52033:5;51995:33;52020:7;51995:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51972:67;;52159:1;52144:12;:16;52140:110;;;52177:61;52193:13;52216:6;52225:12;52177:15;:61::i;:::-;52140:110;52325:19;52362:13;52325:51;;52387:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52414:14;;;;;;;;;;52446:4;52439:11;;;;;51402:1056:::0;;;:::o;812:98::-;865:7;892:10;885:17;;812:98;:::o;17676:380::-;17829:1;17812:19;;:5;:19;;;;17804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17910:1;17891:21;;:7;:21;;;;17883:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17994:6;17964:11;:18;17976:5;17964:18;;;;;;;;;;;;;;;:27;17983:7;17964:27;;;;;;;;;;;;;;;:36;;;;18032:7;18016:32;;18025:5;18016:32;;;18041:6;18016:32;;;;;;:::i;:::-;;;;;;;;17676:380;;;:::o;41448:5011::-;41596:1;41580:18;;:4;:18;;;;41572:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41673:1;41659:16;;:2;:16;;;;41651:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41742:1;41732:6;:11;41728:93;;;41760:28;41776:4;41782:2;41786:1;41760:15;:28::i;:::-;41803:7;;41728:93;41837:14;;;;;;;;;;;41833:2487;;;41898:7;:5;:7::i;:::-;41890:15;;:4;:15;;;;:49;;;;;41932:7;:5;:7::i;:::-;41926:13;;:2;:13;;;;41890:49;:86;;;;;41974:1;41960:16;;:2;:16;;;;41890:86;:128;;;;;42011:6;41997:21;;:2;:21;;;;41890:128;:158;;;;;42040:8;;;;;;;;;;;42039:9;41890:158;41868:2441;;;42088:13;;;;;;;;;;;42083:223;;42160:19;:25;42180:4;42160:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42189:19;:23;42209:2;42189:23;;;;;;;;;;;;;;;;;;;;;;;;;42160:52;42126:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42083:223;42462:20;;;;;;;;;;;42458:641;;;42543:7;:5;:7::i;:::-;42537:13;;:2;:13;;;;:72;;;;;42593:15;42579:30;;:2;:30;;;;42537:72;:129;;;;;42652:13;42638:28;;:2;:28;;;;42537:129;42507:573;;;42830:12;42755:28;:39;42784:9;42755:39;;;;;;;;;;;;;;;;:87;42717:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43044:12;43002:28;:39;43031:9;43002:39;;;;;;;;;;;;;;;:54;;;;42507:573;42458:641;43173:25;:31;43199:4;43173:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43230:31;:35;43262:2;43230:35;;;;;;;;;;;;;;;;;;;;;;;;;43229:36;43173:92;43147:1147;;;43352:20;;43342:6;:30;;43308:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43560:9;;43543:13;43553:2;43543:9;:13::i;:::-;43534:6;:22;;;;:::i;:::-;:35;;43500:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43147:1147;;;43738:25;:29;43764:2;43738:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43793:31;:37;43825:4;43793:37;;;;;;;;;;;;;;;;;;;;;;;;;43792:38;43738:92;43712:582;;;43917:20;;43907:6;:30;;43873:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43712:582;;;44074:31;:35;44106:2;44074:35;;;;;;;;;;;;;;;;;;;;;;;;;44069:225;;44194:9;;44177:13;44187:2;44177:9;:13::i;:::-;44168:6;:22;;;;:::i;:::-;:35;;44134:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44069:225;43712:582;43147:1147;41868:2441;41833:2487;44332:28;44363:24;44381:4;44363:9;:24::i;:::-;44332:55;;44400:12;44439:18;;44415:20;:42;;44400:57;;44488:7;:35;;;;;44512:11;;;;;;;;;;;44488:35;:61;;;;;44541:8;;;;;;;;;;;44540:9;44488:61;:110;;;;;44567:25;:31;44593:4;44567:31;;;;;;;;;;;;;;;;;;;;;;;;;44566:32;44488:110;:153;;;;;44616:19;:25;44636:4;44616:25;;;;;;;;;;;;;;;;;;;;;;;;;44615:26;44488:153;:194;;;;;44659:19;:23;44679:2;44659:23;;;;;;;;;;;;;;;;;;;;;;;;;44658:24;44488:194;44470:326;;;44720:4;44709:8;;:15;;;;;;;;;;;;;;;;;;44741:10;:8;:10::i;:::-;44779:5;44768:8;;:16;;;;;;;;;;;;;;;;;;44470:326;44827:8;;;;;;;;;;;44826:9;:55;;;;;44852:25;:29;44878:2;44852:29;;;;;;;;;;;;;;;;;;;;;;;;;44826:55;:85;;;;;44898:13;;;;;;;;;;;44826:85;:153;;;;;44964:15;;44947:14;;:32;;;;:::i;:::-;44928:15;:51;;44826:153;:196;;;;;44997:19;:25;45017:4;44997:25;;;;;;;;;;;;;;;;;;;;;;;;;44996:26;44826:196;44808:282;;;45049:29;:27;:29::i;:::-;;44808:282;45102:12;45118:8;;;;;;;;;;;45117:9;45102:24;;45228:19;:25;45248:4;45228:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45257:19;:23;45277:2;45257:23;;;;;;;;;;;;;;;;;;;;;;;;;45228:52;45224:100;;;45307:5;45297:15;;45224:100;45336:12;45441:7;45437:969;;;45493:25;:29;45519:2;45493:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45542:1;45526:13;;:17;45493:50;45489:768;;;45571:34;45601:3;45571:25;45582:13;;45571:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45564:41;;45674:13;;45654:16;;45647:4;:23;;;;:::i;:::-;45646:41;;;;:::i;:::-;45624:18;;:63;;;;;;;:::i;:::-;;;;;;;;45744:13;;45730:10;;45723:4;:17;;;;:::i;:::-;45722:35;;;;:::i;:::-;45706:12;;:51;;;;;;;:::i;:::-;;;;;;;;45826:13;;45806:16;;45799:4;:23;;;;:::i;:::-;45798:41;;;;:::i;:::-;45776:18;;:63;;;;;;;:::i;:::-;;;;;;;;45489:768;;;45901:25;:31;45927:4;45901:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45951:1;45936:12;;:16;45901:51;45897:360;;;45980:33;46009:3;45980:24;45991:12;;45980:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45973:40;;46081:12;;46062:15;;46055:4;:22;;;;:::i;:::-;46054:39;;;;:::i;:::-;46032:18;;:61;;;;;;;:::i;:::-;;;;;;;;46149:12;;46136:9;;46129:4;:16;;;;:::i;:::-;46128:33;;;;:::i;:::-;46112:12;;:49;;;;;;;:::i;:::-;;;;;;;;46229:12;;46210:15;;46203:4;:22;;;;:::i;:::-;46202:39;;;;:::i;:::-;46180:18;;:61;;;;;;;:::i;:::-;;;;;;;;45897:360;45489:768;46284:1;46277:4;:8;46273:91;;;46306:42;46322:4;46336;46343;46306:15;:42::i;:::-;46273:91;46390:4;46380:14;;;;;:::i;:::-;;;45437:969;46418:33;46434:4;46440:2;46444:6;46418:15;:33::i;:::-;41561:4898;;;;41448:5011;;;;:::o;3409:191::-;3483:16;3502:6;;;;;;;;;;;3483:25;;3528:8;3519:6;;:17;;;;;;;;;;;;;;;;;;3583:8;3552:40;;3573:8;3552:40;;;;;;;;;;;;3472:128;3409:191;:::o;41068:188::-;41185:5;41151:25;:31;41177:4;41151:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41242:5;41208:40;;41236:4;41208:40;;;;;;;;;;;;41068:188;;:::o;51209:185::-;51272:67;51282:13;51305:4;51328:10;:8;:10::i;:::-;51322:2;:16;;;;:::i;:::-;51312:7;:26;;;;:::i;:::-;51272:9;:67::i;:::-;51365:13;51350:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51209:185;:::o;46467:589::-;46593:21;46631:1;46617:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46593:40;;46662:4;46644;46649:1;46644:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46688:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46678:4;46683:1;46678:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46723:62;46740:4;46755:15;46773:11;46723:8;:62::i;:::-;46824:15;:66;;;46905:11;46931:1;46975:4;47002;47022:15;46824:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46522:534;46467:589;:::o;23129:98::-;23187:7;23218:1;23214;:5;;;;:::i;:::-;23207:12;;23129:98;;;;:::o;23528:::-;23586:7;23617:1;23613;:5;;;;:::i;:::-;23606:12;;23528:98;;;;:::o;14895:733::-;15053:1;15035:20;;:6;:20;;;;15027:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15137:1;15116:23;;:9;:23;;;;15108:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15192:47;15213:6;15221:9;15232:6;15192:20;:47::i;:::-;15252:21;15276:9;:17;15286:6;15276:17;;;;;;;;;;;;;;;;15252:41;;15329:6;15312:13;:23;;15304:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15450:6;15434:13;:22;15414:9;:17;15424:6;15414:17;;;;;;;;;;;;;;;:42;;;;15502:6;15478:9;:20;15488:9;15478:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15543:9;15526:35;;15535:6;15526:35;;;15554:6;15526:35;;;;;;:::i;:::-;;;;;;;;15574:46;15594:6;15602:9;15613:6;15574:19;:46::i;:::-;15016:612;14895:733;;;:::o;47589:1756::-;47628:23;47654:24;47672:4;47654:9;:24::i;:::-;47628:50;;47689:25;47785:12;;47751:18;;47717;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;47689:108;;47808:12;47856:1;47837:15;:20;:46;;;;47882:1;47861:17;:22;47837:46;47833:85;;;47900:7;;;;;47833:85;47973:2;47952:18;;:23;;;;:::i;:::-;47934:15;:41;47930:115;;;48031:2;48010:18;;:23;;;;:::i;:::-;47992:41;;47930:115;48106:23;48219:1;48186:17;48151:18;;48133:15;:36;;;;:::i;:::-;48132:71;;;;:::i;:::-;:88;;;;:::i;:::-;48106:114;;48231:26;48260:36;48280:15;48260;:19;;:36;;;;:::i;:::-;48231:65;;48309:25;48337:21;48309:49;;48371:36;48388:18;48371:16;:36::i;:::-;48420:18;48441:44;48467:17;48441:21;:25;;:44;;;;:::i;:::-;48420:65;;48498:23;48524:81;48577:17;48524:34;48539:18;;48524:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48498:107;;48616:17;48636:51;48669:17;48636:28;48651:12;;48636:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48616:71;;48700:23;48757:9;48739:15;48726:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;48700:66;;48800:1;48779:18;:22;;;;48833:1;48812:18;:22;;;;48860:1;48845:12;:16;;;;48896:9;;;;;;;;;;;48888:23;;48919:9;48888:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48874:59;;;;;48968:1;48950:15;:19;:42;;;;;48991:1;48973:15;:19;48950:42;48946:278;;;49009:46;49022:15;49039;49009:12;:46::i;:::-;49075:137;49108:18;49145:15;49179:18;;49075:137;;;;;;;;:::i;:::-;;;;;;;;48946:278;49258:15;;;;;;;;;;;49250:29;;49301:21;49250:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49236:101;;;;;47617:1728;;;;;;;;;;47589:1756;:::o;49916:788::-;49973:4;50007:15;49990:14;:32;;;;50077:28;50108:4;:14;;;50123:13;50108:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50077:60;;50187:20;50210:77;50271:5;50210:42;50235:16;;50210:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50187:100;;50407:1;50392:12;:16;50388:110;;;50425:61;50441:13;50464:6;50473:12;50425:15;:61::i;:::-;50388:110;50573:19;50610:13;50573:51;;50635:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50662:12;;;;;;;;;;50692:4;50685:11;;;;;49916:788;:::o;18656:125::-;;;;:::o;19385:124::-;;;;:::o;22772:98::-;22830:7;22861:1;22857;:5;;;;:::i;:::-;22850:12;;22772:98;;;;:::o;47064:517::-;47212:62;47229:4;47244:15;47262:11;47212:8;:62::i;:::-;47317:15;:31;;;47356:9;47389:4;47409:11;47435:1;47478;32953:6;47547:15;47317:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47064:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:::-;9757:6;9765;9814:2;9802:9;9793:7;9789:23;9785:32;9782:119;;;9820:79;;:::i;:::-;9782:119;9940:1;9965:53;10010:7;10001:6;9990:9;9986:22;9965:53;:::i;:::-;9955:63;;9911:117;10067:2;10093:53;10138:7;10129:6;10118:9;10114:22;10093:53;:::i;:::-;10083:63;;10038:118;9689:474;;;;;:::o;10169:180::-;10217:77;10214:1;10207:88;10314:4;10311:1;10304:15;10338:4;10335:1;10328:15;10355:320;10399:6;10436:1;10430:4;10426:12;10416:22;;10483:1;10477:4;10473:12;10504:18;10494:81;;10560:4;10552:6;10548:17;10538:27;;10494:81;10622:2;10614:6;10611:14;10591:18;10588:38;10585:84;;;10641:18;;:::i;:::-;10585:84;10406:269;10355:320;;;:::o;10681:182::-;10821:34;10817:1;10809:6;10805:14;10798:58;10681:182;:::o;10869:366::-;11011:3;11032:67;11096:2;11091:3;11032:67;:::i;:::-;11025:74;;11108:93;11197:3;11108:93;:::i;:::-;11226:2;11221:3;11217:12;11210:19;;10869:366;;;:::o;11241:419::-;11407:4;11445:2;11434:9;11430:18;11422:26;;11494:9;11488:4;11484:20;11480:1;11469:9;11465:17;11458:47;11522:131;11648:4;11522:131;:::i;:::-;11514:139;;11241:419;;;:::o;11666:180::-;11714:77;11711:1;11704:88;11811:4;11808:1;11801:15;11835:4;11832:1;11825:15;11852:348;11892:7;11915:20;11933:1;11915:20;:::i;:::-;11910:25;;11949:20;11967:1;11949:20;:::i;:::-;11944:25;;12137:1;12069:66;12065:74;12062:1;12059:81;12054:1;12047:9;12040:17;12036:105;12033:131;;;12144:18;;:::i;:::-;12033:131;12192:1;12189;12185:9;12174:20;;11852:348;;;;:::o;12206:180::-;12254:77;12251:1;12244:88;12351:4;12348:1;12341:15;12375:4;12372:1;12365:15;12392:185;12432:1;12449:20;12467:1;12449:20;:::i;:::-;12444:25;;12483:20;12501:1;12483:20;:::i;:::-;12478:25;;12522:1;12512:35;;12527:18;;:::i;:::-;12512:35;12569:1;12566;12562:9;12557:14;;12392:185;;;;:::o;12583:234::-;12723:34;12719:1;12711:6;12707:14;12700:58;12792:17;12787:2;12779:6;12775:15;12768:42;12583:234;:::o;12823:366::-;12965:3;12986:67;13050:2;13045:3;12986:67;:::i;:::-;12979:74;;13062:93;13151:3;13062:93;:::i;:::-;13180:2;13175:3;13171:12;13164:19;;12823:366;;;:::o;13195:419::-;13361:4;13399:2;13388:9;13384:18;13376:26;;13448:9;13442:4;13438:20;13434:1;13423:9;13419:17;13412:47;13476:131;13602:4;13476:131;:::i;:::-;13468:139;;13195:419;;;:::o;13620:227::-;13760:34;13756:1;13748:6;13744:14;13737:58;13829:10;13824:2;13816:6;13812:15;13805:35;13620:227;:::o;13853:366::-;13995:3;14016:67;14080:2;14075:3;14016:67;:::i;:::-;14009:74;;14092:93;14181:3;14092:93;:::i;:::-;14210:2;14205:3;14201:12;14194:19;;13853:366;;;:::o;14225:419::-;14391:4;14429:2;14418:9;14414:18;14406:26;;14478:9;14472:4;14468:20;14464:1;14453:9;14449:17;14442:47;14506:131;14632:4;14506:131;:::i;:::-;14498:139;;14225:419;;;:::o;14650:305::-;14690:3;14709:20;14727:1;14709:20;:::i;:::-;14704:25;;14743:20;14761:1;14743:20;:::i;:::-;14738:25;;14897:1;14829:66;14825:74;14822:1;14819:81;14816:107;;;14903:18;;:::i;:::-;14816:107;14947:1;14944;14940:9;14933:16;;14650:305;;;;:::o;14961:238::-;15101:34;15097:1;15089:6;15085:14;15078:58;15170:21;15165:2;15157:6;15153:15;15146:46;14961:238;:::o;15205:366::-;15347:3;15368:67;15432:2;15427:3;15368:67;:::i;:::-;15361:74;;15444:93;15533:3;15444:93;:::i;:::-;15562:2;15557:3;15553:12;15546:19;;15205:366;;;:::o;15577:419::-;15743:4;15781:2;15770:9;15766:18;15758:26;;15830:9;15824:4;15820:20;15816:1;15805:9;15801:17;15794:47;15858:131;15984:4;15858:131;:::i;:::-;15850:139;;15577:419;;;:::o;16002:235::-;16142:34;16138:1;16130:6;16126:14;16119:58;16211:18;16206:2;16198:6;16194:15;16187:43;16002:235;:::o;16243:366::-;16385:3;16406:67;16470:2;16465:3;16406:67;:::i;:::-;16399:74;;16482:93;16571:3;16482:93;:::i;:::-;16600:2;16595:3;16591:12;16584:19;;16243:366;;;:::o;16615:419::-;16781:4;16819:2;16808:9;16804:18;16796:26;;16868:9;16862:4;16858:20;16854:1;16843:9;16839:17;16832:47;16896:131;17022:4;16896:131;:::i;:::-;16888:139;;16615:419;;;:::o;17040:179::-;17180:31;17176:1;17168:6;17164:14;17157:55;17040:179;:::o;17225:366::-;17367:3;17388:67;17452:2;17447:3;17388:67;:::i;:::-;17381:74;;17464:93;17553:3;17464:93;:::i;:::-;17582:2;17577:3;17573:12;17566:19;;17225:366;;;:::o;17597:419::-;17763:4;17801:2;17790:9;17786:18;17778:26;;17850:9;17844:4;17840:20;17836:1;17825:9;17821:17;17814:47;17878:131;18004:4;17878:131;:::i;:::-;17870:139;;17597:419;;;:::o;18022:244::-;18162:34;18158:1;18150:6;18146:14;18139:58;18231:27;18226:2;18218:6;18214:15;18207:52;18022:244;:::o;18272:366::-;18414:3;18435:67;18499:2;18494:3;18435:67;:::i;:::-;18428:74;;18511:93;18600:3;18511:93;:::i;:::-;18629:2;18624:3;18620:12;18613:19;;18272:366;;;:::o;18644:419::-;18810:4;18848:2;18837:9;18833:18;18825:26;;18897:9;18891:4;18887:20;18883:1;18872:9;18868:17;18861:47;18925:131;19051:4;18925:131;:::i;:::-;18917:139;;18644:419;;;:::o;19069:224::-;19209:34;19205:1;19197:6;19193:14;19186:58;19278:7;19273:2;19265:6;19261:15;19254:32;19069:224;:::o;19299:366::-;19441:3;19462:67;19526:2;19521:3;19462:67;:::i;:::-;19455:74;;19538:93;19627:3;19538:93;:::i;:::-;19656:2;19651:3;19647:12;19640:19;;19299:366;;;:::o;19671:419::-;19837:4;19875:2;19864:9;19860:18;19852:26;;19924:9;19918:4;19914:20;19910:1;19899:9;19895:17;19888:47;19952:131;20078:4;19952:131;:::i;:::-;19944:139;;19671:419;;;:::o;20096:165::-;20236:17;20232:1;20224:6;20220:14;20213:41;20096:165;:::o;20267:366::-;20409:3;20430:67;20494:2;20489:3;20430:67;:::i;:::-;20423:74;;20506:93;20595:3;20506:93;:::i;:::-;20624:2;20619:3;20615:12;20608:19;;20267:366;;;:::o;20639:419::-;20805:4;20843:2;20832:9;20828:18;20820:26;;20892:9;20886:4;20882:20;20878:1;20867:9;20863:17;20856:47;20920:131;21046:4;20920:131;:::i;:::-;20912:139;;20639:419;;;:::o;21064:147::-;21165:11;21202:3;21187:18;;21064:147;;;;:::o;21217:114::-;;:::o;21337:398::-;21496:3;21517:83;21598:1;21593:3;21517:83;:::i;:::-;21510:90;;21609:93;21698:3;21609:93;:::i;:::-;21727:1;21722:3;21718:11;21711:18;;21337:398;;;:::o;21741:379::-;21925:3;21947:147;22090:3;21947:147;:::i;:::-;21940:154;;22111:3;22104:10;;21741:379;;;:::o;22126:223::-;22266:34;22262:1;22254:6;22250:14;22243:58;22335:6;22330:2;22322:6;22318:15;22311:31;22126:223;:::o;22355:366::-;22497:3;22518:67;22582:2;22577:3;22518:67;:::i;:::-;22511:74;;22594:93;22683:3;22594:93;:::i;:::-;22712:2;22707:3;22703:12;22696:19;;22355:366;;;:::o;22727:419::-;22893:4;22931:2;22920:9;22916:18;22908:26;;22980:9;22974:4;22970:20;22966:1;22955:9;22951:17;22944:47;23008:131;23134:4;23008:131;:::i;:::-;23000:139;;22727:419;;;:::o;23152:240::-;23292:34;23288:1;23280:6;23276:14;23269:58;23361:23;23356:2;23348:6;23344:15;23337:48;23152:240;:::o;23398:366::-;23540:3;23561:67;23625:2;23620:3;23561:67;:::i;:::-;23554:74;;23637:93;23726:3;23637:93;:::i;:::-;23755:2;23750:3;23746:12;23739:19;;23398:366;;;:::o;23770:419::-;23936:4;23974:2;23963:9;23959:18;23951:26;;24023:9;24017:4;24013:20;24009:1;23998:9;23994:17;23987:47;24051:131;24177:4;24051:131;:::i;:::-;24043:139;;23770:419;;;:::o;24195:239::-;24335:34;24331:1;24323:6;24319:14;24312:58;24404:22;24399:2;24391:6;24387:15;24380:47;24195:239;:::o;24440:366::-;24582:3;24603:67;24667:2;24662:3;24603:67;:::i;:::-;24596:74;;24679:93;24768:3;24679:93;:::i;:::-;24797:2;24792:3;24788:12;24781:19;;24440:366;;;:::o;24812:419::-;24978:4;25016:2;25005:9;25001:18;24993:26;;25065:9;25059:4;25055:20;25051:1;25040:9;25036:17;25029:47;25093:131;25219:4;25093:131;:::i;:::-;25085:139;;24812:419;;;:::o;25237:225::-;25377:34;25373:1;25365:6;25361:14;25354:58;25446:8;25441:2;25433:6;25429:15;25422:33;25237:225;:::o;25468:366::-;25610:3;25631:67;25695:2;25690:3;25631:67;:::i;:::-;25624:74;;25707:93;25796:3;25707:93;:::i;:::-;25825:2;25820:3;25816:12;25809:19;;25468:366;;;:::o;25840:419::-;26006:4;26044:2;26033:9;26029:18;26021:26;;26093:9;26087:4;26083:20;26079:1;26068:9;26064:17;26057:47;26121:131;26247:4;26121:131;:::i;:::-;26113:139;;25840:419;;;:::o;26265:182::-;26405:34;26401:1;26393:6;26389:14;26382:58;26265:182;:::o;26453:366::-;26595:3;26616:67;26680:2;26675:3;26616:67;:::i;:::-;26609:74;;26692:93;26781:3;26692:93;:::i;:::-;26810:2;26805:3;26801:12;26794:19;;26453:366;;;:::o;26825:419::-;26991:4;27029:2;27018:9;27014:18;27006:26;;27078:9;27072:4;27068:20;27064:1;27053:9;27049:17;27042:47;27106:131;27232:4;27106:131;:::i;:::-;27098:139;;26825:419;;;:::o;27250:229::-;27390:34;27386:1;27378:6;27374:14;27367:58;27459:12;27454:2;27446:6;27442:15;27435:37;27250:229;:::o;27485:366::-;27627:3;27648:67;27712:2;27707:3;27648:67;:::i;:::-;27641:74;;27724:93;27813:3;27724:93;:::i;:::-;27842:2;27837:3;27833:12;27826:19;;27485:366;;;:::o;27857:419::-;28023:4;28061:2;28050:9;28046:18;28038:26;;28110:9;28104:4;28100:20;28096:1;28085:9;28081:17;28074:47;28138:131;28264:4;28138:131;:::i;:::-;28130:139;;27857:419;;;:::o;28282:143::-;28339:5;28370:6;28364:13;28355:22;;28386:33;28413:5;28386:33;:::i;:::-;28282:143;;;;:::o;28431:351::-;28501:6;28550:2;28538:9;28529:7;28525:23;28521:32;28518:119;;;28556:79;;:::i;:::-;28518:119;28676:1;28701:64;28757:7;28748:6;28737:9;28733:22;28701:64;:::i;:::-;28691:74;;28647:128;28431:351;;;;:::o;28788:223::-;28928:34;28924:1;28916:6;28912:14;28905:58;28997:6;28992:2;28984:6;28980:15;28973:31;28788:223;:::o;29017:366::-;29159:3;29180:67;29244:2;29239:3;29180:67;:::i;:::-;29173:74;;29256:93;29345:3;29256:93;:::i;:::-;29374:2;29369:3;29365:12;29358:19;;29017:366;;;:::o;29389:419::-;29555:4;29593:2;29582:9;29578:18;29570:26;;29642:9;29636:4;29632:20;29628:1;29617:9;29613:17;29606:47;29670:131;29796:4;29670:131;:::i;:::-;29662:139;;29389:419;;;:::o;29814:221::-;29954:34;29950:1;29942:6;29938:14;29931:58;30023:4;30018:2;30010:6;30006:15;29999:29;29814:221;:::o;30041:366::-;30183:3;30204:67;30268:2;30263:3;30204:67;:::i;:::-;30197:74;;30280:93;30369:3;30280:93;:::i;:::-;30398:2;30393:3;30389:12;30382:19;;30041:366;;;:::o;30413:419::-;30579:4;30617:2;30606:9;30602:18;30594:26;;30666:9;30660:4;30656:20;30652:1;30641:9;30637:17;30630:47;30694:131;30820:4;30694:131;:::i;:::-;30686:139;;30413:419;;;:::o;30838:224::-;30978:34;30974:1;30966:6;30962:14;30955:58;31047:7;31042:2;31034:6;31030:15;31023:32;30838:224;:::o;31068:366::-;31210:3;31231:67;31295:2;31290:3;31231:67;:::i;:::-;31224:74;;31307:93;31396:3;31307:93;:::i;:::-;31425:2;31420:3;31416:12;31409:19;;31068:366;;;:::o;31440:419::-;31606:4;31644:2;31633:9;31629:18;31621:26;;31693:9;31687:4;31683:20;31679:1;31668:9;31664:17;31657:47;31721:131;31847:4;31721:131;:::i;:::-;31713:139;;31440:419;;;:::o;31865:222::-;32005:34;32001:1;31993:6;31989:14;31982:58;32074:5;32069:2;32061:6;32057:15;32050:30;31865:222;:::o;32093:366::-;32235:3;32256:67;32320:2;32315:3;32256:67;:::i;:::-;32249:74;;32332:93;32421:3;32332:93;:::i;:::-;32450:2;32445:3;32441:12;32434:19;;32093:366;;;:::o;32465:419::-;32631:4;32669:2;32658:9;32654:18;32646:26;;32718:9;32712:4;32708:20;32704:1;32693:9;32689:17;32682:47;32746:131;32872:4;32746:131;:::i;:::-;32738:139;;32465:419;;;:::o;32890:172::-;33030:24;33026:1;33018:6;33014:14;33007:48;32890:172;:::o;33068:366::-;33210:3;33231:67;33295:2;33290:3;33231:67;:::i;:::-;33224:74;;33307:93;33396:3;33307:93;:::i;:::-;33425:2;33420:3;33416:12;33409:19;;33068:366;;;:::o;33440:419::-;33606:4;33644:2;33633:9;33629:18;33621:26;;33693:9;33687:4;33683:20;33679:1;33668:9;33664:17;33657:47;33721:131;33847:4;33721:131;:::i;:::-;33713:139;;33440:419;;;:::o;33865:297::-;34005:34;34001:1;33993:6;33989:14;33982:58;34074:34;34069:2;34061:6;34057:15;34050:59;34143:11;34138:2;34130:6;34126:15;34119:36;33865:297;:::o;34168:366::-;34310:3;34331:67;34395:2;34390:3;34331:67;:::i;:::-;34324:74;;34407:93;34496:3;34407:93;:::i;:::-;34525:2;34520:3;34516:12;34509:19;;34168:366;;;:::o;34540:419::-;34706:4;34744:2;34733:9;34729:18;34721:26;;34793:9;34787:4;34783:20;34779:1;34768:9;34764:17;34757:47;34821:131;34947:4;34821:131;:::i;:::-;34813:139;;34540:419;;;:::o;34965:240::-;35105:34;35101:1;35093:6;35089:14;35082:58;35174:23;35169:2;35161:6;35157:15;35150:48;34965:240;:::o;35211:366::-;35353:3;35374:67;35438:2;35433:3;35374:67;:::i;:::-;35367:74;;35450:93;35539:3;35450:93;:::i;:::-;35568:2;35563:3;35559:12;35552:19;;35211:366;;;:::o;35583:419::-;35749:4;35787:2;35776:9;35772:18;35764:26;;35836:9;35830:4;35826:20;35822:1;35811:9;35807:17;35800:47;35864:131;35990:4;35864:131;:::i;:::-;35856:139;;35583:419;;;:::o;36008:169::-;36148:21;36144:1;36136:6;36132:14;36125:45;36008:169;:::o;36183:366::-;36325:3;36346:67;36410:2;36405:3;36346:67;:::i;:::-;36339:74;;36422:93;36511:3;36422:93;:::i;:::-;36540:2;36535:3;36531:12;36524:19;;36183:366;;;:::o;36555:419::-;36721:4;36759:2;36748:9;36744:18;36736:26;;36808:9;36802:4;36798:20;36794:1;36783:9;36779:17;36772:47;36836:131;36962:4;36836:131;:::i;:::-;36828:139;;36555:419;;;:::o;36980:241::-;37120:34;37116:1;37108:6;37104:14;37097:58;37189:24;37184:2;37176:6;37172:15;37165:49;36980:241;:::o;37227:366::-;37369:3;37390:67;37454:2;37449:3;37390:67;:::i;:::-;37383:74;;37466:93;37555:3;37466:93;:::i;:::-;37584:2;37579:3;37575:12;37568:19;;37227:366;;;:::o;37599:419::-;37765:4;37803:2;37792:9;37788:18;37780:26;;37852:9;37846:4;37842:20;37838:1;37827:9;37823:17;37816:47;37880:131;38006:4;37880:131;:::i;:::-;37872:139;;37599:419;;;:::o;38024:191::-;38064:4;38084:20;38102:1;38084:20;:::i;:::-;38079:25;;38118:20;38136:1;38118:20;:::i;:::-;38113:25;;38157:1;38154;38151:8;38148:34;;;38162:18;;:::i;:::-;38148:34;38207:1;38204;38200:9;38192:17;;38024:191;;;;:::o;38221:102::-;38263:8;38310:5;38307:1;38303:13;38282:34;;38221:102;;;:::o;38329:848::-;38390:5;38397:4;38421:6;38412:15;;38445:5;38436:14;;38459:712;38480:1;38470:8;38467:15;38459:712;;;38575:4;38570:3;38566:14;38560:4;38557:24;38554:50;;;38584:18;;:::i;:::-;38554:50;38634:1;38624:8;38620:16;38617:451;;;39049:4;39042:5;39038:16;39029:25;;38617:451;39099:4;39093;39089:15;39081:23;;39129:32;39152:8;39129:32;:::i;:::-;39117:44;;38459:712;;;38329:848;;;;;;;:::o;39183:1073::-;39237:5;39428:8;39418:40;;39449:1;39440:10;;39451:5;;39418:40;39477:4;39467:36;;39494:1;39485:10;;39496:5;;39467:36;39563:4;39611:1;39606:27;;;;39647:1;39642:191;;;;39556:277;;39606:27;39624:1;39615:10;;39626:5;;;39642:191;39687:3;39677:8;39674:17;39671:43;;;39694:18;;:::i;:::-;39671:43;39743:8;39740:1;39736:16;39727:25;;39778:3;39771:5;39768:14;39765:40;;;39785:18;;:::i;:::-;39765:40;39818:5;;;39556:277;;39942:2;39932:8;39929:16;39923:3;39917:4;39914:13;39910:36;39892:2;39882:8;39879:16;39874:2;39868:4;39865:12;39861:35;39845:111;39842:246;;;39998:8;39992:4;39988:19;39979:28;;40033:3;40026:5;40023:14;40020:40;;;40040:18;;:::i;:::-;40020:40;40073:5;;39842:246;40113:42;40151:3;40141:8;40135:4;40132:1;40113:42;:::i;:::-;40098:57;;;;40187:4;40182:3;40178:14;40171:5;40168:25;40165:51;;;40196:18;;:::i;:::-;40165:51;40245:4;40238:5;40234:16;40225:25;;39183:1073;;;;;;:::o;40262:281::-;40320:5;40344:23;40362:4;40344:23;:::i;:::-;40336:31;;40388:25;40404:8;40388:25;:::i;:::-;40376:37;;40432:104;40469:66;40459:8;40453:4;40432:104;:::i;:::-;40423:113;;40262:281;;;;:::o;40549:180::-;40597:77;40594:1;40587:88;40694:4;40691:1;40684:15;40718:4;40715:1;40708:15;40735:180;40783:77;40780:1;40773:88;40880:4;40877:1;40870:15;40904:4;40901:1;40894:15;40921:143;40978:5;41009:6;41003:13;40994:22;;41025:33;41052:5;41025:33;:::i;:::-;40921:143;;;;:::o;41070:351::-;41140:6;41189:2;41177:9;41168:7;41164:23;41160:32;41157:119;;;41195:79;;:::i;:::-;41157:119;41315:1;41340:64;41396:7;41387:6;41376:9;41372:22;41340:64;:::i;:::-;41330:74;;41286:128;41070:351;;;;:::o;41427:85::-;41472:7;41501:5;41490:16;;41427:85;;;:::o;41518:158::-;41576:9;41609:61;41627:42;41636:32;41662:5;41636:32;:::i;:::-;41627:42;:::i;:::-;41609:61;:::i;:::-;41596:74;;41518:158;;;:::o;41682:147::-;41777:45;41816:5;41777:45;:::i;:::-;41772:3;41765:58;41682:147;;:::o;41835:114::-;41902:6;41936:5;41930:12;41920:22;;41835:114;;;:::o;41955:184::-;42054:11;42088:6;42083:3;42076:19;42128:4;42123:3;42119:14;42104:29;;41955:184;;;;:::o;42145:132::-;42212:4;42235:3;42227:11;;42265:4;42260:3;42256:14;42248:22;;42145:132;;;:::o;42283:108::-;42360:24;42378:5;42360:24;:::i;:::-;42355:3;42348:37;42283:108;;:::o;42397:179::-;42466:10;42487:46;42529:3;42521:6;42487:46;:::i;:::-;42565:4;42560:3;42556:14;42542:28;;42397:179;;;;:::o;42582:113::-;42652:4;42684;42679:3;42675:14;42667:22;;42582:113;;;:::o;42731:732::-;42850:3;42879:54;42927:5;42879:54;:::i;:::-;42949:86;43028:6;43023:3;42949:86;:::i;:::-;42942:93;;43059:56;43109:5;43059:56;:::i;:::-;43138:7;43169:1;43154:284;43179:6;43176:1;43173:13;43154:284;;;43255:6;43249:13;43282:63;43341:3;43326:13;43282:63;:::i;:::-;43275:70;;43368:60;43421:6;43368:60;:::i;:::-;43358:70;;43214:224;43201:1;43198;43194:9;43189:14;;43154:284;;;43158:14;43454:3;43447:10;;42855:608;;;42731:732;;;;:::o;43469:831::-;43732:4;43770:3;43759:9;43755:19;43747:27;;43784:71;43852:1;43841:9;43837:17;43828:6;43784:71;:::i;:::-;43865:80;43941:2;43930:9;43926:18;43917:6;43865:80;:::i;:::-;43992:9;43986:4;43982:20;43977:2;43966:9;43962:18;43955:48;44020:108;44123:4;44114:6;44020:108;:::i;:::-;44012:116;;44138:72;44206:2;44195:9;44191:18;44182:6;44138:72;:::i;:::-;44220:73;44288:3;44277:9;44273:19;44264:6;44220:73;:::i;:::-;43469:831;;;;;;;;:::o;44306:225::-;44446:34;44442:1;44434:6;44430:14;44423:58;44515:8;44510:2;44502:6;44498:15;44491:33;44306:225;:::o;44537:366::-;44679:3;44700:67;44764:2;44759:3;44700:67;:::i;:::-;44693:74;;44776:93;44865:3;44776:93;:::i;:::-;44894:2;44889:3;44885:12;44878:19;;44537:366;;;:::o;44909:419::-;45075:4;45113:2;45102:9;45098:18;45090:26;;45162:9;45156:4;45152:20;45148:1;45137:9;45133:17;45126:47;45190:131;45316:4;45190:131;:::i;:::-;45182:139;;44909:419;;;:::o;45334:442::-;45483:4;45521:2;45510:9;45506:18;45498:26;;45534:71;45602:1;45591:9;45587:17;45578:6;45534:71;:::i;:::-;45615:72;45683:2;45672:9;45668:18;45659:6;45615:72;:::i;:::-;45697;45765:2;45754:9;45750:18;45741:6;45697:72;:::i;:::-;45334:442;;;;;;:::o;45782:807::-;46031:4;46069:3;46058:9;46054:19;46046:27;;46083:71;46151:1;46140:9;46136:17;46127:6;46083:71;:::i;:::-;46164:72;46232:2;46221:9;46217:18;46208:6;46164:72;:::i;:::-;46246:80;46322:2;46311:9;46307:18;46298:6;46246:80;:::i;:::-;46336;46412:2;46401:9;46397:18;46388:6;46336:80;:::i;:::-;46426:73;46494:3;46483:9;46479:19;46470:6;46426:73;:::i;:::-;46509;46577:3;46566:9;46562:19;46553:6;46509:73;:::i;:::-;45782:807;;;;;;;;;:::o;46595:663::-;46683:6;46691;46699;46748:2;46736:9;46727:7;46723:23;46719:32;46716:119;;;46754:79;;:::i;:::-;46716:119;46874:1;46899:64;46955:7;46946:6;46935:9;46931:22;46899:64;:::i;:::-;46889:74;;46845:128;47012:2;47038:64;47094:7;47085:6;47074:9;47070:22;47038:64;:::i;:::-;47028:74;;46983:129;47151:2;47177:64;47233:7;47224:6;47213:9;47209:22;47177:64;:::i;:::-;47167:74;;47122:129;46595:663;;;;;:::o

Swarm Source

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