ETH Price: $3,266.54 (+4.90%)
 

Overview

Max Total Supply

1,000,000,000 OASIS

Holders

46

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
32,928.671369938608629999 OASIS

Value
$0.00
0xef44b6c8e14234ef443e0c249068cda09aefdc42
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
OasisMusic

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-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;
}

////// src/MarshallRoganInu.sol
/* 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 OasisMusic 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("Oasis Music", "OASIS") {
        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 = 5;
        uint256 _buyLiquidityFee = 3;
        uint256 _buyDevFee = 2;

        uint256 _sellMarketingFee = 10;
        uint256 _sellLiquidityFee = 3;
        uint256 _sellDevFee = 2;

        uint256 totalSupply = 1_000_000_000 * 1e18;

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

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

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

        marketingWallet = address(0xF2aD5722D9A3CD60E744CBA5B620D6F448814B25);
        devWallet = address(0x2242A64dDeB5A5bb1A83050Ffd848caA2240812c); 

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

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

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

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

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

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

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

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

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

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

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

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

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

		swapBack();
	}

    event BoughtEarly(address indexed sniper);

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

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

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600b81526020017f4f61736973204d757369630000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4f4153495300000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b1e565b5080600490805190602001906200014792919062000b1e565b5050506200016a6200015e620005de60201b60201c565b620005e660201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000196816001620006ac60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c38565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c38565b6040518363ffffffff1660e01b8152600401620002e992919062000c7b565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c38565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a0516001620006ac60201b60201c565b6200038c60a05160016200079660201b60201c565b6000600590506000600390506000600290506000600a905060006003905060006002905060006b033b2e3c9fd0803ce8000000905069d3c21bcecceda10000006008819055506a084595161401484a000000600a81905550612710600582620003f6919062000ce1565b62000402919062000d71565b60098190555086601581905550856016819055508460178190555060175460165460155462000432919062000da9565b6200043e919062000da9565b6014819055508360198190555082601a8190555081601b81905550601b54601a546019546200046e919062000da9565b6200047a919062000da9565b60188190555073f2ad5722d9a3cd60e744cba5b620d6f448814b25600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550732242a64ddeb5a5bb1a83050ffd848caa2240812c600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200054c6200053e6200083760201b60201c565b60016200086160201b60201c565b6200055f3060016200086160201b60201c565b6200057461dead60016200086160201b60201c565b62000596620005886200083760201b60201c565b6001620006ac60201b60201c565b620005a9306001620006ac60201b60201c565b620005be61dead6001620006ac60201b60201c565b620005d033826200099b60201b60201c565b505050505050505062000fc8565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006bc620005de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006e26200083760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200073b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007329062000e67565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000871620005de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008976200083760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008e79062000e67565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200098f919062000ea6565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a059062000f13565b60405180910390fd5b62000a226000838362000b1460201b60201c565b806002600082825462000a36919062000da9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a8d919062000da9565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000af4919062000f46565b60405180910390a362000b106000838362000b1960201b60201c565b5050565b505050565b505050565b82805462000b2c9062000f92565b90600052602060002090601f01602090048101928262000b50576000855562000b9c565b82601f1062000b6b57805160ff191683800117855562000b9c565b8280016001018555821562000b9c579182015b8281111562000b9b57825182559160200191906001019062000b7e565b5b50905062000bab919062000baf565b5090565b5b8082111562000bca57600081600090555060010162000bb0565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c008262000bd3565b9050919050565b62000c128162000bf3565b811462000c1e57600080fd5b50565b60008151905062000c328162000c07565b92915050565b60006020828403121562000c515762000c5062000bce565b5b600062000c618482850162000c21565b91505092915050565b62000c758162000bf3565b82525050565b600060408201905062000c92600083018562000c6a565b62000ca1602083018462000c6a565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cee8262000ca8565b915062000cfb8362000ca8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d375762000d3662000cb2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d7e8262000ca8565b915062000d8b8362000ca8565b92508262000d9e5762000d9d62000d42565b5b828204905092915050565b600062000db68262000ca8565b915062000dc38362000ca8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000dfb5762000dfa62000cb2565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e4f60208362000e06565b915062000e5c8262000e17565b602082019050919050565b6000602082019050818103600083015262000e828162000e40565b9050919050565b60008115159050919050565b62000ea08162000e89565b82525050565b600060208201905062000ebd600083018462000e95565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000efb601f8362000e06565b915062000f088262000ec3565b602082019050919050565b6000602082019050818103600083015262000f2e8162000eec565b9050919050565b62000f408162000ca8565b82525050565b600060208201905062000f5d600083018462000f35565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000fab57607f821691505b6020821081141562000fc25762000fc162000f63565b5b50919050565b60805160a051615cdf620010506000396000818161140f01528181611c1e015281816127ee015281816128a5015281816128d201528181612f160152818161401a015281816140d30152614100015260008181610fb201528181612ebe0152818161426c0152818161434d015281816143740152818161441001526144370152615cdf6000f3fe6080604052600436106103bc5760003560e01c80638da5cb5b116101f2578063c02466681161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e25578063f637434214610e4e578063f8b45b0514610e79578063fe72b27a14610ea4576103c3565b8063dd62ed3e14610d67578063e2f4560514610da4578063e884f26014610dcf578063f11a24d314610dfa576103c3565b8063c876d0b9116100dc578063c876d0b914610ca9578063c8c8ebe414610cd4578063d257b34f14610cff578063d85ba06314610d3c576103c3565b8063c024666814610c17578063c17b5b8c14610c40578063c18bc19514610c69578063c3c8cd8014610c92576103c3565b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610b49578063aacebbe314610b86578063b62496f514610baf578063bbc0c74214610bec576103c3565b80639fccce3214610a8b578063a0d82dc514610ab6578063a457c2d714610ae1578063a4c82a0014610b1e576103c3565b806395d89b41116101c157806395d89b41146109e15780639a7a23d614610a0c5780639c3b4fdc14610a355780639ec22c0e14610a60576103c3565b80638da5cb5b146109375780638ea5220f14610962578063921369131461098d578063924de9b7146109b8576103c3565b8063313ce567116102e2578063715018a61161027557806375f0a8741161024457806375f0a874146108a15780637bce5a04146108cc5780638095d564146108f75780638a8c523c14610920576103c3565b8063715018a61461080d578063730c188814610824578063751039fc1461084d5780637571336a14610878576103c3565b80634fbee193116102b15780634fbee1931461073d5780636a486a8e1461077a5780636ddd1713146107a557806370a08231146107d0576103c3565b8063313ce5671461067f57806339509351146106aa57806349bd5a5e146106e75780634a62bb6514610712576103c3565b8063199ffc721161035a57806323b872dd1161032957806323b872dd146105c157806327c8f835146105fe5780632c3e486c146106295780632e82f1a014610654576103c3565b8063199ffc72146105175780631a8145bb146105425780631f3fed8f1461056d578063203e727e14610598576103c3565b80631694505e116103965780631694505e1461046d57806318160ddd146104985780631816467f146104c3578063184c16c5146104ec576103c3565b806306fdde03146103c8578063095ea7b3146103f357806310d5de5314610430576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610ee1565b6040516103ea9190614589565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190614644565b610f73565b604051610427919061469f565b60405180910390f35b34801561043c57600080fd5b50610457600480360381019061045291906146ba565b610f91565b604051610464919061469f565b60405180910390f35b34801561047957600080fd5b50610482610fb0565b60405161048f9190614746565b60405180910390f35b3480156104a457600080fd5b506104ad610fd4565b6040516104ba9190614770565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e591906146ba565b610fde565b005b3480156104f857600080fd5b5061050161111a565b60405161050e9190614770565b60405180910390f35b34801561052357600080fd5b5061052c611120565b6040516105399190614770565b60405180910390f35b34801561054e57600080fd5b50610557611126565b6040516105649190614770565b60405180910390f35b34801561057957600080fd5b5061058261112c565b60405161058f9190614770565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba919061478b565b611132565b005b3480156105cd57600080fd5b506105e860048036038101906105e391906147b8565b611241565b6040516105f5919061469f565b60405180910390f35b34801561060a57600080fd5b50610613611339565b604051610620919061481a565b60405180910390f35b34801561063557600080fd5b5061063e61133f565b60405161064b9190614770565b60405180910390f35b34801561066057600080fd5b50610669611345565b604051610676919061469f565b60405180910390f35b34801561068b57600080fd5b50610694611358565b6040516106a19190614851565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc9190614644565b611361565b6040516106de919061469f565b60405180910390f35b3480156106f357600080fd5b506106fc61140d565b604051610709919061481a565b60405180910390f35b34801561071e57600080fd5b50610727611431565b604051610734919061469f565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f91906146ba565b611444565b604051610771919061469f565b60405180910390f35b34801561078657600080fd5b5061078f61149a565b60405161079c9190614770565b60405180910390f35b3480156107b157600080fd5b506107ba6114a0565b6040516107c7919061469f565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f291906146ba565b6114b3565b6040516108049190614770565b60405180910390f35b34801561081957600080fd5b506108226114fb565b005b34801561083057600080fd5b5061084b60048036038101906108469190614898565b611583565b005b34801561085957600080fd5b506108626116c3565b60405161086f919061469f565b60405180910390f35b34801561088457600080fd5b5061089f600480360381019061089a91906148eb565b611763565b005b3480156108ad57600080fd5b506108b661183a565b6040516108c3919061481a565b60405180910390f35b3480156108d857600080fd5b506108e1611860565b6040516108ee9190614770565b60405180910390f35b34801561090357600080fd5b5061091e6004803603810190610919919061492b565b611866565b005b34801561092c57600080fd5b50610935611964565b005b34801561094357600080fd5b5061094c611a1f565b604051610959919061481a565b60405180910390f35b34801561096e57600080fd5b50610977611a49565b604051610984919061481a565b60405180910390f35b34801561099957600080fd5b506109a2611a6f565b6040516109af9190614770565b60405180910390f35b3480156109c457600080fd5b506109df60048036038101906109da919061497e565b611a75565b005b3480156109ed57600080fd5b506109f6611b0e565b604051610a039190614589565b60405180910390f35b348015610a1857600080fd5b50610a336004803603810190610a2e91906148eb565b611ba0565b005b348015610a4157600080fd5b50610a4a611cb9565b604051610a579190614770565b60405180910390f35b348015610a6c57600080fd5b50610a75611cbf565b604051610a829190614770565b60405180910390f35b348015610a9757600080fd5b50610aa0611cc5565b604051610aad9190614770565b60405180910390f35b348015610ac257600080fd5b50610acb611ccb565b604051610ad89190614770565b60405180910390f35b348015610aed57600080fd5b50610b086004803603810190610b039190614644565b611cd1565b604051610b15919061469f565b60405180910390f35b348015610b2a57600080fd5b50610b33611dbc565b604051610b409190614770565b60405180910390f35b348015610b5557600080fd5b50610b706004803603810190610b6b9190614644565b611dc2565b604051610b7d919061469f565b60405180910390f35b348015610b9257600080fd5b50610bad6004803603810190610ba891906146ba565b611de0565b005b348015610bbb57600080fd5b50610bd66004803603810190610bd191906146ba565b611f1c565b604051610be3919061469f565b60405180910390f35b348015610bf857600080fd5b50610c01611f3c565b604051610c0e919061469f565b60405180910390f35b348015610c2357600080fd5b50610c3e6004803603810190610c3991906148eb565b611f4f565b005b348015610c4c57600080fd5b50610c676004803603810190610c62919061492b565b612074565b005b348015610c7557600080fd5b50610c906004803603810190610c8b919061478b565b612173565b005b348015610c9e57600080fd5b50610ca7612282565b005b348015610cb557600080fd5b50610cbe612308565b604051610ccb919061469f565b60405180910390f35b348015610ce057600080fd5b50610ce961231b565b604051610cf69190614770565b60405180910390f35b348015610d0b57600080fd5b50610d266004803603810190610d21919061478b565b612321565b604051610d33919061469f565b60405180910390f35b348015610d4857600080fd5b50610d51612476565b604051610d5e9190614770565b60405180910390f35b348015610d7357600080fd5b50610d8e6004803603810190610d8991906149ab565b61247c565b604051610d9b9190614770565b60405180910390f35b348015610db057600080fd5b50610db9612503565b604051610dc69190614770565b60405180910390f35b348015610ddb57600080fd5b50610de4612509565b604051610df1919061469f565b60405180910390f35b348015610e0657600080fd5b50610e0f6125a9565b604051610e1c9190614770565b60405180910390f35b348015610e3157600080fd5b50610e4c6004803603810190610e4791906146ba565b6125af565b005b348015610e5a57600080fd5b50610e636126a7565b604051610e709190614770565b60405180910390f35b348015610e8557600080fd5b50610e8e6126ad565b604051610e9b9190614770565b60405180910390f35b348015610eb057600080fd5b50610ecb6004803603810190610ec6919061478b565b6126b3565b604051610ed8919061469f565b60405180910390f35b606060038054610ef090614a1a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1c90614a1a565b8015610f695780601f10610f3e57610100808354040283529160200191610f69565b820191906000526020600020905b815481529060010190602001808311610f4c57829003601f168201915b5050505050905090565b6000610f87610f8061298b565b8484612993565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fe661298b565b73ffffffffffffffffffffffffffffffffffffffff16611004611a1f565b73ffffffffffffffffffffffffffffffffffffffff161461105a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105190614a98565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61113a61298b565b73ffffffffffffffffffffffffffffffffffffffff16611158611a1f565b73ffffffffffffffffffffffffffffffffffffffff16146111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590614a98565b60405180910390fd5b670de0b6b3a76400006103e860016111c4610fd4565b6111ce9190614ae7565b6111d89190614b70565b6111e29190614b70565b811015611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b90614c13565b60405180910390fd5b670de0b6b3a7640000816112389190614ae7565b60088190555050565b600061124e848484612b5e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061129961298b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090614ca5565b60405180910390fd5b61132d8561132561298b565b858403612993565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061140361136e61298b565b84846001600061137c61298b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113fe9190614cc5565b612993565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61150361298b565b73ffffffffffffffffffffffffffffffffffffffff16611521611a1f565b73ffffffffffffffffffffffffffffffffffffffff1614611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90614a98565b60405180910390fd5b61158160006138f6565b565b61158b61298b565b73ffffffffffffffffffffffffffffffffffffffff166115a9611a1f565b73ffffffffffffffffffffffffffffffffffffffff16146115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690614a98565b60405180910390fd5b610258831015611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b90614d8d565b60405180910390fd5b6103e88211158015611657575060008210155b611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90614e1f565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116cd61298b565b73ffffffffffffffffffffffffffffffffffffffff166116eb611a1f565b73ffffffffffffffffffffffffffffffffffffffff1614611741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173890614a98565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61176b61298b565b73ffffffffffffffffffffffffffffffffffffffff16611789611a1f565b73ffffffffffffffffffffffffffffffffffffffff16146117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690614a98565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61186e61298b565b73ffffffffffffffffffffffffffffffffffffffff1661188c611a1f565b73ffffffffffffffffffffffffffffffffffffffff16146118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990614a98565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461190a9190614cc5565b6119149190614cc5565b60148190555060148054111561195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195690614e8b565b60405180910390fd5b505050565b61196c61298b565b73ffffffffffffffffffffffffffffffffffffffff1661198a611a1f565b73ffffffffffffffffffffffffffffffffffffffff16146119e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d790614a98565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a7d61298b565b73ffffffffffffffffffffffffffffffffffffffff16611a9b611a1f565b73ffffffffffffffffffffffffffffffffffffffff1614611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae890614a98565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611b1d90614a1a565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4990614a1a565b8015611b965780601f10611b6b57610100808354040283529160200191611b96565b820191906000526020600020905b815481529060010190602001808311611b7957829003601f168201915b5050505050905090565b611ba861298b565b73ffffffffffffffffffffffffffffffffffffffff16611bc6611a1f565b73ffffffffffffffffffffffffffffffffffffffff1614611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390614a98565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca290614f1d565b60405180910390fd5b611cb582826139bc565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611ce061298b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9490614faf565b60405180910390fd5b611db1611da861298b565b85858403612993565b600191505092915050565b600e5481565b6000611dd6611dcf61298b565b8484612b5e565b6001905092915050565b611de861298b565b73ffffffffffffffffffffffffffffffffffffffff16611e06611a1f565b73ffffffffffffffffffffffffffffffffffffffff1614611e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5390614a98565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f5761298b565b73ffffffffffffffffffffffffffffffffffffffff16611f75611a1f565b73ffffffffffffffffffffffffffffffffffffffff1614611fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc290614a98565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051612068919061469f565b60405180910390a25050565b61207c61298b565b73ffffffffffffffffffffffffffffffffffffffff1661209a611a1f565b73ffffffffffffffffffffffffffffffffffffffff16146120f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e790614a98565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546121189190614cc5565b6121229190614cc5565b6018819055506019601854111561216e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121659061501b565b60405180910390fd5b505050565b61217b61298b565b73ffffffffffffffffffffffffffffffffffffffff16612199611a1f565b73ffffffffffffffffffffffffffffffffffffffff16146121ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e690614a98565b60405180910390fd5b670de0b6b3a76400006103e86005612205610fd4565b61220f9190614ae7565b6122199190614b70565b6122239190614b70565b811015612265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225c906150ad565b60405180910390fd5b670de0b6b3a7640000816122799190614ae7565b600a8190555050565b61228a61298b565b73ffffffffffffffffffffffffffffffffffffffff166122a8611a1f565b73ffffffffffffffffffffffffffffffffffffffff16146122fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f590614a98565b60405180910390fd5b612306613a5d565b565b601360009054906101000a900460ff1681565b60085481565b600061232b61298b565b73ffffffffffffffffffffffffffffffffffffffff16612349611a1f565b73ffffffffffffffffffffffffffffffffffffffff161461239f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239690614a98565b60405180910390fd5b620186a060016123ad610fd4565b6123b79190614ae7565b6123c19190614b70565b821015612403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fa9061513f565b60405180910390fd5b6103e86005612410610fd4565b61241a9190614ae7565b6124249190614b70565b821115612466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245d906151d1565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061251361298b565b73ffffffffffffffffffffffffffffffffffffffff16612531611a1f565b73ffffffffffffffffffffffffffffffffffffffff1614612587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257e90614a98565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6125b761298b565b73ffffffffffffffffffffffffffffffffffffffff166125d5611a1f565b73ffffffffffffffffffffffffffffffffffffffff161461262b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262290614a98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561269b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269290615263565b60405180910390fd5b6126a4816138f6565b50565b601a5481565b600a5481565b60006126bd61298b565b73ffffffffffffffffffffffffffffffffffffffff166126db611a1f565b73ffffffffffffffffffffffffffffffffffffffff1614612731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272890614a98565b60405180910390fd5b600f546010546127419190614cc5565b4211612782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612779906152cf565b60405180910390fd5b6103e88211156127c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127be90615361565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401612829919061481a565b602060405180830381865afa158015612846573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061286a9190615396565b905060006128956127106128878685613d4490919063ffffffff16565b613d5a90919063ffffffff16565b905060008111156128ce576128cd7f000000000000000000000000000000000000000000000000000000000000000061dead83613d70565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561293b57600080fd5b505af115801561294f573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fa90615435565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6a906154c7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612b519190614770565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc590615559565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c35906155eb565b60405180910390fd5b6000811415612c5857612c5383836000613d70565b6138f1565b601160009054906101000a900460ff161561331b57612c75611a1f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612ce35750612cb3611a1f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d1c5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d56575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d6f5750600560149054906101000a900460ff16155b1561331a57601160019054906101000a900460ff16612e6957601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e295750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5f90615657565b60405180910390fd5b5b601360009054906101000a900460ff161561303157612e86611a1f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612f0d57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f6557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156130305743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe29061570f565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130d45750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561317b5760085481111561311e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613115906157a1565b60405180910390fd5b600a5461312a836114b3565b826131359190614cc5565b1115613176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316d9061580d565b60405180910390fd5b613319565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561321e5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561326d57600854811115613268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325f9061589f565b60405180910390fd5b613318565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661331757600a546132ca836114b3565b826132d59190614cc5565b1115613316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330d9061580d565b60405180910390fd5b5b5b5b5b5b6000613326306114b3565b90506000600954821015905080801561334b5750601160029054906101000a900460ff165b80156133645750600560149054906101000a900460ff16155b80156133ba5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134105750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134665750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134aa576001600560146101000a81548160ff02191690831515021790555061348e613a5d565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156135105750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156135285750600c60009054906101000a900460ff165b80156135435750600d54600e5461353f9190614cc5565b4210155b80156135995750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156135a8576135a6613ff1565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061365e5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561366857600090505b600081156138e157602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136cb57506000601854115b15613798576136f860646136ea60185488613d4490919063ffffffff16565b613d5a90919063ffffffff16565b9050601854601a548261370b9190614ae7565b6137159190614b70565b601d60008282546137269190614cc5565b92505081905550601854601b548261373e9190614ae7565b6137489190614b70565b601e60008282546137599190614cc5565b92505081905550601854601954826137719190614ae7565b61377b9190614b70565b601c600082825461378c9190614cc5565b925050819055506138bd565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137f357506000601454115b156138bc57613820606461381260145488613d4490919063ffffffff16565b613d5a90919063ffffffff16565b9050601454601654826138339190614ae7565b61383d9190614b70565b601d600082825461384e9190614cc5565b92505081905550601454601754826138669190614ae7565b6138709190614b70565b601e60008282546138819190614cc5565b92505081905550601454601554826138999190614ae7565b6138a39190614b70565b601c60008282546138b49190614cc5565b925050819055505b5b60008111156138d2576138d1873083613d70565b5b80856138de91906158bf565b94505b6138ec878787613d70565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000613a68306114b3565b90506000601e54601c54601d54613a7f9190614cc5565b613a899190614cc5565b9050600080831480613a9b5750600082145b15613aa857505050613d42565b6014600954613ab79190614ae7565b831115613ad0576014600954613acd9190614ae7565b92505b6000600283601d5486613ae39190614ae7565b613aed9190614b70565b613af79190614b70565b90506000613b0e82866141b790919063ffffffff16565b90506000479050613b1e826141cd565b6000613b3382476141b790919063ffffffff16565b90506000613b5e87613b50601c5485613d4490919063ffffffff16565b613d5a90919063ffffffff16565b90506000613b8988613b7b601e5486613d4490919063ffffffff16565b613d5a90919063ffffffff16565b90506000818385613b9a91906158bf565b613ba491906158bf565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c0490615924565b60006040518083038185875af1925050503d8060008114613c41576040519150601f19603f3d011682016040523d82523d6000602084013e613c46565b606091505b505080985050600087118015613c5c5750600081115b15613ca957613c6b878261440a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613ca093929190615939565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613cef90615924565b60006040518083038185875af1925050503d8060008114613d2c576040519150601f19603f3d011682016040523d82523d6000602084013e613d31565b606091505b505080985050505050505050505050505b565b60008183613d529190614ae7565b905092915050565b60008183613d689190614b70565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dd790615559565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e47906155eb565b60405180910390fd5b613e5b8383836144e6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ed8906159e2565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613f749190614cc5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613fd89190614770565b60405180910390a3613feb8484846144eb565b50505050565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401614055919061481a565b602060405180830381865afa158015614072573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140969190615396565b905060006140c36127106140b5600b5485613d4490919063ffffffff16565b613d5a90919063ffffffff16565b905060008111156140fc576140fb7f000000000000000000000000000000000000000000000000000000000000000061dead83613d70565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561416957600080fd5b505af115801561417d573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b600081836141c591906158bf565b905092915050565b6000600267ffffffffffffffff8111156141ea576141e9615a02565b5b6040519080825280602002602001820160405280156142185781602001602082028036833780820191505090505b50905030816000815181106142305761422f615a31565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156142d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142f99190615a75565b8160018151811061430d5761430c615a31565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614372307f000000000000000000000000000000000000000000000000000000000000000084612993565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016143d4959493929190615b9b565b600060405180830381600087803b1580156143ee57600080fd5b505af1158015614402573d6000803e3d6000fd5b505050505050565b614435307f000000000000000000000000000000000000000000000000000000000000000084612993565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161449c96959493929190615bf5565b60606040518083038185885af11580156144ba573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144df9190615c56565b5050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561452a57808201518184015260208101905061450f565b83811115614539576000848401525b50505050565b6000601f19601f8301169050919050565b600061455b826144f0565b61456581856144fb565b935061457581856020860161450c565b61457e8161453f565b840191505092915050565b600060208201905081810360008301526145a38184614550565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006145db826145b0565b9050919050565b6145eb816145d0565b81146145f657600080fd5b50565b600081359050614608816145e2565b92915050565b6000819050919050565b6146218161460e565b811461462c57600080fd5b50565b60008135905061463e81614618565b92915050565b6000806040838503121561465b5761465a6145ab565b5b6000614669858286016145f9565b925050602061467a8582860161462f565b9150509250929050565b60008115159050919050565b61469981614684565b82525050565b60006020820190506146b46000830184614690565b92915050565b6000602082840312156146d0576146cf6145ab565b5b60006146de848285016145f9565b91505092915050565b6000819050919050565b600061470c614707614702846145b0565b6146e7565b6145b0565b9050919050565b600061471e826146f1565b9050919050565b600061473082614713565b9050919050565b61474081614725565b82525050565b600060208201905061475b6000830184614737565b92915050565b61476a8161460e565b82525050565b60006020820190506147856000830184614761565b92915050565b6000602082840312156147a1576147a06145ab565b5b60006147af8482850161462f565b91505092915050565b6000806000606084860312156147d1576147d06145ab565b5b60006147df868287016145f9565b93505060206147f0868287016145f9565b92505060406148018682870161462f565b9150509250925092565b614814816145d0565b82525050565b600060208201905061482f600083018461480b565b92915050565b600060ff82169050919050565b61484b81614835565b82525050565b60006020820190506148666000830184614842565b92915050565b61487581614684565b811461488057600080fd5b50565b6000813590506148928161486c565b92915050565b6000806000606084860312156148b1576148b06145ab565b5b60006148bf8682870161462f565b93505060206148d08682870161462f565b92505060406148e186828701614883565b9150509250925092565b60008060408385031215614902576149016145ab565b5b6000614910858286016145f9565b925050602061492185828601614883565b9150509250929050565b600080600060608486031215614944576149436145ab565b5b60006149528682870161462f565b93505060206149638682870161462f565b92505060406149748682870161462f565b9150509250925092565b600060208284031215614994576149936145ab565b5b60006149a284828501614883565b91505092915050565b600080604083850312156149c2576149c16145ab565b5b60006149d0858286016145f9565b92505060206149e1858286016145f9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614a3257607f821691505b60208210811415614a4657614a456149eb565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a826020836144fb565b9150614a8d82614a4c565b602082019050919050565b60006020820190508181036000830152614ab181614a75565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614af28261460e565b9150614afd8361460e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b3657614b35614ab8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b7b8261460e565b9150614b868361460e565b925082614b9657614b95614b41565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614bfd602f836144fb565b9150614c0882614ba1565b604082019050919050565b60006020820190508181036000830152614c2c81614bf0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614c8f6028836144fb565b9150614c9a82614c33565b604082019050919050565b60006020820190508181036000830152614cbe81614c82565b9050919050565b6000614cd08261460e565b9150614cdb8361460e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d1057614d0f614ab8565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614d776033836144fb565b9150614d8282614d1b565b604082019050919050565b60006020820190508181036000830152614da681614d6a565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614e096030836144fb565b9150614e1482614dad565b604082019050919050565b60006020820190508181036000830152614e3881614dfc565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614e75601d836144fb565b9150614e8082614e3f565b602082019050919050565b60006020820190508181036000830152614ea481614e68565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614f076039836144fb565b9150614f1282614eab565b604082019050919050565b60006020820190508181036000830152614f3681614efa565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614f996025836144fb565b9150614fa482614f3d565b604082019050919050565b60006020820190508181036000830152614fc881614f8c565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000615005601d836144fb565b915061501082614fcf565b602082019050919050565b6000602082019050818103600083015261503481614ff8565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006150976024836144fb565b91506150a28261503b565b604082019050919050565b600060208201905081810360008301526150c68161508a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006151296035836144fb565b9150615134826150cd565b604082019050919050565b600060208201905081810360008301526151588161511c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006151bb6034836144fb565b91506151c68261515f565b604082019050919050565b600060208201905081810360008301526151ea816151ae565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061524d6026836144fb565b9150615258826151f1565b604082019050919050565b6000602082019050818103600083015261527c81615240565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006152b96020836144fb565b91506152c482615283565b602082019050919050565b600060208201905081810360008301526152e8816152ac565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b600061534b602a836144fb565b9150615356826152ef565b604082019050919050565b6000602082019050818103600083015261537a8161533e565b9050919050565b60008151905061539081614618565b92915050565b6000602082840312156153ac576153ab6145ab565b5b60006153ba84828501615381565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061541f6024836144fb565b915061542a826153c3565b604082019050919050565b6000602082019050818103600083015261544e81615412565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006154b16022836144fb565b91506154bc82615455565b604082019050919050565b600060208201905081810360008301526154e0816154a4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006155436025836144fb565b915061554e826154e7565b604082019050919050565b6000602082019050818103600083015261557281615536565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006155d56023836144fb565b91506155e082615579565b604082019050919050565b60006020820190508181036000830152615604816155c8565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006156416016836144fb565b915061564c8261560b565b602082019050919050565b6000602082019050818103600083015261567081615634565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006156f96049836144fb565b915061570482615677565b606082019050919050565b60006020820190508181036000830152615728816156ec565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061578b6035836144fb565b91506157968261572f565b604082019050919050565b600060208201905081810360008301526157ba8161577e565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006157f76013836144fb565b9150615802826157c1565b602082019050919050565b60006020820190508181036000830152615826816157ea565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006158896036836144fb565b91506158948261582d565b604082019050919050565b600060208201905081810360008301526158b88161587c565b9050919050565b60006158ca8261460e565b91506158d58361460e565b9250828210156158e8576158e7614ab8565b5b828203905092915050565b600081905092915050565b50565b600061590e6000836158f3565b9150615919826158fe565b600082019050919050565b600061592f82615901565b9150819050919050565b600060608201905061594e6000830186614761565b61595b6020830185614761565b6159686040830184614761565b949350505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006159cc6026836144fb565b91506159d782615970565b604082019050919050565b600060208201905081810360008301526159fb816159bf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615a6f816145e2565b92915050565b600060208284031215615a8b57615a8a6145ab565b5b6000615a9984828501615a60565b91505092915050565b6000819050919050565b6000615ac7615ac2615abd84615aa2565b6146e7565b61460e565b9050919050565b615ad781615aac565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615b12816145d0565b82525050565b6000615b248383615b09565b60208301905092915050565b6000602082019050919050565b6000615b4882615add565b615b528185615ae8565b9350615b5d83615af9565b8060005b83811015615b8e578151615b758882615b18565b9750615b8083615b30565b925050600181019050615b61565b5085935050505092915050565b600060a082019050615bb06000830188614761565b615bbd6020830187615ace565b8181036040830152615bcf8186615b3d565b9050615bde606083018561480b565b615beb6080830184614761565b9695505050505050565b600060c082019050615c0a600083018961480b565b615c176020830188614761565b615c246040830187615ace565b615c316060830186615ace565b615c3e608083018561480b565b615c4b60a0830184614761565b979650505050505050565b600080600060608486031215615c6f57615c6e6145ab565b5b6000615c7d86828701615381565b9350506020615c8e86828701615381565b9250506040615c9f86828701615381565b915050925092509256fea264697066735822122062aed969148f81f3bae70d80fd9bb506f76842e01fd44667186eb0e464c1c9b764736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103bc5760003560e01c80638da5cb5b116101f2578063c02466681161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e25578063f637434214610e4e578063f8b45b0514610e79578063fe72b27a14610ea4576103c3565b8063dd62ed3e14610d67578063e2f4560514610da4578063e884f26014610dcf578063f11a24d314610dfa576103c3565b8063c876d0b9116100dc578063c876d0b914610ca9578063c8c8ebe414610cd4578063d257b34f14610cff578063d85ba06314610d3c576103c3565b8063c024666814610c17578063c17b5b8c14610c40578063c18bc19514610c69578063c3c8cd8014610c92576103c3565b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610b49578063aacebbe314610b86578063b62496f514610baf578063bbc0c74214610bec576103c3565b80639fccce3214610a8b578063a0d82dc514610ab6578063a457c2d714610ae1578063a4c82a0014610b1e576103c3565b806395d89b41116101c157806395d89b41146109e15780639a7a23d614610a0c5780639c3b4fdc14610a355780639ec22c0e14610a60576103c3565b80638da5cb5b146109375780638ea5220f14610962578063921369131461098d578063924de9b7146109b8576103c3565b8063313ce567116102e2578063715018a61161027557806375f0a8741161024457806375f0a874146108a15780637bce5a04146108cc5780638095d564146108f75780638a8c523c14610920576103c3565b8063715018a61461080d578063730c188814610824578063751039fc1461084d5780637571336a14610878576103c3565b80634fbee193116102b15780634fbee1931461073d5780636a486a8e1461077a5780636ddd1713146107a557806370a08231146107d0576103c3565b8063313ce5671461067f57806339509351146106aa57806349bd5a5e146106e75780634a62bb6514610712576103c3565b8063199ffc721161035a57806323b872dd1161032957806323b872dd146105c157806327c8f835146105fe5780632c3e486c146106295780632e82f1a014610654576103c3565b8063199ffc72146105175780631a8145bb146105425780631f3fed8f1461056d578063203e727e14610598576103c3565b80631694505e116103965780631694505e1461046d57806318160ddd146104985780631816467f146104c3578063184c16c5146104ec576103c3565b806306fdde03146103c8578063095ea7b3146103f357806310d5de5314610430576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610ee1565b6040516103ea9190614589565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190614644565b610f73565b604051610427919061469f565b60405180910390f35b34801561043c57600080fd5b50610457600480360381019061045291906146ba565b610f91565b604051610464919061469f565b60405180910390f35b34801561047957600080fd5b50610482610fb0565b60405161048f9190614746565b60405180910390f35b3480156104a457600080fd5b506104ad610fd4565b6040516104ba9190614770565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e591906146ba565b610fde565b005b3480156104f857600080fd5b5061050161111a565b60405161050e9190614770565b60405180910390f35b34801561052357600080fd5b5061052c611120565b6040516105399190614770565b60405180910390f35b34801561054e57600080fd5b50610557611126565b6040516105649190614770565b60405180910390f35b34801561057957600080fd5b5061058261112c565b60405161058f9190614770565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba919061478b565b611132565b005b3480156105cd57600080fd5b506105e860048036038101906105e391906147b8565b611241565b6040516105f5919061469f565b60405180910390f35b34801561060a57600080fd5b50610613611339565b604051610620919061481a565b60405180910390f35b34801561063557600080fd5b5061063e61133f565b60405161064b9190614770565b60405180910390f35b34801561066057600080fd5b50610669611345565b604051610676919061469f565b60405180910390f35b34801561068b57600080fd5b50610694611358565b6040516106a19190614851565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc9190614644565b611361565b6040516106de919061469f565b60405180910390f35b3480156106f357600080fd5b506106fc61140d565b604051610709919061481a565b60405180910390f35b34801561071e57600080fd5b50610727611431565b604051610734919061469f565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f91906146ba565b611444565b604051610771919061469f565b60405180910390f35b34801561078657600080fd5b5061078f61149a565b60405161079c9190614770565b60405180910390f35b3480156107b157600080fd5b506107ba6114a0565b6040516107c7919061469f565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f291906146ba565b6114b3565b6040516108049190614770565b60405180910390f35b34801561081957600080fd5b506108226114fb565b005b34801561083057600080fd5b5061084b60048036038101906108469190614898565b611583565b005b34801561085957600080fd5b506108626116c3565b60405161086f919061469f565b60405180910390f35b34801561088457600080fd5b5061089f600480360381019061089a91906148eb565b611763565b005b3480156108ad57600080fd5b506108b661183a565b6040516108c3919061481a565b60405180910390f35b3480156108d857600080fd5b506108e1611860565b6040516108ee9190614770565b60405180910390f35b34801561090357600080fd5b5061091e6004803603810190610919919061492b565b611866565b005b34801561092c57600080fd5b50610935611964565b005b34801561094357600080fd5b5061094c611a1f565b604051610959919061481a565b60405180910390f35b34801561096e57600080fd5b50610977611a49565b604051610984919061481a565b60405180910390f35b34801561099957600080fd5b506109a2611a6f565b6040516109af9190614770565b60405180910390f35b3480156109c457600080fd5b506109df60048036038101906109da919061497e565b611a75565b005b3480156109ed57600080fd5b506109f6611b0e565b604051610a039190614589565b60405180910390f35b348015610a1857600080fd5b50610a336004803603810190610a2e91906148eb565b611ba0565b005b348015610a4157600080fd5b50610a4a611cb9565b604051610a579190614770565b60405180910390f35b348015610a6c57600080fd5b50610a75611cbf565b604051610a829190614770565b60405180910390f35b348015610a9757600080fd5b50610aa0611cc5565b604051610aad9190614770565b60405180910390f35b348015610ac257600080fd5b50610acb611ccb565b604051610ad89190614770565b60405180910390f35b348015610aed57600080fd5b50610b086004803603810190610b039190614644565b611cd1565b604051610b15919061469f565b60405180910390f35b348015610b2a57600080fd5b50610b33611dbc565b604051610b409190614770565b60405180910390f35b348015610b5557600080fd5b50610b706004803603810190610b6b9190614644565b611dc2565b604051610b7d919061469f565b60405180910390f35b348015610b9257600080fd5b50610bad6004803603810190610ba891906146ba565b611de0565b005b348015610bbb57600080fd5b50610bd66004803603810190610bd191906146ba565b611f1c565b604051610be3919061469f565b60405180910390f35b348015610bf857600080fd5b50610c01611f3c565b604051610c0e919061469f565b60405180910390f35b348015610c2357600080fd5b50610c3e6004803603810190610c3991906148eb565b611f4f565b005b348015610c4c57600080fd5b50610c676004803603810190610c62919061492b565b612074565b005b348015610c7557600080fd5b50610c906004803603810190610c8b919061478b565b612173565b005b348015610c9e57600080fd5b50610ca7612282565b005b348015610cb557600080fd5b50610cbe612308565b604051610ccb919061469f565b60405180910390f35b348015610ce057600080fd5b50610ce961231b565b604051610cf69190614770565b60405180910390f35b348015610d0b57600080fd5b50610d266004803603810190610d21919061478b565b612321565b604051610d33919061469f565b60405180910390f35b348015610d4857600080fd5b50610d51612476565b604051610d5e9190614770565b60405180910390f35b348015610d7357600080fd5b50610d8e6004803603810190610d8991906149ab565b61247c565b604051610d9b9190614770565b60405180910390f35b348015610db057600080fd5b50610db9612503565b604051610dc69190614770565b60405180910390f35b348015610ddb57600080fd5b50610de4612509565b604051610df1919061469f565b60405180910390f35b348015610e0657600080fd5b50610e0f6125a9565b604051610e1c9190614770565b60405180910390f35b348015610e3157600080fd5b50610e4c6004803603810190610e4791906146ba565b6125af565b005b348015610e5a57600080fd5b50610e636126a7565b604051610e709190614770565b60405180910390f35b348015610e8557600080fd5b50610e8e6126ad565b604051610e9b9190614770565b60405180910390f35b348015610eb057600080fd5b50610ecb6004803603810190610ec6919061478b565b6126b3565b604051610ed8919061469f565b60405180910390f35b606060038054610ef090614a1a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1c90614a1a565b8015610f695780601f10610f3e57610100808354040283529160200191610f69565b820191906000526020600020905b815481529060010190602001808311610f4c57829003601f168201915b5050505050905090565b6000610f87610f8061298b565b8484612993565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fe661298b565b73ffffffffffffffffffffffffffffffffffffffff16611004611a1f565b73ffffffffffffffffffffffffffffffffffffffff161461105a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105190614a98565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61113a61298b565b73ffffffffffffffffffffffffffffffffffffffff16611158611a1f565b73ffffffffffffffffffffffffffffffffffffffff16146111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590614a98565b60405180910390fd5b670de0b6b3a76400006103e860016111c4610fd4565b6111ce9190614ae7565b6111d89190614b70565b6111e29190614b70565b811015611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b90614c13565b60405180910390fd5b670de0b6b3a7640000816112389190614ae7565b60088190555050565b600061124e848484612b5e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061129961298b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090614ca5565b60405180910390fd5b61132d8561132561298b565b858403612993565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061140361136e61298b565b84846001600061137c61298b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113fe9190614cc5565b612993565b6001905092915050565b7f00000000000000000000000041dcd23138966b5b2f0f9325527dc0255484a60c81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61150361298b565b73ffffffffffffffffffffffffffffffffffffffff16611521611a1f565b73ffffffffffffffffffffffffffffffffffffffff1614611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90614a98565b60405180910390fd5b61158160006138f6565b565b61158b61298b565b73ffffffffffffffffffffffffffffffffffffffff166115a9611a1f565b73ffffffffffffffffffffffffffffffffffffffff16146115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690614a98565b60405180910390fd5b610258831015611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b90614d8d565b60405180910390fd5b6103e88211158015611657575060008210155b611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90614e1f565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116cd61298b565b73ffffffffffffffffffffffffffffffffffffffff166116eb611a1f565b73ffffffffffffffffffffffffffffffffffffffff1614611741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173890614a98565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61176b61298b565b73ffffffffffffffffffffffffffffffffffffffff16611789611a1f565b73ffffffffffffffffffffffffffffffffffffffff16146117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690614a98565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61186e61298b565b73ffffffffffffffffffffffffffffffffffffffff1661188c611a1f565b73ffffffffffffffffffffffffffffffffffffffff16146118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990614a98565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461190a9190614cc5565b6119149190614cc5565b60148190555060148054111561195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195690614e8b565b60405180910390fd5b505050565b61196c61298b565b73ffffffffffffffffffffffffffffffffffffffff1661198a611a1f565b73ffffffffffffffffffffffffffffffffffffffff16146119e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d790614a98565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a7d61298b565b73ffffffffffffffffffffffffffffffffffffffff16611a9b611a1f565b73ffffffffffffffffffffffffffffffffffffffff1614611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae890614a98565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611b1d90614a1a565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4990614a1a565b8015611b965780601f10611b6b57610100808354040283529160200191611b96565b820191906000526020600020905b815481529060010190602001808311611b7957829003601f168201915b5050505050905090565b611ba861298b565b73ffffffffffffffffffffffffffffffffffffffff16611bc6611a1f565b73ffffffffffffffffffffffffffffffffffffffff1614611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390614a98565b60405180910390fd5b7f00000000000000000000000041dcd23138966b5b2f0f9325527dc0255484a60c73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca290614f1d565b60405180910390fd5b611cb582826139bc565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611ce061298b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9490614faf565b60405180910390fd5b611db1611da861298b565b85858403612993565b600191505092915050565b600e5481565b6000611dd6611dcf61298b565b8484612b5e565b6001905092915050565b611de861298b565b73ffffffffffffffffffffffffffffffffffffffff16611e06611a1f565b73ffffffffffffffffffffffffffffffffffffffff1614611e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5390614a98565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f5761298b565b73ffffffffffffffffffffffffffffffffffffffff16611f75611a1f565b73ffffffffffffffffffffffffffffffffffffffff1614611fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc290614a98565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051612068919061469f565b60405180910390a25050565b61207c61298b565b73ffffffffffffffffffffffffffffffffffffffff1661209a611a1f565b73ffffffffffffffffffffffffffffffffffffffff16146120f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e790614a98565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546121189190614cc5565b6121229190614cc5565b6018819055506019601854111561216e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121659061501b565b60405180910390fd5b505050565b61217b61298b565b73ffffffffffffffffffffffffffffffffffffffff16612199611a1f565b73ffffffffffffffffffffffffffffffffffffffff16146121ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e690614a98565b60405180910390fd5b670de0b6b3a76400006103e86005612205610fd4565b61220f9190614ae7565b6122199190614b70565b6122239190614b70565b811015612265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225c906150ad565b60405180910390fd5b670de0b6b3a7640000816122799190614ae7565b600a8190555050565b61228a61298b565b73ffffffffffffffffffffffffffffffffffffffff166122a8611a1f565b73ffffffffffffffffffffffffffffffffffffffff16146122fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f590614a98565b60405180910390fd5b612306613a5d565b565b601360009054906101000a900460ff1681565b60085481565b600061232b61298b565b73ffffffffffffffffffffffffffffffffffffffff16612349611a1f565b73ffffffffffffffffffffffffffffffffffffffff161461239f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239690614a98565b60405180910390fd5b620186a060016123ad610fd4565b6123b79190614ae7565b6123c19190614b70565b821015612403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fa9061513f565b60405180910390fd5b6103e86005612410610fd4565b61241a9190614ae7565b6124249190614b70565b821115612466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245d906151d1565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061251361298b565b73ffffffffffffffffffffffffffffffffffffffff16612531611a1f565b73ffffffffffffffffffffffffffffffffffffffff1614612587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257e90614a98565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6125b761298b565b73ffffffffffffffffffffffffffffffffffffffff166125d5611a1f565b73ffffffffffffffffffffffffffffffffffffffff161461262b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262290614a98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561269b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269290615263565b60405180910390fd5b6126a4816138f6565b50565b601a5481565b600a5481565b60006126bd61298b565b73ffffffffffffffffffffffffffffffffffffffff166126db611a1f565b73ffffffffffffffffffffffffffffffffffffffff1614612731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272890614a98565b60405180910390fd5b600f546010546127419190614cc5565b4211612782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612779906152cf565b60405180910390fd5b6103e88211156127c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127be90615361565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000041dcd23138966b5b2f0f9325527dc0255484a60c6040518263ffffffff1660e01b8152600401612829919061481a565b602060405180830381865afa158015612846573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061286a9190615396565b905060006128956127106128878685613d4490919063ffffffff16565b613d5a90919063ffffffff16565b905060008111156128ce576128cd7f00000000000000000000000041dcd23138966b5b2f0f9325527dc0255484a60c61dead83613d70565b5b60007f00000000000000000000000041dcd23138966b5b2f0f9325527dc0255484a60c90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561293b57600080fd5b505af115801561294f573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fa90615435565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6a906154c7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612b519190614770565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc590615559565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c35906155eb565b60405180910390fd5b6000811415612c5857612c5383836000613d70565b6138f1565b601160009054906101000a900460ff161561331b57612c75611a1f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612ce35750612cb3611a1f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d1c5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d56575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d6f5750600560149054906101000a900460ff16155b1561331a57601160019054906101000a900460ff16612e6957601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e295750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5f90615657565b60405180910390fd5b5b601360009054906101000a900460ff161561303157612e86611a1f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612f0d57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f6557507f00000000000000000000000041dcd23138966b5b2f0f9325527dc0255484a60c73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156130305743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe29061570f565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130d45750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561317b5760085481111561311e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613115906157a1565b60405180910390fd5b600a5461312a836114b3565b826131359190614cc5565b1115613176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316d9061580d565b60405180910390fd5b613319565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561321e5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561326d57600854811115613268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325f9061589f565b60405180910390fd5b613318565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661331757600a546132ca836114b3565b826132d59190614cc5565b1115613316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330d9061580d565b60405180910390fd5b5b5b5b5b5b6000613326306114b3565b90506000600954821015905080801561334b5750601160029054906101000a900460ff165b80156133645750600560149054906101000a900460ff16155b80156133ba5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134105750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134665750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134aa576001600560146101000a81548160ff02191690831515021790555061348e613a5d565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156135105750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156135285750600c60009054906101000a900460ff165b80156135435750600d54600e5461353f9190614cc5565b4210155b80156135995750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156135a8576135a6613ff1565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061365e5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561366857600090505b600081156138e157602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136cb57506000601854115b15613798576136f860646136ea60185488613d4490919063ffffffff16565b613d5a90919063ffffffff16565b9050601854601a548261370b9190614ae7565b6137159190614b70565b601d60008282546137269190614cc5565b92505081905550601854601b548261373e9190614ae7565b6137489190614b70565b601e60008282546137599190614cc5565b92505081905550601854601954826137719190614ae7565b61377b9190614b70565b601c600082825461378c9190614cc5565b925050819055506138bd565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137f357506000601454115b156138bc57613820606461381260145488613d4490919063ffffffff16565b613d5a90919063ffffffff16565b9050601454601654826138339190614ae7565b61383d9190614b70565b601d600082825461384e9190614cc5565b92505081905550601454601754826138669190614ae7565b6138709190614b70565b601e60008282546138819190614cc5565b92505081905550601454601554826138999190614ae7565b6138a39190614b70565b601c60008282546138b49190614cc5565b925050819055505b5b60008111156138d2576138d1873083613d70565b5b80856138de91906158bf565b94505b6138ec878787613d70565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000613a68306114b3565b90506000601e54601c54601d54613a7f9190614cc5565b613a899190614cc5565b9050600080831480613a9b5750600082145b15613aa857505050613d42565b6014600954613ab79190614ae7565b831115613ad0576014600954613acd9190614ae7565b92505b6000600283601d5486613ae39190614ae7565b613aed9190614b70565b613af79190614b70565b90506000613b0e82866141b790919063ffffffff16565b90506000479050613b1e826141cd565b6000613b3382476141b790919063ffffffff16565b90506000613b5e87613b50601c5485613d4490919063ffffffff16565b613d5a90919063ffffffff16565b90506000613b8988613b7b601e5486613d4490919063ffffffff16565b613d5a90919063ffffffff16565b90506000818385613b9a91906158bf565b613ba491906158bf565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c0490615924565b60006040518083038185875af1925050503d8060008114613c41576040519150601f19603f3d011682016040523d82523d6000602084013e613c46565b606091505b505080985050600087118015613c5c5750600081115b15613ca957613c6b878261440a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613ca093929190615939565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613cef90615924565b60006040518083038185875af1925050503d8060008114613d2c576040519150601f19603f3d011682016040523d82523d6000602084013e613d31565b606091505b505080985050505050505050505050505b565b60008183613d529190614ae7565b905092915050565b60008183613d689190614b70565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dd790615559565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e47906155eb565b60405180910390fd5b613e5b8383836144e6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ed8906159e2565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613f749190614cc5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613fd89190614770565b60405180910390a3613feb8484846144eb565b50505050565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000041dcd23138966b5b2f0f9325527dc0255484a60c6040518263ffffffff1660e01b8152600401614055919061481a565b602060405180830381865afa158015614072573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140969190615396565b905060006140c36127106140b5600b5485613d4490919063ffffffff16565b613d5a90919063ffffffff16565b905060008111156140fc576140fb7f00000000000000000000000041dcd23138966b5b2f0f9325527dc0255484a60c61dead83613d70565b5b60007f00000000000000000000000041dcd23138966b5b2f0f9325527dc0255484a60c90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561416957600080fd5b505af115801561417d573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b600081836141c591906158bf565b905092915050565b6000600267ffffffffffffffff8111156141ea576141e9615a02565b5b6040519080825280602002602001820160405280156142185781602001602082028036833780820191505090505b50905030816000815181106142305761422f615a31565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156142d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142f99190615a75565b8160018151811061430d5761430c615a31565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614372307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612993565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016143d4959493929190615b9b565b600060405180830381600087803b1580156143ee57600080fd5b505af1158015614402573d6000803e3d6000fd5b505050505050565b614435307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612993565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161449c96959493929190615bf5565b60606040518083038185885af11580156144ba573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144df9190615c56565b5050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561452a57808201518184015260208101905061450f565b83811115614539576000848401525b50505050565b6000601f19601f8301169050919050565b600061455b826144f0565b61456581856144fb565b935061457581856020860161450c565b61457e8161453f565b840191505092915050565b600060208201905081810360008301526145a38184614550565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006145db826145b0565b9050919050565b6145eb816145d0565b81146145f657600080fd5b50565b600081359050614608816145e2565b92915050565b6000819050919050565b6146218161460e565b811461462c57600080fd5b50565b60008135905061463e81614618565b92915050565b6000806040838503121561465b5761465a6145ab565b5b6000614669858286016145f9565b925050602061467a8582860161462f565b9150509250929050565b60008115159050919050565b61469981614684565b82525050565b60006020820190506146b46000830184614690565b92915050565b6000602082840312156146d0576146cf6145ab565b5b60006146de848285016145f9565b91505092915050565b6000819050919050565b600061470c614707614702846145b0565b6146e7565b6145b0565b9050919050565b600061471e826146f1565b9050919050565b600061473082614713565b9050919050565b61474081614725565b82525050565b600060208201905061475b6000830184614737565b92915050565b61476a8161460e565b82525050565b60006020820190506147856000830184614761565b92915050565b6000602082840312156147a1576147a06145ab565b5b60006147af8482850161462f565b91505092915050565b6000806000606084860312156147d1576147d06145ab565b5b60006147df868287016145f9565b93505060206147f0868287016145f9565b92505060406148018682870161462f565b9150509250925092565b614814816145d0565b82525050565b600060208201905061482f600083018461480b565b92915050565b600060ff82169050919050565b61484b81614835565b82525050565b60006020820190506148666000830184614842565b92915050565b61487581614684565b811461488057600080fd5b50565b6000813590506148928161486c565b92915050565b6000806000606084860312156148b1576148b06145ab565b5b60006148bf8682870161462f565b93505060206148d08682870161462f565b92505060406148e186828701614883565b9150509250925092565b60008060408385031215614902576149016145ab565b5b6000614910858286016145f9565b925050602061492185828601614883565b9150509250929050565b600080600060608486031215614944576149436145ab565b5b60006149528682870161462f565b93505060206149638682870161462f565b92505060406149748682870161462f565b9150509250925092565b600060208284031215614994576149936145ab565b5b60006149a284828501614883565b91505092915050565b600080604083850312156149c2576149c16145ab565b5b60006149d0858286016145f9565b92505060206149e1858286016145f9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614a3257607f821691505b60208210811415614a4657614a456149eb565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a826020836144fb565b9150614a8d82614a4c565b602082019050919050565b60006020820190508181036000830152614ab181614a75565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614af28261460e565b9150614afd8361460e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b3657614b35614ab8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b7b8261460e565b9150614b868361460e565b925082614b9657614b95614b41565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614bfd602f836144fb565b9150614c0882614ba1565b604082019050919050565b60006020820190508181036000830152614c2c81614bf0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614c8f6028836144fb565b9150614c9a82614c33565b604082019050919050565b60006020820190508181036000830152614cbe81614c82565b9050919050565b6000614cd08261460e565b9150614cdb8361460e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d1057614d0f614ab8565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614d776033836144fb565b9150614d8282614d1b565b604082019050919050565b60006020820190508181036000830152614da681614d6a565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614e096030836144fb565b9150614e1482614dad565b604082019050919050565b60006020820190508181036000830152614e3881614dfc565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614e75601d836144fb565b9150614e8082614e3f565b602082019050919050565b60006020820190508181036000830152614ea481614e68565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614f076039836144fb565b9150614f1282614eab565b604082019050919050565b60006020820190508181036000830152614f3681614efa565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614f996025836144fb565b9150614fa482614f3d565b604082019050919050565b60006020820190508181036000830152614fc881614f8c565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000615005601d836144fb565b915061501082614fcf565b602082019050919050565b6000602082019050818103600083015261503481614ff8565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006150976024836144fb565b91506150a28261503b565b604082019050919050565b600060208201905081810360008301526150c68161508a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006151296035836144fb565b9150615134826150cd565b604082019050919050565b600060208201905081810360008301526151588161511c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006151bb6034836144fb565b91506151c68261515f565b604082019050919050565b600060208201905081810360008301526151ea816151ae565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061524d6026836144fb565b9150615258826151f1565b604082019050919050565b6000602082019050818103600083015261527c81615240565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006152b96020836144fb565b91506152c482615283565b602082019050919050565b600060208201905081810360008301526152e8816152ac565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b600061534b602a836144fb565b9150615356826152ef565b604082019050919050565b6000602082019050818103600083015261537a8161533e565b9050919050565b60008151905061539081614618565b92915050565b6000602082840312156153ac576153ab6145ab565b5b60006153ba84828501615381565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061541f6024836144fb565b915061542a826153c3565b604082019050919050565b6000602082019050818103600083015261544e81615412565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006154b16022836144fb565b91506154bc82615455565b604082019050919050565b600060208201905081810360008301526154e0816154a4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006155436025836144fb565b915061554e826154e7565b604082019050919050565b6000602082019050818103600083015261557281615536565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006155d56023836144fb565b91506155e082615579565b604082019050919050565b60006020820190508181036000830152615604816155c8565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006156416016836144fb565b915061564c8261560b565b602082019050919050565b6000602082019050818103600083015261567081615634565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006156f96049836144fb565b915061570482615677565b606082019050919050565b60006020820190508181036000830152615728816156ec565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061578b6035836144fb565b91506157968261572f565b604082019050919050565b600060208201905081810360008301526157ba8161577e565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006157f76013836144fb565b9150615802826157c1565b602082019050919050565b60006020820190508181036000830152615826816157ea565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006158896036836144fb565b91506158948261582d565b604082019050919050565b600060208201905081810360008301526158b88161587c565b9050919050565b60006158ca8261460e565b91506158d58361460e565b9250828210156158e8576158e7614ab8565b5b828203905092915050565b600081905092915050565b50565b600061590e6000836158f3565b9150615919826158fe565b600082019050919050565b600061592f82615901565b9150819050919050565b600060608201905061594e6000830186614761565b61595b6020830185614761565b6159686040830184614761565b949350505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006159cc6026836144fb565b91506159d782615970565b604082019050919050565b600060208201905081810360008301526159fb816159bf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615a6f816145e2565b92915050565b600060208284031215615a8b57615a8a6145ab565b5b6000615a9984828501615a60565b91505092915050565b6000819050919050565b6000615ac7615ac2615abd84615aa2565b6146e7565b61460e565b9050919050565b615ad781615aac565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615b12816145d0565b82525050565b6000615b248383615b09565b60208301905092915050565b6000602082019050919050565b6000615b4882615add565b615b528185615ae8565b9350615b5d83615af9565b8060005b83811015615b8e578151615b758882615b18565b9750615b8083615b30565b925050600181019050615b61565b5085935050505092915050565b600060a082019050615bb06000830188614761565b615bbd6020830187615ace565b8181036040830152615bcf8186615b3d565b9050615bde606083018561480b565b615beb6080830184614761565b9695505050505050565b600060c082019050615c0a600083018961480b565b615c176020830188614761565b615c246040830187615ace565b615c316060830186615ace565b615c3e608083018561480b565b615c4b60a0830184614761565b979650505050505050565b600080600060608486031215615c6f57615c6e6145ab565b5b6000615c7d86828701615381565b9350506020615c8e86828701615381565b9250506040615c9f86828701615381565b915050925092509256fea264697066735822122062aed969148f81f3bae70d80fd9bb506f76842e01fd44667186eb0e464c1c9b764736f6c634300080a0033

Deployed Bytecode Sourcemap

32760:19480:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9555:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11722:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34391:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32840:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10675:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41502:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33405:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33220:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34175:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38816:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12373:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32943:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33315:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33276:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10517:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13274:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32898:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33503:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41667:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33990:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33583:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10846:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2790:103;;;;;;;;;;;;;:::i;:::-;;49822:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37924:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39363:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33035:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33883;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39734:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37717:155;;;;;;;;;;;;;:::i;:::-;;2139:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33072:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34025:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39626:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9774:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40755:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33957:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33459:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34215:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34101:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13992:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33367:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11186:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41263:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34612:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33543:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40565:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40145:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39099:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41796:63;;;;;;;;;;;;;:::i;:::-;;33801:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33105:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38311:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33849:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11424:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33147:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38106:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33920:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3048:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34063:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33187:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51181: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;34391:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32840:51::-;;;:::o;10675:108::-;10736:7;10763:12;;10756:19;;10675:108;:::o;41502:157::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41609:9:::1;;;;;;;;;;;41581:38;;41598:9;41581:38;;;;;;;;;;;;41642:9;41630;;:21;;;;;;;;;;;;;;;;;;41502:157:::0;:::o;33405:47::-;;;;:::o;33220:36::-;;;;:::o;34175:33::-;;;;:::o;34135:::-;;;;:::o;38816:275::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38953:4:::1;38945;38940:1;38924:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38923:26;;;;:::i;:::-;38922:35;;;;:::i;:::-;38912:6;:45;;38890:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39076:6;39066;:17;;;;:::i;:::-;39043:20;:40;;;;38816: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;32943:53::-;32989:6;32943:53;:::o;33315:45::-;;;;:::o;33276: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;32898:38::-;;;:::o;33503:33::-;;;;;;;;;;;;;:::o;41667:126::-;41733:4;41757:19;:28;41777:7;41757:28;;;;;;;;;;;;;;;;;;;;;;;;;41750:35;;41667:126;;;:::o;33990:28::-;;;;:::o;33583: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;49822:555::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50024:3:::1;50001:19;:26;;49979:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50151:4;50139:8;:16;;:33;;;;;50171:1;50159:8;:13;;50139:33;50117:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50277:19;50259:15;:37;;;;50326:8;50307:16;:27;;;;50361:8;50345:13;;:24;;;;;;;;;;;;;;;;;;49822:555:::0;;;:::o;37924:121::-;37976:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38010:5:::1;37993:14;;:22;;;;;;;;;;;;;;;;;;38033:4;38026:11;;37924:121:::0;:::o;39363:167::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39518:4:::1;39476:31;:39;39508:6;39476:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39363:167:::0;;:::o;33035:30::-;;;;;;;;;;;;;:::o;33883:::-;;;;:::o;39734:403::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39902:13:::1;39884:15;:31;;;;39944:13;39926:15;:31;;;;39980:7;39968:9;:19;;;;40049:9;;40031:15;;40013;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;39998:12;:60;;;;40093:2;40077:12:::0;::::1;:18;;40069:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39734:403:::0;;;:::o;37717:155::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37788:4:::1;37772:13;;:20;;;;;;;;;;;;;;;;;;37817:4;37803:11;;:18;;;;;;;;;;;;;;;;;;37849:15;37832:14;:32;;;;37717:155::o:0;2139:87::-;2185:7;2212:6;;;;;;;;;;;2205:13;;2139:87;:::o;33072:24::-;;;;;;;;;;;;;:::o;34025:31::-;;;;:::o;39626:100::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39711:7:::1;39697:11;;:21;;;;;;;;;;;;;;;;;;39626:100:::0;:::o;9774:104::-;9830:13;9863:7;9856:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9774:104;:::o;40755:304::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40899:13:::1;40891:21;;:4;:21;;;;40869:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41010:41;41039:4;41045:5;41010:28;:41::i;:::-;40755:304:::0;;:::o;33957:24::-;;;;:::o;33459:35::-;;;;:::o;34215:27::-;;;;:::o;34101: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;33367: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;41263:231::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41423:15:::1;;;;;;;;;;;41380:59;;41403:18;41380:59;;;;;;;;;;;;41468:18;41450:15;;:36;;;;;;;;;;;;;;;;;;41263:231:::0;:::o;34612:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33543:33::-;;;;;;;;;;;;;:::o;40565:182::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40681:8:::1;40650:19;:28;40670:7;40650:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40721:7;40705:34;;;40730:8;40705:34;;;;;;:::i;:::-;;;;;;;;40565:182:::0;;:::o;40145:412::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40315:13:::1;40296:16;:32;;;;40358:13;40339:16;:32;;;;40395:7;40382:10;:20;;;;40467:10;;40448:16;;40429;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40413:13;:64;;;;40513:2;40496:13;;:19;;40488:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40145:412:::0;;;:::o;39099:256::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39239:4:::1;39231;39226:1;39210:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39209:26;;;;:::i;:::-;39208:35;;;;:::i;:::-;39198:6;:45;;39176:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39340:6;39330;:17;;;;:::i;:::-;39318:9;:29;;;;39099:256:::0;:::o;41796:63::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41844:10:::1;:8;:10::i;:::-;41796:63::o:0;33801:39::-;;;;;;;;;;;;;:::o;33105:35::-;;;;:::o;38311:497::-;38419:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38498:6:::1;38493:1;38477:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38476:28;;;;:::i;:::-;38463:9;:41;;38441:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38653:4;38648:1;38632:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38631:26;;;;:::i;:::-;38618:9;:39;;38596:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38769:9;38748:18;:30;;;;38796:4;38789:11;;38311:497:::0;;;:::o;33849:27::-;;;;:::o;11424:151::-;11513:7;11540:11;:18;11552:5;11540:18;;;;;;;;;;;;;;;:27;11559:7;11540:27;;;;;;;;;;;;;;;;11533:34;;11424:151;;;;:::o;33147:33::-;;;;:::o;38106:135::-;38166:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38206:5:::1;38183:20;;:28;;;;;;;;;;;;;;;;;;38229:4;38222:11;;38106:135:::0;:::o;33920: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;34063:31::-;;;;:::o;33187:24::-;;;;:::o;51181:1056::-;51292:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51377:19:::1;;51354:20;;:42;;;;:::i;:::-;51336:15;:60;51314:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51486:4;51475:7;:15;;51467:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51571:15;51548:20;:38;;;;51641:28;51672:4;:14;;;51687:13;51672:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51641:60;;51751:20;51774:44;51812:5;51774:33;51799:7;51774:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51751:67;;51938:1;51923:12;:16;51919:110;;;51956:61;51972:13;51995:6;52004:12;51956:15;:61::i;:::-;51919:110;52104:19;52141:13;52104:51;;52166:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52193:14;;;;;;;;;;52225:4;52218:11;;;;;51181: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;41917:5011::-;42065:1;42049:18;;:4;:18;;;;42041:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42142:1;42128:16;;:2;:16;;;;42120:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42211:1;42201:6;:11;42197:93;;;42229:28;42245:4;42251:2;42255:1;42229:15;:28::i;:::-;42272:7;;42197:93;42306:14;;;;;;;;;;;42302:2487;;;42367:7;:5;:7::i;:::-;42359:15;;:4;:15;;;;:49;;;;;42401:7;:5;:7::i;:::-;42395:13;;:2;:13;;;;42359:49;:86;;;;;42443:1;42429:16;;:2;:16;;;;42359:86;:128;;;;;42480:6;42466:21;;:2;:21;;;;42359:128;:158;;;;;42509:8;;;;;;;;;;;42508:9;42359:158;42337:2441;;;42557:13;;;;;;;;;;;42552:223;;42629:19;:25;42649:4;42629:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42658:19;:23;42678:2;42658:23;;;;;;;;;;;;;;;;;;;;;;;;;42629:52;42595:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42552:223;42931:20;;;;;;;;;;;42927:641;;;43012:7;:5;:7::i;:::-;43006:13;;:2;:13;;;;:72;;;;;43062:15;43048:30;;:2;:30;;;;43006:72;:129;;;;;43121:13;43107:28;;:2;:28;;;;43006:129;42976:573;;;43299:12;43224:28;:39;43253:9;43224:39;;;;;;;;;;;;;;;;:87;43186:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43513:12;43471:28;:39;43500:9;43471:39;;;;;;;;;;;;;;;:54;;;;42976:573;42927:641;43642:25;:31;43668:4;43642:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43699:31;:35;43731:2;43699:35;;;;;;;;;;;;;;;;;;;;;;;;;43698:36;43642:92;43616:1147;;;43821:20;;43811:6;:30;;43777:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44029:9;;44012:13;44022:2;44012:9;:13::i;:::-;44003:6;:22;;;;:::i;:::-;:35;;43969:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43616:1147;;;44207:25;:29;44233:2;44207:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44262:31;:37;44294:4;44262:37;;;;;;;;;;;;;;;;;;;;;;;;;44261:38;44207:92;44181:582;;;44386:20;;44376:6;:30;;44342:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44181:582;;;44543:31;:35;44575:2;44543:35;;;;;;;;;;;;;;;;;;;;;;;;;44538:225;;44663:9;;44646:13;44656:2;44646:9;:13::i;:::-;44637:6;:22;;;;:::i;:::-;:35;;44603:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44538:225;44181:582;43616:1147;42337:2441;42302:2487;44801:28;44832:24;44850:4;44832:9;:24::i;:::-;44801:55;;44869:12;44908:18;;44884:20;:42;;44869:57;;44957:7;:35;;;;;44981:11;;;;;;;;;;;44957:35;:61;;;;;45010:8;;;;;;;;;;;45009:9;44957:61;:110;;;;;45036:25;:31;45062:4;45036:31;;;;;;;;;;;;;;;;;;;;;;;;;45035:32;44957:110;:153;;;;;45085:19;:25;45105:4;45085:25;;;;;;;;;;;;;;;;;;;;;;;;;45084:26;44957:153;:194;;;;;45128:19;:23;45148:2;45128:23;;;;;;;;;;;;;;;;;;;;;;;;;45127:24;44957:194;44939:326;;;45189:4;45178:8;;:15;;;;;;;;;;;;;;;;;;45210:10;:8;:10::i;:::-;45248:5;45237:8;;:16;;;;;;;;;;;;;;;;;;44939:326;45296:8;;;;;;;;;;;45295:9;:55;;;;;45321:25;:29;45347:2;45321:29;;;;;;;;;;;;;;;;;;;;;;;;;45295:55;:85;;;;;45367:13;;;;;;;;;;;45295:85;:153;;;;;45433:15;;45416:14;;:32;;;;:::i;:::-;45397:15;:51;;45295:153;:196;;;;;45466:19;:25;45486:4;45466:25;;;;;;;;;;;;;;;;;;;;;;;;;45465:26;45295:196;45277:282;;;45518:29;:27;:29::i;:::-;;45277:282;45571:12;45587:8;;;;;;;;;;;45586:9;45571:24;;45697:19;:25;45717:4;45697:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45726:19;:23;45746:2;45726:23;;;;;;;;;;;;;;;;;;;;;;;;;45697:52;45693:100;;;45776:5;45766:15;;45693:100;45805:12;45910:7;45906:969;;;45962:25;:29;45988:2;45962:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;46011:1;45995:13;;:17;45962:50;45958:768;;;46040:34;46070:3;46040:25;46051:13;;46040:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;46033:41;;46143:13;;46123:16;;46116:4;:23;;;;:::i;:::-;46115:41;;;;:::i;:::-;46093:18;;:63;;;;;;;:::i;:::-;;;;;;;;46213:13;;46199:10;;46192:4;:17;;;;:::i;:::-;46191:35;;;;:::i;:::-;46175:12;;:51;;;;;;;:::i;:::-;;;;;;;;46295:13;;46275:16;;46268:4;:23;;;;:::i;:::-;46267:41;;;;:::i;:::-;46245:18;;:63;;;;;;;:::i;:::-;;;;;;;;45958:768;;;46370:25;:31;46396:4;46370:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46420:1;46405:12;;:16;46370:51;46366:360;;;46449:33;46478:3;46449:24;46460:12;;46449:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46442:40;;46550:12;;46531:15;;46524:4;:22;;;;:::i;:::-;46523:39;;;;:::i;:::-;46501:18;;:61;;;;;;;:::i;:::-;;;;;;;;46618:12;;46605:9;;46598:4;:16;;;;:::i;:::-;46597:33;;;;:::i;:::-;46581:12;;:49;;;;;;;:::i;:::-;;;;;;;;46698:12;;46679:15;;46672:4;:22;;;;:::i;:::-;46671:39;;;;:::i;:::-;46649:18;;:61;;;;;;;:::i;:::-;;;;;;;;46366:360;45958:768;46753:1;46746:4;:8;46742:91;;;46775:42;46791:4;46805;46812;46775:15;:42::i;:::-;46742:91;46859:4;46849:14;;;;;:::i;:::-;;;45906:969;46887:33;46903:4;46909:2;46913:6;46887:15;:33::i;:::-;42030:4898;;;;41917: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;41067:188::-;41184:5;41150:25;:31;41176:4;41150:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41241:5;41207:40;;41235:4;41207:40;;;;;;;;;;;;41067:188;;:::o;48058:1756::-;48097:23;48123:24;48141:4;48123:9;:24::i;:::-;48097:50;;48158:25;48254:12;;48220:18;;48186;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48158:108;;48277:12;48325:1;48306:15;:20;:46;;;;48351:1;48330:17;:22;48306:46;48302:85;;;48369:7;;;;;48302:85;48442:2;48421:18;;:23;;;;:::i;:::-;48403:15;:41;48399:115;;;48500:2;48479:18;;:23;;;;:::i;:::-;48461:41;;48399:115;48575:23;48688:1;48655:17;48620:18;;48602:15;:36;;;;:::i;:::-;48601:71;;;;:::i;:::-;:88;;;;:::i;:::-;48575:114;;48700:26;48729:36;48749:15;48729;:19;;:36;;;;:::i;:::-;48700:65;;48778:25;48806:21;48778:49;;48840:36;48857:18;48840:16;:36::i;:::-;48889:18;48910:44;48936:17;48910:21;:25;;:44;;;;:::i;:::-;48889:65;;48967:23;48993:81;49046:17;48993:34;49008:18;;48993:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48967:107;;49085:17;49105:51;49138:17;49105:28;49120:12;;49105:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49085:71;;49169:23;49226:9;49208:15;49195:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49169:66;;49269:1;49248:18;:22;;;;49302:1;49281:18;:22;;;;49329:1;49314:12;:16;;;;49365:9;;;;;;;;;;;49357:23;;49388:9;49357:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49343:59;;;;;49437:1;49419:15;:19;:42;;;;;49460:1;49442:15;:19;49419:42;49415:278;;;49478:46;49491:15;49508;49478:12;:46::i;:::-;49544:137;49577:18;49614:15;49648:18;;49544:137;;;;;;;;:::i;:::-;;;;;;;;49415:278;49727:15;;;;;;;;;;;49719:29;;49770:21;49719:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49705:101;;;;;48086:1728;;;;;;;;;;48058:1756;:::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;50385:788::-;50442:4;50476:15;50459:14;:32;;;;50546:28;50577:4;:14;;;50592:13;50577:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50546:60;;50656:20;50679:77;50740:5;50679:42;50704:16;;50679:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50656:100;;50876:1;50861:12;:16;50857:110;;;50894:61;50910:13;50933:6;50942:12;50894:15;:61::i;:::-;50857:110;51042:19;51079:13;51042:51;;51104:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51131:12;;;;;;;;;;51161:4;51154:11;;;;;50385:788;:::o;22772:98::-;22830:7;22861:1;22857;:5;;;;:::i;:::-;22850:12;;22772:98;;;;:::o;46936:589::-;47062:21;47100:1;47086:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47062:40;;47131:4;47113;47118:1;47113:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47157:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47147:4;47152:1;47147:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47192:62;47209:4;47224:15;47242:11;47192:8;:62::i;:::-;47293:15;:66;;;47374:11;47400:1;47444:4;47471;47491:15;47293:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46991:534;46936:589;:::o;47533:517::-;47681:62;47698:4;47713:15;47731:11;47681:8;:62::i;:::-;47786:15;:31;;;47825:9;47858:4;47878:11;47904:1;47947;32989:6;48016:15;47786:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47533:517;;:::o;18656:125::-;;;;:::o;19385:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:180::-;9737:77;9734:1;9727:88;9834:4;9831:1;9824:15;9858:4;9855:1;9848:15;9875:320;9919:6;9956:1;9950:4;9946:12;9936:22;;10003:1;9997:4;9993:12;10024:18;10014:81;;10080:4;10072:6;10068:17;10058:27;;10014:81;10142:2;10134:6;10131:14;10111:18;10108:38;10105:84;;;10161:18;;:::i;:::-;10105:84;9926:269;9875:320;;;:::o;10201:182::-;10341:34;10337:1;10329:6;10325:14;10318:58;10201:182;:::o;10389:366::-;10531:3;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10628:93;10717:3;10628:93;:::i;:::-;10746:2;10741:3;10737:12;10730:19;;10389:366;;;:::o;10761:419::-;10927:4;10965:2;10954:9;10950:18;10942:26;;11014:9;11008:4;11004:20;11000:1;10989:9;10985:17;10978:47;11042:131;11168:4;11042:131;:::i;:::-;11034:139;;10761:419;;;:::o;11186:180::-;11234:77;11231:1;11224:88;11331:4;11328:1;11321:15;11355:4;11352:1;11345:15;11372:348;11412:7;11435:20;11453:1;11435:20;:::i;:::-;11430:25;;11469:20;11487:1;11469:20;:::i;:::-;11464:25;;11657:1;11589:66;11585:74;11582:1;11579:81;11574:1;11567:9;11560:17;11556:105;11553:131;;;11664:18;;:::i;:::-;11553:131;11712:1;11709;11705:9;11694:20;;11372:348;;;;:::o;11726:180::-;11774:77;11771:1;11764:88;11871:4;11868:1;11861:15;11895:4;11892:1;11885:15;11912:185;11952:1;11969:20;11987:1;11969:20;:::i;:::-;11964:25;;12003:20;12021:1;12003:20;:::i;:::-;11998:25;;12042:1;12032:35;;12047:18;;:::i;:::-;12032:35;12089:1;12086;12082:9;12077:14;;11912:185;;;;:::o;12103:234::-;12243:34;12239:1;12231:6;12227:14;12220:58;12312:17;12307:2;12299:6;12295:15;12288:42;12103:234;:::o;12343:366::-;12485:3;12506:67;12570:2;12565:3;12506:67;:::i;:::-;12499:74;;12582:93;12671:3;12582:93;:::i;:::-;12700:2;12695:3;12691:12;12684:19;;12343:366;;;:::o;12715:419::-;12881:4;12919:2;12908:9;12904:18;12896:26;;12968:9;12962:4;12958:20;12954:1;12943:9;12939:17;12932:47;12996:131;13122:4;12996:131;:::i;:::-;12988:139;;12715:419;;;:::o;13140:227::-;13280:34;13276:1;13268:6;13264:14;13257:58;13349:10;13344:2;13336:6;13332:15;13325:35;13140:227;:::o;13373:366::-;13515:3;13536:67;13600:2;13595:3;13536:67;:::i;:::-;13529:74;;13612:93;13701:3;13612:93;:::i;:::-;13730:2;13725:3;13721:12;13714:19;;13373:366;;;:::o;13745:419::-;13911:4;13949:2;13938:9;13934:18;13926:26;;13998:9;13992:4;13988:20;13984:1;13973:9;13969:17;13962:47;14026:131;14152:4;14026:131;:::i;:::-;14018:139;;13745:419;;;:::o;14170:305::-;14210:3;14229:20;14247:1;14229:20;:::i;:::-;14224:25;;14263:20;14281:1;14263:20;:::i;:::-;14258:25;;14417:1;14349:66;14345:74;14342:1;14339:81;14336:107;;;14423:18;;:::i;:::-;14336:107;14467:1;14464;14460:9;14453:16;;14170:305;;;;:::o;14481:238::-;14621:34;14617:1;14609:6;14605:14;14598:58;14690:21;14685:2;14677:6;14673:15;14666:46;14481:238;:::o;14725:366::-;14867:3;14888:67;14952:2;14947:3;14888:67;:::i;:::-;14881:74;;14964:93;15053:3;14964:93;:::i;:::-;15082:2;15077:3;15073:12;15066:19;;14725:366;;;:::o;15097:419::-;15263:4;15301:2;15290:9;15286:18;15278:26;;15350:9;15344:4;15340:20;15336:1;15325:9;15321:17;15314:47;15378:131;15504:4;15378:131;:::i;:::-;15370:139;;15097:419;;;:::o;15522:235::-;15662:34;15658:1;15650:6;15646:14;15639:58;15731:18;15726:2;15718:6;15714:15;15707:43;15522:235;:::o;15763:366::-;15905:3;15926:67;15990:2;15985:3;15926:67;:::i;:::-;15919:74;;16002:93;16091:3;16002:93;:::i;:::-;16120:2;16115:3;16111:12;16104:19;;15763:366;;;:::o;16135:419::-;16301:4;16339:2;16328:9;16324:18;16316:26;;16388:9;16382:4;16378:20;16374:1;16363:9;16359:17;16352:47;16416:131;16542:4;16416:131;:::i;:::-;16408:139;;16135:419;;;:::o;16560:179::-;16700:31;16696:1;16688:6;16684:14;16677:55;16560:179;:::o;16745:366::-;16887:3;16908:67;16972:2;16967:3;16908:67;:::i;:::-;16901:74;;16984:93;17073:3;16984:93;:::i;:::-;17102:2;17097:3;17093:12;17086:19;;16745:366;;;:::o;17117:419::-;17283:4;17321:2;17310:9;17306:18;17298:26;;17370:9;17364:4;17360:20;17356:1;17345:9;17341:17;17334:47;17398:131;17524:4;17398:131;:::i;:::-;17390:139;;17117:419;;;:::o;17542:244::-;17682:34;17678:1;17670:6;17666:14;17659:58;17751:27;17746:2;17738:6;17734:15;17727:52;17542:244;:::o;17792:366::-;17934:3;17955:67;18019:2;18014:3;17955:67;:::i;:::-;17948:74;;18031:93;18120:3;18031:93;:::i;:::-;18149:2;18144:3;18140:12;18133:19;;17792:366;;;:::o;18164:419::-;18330:4;18368:2;18357:9;18353:18;18345:26;;18417:9;18411:4;18407:20;18403:1;18392:9;18388:17;18381:47;18445:131;18571:4;18445:131;:::i;:::-;18437:139;;18164:419;;;:::o;18589:224::-;18729:34;18725:1;18717:6;18713:14;18706:58;18798:7;18793:2;18785:6;18781:15;18774:32;18589:224;:::o;18819:366::-;18961:3;18982:67;19046:2;19041:3;18982:67;:::i;:::-;18975:74;;19058:93;19147:3;19058:93;:::i;:::-;19176:2;19171:3;19167:12;19160:19;;18819:366;;;:::o;19191:419::-;19357:4;19395:2;19384:9;19380:18;19372:26;;19444:9;19438:4;19434:20;19430:1;19419:9;19415:17;19408:47;19472:131;19598:4;19472:131;:::i;:::-;19464:139;;19191:419;;;:::o;19616:179::-;19756:31;19752:1;19744:6;19740:14;19733:55;19616:179;:::o;19801:366::-;19943:3;19964:67;20028:2;20023:3;19964:67;:::i;:::-;19957:74;;20040:93;20129:3;20040:93;:::i;:::-;20158:2;20153:3;20149:12;20142:19;;19801:366;;;:::o;20173:419::-;20339:4;20377:2;20366:9;20362:18;20354:26;;20426:9;20420:4;20416:20;20412:1;20401:9;20397:17;20390:47;20454:131;20580:4;20454:131;:::i;:::-;20446:139;;20173:419;;;:::o;20598:223::-;20738:34;20734:1;20726:6;20722:14;20715:58;20807:6;20802:2;20794:6;20790:15;20783:31;20598:223;:::o;20827:366::-;20969:3;20990:67;21054:2;21049:3;20990:67;:::i;:::-;20983:74;;21066:93;21155:3;21066:93;:::i;:::-;21184:2;21179:3;21175:12;21168:19;;20827:366;;;:::o;21199:419::-;21365:4;21403:2;21392:9;21388:18;21380:26;;21452:9;21446:4;21442:20;21438:1;21427:9;21423:17;21416:47;21480:131;21606:4;21480:131;:::i;:::-;21472:139;;21199:419;;;:::o;21624:240::-;21764:34;21760:1;21752:6;21748:14;21741:58;21833:23;21828:2;21820:6;21816:15;21809:48;21624:240;:::o;21870:366::-;22012:3;22033:67;22097:2;22092:3;22033:67;:::i;:::-;22026:74;;22109:93;22198:3;22109:93;:::i;:::-;22227:2;22222:3;22218:12;22211:19;;21870:366;;;:::o;22242:419::-;22408:4;22446:2;22435:9;22431:18;22423:26;;22495:9;22489:4;22485:20;22481:1;22470:9;22466:17;22459:47;22523:131;22649:4;22523:131;:::i;:::-;22515:139;;22242:419;;;:::o;22667:239::-;22807:34;22803:1;22795:6;22791:14;22784:58;22876:22;22871:2;22863:6;22859:15;22852:47;22667:239;:::o;22912:366::-;23054:3;23075:67;23139:2;23134:3;23075:67;:::i;:::-;23068:74;;23151:93;23240:3;23151:93;:::i;:::-;23269:2;23264:3;23260:12;23253:19;;22912:366;;;:::o;23284:419::-;23450:4;23488:2;23477:9;23473:18;23465:26;;23537:9;23531:4;23527:20;23523:1;23512:9;23508:17;23501:47;23565:131;23691:4;23565:131;:::i;:::-;23557:139;;23284:419;;;:::o;23709:225::-;23849:34;23845:1;23837:6;23833:14;23826:58;23918:8;23913:2;23905:6;23901:15;23894:33;23709:225;:::o;23940:366::-;24082:3;24103:67;24167:2;24162:3;24103:67;:::i;:::-;24096:74;;24179:93;24268:3;24179:93;:::i;:::-;24297:2;24292:3;24288:12;24281:19;;23940:366;;;:::o;24312:419::-;24478:4;24516:2;24505:9;24501:18;24493:26;;24565:9;24559:4;24555:20;24551:1;24540:9;24536:17;24529:47;24593:131;24719:4;24593:131;:::i;:::-;24585:139;;24312:419;;;:::o;24737:182::-;24877:34;24873:1;24865:6;24861:14;24854:58;24737:182;:::o;24925:366::-;25067:3;25088:67;25152:2;25147:3;25088:67;:::i;:::-;25081:74;;25164:93;25253:3;25164:93;:::i;:::-;25282:2;25277:3;25273:12;25266:19;;24925:366;;;:::o;25297:419::-;25463:4;25501:2;25490:9;25486:18;25478:26;;25550:9;25544:4;25540:20;25536:1;25525:9;25521:17;25514:47;25578:131;25704:4;25578:131;:::i;:::-;25570:139;;25297:419;;;:::o;25722:229::-;25862:34;25858:1;25850:6;25846:14;25839:58;25931:12;25926:2;25918:6;25914:15;25907:37;25722:229;:::o;25957:366::-;26099:3;26120:67;26184:2;26179:3;26120:67;:::i;:::-;26113:74;;26196:93;26285:3;26196:93;:::i;:::-;26314:2;26309:3;26305:12;26298:19;;25957:366;;;:::o;26329:419::-;26495:4;26533:2;26522:9;26518:18;26510:26;;26582:9;26576:4;26572:20;26568:1;26557:9;26553:17;26546:47;26610:131;26736:4;26610:131;:::i;:::-;26602:139;;26329:419;;;:::o;26754:143::-;26811:5;26842:6;26836:13;26827:22;;26858:33;26885:5;26858:33;:::i;:::-;26754:143;;;;:::o;26903:351::-;26973:6;27022:2;27010:9;27001:7;26997:23;26993:32;26990:119;;;27028:79;;:::i;:::-;26990:119;27148:1;27173:64;27229:7;27220:6;27209:9;27205:22;27173:64;:::i;:::-;27163:74;;27119:128;26903:351;;;;:::o;27260:223::-;27400:34;27396:1;27388:6;27384:14;27377:58;27469:6;27464:2;27456:6;27452:15;27445:31;27260:223;:::o;27489:366::-;27631:3;27652:67;27716:2;27711:3;27652:67;:::i;:::-;27645:74;;27728:93;27817:3;27728:93;:::i;:::-;27846:2;27841:3;27837:12;27830:19;;27489:366;;;:::o;27861:419::-;28027:4;28065:2;28054:9;28050:18;28042:26;;28114:9;28108:4;28104:20;28100:1;28089:9;28085:17;28078:47;28142:131;28268:4;28142:131;:::i;:::-;28134:139;;27861:419;;;:::o;28286:221::-;28426:34;28422:1;28414:6;28410:14;28403:58;28495:4;28490:2;28482:6;28478:15;28471:29;28286:221;:::o;28513:366::-;28655:3;28676:67;28740:2;28735:3;28676:67;:::i;:::-;28669:74;;28752:93;28841:3;28752:93;:::i;:::-;28870:2;28865:3;28861:12;28854:19;;28513:366;;;:::o;28885:419::-;29051:4;29089:2;29078:9;29074:18;29066:26;;29138:9;29132:4;29128:20;29124:1;29113:9;29109:17;29102:47;29166:131;29292:4;29166:131;:::i;:::-;29158:139;;28885:419;;;:::o;29310:224::-;29450:34;29446:1;29438:6;29434:14;29427:58;29519:7;29514:2;29506:6;29502:15;29495:32;29310:224;:::o;29540:366::-;29682:3;29703:67;29767:2;29762:3;29703:67;:::i;:::-;29696:74;;29779:93;29868:3;29779:93;:::i;:::-;29897:2;29892:3;29888:12;29881:19;;29540:366;;;:::o;29912:419::-;30078:4;30116:2;30105:9;30101:18;30093:26;;30165:9;30159:4;30155:20;30151:1;30140:9;30136:17;30129:47;30193:131;30319:4;30193:131;:::i;:::-;30185:139;;29912:419;;;:::o;30337:222::-;30477:34;30473:1;30465:6;30461:14;30454:58;30546:5;30541:2;30533:6;30529:15;30522:30;30337:222;:::o;30565:366::-;30707:3;30728:67;30792:2;30787:3;30728:67;:::i;:::-;30721:74;;30804:93;30893:3;30804:93;:::i;:::-;30922:2;30917:3;30913:12;30906:19;;30565:366;;;:::o;30937:419::-;31103:4;31141:2;31130:9;31126:18;31118:26;;31190:9;31184:4;31180:20;31176:1;31165:9;31161:17;31154:47;31218:131;31344:4;31218:131;:::i;:::-;31210:139;;30937:419;;;:::o;31362:172::-;31502:24;31498:1;31490:6;31486:14;31479:48;31362:172;:::o;31540:366::-;31682:3;31703:67;31767:2;31762:3;31703:67;:::i;:::-;31696:74;;31779:93;31868:3;31779:93;:::i;:::-;31897:2;31892:3;31888:12;31881:19;;31540:366;;;:::o;31912:419::-;32078:4;32116:2;32105:9;32101:18;32093:26;;32165:9;32159:4;32155:20;32151:1;32140:9;32136:17;32129:47;32193:131;32319:4;32193:131;:::i;:::-;32185:139;;31912:419;;;:::o;32337:297::-;32477:34;32473:1;32465:6;32461:14;32454:58;32546:34;32541:2;32533:6;32529:15;32522:59;32615:11;32610:2;32602:6;32598:15;32591:36;32337:297;:::o;32640:366::-;32782:3;32803:67;32867:2;32862:3;32803:67;:::i;:::-;32796:74;;32879:93;32968:3;32879:93;:::i;:::-;32997:2;32992:3;32988:12;32981:19;;32640:366;;;:::o;33012:419::-;33178:4;33216:2;33205:9;33201:18;33193:26;;33265:9;33259:4;33255:20;33251:1;33240:9;33236:17;33229:47;33293:131;33419:4;33293:131;:::i;:::-;33285:139;;33012:419;;;:::o;33437:240::-;33577:34;33573:1;33565:6;33561:14;33554:58;33646:23;33641:2;33633:6;33629:15;33622:48;33437:240;:::o;33683:366::-;33825:3;33846:67;33910:2;33905:3;33846:67;:::i;:::-;33839:74;;33922:93;34011:3;33922:93;:::i;:::-;34040:2;34035:3;34031:12;34024:19;;33683:366;;;:::o;34055:419::-;34221:4;34259:2;34248:9;34244:18;34236:26;;34308:9;34302:4;34298:20;34294:1;34283:9;34279:17;34272:47;34336:131;34462:4;34336:131;:::i;:::-;34328:139;;34055:419;;;:::o;34480:169::-;34620:21;34616:1;34608:6;34604:14;34597:45;34480:169;:::o;34655:366::-;34797:3;34818:67;34882:2;34877:3;34818:67;:::i;:::-;34811:74;;34894:93;34983:3;34894:93;:::i;:::-;35012:2;35007:3;35003:12;34996:19;;34655:366;;;:::o;35027:419::-;35193:4;35231:2;35220:9;35216:18;35208:26;;35280:9;35274:4;35270:20;35266:1;35255:9;35251:17;35244:47;35308:131;35434:4;35308:131;:::i;:::-;35300:139;;35027:419;;;:::o;35452:241::-;35592:34;35588:1;35580:6;35576:14;35569:58;35661:24;35656:2;35648:6;35644:15;35637:49;35452:241;:::o;35699:366::-;35841:3;35862:67;35926:2;35921:3;35862:67;:::i;:::-;35855:74;;35938:93;36027:3;35938:93;:::i;:::-;36056:2;36051:3;36047:12;36040:19;;35699:366;;;:::o;36071:419::-;36237:4;36275:2;36264:9;36260:18;36252:26;;36324:9;36318:4;36314:20;36310:1;36299:9;36295:17;36288:47;36352:131;36478:4;36352:131;:::i;:::-;36344:139;;36071:419;;;:::o;36496:191::-;36536:4;36556:20;36574:1;36556:20;:::i;:::-;36551:25;;36590:20;36608:1;36590:20;:::i;:::-;36585:25;;36629:1;36626;36623:8;36620:34;;;36634:18;;:::i;:::-;36620:34;36679:1;36676;36672:9;36664:17;;36496:191;;;;:::o;36693:147::-;36794:11;36831:3;36816:18;;36693:147;;;;:::o;36846:114::-;;:::o;36966:398::-;37125:3;37146:83;37227:1;37222:3;37146:83;:::i;:::-;37139:90;;37238:93;37327:3;37238:93;:::i;:::-;37356:1;37351:3;37347:11;37340:18;;36966:398;;;:::o;37370:379::-;37554:3;37576:147;37719:3;37576:147;:::i;:::-;37569:154;;37740:3;37733:10;;37370:379;;;:::o;37755:442::-;37904:4;37942:2;37931:9;37927:18;37919:26;;37955:71;38023:1;38012:9;38008:17;37999:6;37955:71;:::i;:::-;38036:72;38104:2;38093:9;38089:18;38080:6;38036:72;:::i;:::-;38118;38186:2;38175:9;38171:18;38162:6;38118:72;:::i;:::-;37755:442;;;;;;:::o;38203:225::-;38343:34;38339:1;38331:6;38327:14;38320:58;38412:8;38407:2;38399:6;38395:15;38388:33;38203:225;:::o;38434:366::-;38576:3;38597:67;38661:2;38656:3;38597:67;:::i;:::-;38590:74;;38673:93;38762:3;38673:93;:::i;:::-;38791:2;38786:3;38782:12;38775:19;;38434:366;;;:::o;38806:419::-;38972:4;39010:2;38999:9;38995:18;38987:26;;39059:9;39053:4;39049:20;39045:1;39034:9;39030:17;39023:47;39087:131;39213:4;39087:131;:::i;:::-;39079:139;;38806:419;;;:::o;39231:180::-;39279:77;39276:1;39269:88;39376:4;39373:1;39366:15;39400:4;39397:1;39390:15;39417:180;39465:77;39462:1;39455:88;39562:4;39559:1;39552:15;39586:4;39583:1;39576:15;39603:143;39660:5;39691:6;39685:13;39676:22;;39707:33;39734:5;39707:33;:::i;:::-;39603:143;;;;:::o;39752:351::-;39822:6;39871:2;39859:9;39850:7;39846:23;39842:32;39839:119;;;39877:79;;:::i;:::-;39839:119;39997:1;40022:64;40078:7;40069:6;40058:9;40054:22;40022:64;:::i;:::-;40012:74;;39968:128;39752:351;;;;:::o;40109:85::-;40154:7;40183:5;40172:16;;40109:85;;;:::o;40200:158::-;40258:9;40291:61;40309:42;40318:32;40344:5;40318:32;:::i;:::-;40309:42;:::i;:::-;40291:61;:::i;:::-;40278:74;;40200:158;;;:::o;40364:147::-;40459:45;40498:5;40459:45;:::i;:::-;40454:3;40447:58;40364:147;;:::o;40517:114::-;40584:6;40618:5;40612:12;40602:22;;40517:114;;;:::o;40637:184::-;40736:11;40770:6;40765:3;40758:19;40810:4;40805:3;40801:14;40786:29;;40637:184;;;;:::o;40827:132::-;40894:4;40917:3;40909:11;;40947:4;40942:3;40938:14;40930:22;;40827:132;;;:::o;40965:108::-;41042:24;41060:5;41042:24;:::i;:::-;41037:3;41030:37;40965:108;;:::o;41079:179::-;41148:10;41169:46;41211:3;41203:6;41169:46;:::i;:::-;41247:4;41242:3;41238:14;41224:28;;41079:179;;;;:::o;41264:113::-;41334:4;41366;41361:3;41357:14;41349:22;;41264:113;;;:::o;41413:732::-;41532:3;41561:54;41609:5;41561:54;:::i;:::-;41631:86;41710:6;41705:3;41631:86;:::i;:::-;41624:93;;41741:56;41791:5;41741:56;:::i;:::-;41820:7;41851:1;41836:284;41861:6;41858:1;41855:13;41836:284;;;41937:6;41931:13;41964:63;42023:3;42008:13;41964:63;:::i;:::-;41957:70;;42050:60;42103:6;42050:60;:::i;:::-;42040:70;;41896:224;41883:1;41880;41876:9;41871:14;;41836:284;;;41840:14;42136:3;42129:10;;41537:608;;;41413:732;;;;:::o;42151:831::-;42414:4;42452:3;42441:9;42437:19;42429:27;;42466:71;42534:1;42523:9;42519:17;42510:6;42466:71;:::i;:::-;42547:80;42623:2;42612:9;42608:18;42599:6;42547:80;:::i;:::-;42674:9;42668:4;42664:20;42659:2;42648:9;42644:18;42637:48;42702:108;42805:4;42796:6;42702:108;:::i;:::-;42694:116;;42820:72;42888:2;42877:9;42873:18;42864:6;42820:72;:::i;:::-;42902:73;42970:3;42959:9;42955:19;42946:6;42902:73;:::i;:::-;42151:831;;;;;;;;:::o;42988:807::-;43237:4;43275:3;43264:9;43260:19;43252:27;;43289:71;43357:1;43346:9;43342:17;43333:6;43289:71;:::i;:::-;43370:72;43438:2;43427:9;43423:18;43414:6;43370:72;:::i;:::-;43452:80;43528:2;43517:9;43513:18;43504:6;43452:80;:::i;:::-;43542;43618:2;43607:9;43603:18;43594:6;43542:80;:::i;:::-;43632:73;43700:3;43689:9;43685:19;43676:6;43632:73;:::i;:::-;43715;43783:3;43772:9;43768:19;43759:6;43715:73;:::i;:::-;42988:807;;;;;;;;;:::o;43801:663::-;43889:6;43897;43905;43954:2;43942:9;43933:7;43929:23;43925:32;43922:119;;;43960:79;;:::i;:::-;43922:119;44080:1;44105:64;44161:7;44152:6;44141:9;44137:22;44105:64;:::i;:::-;44095:74;;44051:128;44218:2;44244:64;44300:7;44291:6;44280:9;44276:22;44244:64;:::i;:::-;44234:74;;44189:129;44357:2;44383:64;44439:7;44430:6;44419:9;44415:22;44383:64;:::i;:::-;44373:74;;44328:129;43801:663;;;;;:::o

Swarm Source

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