ETH Price: $3,269.66 (-4.13%)
Gas: 8 Gwei

Token

OldPitbull (OP)
 

Overview

Max Total Supply

1,000,000,000 OP

Holders

32

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
8,673,166 OP

Value
$0.00
0xEA035365ddC9E5Db8B22AB1Cf7d618DDE39dca1a
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:
OldPitbull

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-04
*/

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


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

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

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

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

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

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

contract OldPitbull 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 devWallet;

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

    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 = false;

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

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

    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

    // exclude 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 devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("OldPitbull", "OP") {
        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 _buyLiquidityFee = 1;
        uint256 _buyMarketingFee = 1;

        uint256 _sellLiquidityFee = 1;
        uint256 _sellMarketingFee = 1;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 300_000_000 * 1e18; // 1,5% from total supply
        maxWallet = 530_000_000 * 1e18; // 3% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 4) / 100; // 0.4% swap wallet

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

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

        devWallet = address(0xA76b6296bb3b0DeA49D62Cc1845Bb6105edD2880); // set as dev wallet

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

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

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

    receive() external payable {}

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

    // 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() * 8) / 1000,
            "Swap amount cannot be higher than 0.8% 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 _liquidityFee,
        uint256 _MarketingFee
    ) external onlyOwner {
        buyLiquidityFee = _liquidityFee;
        buyMarketingFee = _MarketingFee;
        buyTotalFees = buyLiquidityFee + buyMarketingFee;
        require(buyTotalFees <= 15, "Must keep fees at 15% or less");
    }

    function updateSellFees(
        uint256 _liquidityFee,
        uint256 _MarketingFee
    ) external onlyOwner {
        sellLiquidityFee = _liquidityFee;
        sellMarketingFee = _MarketingFee;
        sellTotalFees = sellLiquidityFee + sellMarketingFee;
        require(sellTotalFees <= 99, "Must keep fees at 15% 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 updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

    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] + 1 <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per two blocks 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;
        }

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            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 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForDev;

        tokensForLiquidity = 0;
        tokensForDev = 0;

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

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

    function withdraw() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        require(_token != address(this), "Can't withdraw native tokens");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

}

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":"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"},{"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":"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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"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":"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":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_MarketingFee","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":"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":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_MarketingFee","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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055506000600c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600a81526020017f4f6c6450697462756c6c000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4f5000000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000a94565b5080600490805190602001906200011b92919062000a94565b5050506200013e620001326200055460201b60201c565b6200055c60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a8160016200062260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001e557600080fd5b505afa158015620001fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000220919062000bae565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200028357600080fd5b505afa15801562000298573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002be919062000bae565b6040518363ffffffff1660e01b8152600401620002dd92919062000bf1565b602060405180830381600087803b158015620002f857600080fd5b505af11580156200030d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000333919062000bae565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037b60a05160016200062260201b60201c565b6200039060a05160016200070c60201b60201c565b60006001905060006001905060006001905060006001905060006b033b2e3c9fd0803ce800000090506af8277896582678ac0000006007819055506b01b667dd922443f7520000006009819055506064600482620003ef919062000c57565b620003fb919062000ce7565b60088190555084600e8190555083600f81905550600f54600e5462000421919062000d1f565b600d81905550826011819055508160128190555060125460115462000447919062000d1f565b60108190555073a76b6296bb3b0dea49d62cc1845bb6105edd2880600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004c4620004b6620007ad60201b60201c565b6001620007d760201b60201c565b620004d7306001620007d760201b60201c565b620004ec61dead6001620007d760201b60201c565b6200050e62000500620007ad60201b60201c565b60016200062260201b60201c565b620005213060016200062260201b60201c565b6200053661dead60016200062260201b60201c565b6200054833826200091160201b60201c565b50505050505062000f3e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006326200055460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000658620007ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006a89062000ddd565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007e76200055460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200080d620007ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000866576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200085d9062000ddd565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000905919062000e1c565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000984576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200097b9062000e89565b60405180910390fd5b620009986000838362000a8a60201b60201c565b8060026000828254620009ac919062000d1f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a03919062000d1f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a6a919062000ebc565b60405180910390a362000a866000838362000a8f60201b60201c565b5050565b505050565b505050565b82805462000aa29062000f08565b90600052602060002090601f01602090048101928262000ac6576000855562000b12565b82601f1062000ae157805160ff191683800117855562000b12565b8280016001018555821562000b12579182015b8281111562000b1157825182559160200191906001019062000af4565b5b50905062000b21919062000b25565b5090565b5b8082111562000b4057600081600090555060010162000b26565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b768262000b49565b9050919050565b62000b888162000b69565b811462000b9457600080fd5b50565b60008151905062000ba88162000b7d565b92915050565b60006020828403121562000bc75762000bc662000b44565b5b600062000bd78482850162000b97565b91505092915050565b62000beb8162000b69565b82525050565b600060408201905062000c08600083018562000be0565b62000c17602083018462000be0565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c648262000c1e565b915062000c718362000c1e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cad5762000cac62000c28565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000cf48262000c1e565b915062000d018362000c1e565b92508262000d145762000d1362000cb8565b5b828204905092915050565b600062000d2c8262000c1e565b915062000d398362000c1e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d715762000d7062000c28565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000dc560208362000d7c565b915062000dd28262000d8d565b602082019050919050565b6000602082019050818103600083015262000df88162000db6565b9050919050565b60008115159050919050565b62000e168162000dff565b82525050565b600060208201905062000e33600083018462000e0b565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e71601f8362000d7c565b915062000e7e8262000e39565b602082019050919050565b6000602082019050818103600083015262000ea48162000e62565b9050919050565b62000eb68162000c1e565b82525050565b600060208201905062000ed3600083018462000eab565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f2157607f821691505b6020821081141562000f385762000f3762000ed9565b5b50919050565b60805160a05161525b62000f9c6000396000818161164301528181611cd10152612a18015260008181610db5015281816129c00152818161398001528181613a7001528181613a9701528181613b330152613b5a015261525b6000f3fe6080604052600436106102e85760003560e01c80637bce5a0411610190578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b4f578063f2fde38b14610b7a578063f637434214610ba3578063f8b45b0514610bce576102ef565b8063dd62ed3e14610abc578063e2f4560514610af9578063e884f26014610b24576102ef565b8063c0246668146109ac578063c18bc195146109d5578063c876d0b9146109fe578063c8c8ebe414610a29578063d257b34f14610a54578063d85ba06314610a91576102ef565b806395d89b4111610149578063a457c2d711610123578063a457c2d7146108ca578063a9059cbb14610907578063b62496f514610944578063bbc0c74214610981576102ef565b806395d89b411461084b5780639a7a23d6146108765780639fccce321461089f576102ef565b80637bce5a041461075f5780638a8c523c1461078a5780638da5cb5b146107a15780638ea5220f146107cc57806392136913146107f7578063924de9b714610822576102ef565b8063395093511161024f57806366ca9b831161020857806370a08231116101e257806370a08231146106b7578063715018a6146106f4578063751039fc1461070b5780637571336a14610736576102ef565b806366ca9b83146106385780636a486a8e146106615780636ddd17131461068c576102ef565b806339509351146105285780633aeac4e1146105655780633ccfd60b1461058e57806349bd5a5e146105a55780634a62bb65146105d05780634fbee193146105fb576102ef565b80631816467f116102a15780631816467f146104185780631a8145bb14610441578063203e727e1461046c57806323b872dd1461049557806327c8f835146104d2578063313ce567146104fd576102ef565b806302dbd8f8146102f457806306fdde031461031d578063095ea7b31461034857806310d5de53146103855780631694505e146103c257806318160ddd146103ed576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b5061031b60048036038101906103169190613c58565b610bf9565b005b34801561032957600080fd5b50610332610ce3565b60405161033f9190613d31565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190613db1565b610d75565b60405161037c9190613e0c565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190613e27565b610d93565b6040516103b99190613e0c565b60405180910390f35b3480156103ce57600080fd5b506103d7610db3565b6040516103e49190613eb3565b60405180910390f35b3480156103f957600080fd5b50610402610dd7565b60405161040f9190613edd565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190613e27565b610de1565b005b34801561044d57600080fd5b50610456610f1d565b6040516104639190613edd565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613ef8565b610f23565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613f25565b611032565b6040516104c99190613e0c565b60405180910390f35b3480156104de57600080fd5b506104e761112a565b6040516104f49190613f87565b60405180910390f35b34801561050957600080fd5b50610512611130565b60405161051f9190613fbe565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190613db1565b611139565b60405161055c9190613e0c565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190613fd9565b6111e5565b005b34801561059a57600080fd5b506105a3611460565b005b3480156105b157600080fd5b506105ba611641565b6040516105c79190613f87565b60405180910390f35b3480156105dc57600080fd5b506105e5611665565b6040516105f29190613e0c565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190613e27565b611678565b60405161062f9190613e0c565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a9190613c58565b6116ce565b005b34801561066d57600080fd5b506106766117b8565b6040516106839190613edd565b60405180910390f35b34801561069857600080fd5b506106a16117be565b6040516106ae9190613e0c565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d99190613e27565b6117d1565b6040516106eb9190613edd565b60405180910390f35b34801561070057600080fd5b50610709611819565b005b34801561071757600080fd5b506107206118a1565b60405161072d9190613e0c565b60405180910390f35b34801561074257600080fd5b5061075d60048036038101906107589190614045565b611941565b005b34801561076b57600080fd5b50610774611a18565b6040516107819190613edd565b60405180910390f35b34801561079657600080fd5b5061079f611a1e565b005b3480156107ad57600080fd5b506107b6611ad2565b6040516107c39190613f87565b60405180910390f35b3480156107d857600080fd5b506107e1611afc565b6040516107ee9190613f87565b60405180910390f35b34801561080357600080fd5b5061080c611b22565b6040516108199190613edd565b60405180910390f35b34801561082e57600080fd5b5061084960048036038101906108449190614085565b611b28565b005b34801561085757600080fd5b50610860611bc1565b60405161086d9190613d31565b60405180910390f35b34801561088257600080fd5b5061089d60048036038101906108989190614045565b611c53565b005b3480156108ab57600080fd5b506108b4611d6c565b6040516108c19190613edd565b60405180910390f35b3480156108d657600080fd5b506108f160048036038101906108ec9190613db1565b611d72565b6040516108fe9190613e0c565b60405180910390f35b34801561091357600080fd5b5061092e60048036038101906109299190613db1565b611e5d565b60405161093b9190613e0c565b60405180910390f35b34801561095057600080fd5b5061096b60048036038101906109669190613e27565b611e7b565b6040516109789190613e0c565b60405180910390f35b34801561098d57600080fd5b50610996611e9b565b6040516109a39190613e0c565b60405180910390f35b3480156109b857600080fd5b506109d360048036038101906109ce9190614045565b611eae565b005b3480156109e157600080fd5b506109fc60048036038101906109f79190613ef8565b611fd3565b005b348015610a0a57600080fd5b50610a136120e2565b604051610a209190613e0c565b60405180910390f35b348015610a3557600080fd5b50610a3e6120f5565b604051610a4b9190613edd565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613ef8565b6120fb565b604051610a889190613e0c565b60405180910390f35b348015610a9d57600080fd5b50610aa6612250565b604051610ab39190613edd565b60405180910390f35b348015610ac857600080fd5b50610ae36004803603810190610ade9190613fd9565b612256565b604051610af09190613edd565b60405180910390f35b348015610b0557600080fd5b50610b0e6122dd565b604051610b1b9190613edd565b60405180910390f35b348015610b3057600080fd5b50610b396122e3565b604051610b469190613e0c565b60405180910390f35b348015610b5b57600080fd5b50610b64612383565b604051610b719190613edd565b60405180910390f35b348015610b8657600080fd5b50610ba16004803603810190610b9c9190613e27565b612389565b005b348015610baf57600080fd5b50610bb8612481565b604051610bc59190613edd565b60405180910390f35b348015610bda57600080fd5b50610be3612487565b604051610bf09190613edd565b60405180910390f35b610c0161248d565b73ffffffffffffffffffffffffffffffffffffffff16610c1f611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c906140fe565b60405180910390fd5b8160118190555080601281905550601254601154610c93919061414d565b60108190555060636010541115610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd6906141ef565b60405180910390fd5b5050565b606060038054610cf29061423e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1e9061423e565b8015610d6b5780601f10610d4057610100808354040283529160200191610d6b565b820191906000526020600020905b815481529060010190602001808311610d4e57829003601f168201915b5050505050905090565b6000610d89610d8261248d565b8484612495565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610de961248d565b73ffffffffffffffffffffffffffffffffffffffff16610e07611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e54906140fe565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610f2b61248d565b73ffffffffffffffffffffffffffffffffffffffff16610f49611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f96906140fe565b60405180910390fd5b670de0b6b3a76400006103e86001610fb5610dd7565b610fbf9190614270565b610fc991906142f9565b610fd391906142f9565b811015611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c9061439c565b60405180910390fd5b670de0b6b3a7640000816110299190614270565b60078190555050565b600061103f848484612660565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061108a61248d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561110a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111019061442e565b60405180910390fd5b61111e8561111661248d565b858403612495565b60019150509392505050565b61dead81565b60006012905090565b60006111db61114661248d565b84846001600061115461248d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111d6919061414d565b612495565b6001905092915050565b6111ed61248d565b73ffffffffffffffffffffffffffffffffffffffff1661120b611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611258906140fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c89061449a565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133790614506565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161137b9190613f87565b60206040518083038186803b15801561139357600080fd5b505afa1580156113a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113cb919061453b565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611408929190614568565b602060405180830381600087803b15801561142257600080fd5b505af1158015611436573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145a91906145a6565b50505050565b61146861248d565b73ffffffffffffffffffffffffffffffffffffffff16611486611ad2565b73ffffffffffffffffffffffffffffffffffffffff16146114dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d3906140fe565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016115179190613f87565b60206040518083038186803b15801561152f57600080fd5b505afa158015611543573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611567919061453b565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016115a4929190614568565b602060405180830381600087803b1580156115be57600080fd5b505af11580156115d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f691906145a6565b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561163d573d6000803e3d6000fd5b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60009054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6116d661248d565b73ffffffffffffffffffffffffffffffffffffffff166116f4611ad2565b73ffffffffffffffffffffffffffffffffffffffff161461174a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611741906140fe565b60405180910390fd5b81600e8190555080600f81905550600f54600e54611768919061414d565b600d81905550600f600d5411156117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab906141ef565b60405180910390fd5b5050565b60105481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61182161248d565b73ffffffffffffffffffffffffffffffffffffffff1661183f611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c906140fe565b60405180910390fd5b61189f60006132a0565b565b60006118ab61248d565b73ffffffffffffffffffffffffffffffffffffffff166118c9611ad2565b73ffffffffffffffffffffffffffffffffffffffff161461191f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611916906140fe565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b61194961248d565b73ffffffffffffffffffffffffffffffffffffffff16611967611ad2565b73ffffffffffffffffffffffffffffffffffffffff16146119bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b4906140fe565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600f5481565b611a2661248d565b73ffffffffffffffffffffffffffffffffffffffff16611a44611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a91906140fe565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b611b3061248d565b73ffffffffffffffffffffffffffffffffffffffff16611b4e611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9b906140fe565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b606060048054611bd09061423e565b80601f0160208091040260200160405190810160405280929190818152602001828054611bfc9061423e565b8015611c495780601f10611c1e57610100808354040283529160200191611c49565b820191906000526020600020905b815481529060010190602001808311611c2c57829003601f168201915b5050505050905090565b611c5b61248d565b73ffffffffffffffffffffffffffffffffffffffff16611c79611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc6906140fe565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5590614645565b60405180910390fd5b611d688282613366565b5050565b60145481565b60008060016000611d8161248d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e35906146d7565b60405180910390fd5b611e52611e4961248d565b85858403612495565b600191505092915050565b6000611e71611e6a61248d565b8484612660565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611eb661248d565b73ffffffffffffffffffffffffffffffffffffffff16611ed4611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f21906140fe565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fc79190613e0c565b60405180910390a25050565b611fdb61248d565b73ffffffffffffffffffffffffffffffffffffffff16611ff9611ad2565b73ffffffffffffffffffffffffffffffffffffffff161461204f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612046906140fe565b60405180910390fd5b670de0b6b3a76400006103e86005612065610dd7565b61206f9190614270565b61207991906142f9565b61208391906142f9565b8110156120c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bc90614769565b60405180910390fd5b670de0b6b3a7640000816120d99190614270565b60098190555050565b600c60009054906101000a900460ff1681565b60075481565b600061210561248d565b73ffffffffffffffffffffffffffffffffffffffff16612123611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614612179576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612170906140fe565b60405180910390fd5b620186a06001612187610dd7565b6121919190614270565b61219b91906142f9565b8210156121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d4906147fb565b60405180910390fd5b6103e860086121ea610dd7565b6121f49190614270565b6121fe91906142f9565b821115612240576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122379061488d565b60405180910390fd5b8160088190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b60006122ed61248d565b73ffffffffffffffffffffffffffffffffffffffff1661230b611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614612361576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612358906140fe565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600e5481565b61239161248d565b73ffffffffffffffffffffffffffffffffffffffff166123af611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc906140fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246c9061491f565b60405180910390fd5b61247e816132a0565b50565b60115481565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fc906149b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256c90614a43565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126539190613edd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c790614ad5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273790614b67565b60405180910390fd5b600081141561275a5761275583836000613407565b61329b565b600a60009054906101000a900460ff1615612e2957612777611ad2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127e557506127b5611ad2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561281e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612858575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128715750600560149054906101000a900460ff16155b15612e2857600a60019054906101000a900460ff1661296b57601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061292b5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61296a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296190614bd3565b60405180910390fd5b5b600c60009054906101000a900460ff1615612b3f57612988611ad2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612a0f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a6757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612b3e57436001600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ab9919061414d565b10612af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af090614c8b565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612be25750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c8957600754811115612c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2390614d1d565b60405180910390fd5b600954612c38836117d1565b82612c43919061414d565b1115612c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7b90614d89565b60405180910390fd5b612e27565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d2c5750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d7b57600754811115612d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6d90614e1b565b60405180910390fd5b612e26565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612e2557600954612dd8836117d1565b82612de3919061414d565b1115612e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1b90614d89565b60405180910390fd5b5b5b5b5b5b6000612e34306117d1565b905060006008548210159050808015612e595750600a60029054906101000a900460ff165b8015612e725750600560149054906101000a900460ff16155b8015612ec85750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f1e5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f745750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fb8576001600560146101000a81548160ff021916908315150217905550612f9c613688565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061306e5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561307857600090505b6000811561328b57601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130db57506000601054115b156131755761310860646130fa6010548861389590919063ffffffff16565b6138ab90919063ffffffff16565b90506010546011548261311b9190614270565b61312591906142f9565b60136000828254613136919061414d565b925050819055506010546012548261314e9190614270565b61315891906142f9565b60146000828254613169919061414d565b92505081905550613267565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131d057506000600d54115b15613266576131fd60646131ef600d548861389590919063ffffffff16565b6138ab90919063ffffffff16565b9050600d54600e54826132109190614270565b61321a91906142f9565b6013600082825461322b919061414d565b92505081905550600d54600f54826132439190614270565b61324d91906142f9565b6014600082825461325e919061414d565b925050819055505b5b600081111561327c5761327b873083613407565b5b80856132889190614e3b565b94505b613296878787613407565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346e90614ad5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134de90614b67565b60405180910390fd5b6134f28383836138c1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161356f90614ee1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461360b919061414d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161366f9190613edd565b60405180910390a36136828484846138c6565b50505050565b6000613693306117d1565b905060006014546013546136a7919061414d565b90506000808314806136b95750600082145b156136c657505050613893565b60146008546136d59190614270565b8311156136ee5760146008546136eb9190614270565b92505b6000600283601354866137019190614270565b61370b91906142f9565b61371591906142f9565b9050600061372c82866138cb90919063ffffffff16565b9050600047905061373c826138e1565b600061375182476138cb90919063ffffffff16565b9050600061377c8761376e6014548561389590919063ffffffff16565b6138ab90919063ffffffff16565b90506000818361378c9190614e3b565b905060006013819055506000601481905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516137e490614f32565b60006040518083038185875af1925050503d8060008114613821576040519150601f19603f3d011682016040523d82523d6000602084013e613826565b606091505b50508097505060008611801561383c5750600081115b156138895761384b8682613b2d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260135460405161388093929190614f47565b60405180910390a15b5050505050505050505b565b600081836138a39190614270565b905092915050565b600081836138b991906142f9565b905092915050565b505050565b505050565b600081836138d99190614e3b565b905092915050565b6000600267ffffffffffffffff8111156138fe576138fd614f7e565b5b60405190808252806020026020018201604052801561392c5781602001602082028036833780820191505090505b509050308160008151811061394457613943614fad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156139e457600080fd5b505afa1580156139f8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a1c9190614ff1565b81600181518110613a3057613a2f614fad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613a95307f000000000000000000000000000000000000000000000000000000000000000084612495565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613af7959493929190615117565b600060405180830381600087803b158015613b1157600080fd5b505af1158015613b25573d6000803e3d6000fd5b505050505050565b613b58307f000000000000000000000000000000000000000000000000000000000000000084612495565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613ba2611ad2565b426040518863ffffffff1660e01b8152600401613bc496959493929190615171565b6060604051808303818588803b158015613bdd57600080fd5b505af1158015613bf1573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613c1691906151d2565b5050505050565b600080fd5b6000819050919050565b613c3581613c22565b8114613c4057600080fd5b50565b600081359050613c5281613c2c565b92915050565b60008060408385031215613c6f57613c6e613c1d565b5b6000613c7d85828601613c43565b9250506020613c8e85828601613c43565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cd2578082015181840152602081019050613cb7565b83811115613ce1576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d0382613c98565b613d0d8185613ca3565b9350613d1d818560208601613cb4565b613d2681613ce7565b840191505092915050565b60006020820190508181036000830152613d4b8184613cf8565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d7e82613d53565b9050919050565b613d8e81613d73565b8114613d9957600080fd5b50565b600081359050613dab81613d85565b92915050565b60008060408385031215613dc857613dc7613c1d565b5b6000613dd685828601613d9c565b9250506020613de785828601613c43565b9150509250929050565b60008115159050919050565b613e0681613df1565b82525050565b6000602082019050613e216000830184613dfd565b92915050565b600060208284031215613e3d57613e3c613c1d565b5b6000613e4b84828501613d9c565b91505092915050565b6000819050919050565b6000613e79613e74613e6f84613d53565b613e54565b613d53565b9050919050565b6000613e8b82613e5e565b9050919050565b6000613e9d82613e80565b9050919050565b613ead81613e92565b82525050565b6000602082019050613ec86000830184613ea4565b92915050565b613ed781613c22565b82525050565b6000602082019050613ef26000830184613ece565b92915050565b600060208284031215613f0e57613f0d613c1d565b5b6000613f1c84828501613c43565b91505092915050565b600080600060608486031215613f3e57613f3d613c1d565b5b6000613f4c86828701613d9c565b9350506020613f5d86828701613d9c565b9250506040613f6e86828701613c43565b9150509250925092565b613f8181613d73565b82525050565b6000602082019050613f9c6000830184613f78565b92915050565b600060ff82169050919050565b613fb881613fa2565b82525050565b6000602082019050613fd36000830184613faf565b92915050565b60008060408385031215613ff057613fef613c1d565b5b6000613ffe85828601613d9c565b925050602061400f85828601613d9c565b9150509250929050565b61402281613df1565b811461402d57600080fd5b50565b60008135905061403f81614019565b92915050565b6000806040838503121561405c5761405b613c1d565b5b600061406a85828601613d9c565b925050602061407b85828601614030565b9150509250929050565b60006020828403121561409b5761409a613c1d565b5b60006140a984828501614030565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140e8602083613ca3565b91506140f3826140b2565b602082019050919050565b60006020820190508181036000830152614117816140db565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061415882613c22565b915061416383613c22565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141985761419761411e565b5b828201905092915050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b60006141d9601d83613ca3565b91506141e4826141a3565b602082019050919050565b60006020820190508181036000830152614208816141cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061425657607f821691505b6020821081141561426a5761426961420f565b5b50919050565b600061427b82613c22565b915061428683613c22565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142bf576142be61411e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061430482613c22565b915061430f83613c22565b92508261431f5761431e6142ca565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614386602f83613ca3565b91506143918261432a565b604082019050919050565b600060208201905081810360008301526143b581614379565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614418602883613ca3565b9150614423826143bc565b604082019050919050565b600060208201905081810360008301526144478161440b565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b6000614484601a83613ca3565b915061448f8261444e565b602082019050919050565b600060208201905081810360008301526144b381614477565b9050919050565b7f43616e2774207769746864726177206e617469766520746f6b656e7300000000600082015250565b60006144f0601c83613ca3565b91506144fb826144ba565b602082019050919050565b6000602082019050818103600083015261451f816144e3565b9050919050565b60008151905061453581613c2c565b92915050565b60006020828403121561455157614550613c1d565b5b600061455f84828501614526565b91505092915050565b600060408201905061457d6000830185613f78565b61458a6020830184613ece565b9392505050565b6000815190506145a081614019565b92915050565b6000602082840312156145bc576145bb613c1d565b5b60006145ca84828501614591565b91505092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061462f603983613ca3565b915061463a826145d3565b604082019050919050565b6000602082019050818103600083015261465e81614622565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006146c1602583613ca3565b91506146cc82614665565b604082019050919050565b600060208201905081810360008301526146f0816146b4565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614753602483613ca3565b915061475e826146f7565b604082019050919050565b6000602082019050818103600083015261478281614746565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006147e5603583613ca3565b91506147f082614789565b604082019050919050565b60006020820190508181036000830152614814816147d8565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e382520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614877603483613ca3565b91506148828261481b565b604082019050919050565b600060208201905081810360008301526148a68161486a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614909602683613ca3565b9150614914826148ad565b604082019050919050565b60006020820190508181036000830152614938816148fc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061499b602483613ca3565b91506149a68261493f565b604082019050919050565b600060208201905081810360008301526149ca8161498e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a2d602283613ca3565b9150614a38826149d1565b604082019050919050565b60006020820190508181036000830152614a5c81614a20565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614abf602583613ca3565b9150614aca82614a63565b604082019050919050565b60006020820190508181036000830152614aee81614ab2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b51602383613ca3565b9150614b5c82614af5565b604082019050919050565b60006020820190508181036000830152614b8081614b44565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614bbd601683613ca3565b9150614bc882614b87565b602082019050919050565b60006020820190508181036000830152614bec81614bb0565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e65207075726368617365207065722074776f206260208201527f6c6f636b7320616c6c6f7765642e000000000000000000000000000000000000604082015250565b6000614c75604e83613ca3565b9150614c8082614bf3565b606082019050919050565b60006020820190508181036000830152614ca481614c68565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614d07603583613ca3565b9150614d1282614cab565b604082019050919050565b60006020820190508181036000830152614d3681614cfa565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614d73601383613ca3565b9150614d7e82614d3d565b602082019050919050565b60006020820190508181036000830152614da281614d66565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614e05603683613ca3565b9150614e1082614da9565b604082019050919050565b60006020820190508181036000830152614e3481614df8565b9050919050565b6000614e4682613c22565b9150614e5183613c22565b925082821015614e6457614e6361411e565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614ecb602683613ca3565b9150614ed682614e6f565b604082019050919050565b60006020820190508181036000830152614efa81614ebe565b9050919050565b600081905092915050565b50565b6000614f1c600083614f01565b9150614f2782614f0c565b600082019050919050565b6000614f3d82614f0f565b9150819050919050565b6000606082019050614f5c6000830186613ece565b614f696020830185613ece565b614f766040830184613ece565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614feb81613d85565b92915050565b60006020828403121561500757615006613c1d565b5b600061501584828501614fdc565b91505092915050565b6000819050919050565b600061504361503e6150398461501e565b613e54565b613c22565b9050919050565b61505381615028565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61508e81613d73565b82525050565b60006150a08383615085565b60208301905092915050565b6000602082019050919050565b60006150c482615059565b6150ce8185615064565b93506150d983615075565b8060005b8381101561510a5781516150f18882615094565b97506150fc836150ac565b9250506001810190506150dd565b5085935050505092915050565b600060a08201905061512c6000830188613ece565b615139602083018761504a565b818103604083015261514b81866150b9565b905061515a6060830185613f78565b6151676080830184613ece565b9695505050505050565b600060c0820190506151866000830189613f78565b6151936020830188613ece565b6151a0604083018761504a565b6151ad606083018661504a565b6151ba6080830185613f78565b6151c760a0830184613ece565b979650505050505050565b6000806000606084860312156151eb576151ea613c1d565b5b60006151f986828701614526565b935050602061520a86828701614526565b925050604061521b86828701614526565b915050925092509256fea26469706673582212204662f142022f2bb061ff8d1115c19ee82072a15ff7a0d91129aad6cd43fcb05264736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102e85760003560e01c80637bce5a0411610190578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b4f578063f2fde38b14610b7a578063f637434214610ba3578063f8b45b0514610bce576102ef565b8063dd62ed3e14610abc578063e2f4560514610af9578063e884f26014610b24576102ef565b8063c0246668146109ac578063c18bc195146109d5578063c876d0b9146109fe578063c8c8ebe414610a29578063d257b34f14610a54578063d85ba06314610a91576102ef565b806395d89b4111610149578063a457c2d711610123578063a457c2d7146108ca578063a9059cbb14610907578063b62496f514610944578063bbc0c74214610981576102ef565b806395d89b411461084b5780639a7a23d6146108765780639fccce321461089f576102ef565b80637bce5a041461075f5780638a8c523c1461078a5780638da5cb5b146107a15780638ea5220f146107cc57806392136913146107f7578063924de9b714610822576102ef565b8063395093511161024f57806366ca9b831161020857806370a08231116101e257806370a08231146106b7578063715018a6146106f4578063751039fc1461070b5780637571336a14610736576102ef565b806366ca9b83146106385780636a486a8e146106615780636ddd17131461068c576102ef565b806339509351146105285780633aeac4e1146105655780633ccfd60b1461058e57806349bd5a5e146105a55780634a62bb65146105d05780634fbee193146105fb576102ef565b80631816467f116102a15780631816467f146104185780631a8145bb14610441578063203e727e1461046c57806323b872dd1461049557806327c8f835146104d2578063313ce567146104fd576102ef565b806302dbd8f8146102f457806306fdde031461031d578063095ea7b31461034857806310d5de53146103855780631694505e146103c257806318160ddd146103ed576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b5061031b60048036038101906103169190613c58565b610bf9565b005b34801561032957600080fd5b50610332610ce3565b60405161033f9190613d31565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190613db1565b610d75565b60405161037c9190613e0c565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190613e27565b610d93565b6040516103b99190613e0c565b60405180910390f35b3480156103ce57600080fd5b506103d7610db3565b6040516103e49190613eb3565b60405180910390f35b3480156103f957600080fd5b50610402610dd7565b60405161040f9190613edd565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190613e27565b610de1565b005b34801561044d57600080fd5b50610456610f1d565b6040516104639190613edd565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613ef8565b610f23565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613f25565b611032565b6040516104c99190613e0c565b60405180910390f35b3480156104de57600080fd5b506104e761112a565b6040516104f49190613f87565b60405180910390f35b34801561050957600080fd5b50610512611130565b60405161051f9190613fbe565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190613db1565b611139565b60405161055c9190613e0c565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190613fd9565b6111e5565b005b34801561059a57600080fd5b506105a3611460565b005b3480156105b157600080fd5b506105ba611641565b6040516105c79190613f87565b60405180910390f35b3480156105dc57600080fd5b506105e5611665565b6040516105f29190613e0c565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190613e27565b611678565b60405161062f9190613e0c565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a9190613c58565b6116ce565b005b34801561066d57600080fd5b506106766117b8565b6040516106839190613edd565b60405180910390f35b34801561069857600080fd5b506106a16117be565b6040516106ae9190613e0c565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d99190613e27565b6117d1565b6040516106eb9190613edd565b60405180910390f35b34801561070057600080fd5b50610709611819565b005b34801561071757600080fd5b506107206118a1565b60405161072d9190613e0c565b60405180910390f35b34801561074257600080fd5b5061075d60048036038101906107589190614045565b611941565b005b34801561076b57600080fd5b50610774611a18565b6040516107819190613edd565b60405180910390f35b34801561079657600080fd5b5061079f611a1e565b005b3480156107ad57600080fd5b506107b6611ad2565b6040516107c39190613f87565b60405180910390f35b3480156107d857600080fd5b506107e1611afc565b6040516107ee9190613f87565b60405180910390f35b34801561080357600080fd5b5061080c611b22565b6040516108199190613edd565b60405180910390f35b34801561082e57600080fd5b5061084960048036038101906108449190614085565b611b28565b005b34801561085757600080fd5b50610860611bc1565b60405161086d9190613d31565b60405180910390f35b34801561088257600080fd5b5061089d60048036038101906108989190614045565b611c53565b005b3480156108ab57600080fd5b506108b4611d6c565b6040516108c19190613edd565b60405180910390f35b3480156108d657600080fd5b506108f160048036038101906108ec9190613db1565b611d72565b6040516108fe9190613e0c565b60405180910390f35b34801561091357600080fd5b5061092e60048036038101906109299190613db1565b611e5d565b60405161093b9190613e0c565b60405180910390f35b34801561095057600080fd5b5061096b60048036038101906109669190613e27565b611e7b565b6040516109789190613e0c565b60405180910390f35b34801561098d57600080fd5b50610996611e9b565b6040516109a39190613e0c565b60405180910390f35b3480156109b857600080fd5b506109d360048036038101906109ce9190614045565b611eae565b005b3480156109e157600080fd5b506109fc60048036038101906109f79190613ef8565b611fd3565b005b348015610a0a57600080fd5b50610a136120e2565b604051610a209190613e0c565b60405180910390f35b348015610a3557600080fd5b50610a3e6120f5565b604051610a4b9190613edd565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613ef8565b6120fb565b604051610a889190613e0c565b60405180910390f35b348015610a9d57600080fd5b50610aa6612250565b604051610ab39190613edd565b60405180910390f35b348015610ac857600080fd5b50610ae36004803603810190610ade9190613fd9565b612256565b604051610af09190613edd565b60405180910390f35b348015610b0557600080fd5b50610b0e6122dd565b604051610b1b9190613edd565b60405180910390f35b348015610b3057600080fd5b50610b396122e3565b604051610b469190613e0c565b60405180910390f35b348015610b5b57600080fd5b50610b64612383565b604051610b719190613edd565b60405180910390f35b348015610b8657600080fd5b50610ba16004803603810190610b9c9190613e27565b612389565b005b348015610baf57600080fd5b50610bb8612481565b604051610bc59190613edd565b60405180910390f35b348015610bda57600080fd5b50610be3612487565b604051610bf09190613edd565b60405180910390f35b610c0161248d565b73ffffffffffffffffffffffffffffffffffffffff16610c1f611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c906140fe565b60405180910390fd5b8160118190555080601281905550601254601154610c93919061414d565b60108190555060636010541115610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd6906141ef565b60405180910390fd5b5050565b606060038054610cf29061423e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1e9061423e565b8015610d6b5780601f10610d4057610100808354040283529160200191610d6b565b820191906000526020600020905b815481529060010190602001808311610d4e57829003601f168201915b5050505050905090565b6000610d89610d8261248d565b8484612495565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610de961248d565b73ffffffffffffffffffffffffffffffffffffffff16610e07611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e54906140fe565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610f2b61248d565b73ffffffffffffffffffffffffffffffffffffffff16610f49611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f96906140fe565b60405180910390fd5b670de0b6b3a76400006103e86001610fb5610dd7565b610fbf9190614270565b610fc991906142f9565b610fd391906142f9565b811015611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c9061439c565b60405180910390fd5b670de0b6b3a7640000816110299190614270565b60078190555050565b600061103f848484612660565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061108a61248d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561110a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111019061442e565b60405180910390fd5b61111e8561111661248d565b858403612495565b60019150509392505050565b61dead81565b60006012905090565b60006111db61114661248d565b84846001600061115461248d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111d6919061414d565b612495565b6001905092915050565b6111ed61248d565b73ffffffffffffffffffffffffffffffffffffffff1661120b611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611258906140fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c89061449a565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133790614506565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161137b9190613f87565b60206040518083038186803b15801561139357600080fd5b505afa1580156113a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113cb919061453b565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611408929190614568565b602060405180830381600087803b15801561142257600080fd5b505af1158015611436573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145a91906145a6565b50505050565b61146861248d565b73ffffffffffffffffffffffffffffffffffffffff16611486611ad2565b73ffffffffffffffffffffffffffffffffffffffff16146114dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d3906140fe565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016115179190613f87565b60206040518083038186803b15801561152f57600080fd5b505afa158015611543573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611567919061453b565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016115a4929190614568565b602060405180830381600087803b1580156115be57600080fd5b505af11580156115d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f691906145a6565b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561163d573d6000803e3d6000fd5b5050565b7f000000000000000000000000f3656e1e2b6cc95fa078e320e0c0c25d0504494d81565b600a60009054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6116d661248d565b73ffffffffffffffffffffffffffffffffffffffff166116f4611ad2565b73ffffffffffffffffffffffffffffffffffffffff161461174a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611741906140fe565b60405180910390fd5b81600e8190555080600f81905550600f54600e54611768919061414d565b600d81905550600f600d5411156117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab906141ef565b60405180910390fd5b5050565b60105481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61182161248d565b73ffffffffffffffffffffffffffffffffffffffff1661183f611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c906140fe565b60405180910390fd5b61189f60006132a0565b565b60006118ab61248d565b73ffffffffffffffffffffffffffffffffffffffff166118c9611ad2565b73ffffffffffffffffffffffffffffffffffffffff161461191f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611916906140fe565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b61194961248d565b73ffffffffffffffffffffffffffffffffffffffff16611967611ad2565b73ffffffffffffffffffffffffffffffffffffffff16146119bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b4906140fe565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600f5481565b611a2661248d565b73ffffffffffffffffffffffffffffffffffffffff16611a44611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a91906140fe565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b611b3061248d565b73ffffffffffffffffffffffffffffffffffffffff16611b4e611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9b906140fe565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b606060048054611bd09061423e565b80601f0160208091040260200160405190810160405280929190818152602001828054611bfc9061423e565b8015611c495780601f10611c1e57610100808354040283529160200191611c49565b820191906000526020600020905b815481529060010190602001808311611c2c57829003601f168201915b5050505050905090565b611c5b61248d565b73ffffffffffffffffffffffffffffffffffffffff16611c79611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc6906140fe565b60405180910390fd5b7f000000000000000000000000f3656e1e2b6cc95fa078e320e0c0c25d0504494d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5590614645565b60405180910390fd5b611d688282613366565b5050565b60145481565b60008060016000611d8161248d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e35906146d7565b60405180910390fd5b611e52611e4961248d565b85858403612495565b600191505092915050565b6000611e71611e6a61248d565b8484612660565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611eb661248d565b73ffffffffffffffffffffffffffffffffffffffff16611ed4611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f21906140fe565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fc79190613e0c565b60405180910390a25050565b611fdb61248d565b73ffffffffffffffffffffffffffffffffffffffff16611ff9611ad2565b73ffffffffffffffffffffffffffffffffffffffff161461204f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612046906140fe565b60405180910390fd5b670de0b6b3a76400006103e86005612065610dd7565b61206f9190614270565b61207991906142f9565b61208391906142f9565b8110156120c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bc90614769565b60405180910390fd5b670de0b6b3a7640000816120d99190614270565b60098190555050565b600c60009054906101000a900460ff1681565b60075481565b600061210561248d565b73ffffffffffffffffffffffffffffffffffffffff16612123611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614612179576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612170906140fe565b60405180910390fd5b620186a06001612187610dd7565b6121919190614270565b61219b91906142f9565b8210156121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d4906147fb565b60405180910390fd5b6103e860086121ea610dd7565b6121f49190614270565b6121fe91906142f9565b821115612240576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122379061488d565b60405180910390fd5b8160088190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b60006122ed61248d565b73ffffffffffffffffffffffffffffffffffffffff1661230b611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614612361576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612358906140fe565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600e5481565b61239161248d565b73ffffffffffffffffffffffffffffffffffffffff166123af611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc906140fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246c9061491f565b60405180910390fd5b61247e816132a0565b50565b60115481565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fc906149b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256c90614a43565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126539190613edd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c790614ad5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273790614b67565b60405180910390fd5b600081141561275a5761275583836000613407565b61329b565b600a60009054906101000a900460ff1615612e2957612777611ad2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127e557506127b5611ad2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561281e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612858575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128715750600560149054906101000a900460ff16155b15612e2857600a60019054906101000a900460ff1661296b57601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061292b5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61296a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296190614bd3565b60405180910390fd5b5b600c60009054906101000a900460ff1615612b3f57612988611ad2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612a0f57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a6757507f000000000000000000000000f3656e1e2b6cc95fa078e320e0c0c25d0504494d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612b3e57436001600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ab9919061414d565b10612af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af090614c8b565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612be25750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c8957600754811115612c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2390614d1d565b60405180910390fd5b600954612c38836117d1565b82612c43919061414d565b1115612c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7b90614d89565b60405180910390fd5b612e27565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d2c5750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d7b57600754811115612d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6d90614e1b565b60405180910390fd5b612e26565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612e2557600954612dd8836117d1565b82612de3919061414d565b1115612e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1b90614d89565b60405180910390fd5b5b5b5b5b5b6000612e34306117d1565b905060006008548210159050808015612e595750600a60029054906101000a900460ff165b8015612e725750600560149054906101000a900460ff16155b8015612ec85750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f1e5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f745750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fb8576001600560146101000a81548160ff021916908315150217905550612f9c613688565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061306e5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561307857600090505b6000811561328b57601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130db57506000601054115b156131755761310860646130fa6010548861389590919063ffffffff16565b6138ab90919063ffffffff16565b90506010546011548261311b9190614270565b61312591906142f9565b60136000828254613136919061414d565b925050819055506010546012548261314e9190614270565b61315891906142f9565b60146000828254613169919061414d565b92505081905550613267565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131d057506000600d54115b15613266576131fd60646131ef600d548861389590919063ffffffff16565b6138ab90919063ffffffff16565b9050600d54600e54826132109190614270565b61321a91906142f9565b6013600082825461322b919061414d565b92505081905550600d54600f54826132439190614270565b61324d91906142f9565b6014600082825461325e919061414d565b925050819055505b5b600081111561327c5761327b873083613407565b5b80856132889190614e3b565b94505b613296878787613407565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346e90614ad5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134de90614b67565b60405180910390fd5b6134f28383836138c1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161356f90614ee1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461360b919061414d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161366f9190613edd565b60405180910390a36136828484846138c6565b50505050565b6000613693306117d1565b905060006014546013546136a7919061414d565b90506000808314806136b95750600082145b156136c657505050613893565b60146008546136d59190614270565b8311156136ee5760146008546136eb9190614270565b92505b6000600283601354866137019190614270565b61370b91906142f9565b61371591906142f9565b9050600061372c82866138cb90919063ffffffff16565b9050600047905061373c826138e1565b600061375182476138cb90919063ffffffff16565b9050600061377c8761376e6014548561389590919063ffffffff16565b6138ab90919063ffffffff16565b90506000818361378c9190614e3b565b905060006013819055506000601481905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516137e490614f32565b60006040518083038185875af1925050503d8060008114613821576040519150601f19603f3d011682016040523d82523d6000602084013e613826565b606091505b50508097505060008611801561383c5750600081115b156138895761384b8682613b2d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260135460405161388093929190614f47565b60405180910390a15b5050505050505050505b565b600081836138a39190614270565b905092915050565b600081836138b991906142f9565b905092915050565b505050565b505050565b600081836138d99190614e3b565b905092915050565b6000600267ffffffffffffffff8111156138fe576138fd614f7e565b5b60405190808252806020026020018201604052801561392c5781602001602082028036833780820191505090505b509050308160008151811061394457613943614fad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156139e457600080fd5b505afa1580156139f8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a1c9190614ff1565b81600181518110613a3057613a2f614fad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613a95307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612495565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613af7959493929190615117565b600060405180830381600087803b158015613b1157600080fd5b505af1158015613b25573d6000803e3d6000fd5b505050505050565b613b58307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612495565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613ba2611ad2565b426040518863ffffffff1660e01b8152600401613bc496959493929190615171565b6060604051808303818588803b158015613bdd57600080fd5b505af1158015613bf1573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613c1691906151d2565b5050505050565b600080fd5b6000819050919050565b613c3581613c22565b8114613c4057600080fd5b50565b600081359050613c5281613c2c565b92915050565b60008060408385031215613c6f57613c6e613c1d565b5b6000613c7d85828601613c43565b9250506020613c8e85828601613c43565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cd2578082015181840152602081019050613cb7565b83811115613ce1576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d0382613c98565b613d0d8185613ca3565b9350613d1d818560208601613cb4565b613d2681613ce7565b840191505092915050565b60006020820190508181036000830152613d4b8184613cf8565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d7e82613d53565b9050919050565b613d8e81613d73565b8114613d9957600080fd5b50565b600081359050613dab81613d85565b92915050565b60008060408385031215613dc857613dc7613c1d565b5b6000613dd685828601613d9c565b9250506020613de785828601613c43565b9150509250929050565b60008115159050919050565b613e0681613df1565b82525050565b6000602082019050613e216000830184613dfd565b92915050565b600060208284031215613e3d57613e3c613c1d565b5b6000613e4b84828501613d9c565b91505092915050565b6000819050919050565b6000613e79613e74613e6f84613d53565b613e54565b613d53565b9050919050565b6000613e8b82613e5e565b9050919050565b6000613e9d82613e80565b9050919050565b613ead81613e92565b82525050565b6000602082019050613ec86000830184613ea4565b92915050565b613ed781613c22565b82525050565b6000602082019050613ef26000830184613ece565b92915050565b600060208284031215613f0e57613f0d613c1d565b5b6000613f1c84828501613c43565b91505092915050565b600080600060608486031215613f3e57613f3d613c1d565b5b6000613f4c86828701613d9c565b9350506020613f5d86828701613d9c565b9250506040613f6e86828701613c43565b9150509250925092565b613f8181613d73565b82525050565b6000602082019050613f9c6000830184613f78565b92915050565b600060ff82169050919050565b613fb881613fa2565b82525050565b6000602082019050613fd36000830184613faf565b92915050565b60008060408385031215613ff057613fef613c1d565b5b6000613ffe85828601613d9c565b925050602061400f85828601613d9c565b9150509250929050565b61402281613df1565b811461402d57600080fd5b50565b60008135905061403f81614019565b92915050565b6000806040838503121561405c5761405b613c1d565b5b600061406a85828601613d9c565b925050602061407b85828601614030565b9150509250929050565b60006020828403121561409b5761409a613c1d565b5b60006140a984828501614030565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140e8602083613ca3565b91506140f3826140b2565b602082019050919050565b60006020820190508181036000830152614117816140db565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061415882613c22565b915061416383613c22565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141985761419761411e565b5b828201905092915050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b60006141d9601d83613ca3565b91506141e4826141a3565b602082019050919050565b60006020820190508181036000830152614208816141cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061425657607f821691505b6020821081141561426a5761426961420f565b5b50919050565b600061427b82613c22565b915061428683613c22565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142bf576142be61411e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061430482613c22565b915061430f83613c22565b92508261431f5761431e6142ca565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614386602f83613ca3565b91506143918261432a565b604082019050919050565b600060208201905081810360008301526143b581614379565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614418602883613ca3565b9150614423826143bc565b604082019050919050565b600060208201905081810360008301526144478161440b565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b6000614484601a83613ca3565b915061448f8261444e565b602082019050919050565b600060208201905081810360008301526144b381614477565b9050919050565b7f43616e2774207769746864726177206e617469766520746f6b656e7300000000600082015250565b60006144f0601c83613ca3565b91506144fb826144ba565b602082019050919050565b6000602082019050818103600083015261451f816144e3565b9050919050565b60008151905061453581613c2c565b92915050565b60006020828403121561455157614550613c1d565b5b600061455f84828501614526565b91505092915050565b600060408201905061457d6000830185613f78565b61458a6020830184613ece565b9392505050565b6000815190506145a081614019565b92915050565b6000602082840312156145bc576145bb613c1d565b5b60006145ca84828501614591565b91505092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061462f603983613ca3565b915061463a826145d3565b604082019050919050565b6000602082019050818103600083015261465e81614622565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006146c1602583613ca3565b91506146cc82614665565b604082019050919050565b600060208201905081810360008301526146f0816146b4565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614753602483613ca3565b915061475e826146f7565b604082019050919050565b6000602082019050818103600083015261478281614746565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006147e5603583613ca3565b91506147f082614789565b604082019050919050565b60006020820190508181036000830152614814816147d8565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e382520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614877603483613ca3565b91506148828261481b565b604082019050919050565b600060208201905081810360008301526148a68161486a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614909602683613ca3565b9150614914826148ad565b604082019050919050565b60006020820190508181036000830152614938816148fc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061499b602483613ca3565b91506149a68261493f565b604082019050919050565b600060208201905081810360008301526149ca8161498e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a2d602283613ca3565b9150614a38826149d1565b604082019050919050565b60006020820190508181036000830152614a5c81614a20565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614abf602583613ca3565b9150614aca82614a63565b604082019050919050565b60006020820190508181036000830152614aee81614ab2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b51602383613ca3565b9150614b5c82614af5565b604082019050919050565b60006020820190508181036000830152614b8081614b44565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614bbd601683613ca3565b9150614bc882614b87565b602082019050919050565b60006020820190508181036000830152614bec81614bb0565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e65207075726368617365207065722074776f206260208201527f6c6f636b7320616c6c6f7765642e000000000000000000000000000000000000604082015250565b6000614c75604e83613ca3565b9150614c8082614bf3565b606082019050919050565b60006020820190508181036000830152614ca481614c68565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614d07603583613ca3565b9150614d1282614cab565b604082019050919050565b60006020820190508181036000830152614d3681614cfa565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614d73601383613ca3565b9150614d7e82614d3d565b602082019050919050565b60006020820190508181036000830152614da281614d66565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614e05603683613ca3565b9150614e1082614da9565b604082019050919050565b60006020820190508181036000830152614e3481614df8565b9050919050565b6000614e4682613c22565b9150614e5183613c22565b925082821015614e6457614e6361411e565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614ecb602683613ca3565b9150614ed682614e6f565b604082019050919050565b60006020820190508181036000830152614efa81614ebe565b9050919050565b600081905092915050565b50565b6000614f1c600083614f01565b9150614f2782614f0c565b600082019050919050565b6000614f3d82614f0f565b9150819050919050565b6000606082019050614f5c6000830186613ece565b614f696020830185613ece565b614f766040830184613ece565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614feb81613d85565b92915050565b60006020828403121561500757615006613c1d565b5b600061501584828501614fdc565b91505092915050565b6000819050919050565b600061504361503e6150398461501e565b613e54565b613c22565b9050919050565b61505381615028565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61508e81613d73565b82525050565b60006150a08383615085565b60208301905092915050565b6000602082019050919050565b60006150c482615059565b6150ce8185615064565b93506150d983615075565b8060005b8381101561510a5781516150f18882615094565b97506150fc836150ac565b9250506001810190506150dd565b5085935050505092915050565b600060a08201905061512c6000830188613ece565b615139602083018761504a565b818103604083015261514b81866150b9565b905061515a6060830185613f78565b6151676080830184613ece565b9695505050505050565b600060c0820190506151866000830189613f78565b6151936020830188613ece565b6151a0604083018761504a565b6151ad606083018661504a565b6151ba6080830185613f78565b6151c760a0830184613ece565b979650505050505050565b6000806000606084860312156151eb576151ea613c1d565b5b60006151f986828701614526565b935050602061520a86828701614526565b925050604061521b86828701614526565b915050925092509256fea26469706673582212204662f142022f2bb061ff8d1115c19ee82072a15ff7a0d91129aad6cd43fcb05264736f6c63430008090033

Deployed Bytecode Sourcemap

29319:15590:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35796:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8423:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10590:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30528:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29399:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9543:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36844:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30312:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34535:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11241:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29502:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9385:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12142:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44546:358;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44292:246;;;;;;;;;;;;;:::i;:::-;;29457:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29742:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37009:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35453:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30199:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29822:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9714:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1940:103;;;;;;;;;;;;;:::i;:::-;;33643:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35082:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30160:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33479:112;;;;;;;;;;;;;:::i;:::-;;1289:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29594:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30272:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35345:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8642:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36336:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30352:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12860:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10054:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30749:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29782:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36146:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34818:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30040:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29627:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34030:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30089:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10292:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29669:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33825:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30123:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2198:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30234:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29709:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35796:342;1520:12;:10;:12::i;:::-;1509:23;;:7;:5;:7::i;:::-;:23;;;1501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35940:13:::1;35921:16;:32;;;;35983:13;35964:16;:32;;;;36042:16;;36023;;:35;;;;:::i;:::-;36007:13;:51;;;;36094:2;36077:13;;:19;;36069:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35796:342:::0;;:::o;8423:100::-;8477:13;8510:5;8503:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8423:100;:::o;10590:169::-;10673:4;10690:39;10699:12;:10;:12::i;:::-;10713:7;10722:6;10690:8;:39::i;:::-;10747:4;10740:11;;10590:169;;;;:::o;30528:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;29399:51::-;;;:::o;9543:108::-;9604:7;9631:12;;9624:19;;9543:108;:::o;36844:157::-;1520:12;:10;:12::i;:::-;1509:23;;:7;:5;:7::i;:::-;:23;;;1501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36951:9:::1;;;;;;;;;;;36923:38;;36940:9;36923:38;;;;;;;;;;;;36984:9;36972;;:21;;;;;;;;;;;;;;;;;;36844:157:::0;:::o;30312:33::-;;;;:::o;34535:275::-;1520:12;:10;:12::i;:::-;1509:23;;:7;:5;:7::i;:::-;:23;;;1501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34672:4:::1;34664;34659:1;34643:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34642:26;;;;:::i;:::-;34641:35;;;;:::i;:::-;34631:6;:45;;34609:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;34795:6;34785;:17;;;;:::i;:::-;34762:20;:40;;;;34535:275:::0;:::o;11241:492::-;11381:4;11398:36;11408:6;11416:9;11427:6;11398:9;:36::i;:::-;11447:24;11474:11;:19;11486:6;11474:19;;;;;;;;;;;;;;;:33;11494:12;:10;:12::i;:::-;11474:33;;;;;;;;;;;;;;;;11447:60;;11546:6;11526:16;:26;;11518:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11633:57;11642:6;11650:12;:10;:12::i;:::-;11683:6;11664:16;:25;11633:8;:57::i;:::-;11721:4;11714:11;;;11241:492;;;;;:::o;29502:53::-;29548:6;29502:53;:::o;9385:93::-;9443:5;9468:2;9461:9;;9385:93;:::o;12142:215::-;12230:4;12247:80;12256:12;:10;:12::i;:::-;12270:7;12316:10;12279:11;:25;12291:12;:10;:12::i;:::-;12279:25;;;;;;;;;;;;;;;:34;12305:7;12279:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12247:8;:80::i;:::-;12345:4;12338:11;;12142:215;;;;:::o;44546:358::-;1520:12;:10;:12::i;:::-;1509:23;;:7;:5;:7::i;:::-;:23;;;1501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44654:1:::1;44636:20;;:6;:20;;;;44628:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;44724:4;44706:23;;:6;:23;;;;44698:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;44773:24;44807:6;44800:24;;;44833:4;44800:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44773:66;;44857:6;44850:23;;;44874:3;44879:16;44850:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44617:287;44546:358:::0;;:::o;44292:246::-;1520:12;:10;:12::i;:::-;1509:23;;:7;:5;:7::i;:::-;:23;;;1501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44342:15:::1;44375:4;44360:31;;;44400:4;44360:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44342:64;;44432:4;44417:30;;;44448:10;44460:7;44417:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44487:10;44479:28;;:51;44508:21;44479:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;44331:207;44292:246::o:0;29457:38::-;;;:::o;29742:33::-;;;;;;;;;;;;;:::o;37009:126::-;37075:4;37099:19;:28;37119:7;37099:28;;;;;;;;;;;;;;;;;;;;;;;;;37092:35;;37009:126;;;:::o;35453:335::-;1520:12;:10;:12::i;:::-;1509:23;;:7;:5;:7::i;:::-;:23;;;1501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35595:13:::1;35577:15;:31;;;;35637:13;35619:15;:31;;;;35694:15;;35676;;:33;;;;:::i;:::-;35661:12;:48;;;;35744:2;35728:12;;:18;;35720:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;35453:335:::0;;:::o;30199:28::-;;;;:::o;29822:31::-;;;;;;;;;;;;;:::o;9714:127::-;9788:7;9815:9;:18;9825:7;9815:18;;;;;;;;;;;;;;;;9808:25;;9714:127;;;:::o;1940:103::-;1520:12;:10;:12::i;:::-;1509:23;;:7;:5;:7::i;:::-;:23;;;1501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2005:30:::1;2032:1;2005:18;:30::i;:::-;1940:103::o:0;33643:121::-;33695:4;1520:12;:10;:12::i;:::-;1509:23;;:7;:5;:7::i;:::-;:23;;;1501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33729:5:::1;33712:14;;:22;;;;;;;;;;;;;;;;;;33752:4;33745:11;;33643:121:::0;:::o;35082:167::-;1520:12;:10;:12::i;:::-;1509:23;;:7;:5;:7::i;:::-;:23;;;1501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35237:4:::1;35195:31;:39;35227:6;35195:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35082:167:::0;;:::o;30160:30::-;;;;:::o;33479:112::-;1520:12;:10;:12::i;:::-;1509:23;;:7;:5;:7::i;:::-;:23;;;1501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33550:4:::1;33534:13;;:20;;;;;;;;;;;;;;;;;;33579:4;33565:11;;:18;;;;;;;;;;;;;;;;;;33479:112::o:0;1289:87::-;1335:7;1362:6;;;;;;;;;;;1355:13;;1289:87;:::o;29594:24::-;;;;;;;;;;;;;:::o;30272:31::-;;;;:::o;35345:100::-;1520:12;:10;:12::i;:::-;1509:23;;:7;:5;:7::i;:::-;:23;;;1501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35430:7:::1;35416:11;;:21;;;;;;;;;;;;;;;;;;35345:100:::0;:::o;8642:104::-;8698:13;8731:7;8724:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8642:104;:::o;36336:304::-;1520:12;:10;:12::i;:::-;1509:23;;:7;:5;:7::i;:::-;:23;;;1501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36480:13:::1;36472:21;;:4;:21;;;;36450:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;36591:41;36620:4;36626:5;36591:28;:41::i;:::-;36336:304:::0;;:::o;30352:27::-;;;;:::o;12860:413::-;12953:4;12970:24;12997:11;:25;13009:12;:10;:12::i;:::-;12997:25;;;;;;;;;;;;;;;:34;13023:7;12997:34;;;;;;;;;;;;;;;;12970:61;;13070:15;13050:16;:35;;13042:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13163:67;13172:12;:10;:12::i;:::-;13186:7;13214:15;13195:16;:34;13163:8;:67::i;:::-;13261:4;13254:11;;;12860:413;;;;:::o;10054:175::-;10140:4;10157:42;10167:12;:10;:12::i;:::-;10181:9;10192:6;10157:9;:42::i;:::-;10217:4;10210:11;;10054:175;;;;:::o;30749:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;29782:33::-;;;;;;;;;;;;;:::o;36146:182::-;1520:12;:10;:12::i;:::-;1509:23;;:7;:5;:7::i;:::-;:23;;;1501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36262:8:::1;36231:19;:28;36251:7;36231:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36302:7;36286:34;;;36311:8;36286:34;;;;;;:::i;:::-;;;;;;;;36146:182:::0;;:::o;34818:256::-;1520:12;:10;:12::i;:::-;1509:23;;:7;:5;:7::i;:::-;:23;;;1501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34958:4:::1;34950;34945:1;34929:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34928:26;;;;:::i;:::-;34927:35;;;;:::i;:::-;34917:6;:45;;34895:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;35059:6;35049;:17;;;;:::i;:::-;35037:9;:29;;;;34818:256:::0;:::o;30040:40::-;;;;;;;;;;;;;:::o;29627:35::-;;;;:::o;34030:497::-;34138:4;1520:12;:10;:12::i;:::-;1509:23;;:7;:5;:7::i;:::-;:23;;;1501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34217:6:::1;34212:1;34196:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34195:28;;;;:::i;:::-;34182:9;:41;;34160:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;34372:4;34367:1;34351:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34350:26;;;;:::i;:::-;34337:9;:39;;34315:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;34488:9;34467:18;:30;;;;34515:4;34508:11;;34030:497:::0;;;:::o;30089:27::-;;;;:::o;10292:151::-;10381:7;10408:11;:18;10420:5;10408:18;;;;;;;;;;;;;;;:27;10427:7;10408:27;;;;;;;;;;;;;;;;10401:34;;10292:151;;;;:::o;29669:33::-;;;;:::o;33825:135::-;33885:4;1520:12;:10;:12::i;:::-;1509:23;;:7;:5;:7::i;:::-;:23;;;1501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33925:5:::1;33902:20;;:28;;;;;;;;;;;;;;;;;;33948:4;33941:11;;33825:135:::0;:::o;30123:30::-;;;;:::o;2198:201::-;1520:12;:10;:12::i;:::-;1509:23;;:7;:5;:7::i;:::-;:23;;;1501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2307:1:::1;2287:22;;:8;:22;;;;2279:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2363:28;2382:8;2363:18;:28::i;:::-;2198:201:::0;:::o;30234:31::-;;;;:::o;29709:24::-;;;;:::o;153:98::-;206:7;233:10;226:17;;153:98;:::o;16544:380::-;16697:1;16680:19;;:5;:19;;;;16672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16778:1;16759:21;;:7;:21;;;;16751:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16862:6;16832:11;:18;16844:5;16832:18;;;;;;;;;;;;;;;:27;16851:7;16832:27;;;;;;;;;;;;;;;:36;;;;16900:7;16884:32;;16893:5;16884:32;;;16909:6;16884:32;;;;;;:::i;:::-;;;;;;;;16544:380;;;:::o;37143:4576::-;37291:1;37275:18;;:4;:18;;;;37267:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37368:1;37354:16;;:2;:16;;;;37346:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37437:1;37427:6;:11;37423:93;;;37455:28;37471:4;37477:2;37481:1;37455:15;:28::i;:::-;37498:7;;37423:93;37532:14;;;;;;;;;;;37528:2496;;;37593:7;:5;:7::i;:::-;37585:15;;:4;:15;;;;:49;;;;;37627:7;:5;:7::i;:::-;37621:13;;:2;:13;;;;37585:49;:86;;;;;37669:1;37655:16;;:2;:16;;;;37585:86;:128;;;;;37706:6;37692:21;;:2;:21;;;;37585:128;:158;;;;;37735:8;;;;;;;;;;;37734:9;37585:158;37563:2450;;;37783:13;;;;;;;;;;;37778:223;;37855:19;:25;37875:4;37855:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37884:19;:23;37904:2;37884:23;;;;;;;;;;;;;;;;;;;;;;;;;37855:52;37821:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;37778:223;38157:20;;;;;;;;;;;38153:650;;;38238:7;:5;:7::i;:::-;38232:13;;:2;:13;;;;:72;;;;;38288:15;38274:30;;:2;:30;;;;38232:72;:129;;;;;38347:13;38333:28;;:2;:28;;;;38232:129;38202:582;;;38529:12;38492:1;38450:28;:39;38479:9;38450:39;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:91;38412:267;;;;;;;;;;;;:::i;:::-;;;;;;;;;38748:12;38706:28;:39;38735:9;38706:39;;;;;;;;;;;;;;;:54;;;;38202:582;38153:650;38877:25;:31;38903:4;38877:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;38934:31;:35;38966:2;38934:35;;;;;;;;;;;;;;;;;;;;;;;;;38933:36;38877:92;38851:1147;;;39056:20;;39046:6;:30;;39012:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;39264:9;;39247:13;39257:2;39247:9;:13::i;:::-;39238:6;:22;;;;:::i;:::-;:35;;39204:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38851:1147;;;39442:25;:29;39468:2;39442:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;39497:31;:37;39529:4;39497:37;;;;;;;;;;;;;;;;;;;;;;;;;39496:38;39442:92;39416:582;;;39621:20;;39611:6;:30;;39577:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;39416:582;;;39778:31;:35;39810:2;39778:35;;;;;;;;;;;;;;;;;;;;;;;;;39773:225;;39898:9;;39881:13;39891:2;39881:9;:13::i;:::-;39872:6;:22;;;;:::i;:::-;:35;;39838:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39773:225;39416:582;38851:1147;37563:2450;37528:2496;40036:28;40067:24;40085:4;40067:9;:24::i;:::-;40036:55;;40104:12;40143:18;;40119:20;:42;;40104:57;;40192:7;:35;;;;;40216:11;;;;;;;;;;;40192:35;:61;;;;;40245:8;;;;;;;;;;;40244:9;40192:61;:110;;;;;40271:25;:31;40297:4;40271:31;;;;;;;;;;;;;;;;;;;;;;;;;40270:32;40192:110;:153;;;;;40320:19;:25;40340:4;40320:25;;;;;;;;;;;;;;;;;;;;;;;;;40319:26;40192:153;:194;;;;;40363:19;:23;40383:2;40363:23;;;;;;;;;;;;;;;;;;;;;;;;;40362:24;40192:194;40174:326;;;40424:4;40413:8;;:15;;;;;;;;;;;;;;;;;;40445:10;:8;:10::i;:::-;40483:5;40472:8;;:16;;;;;;;;;;;;;;;;;;40174:326;40512:12;40528:8;;;;;;;;;;;40527:9;40512:24;;40638:19;:25;40658:4;40638:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40667:19;:23;40687:2;40667:23;;;;;;;;;;;;;;;;;;;;;;;;;40638:52;40634:100;;;40717:5;40707:15;;40634:100;40746:12;40851:7;40847:819;;;40903:25;:29;40929:2;40903:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40952:1;40936:13;;:17;40903:50;40899:618;;;40981:34;41011:3;40981:25;40992:13;;40981:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40974:41;;41084:13;;41064:16;;41057:4;:23;;;;:::i;:::-;41056:41;;;;:::i;:::-;41034:18;;:63;;;;;;;:::i;:::-;;;;;;;;41160:13;;41140:16;;41133:4;:23;;;;:::i;:::-;41132:41;;;;:::i;:::-;41116:12;;:57;;;;;;;:::i;:::-;;;;;;;;40899:618;;;41235:25;:31;41261:4;41235:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;41285:1;41270:12;;:16;41235:51;41231:286;;;41314:33;41343:3;41314:24;41325:12;;41314:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;41307:40;;41415:12;;41396:15;;41389:4;:22;;;;:::i;:::-;41388:39;;;;:::i;:::-;41366:18;;:61;;;;;;;:::i;:::-;;;;;;;;41489:12;;41470:15;;41463:4;:22;;;;:::i;:::-;41462:39;;;;:::i;:::-;41446:12;;:55;;;;;;;:::i;:::-;;;;;;;;41231:286;40899:618;41544:1;41537:4;:8;41533:91;;;41566:42;41582:4;41596;41603;41566:15;:42::i;:::-;41533:91;41650:4;41640:14;;;;;:::i;:::-;;;40847:819;41678:33;41694:4;41700:2;41704:6;41678:15;:33::i;:::-;37256:4463;;;;37143:4576;;;;:::o;2559:191::-;2633:16;2652:6;;;;;;;;;;;2633:25;;2678:8;2669:6;;:17;;;;;;;;;;;;;;;;;;2733:8;2702:40;;2723:8;2702:40;;;;;;;;;;;;2622:128;2559:191;:::o;36648:188::-;36765:5;36731:25;:31;36757:4;36731:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36822:5;36788:40;;36816:4;36788:40;;;;;;;;;;;;36648:188;;:::o;13763:733::-;13921:1;13903:20;;:6;:20;;;;13895:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14005:1;13984:23;;:9;:23;;;;13976:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14060:47;14081:6;14089:9;14100:6;14060:20;:47::i;:::-;14120:21;14144:9;:17;14154:6;14144:17;;;;;;;;;;;;;;;;14120:41;;14197:6;14180:13;:23;;14172:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14318:6;14302:13;:22;14282:9;:17;14292:6;14282:17;;;;;;;;;;;;;;;:42;;;;14370:6;14346:9;:20;14356:9;14346:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14411:9;14394:35;;14403:6;14394:35;;;14422:6;14394:35;;;;;;:::i;:::-;;;;;;;;14442:46;14462:6;14470:9;14481:6;14442:19;:46::i;:::-;13884:612;13763:733;;;:::o;42845:1439::-;42884:23;42910:24;42928:4;42910:9;:24::i;:::-;42884:50;;42945:25;43007:12;;42973:18;;:46;;;;:::i;:::-;42945:74;;43030:12;43078:1;43059:15;:20;:46;;;;43104:1;43083:17;:22;43059:46;43055:85;;;43122:7;;;;;43055:85;43195:2;43174:18;;:23;;;;:::i;:::-;43156:15;:41;43152:115;;;43253:2;43232:18;;:23;;;;:::i;:::-;43214:41;;43152:115;43328:23;43441:1;43408:17;43373:18;;43355:15;:36;;;;:::i;:::-;43354:71;;;;:::i;:::-;:88;;;;:::i;:::-;43328:114;;43453:26;43482:36;43502:15;43482;:19;;:36;;;;:::i;:::-;43453:65;;43531:25;43559:21;43531:49;;43593:36;43610:18;43593:16;:36::i;:::-;43642:18;43663:44;43689:17;43663:21;:25;;:44;;;;:::i;:::-;43642:65;;43720:17;43740:51;43773:17;43740:28;43755:12;;43740:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;43720:71;;43804:23;43843:9;43830:10;:22;;;;:::i;:::-;43804:48;;43886:1;43865:18;:22;;;;43913:1;43898:12;:16;;;;43949:9;;;;;;;;;;;43941:23;;43972:9;43941:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43927:59;;;;;44021:1;44003:15;:19;:42;;;;;44044:1;44026:15;:19;44003:42;43999:278;;;44062:46;44075:15;44092;44062:12;:46::i;:::-;44128:137;44161:18;44198:15;44232:18;;44128:137;;;;;;;;:::i;:::-;;;;;;;;43999:278;42873:1411;;;;;;;;;42845:1439;:::o;21676:98::-;21734:7;21765:1;21761;:5;;;;:::i;:::-;21754:12;;21676:98;;;;:::o;22075:::-;22133:7;22164:1;22160;:5;;;;:::i;:::-;22153:12;;22075:98;;;;:::o;17524:125::-;;;;:::o;18253:124::-;;;;:::o;21319:98::-;21377:7;21408:1;21404;:5;;;;:::i;:::-;21397:12;;21319:98;;;;:::o;41727:589::-;41853:21;41891:1;41877:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41853:40;;41922:4;41904;41909:1;41904:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41948:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41938:4;41943:1;41938:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;41983:62;42000:4;42015:15;42033:11;41983:8;:62::i;:::-;42084:15;:66;;;42165:11;42191:1;42235:4;42262;42282:15;42084:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41782:534;41727:589;:::o;42324:513::-;42472:62;42489:4;42504:15;42522:11;42472:8;:62::i;:::-;42577:15;:31;;;42616:9;42649:4;42669:11;42695:1;42738;42781:7;:5;:7::i;:::-;42803:15;42577:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42324:513;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:307::-;1518:1;1528:113;1542:6;1539:1;1536:13;1528:113;;;1627:1;1622:3;1618:11;1612:18;1608:1;1603:3;1599:11;1592:39;1564:2;1561:1;1557:10;1552:15;;1528:113;;;1659:6;1656:1;1653:13;1650:101;;;1739:1;1730:6;1725:3;1721:16;1714:27;1650:101;1499:258;1450:307;;;:::o;1763:102::-;1804:6;1855:2;1851:7;1846:2;1839:5;1835:14;1831:28;1821:38;;1763:102;;;:::o;1871:364::-;1959:3;1987:39;2020:5;1987:39;:::i;:::-;2042:71;2106:6;2101:3;2042:71;:::i;:::-;2035:78;;2122:52;2167:6;2162:3;2155:4;2148:5;2144:16;2122:52;:::i;:::-;2199:29;2221:6;2199:29;:::i;:::-;2194:3;2190:39;2183:46;;1963:272;1871:364;;;;:::o;2241:313::-;2354:4;2392:2;2381:9;2377:18;2369:26;;2441:9;2435:4;2431:20;2427:1;2416:9;2412:17;2405:47;2469:78;2542:4;2533:6;2469:78;:::i;:::-;2461:86;;2241:313;;;;:::o;2560:126::-;2597:7;2637:42;2630:5;2626:54;2615:65;;2560:126;;;:::o;2692:96::-;2729:7;2758:24;2776:5;2758:24;:::i;:::-;2747:35;;2692:96;;;:::o;2794:122::-;2867:24;2885:5;2867:24;:::i;:::-;2860:5;2857:35;2847:63;;2906:1;2903;2896:12;2847:63;2794:122;:::o;2922:139::-;2968:5;3006:6;2993:20;2984:29;;3022:33;3049:5;3022:33;:::i;:::-;2922:139;;;;:::o;3067:474::-;3135:6;3143;3192:2;3180:9;3171:7;3167:23;3163:32;3160:119;;;3198:79;;:::i;:::-;3160:119;3318:1;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3289:117;3445:2;3471:53;3516:7;3507:6;3496:9;3492:22;3471:53;:::i;:::-;3461:63;;3416:118;3067:474;;;;;:::o;3547:90::-;3581:7;3624:5;3617:13;3610:21;3599:32;;3547:90;;;:::o;3643:109::-;3724:21;3739:5;3724:21;:::i;:::-;3719:3;3712:34;3643:109;;:::o;3758:210::-;3845:4;3883:2;3872:9;3868:18;3860:26;;3896:65;3958:1;3947:9;3943:17;3934:6;3896:65;:::i;:::-;3758:210;;;;:::o;3974:329::-;4033:6;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;3974:329;;;;:::o;4309:60::-;4337:3;4358:5;4351:12;;4309:60;;;:::o;4375:142::-;4425:9;4458:53;4476:34;4485:24;4503:5;4485:24;:::i;:::-;4476:34;:::i;:::-;4458:53;:::i;:::-;4445:66;;4375:142;;;:::o;4523:126::-;4573:9;4606:37;4637:5;4606:37;:::i;:::-;4593:50;;4523:126;;;:::o;4655:153::-;4732:9;4765:37;4796:5;4765:37;:::i;:::-;4752:50;;4655:153;;;:::o;4814:185::-;4928:64;4986:5;4928:64;:::i;:::-;4923:3;4916:77;4814:185;;:::o;5005:276::-;5125:4;5163:2;5152:9;5148:18;5140:26;;5176:98;5271:1;5260:9;5256:17;5247:6;5176:98;:::i;:::-;5005:276;;;;:::o;5287:118::-;5374:24;5392:5;5374:24;:::i;:::-;5369:3;5362:37;5287:118;;:::o;5411:222::-;5504:4;5542:2;5531:9;5527:18;5519:26;;5555:71;5623:1;5612:9;5608:17;5599:6;5555:71;:::i;:::-;5411:222;;;;:::o;5639:329::-;5698:6;5747:2;5735:9;5726:7;5722:23;5718:32;5715:119;;;5753:79;;:::i;:::-;5715:119;5873:1;5898:53;5943:7;5934:6;5923:9;5919:22;5898:53;:::i;:::-;5888:63;;5844:117;5639:329;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:118::-;6686:24;6704:5;6686:24;:::i;:::-;6681:3;6674:37;6599:118;;:::o;6723:222::-;6816:4;6854:2;6843:9;6839:18;6831:26;;6867:71;6935:1;6924:9;6920:17;6911:6;6867:71;:::i;:::-;6723:222;;;;:::o;6951:86::-;6986:7;7026:4;7019:5;7015:16;7004:27;;6951:86;;;:::o;7043:112::-;7126:22;7142:5;7126:22;:::i;:::-;7121:3;7114:35;7043:112;;:::o;7161:214::-;7250:4;7288:2;7277:9;7273:18;7265:26;;7301:67;7365:1;7354:9;7350:17;7341:6;7301:67;:::i;:::-;7161:214;;;;:::o;7381:474::-;7449:6;7457;7506:2;7494:9;7485:7;7481:23;7477:32;7474:119;;;7512:79;;:::i;:::-;7474:119;7632:1;7657:53;7702:7;7693:6;7682:9;7678:22;7657:53;:::i;:::-;7647:63;;7603:117;7759:2;7785:53;7830:7;7821:6;7810:9;7806:22;7785:53;:::i;:::-;7775:63;;7730:118;7381:474;;;;;:::o;7861:116::-;7931:21;7946:5;7931:21;:::i;:::-;7924:5;7921:32;7911:60;;7967:1;7964;7957:12;7911:60;7861:116;:::o;7983:133::-;8026:5;8064:6;8051:20;8042:29;;8080:30;8104:5;8080:30;:::i;:::-;7983:133;;;;:::o;8122:468::-;8187:6;8195;8244:2;8232:9;8223:7;8219:23;8215:32;8212:119;;;8250:79;;:::i;:::-;8212:119;8370:1;8395:53;8440:7;8431:6;8420:9;8416:22;8395:53;:::i;:::-;8385:63;;8341:117;8497:2;8523:50;8565:7;8556:6;8545:9;8541:22;8523:50;:::i;:::-;8513:60;;8468:115;8122:468;;;;;:::o;8596:323::-;8652:6;8701:2;8689:9;8680:7;8676:23;8672:32;8669:119;;;8707:79;;:::i;:::-;8669:119;8827:1;8852:50;8894:7;8885:6;8874:9;8870:22;8852:50;:::i;:::-;8842:60;;8798:114;8596:323;;;;:::o;8925:182::-;9065:34;9061:1;9053:6;9049:14;9042:58;8925:182;:::o;9113:366::-;9255:3;9276:67;9340:2;9335:3;9276:67;:::i;:::-;9269:74;;9352:93;9441:3;9352:93;:::i;:::-;9470:2;9465:3;9461:12;9454:19;;9113:366;;;:::o;9485:419::-;9651:4;9689:2;9678:9;9674:18;9666:26;;9738:9;9732:4;9728:20;9724:1;9713:9;9709:17;9702:47;9766:131;9892:4;9766:131;:::i;:::-;9758:139;;9485:419;;;:::o;9910:180::-;9958:77;9955:1;9948:88;10055:4;10052:1;10045:15;10079:4;10076:1;10069:15;10096:305;10136:3;10155:20;10173:1;10155:20;:::i;:::-;10150:25;;10189:20;10207:1;10189:20;:::i;:::-;10184:25;;10343:1;10275:66;10271:74;10268:1;10265:81;10262:107;;;10349:18;;:::i;:::-;10262:107;10393:1;10390;10386:9;10379:16;;10096:305;;;;:::o;10407:179::-;10547:31;10543:1;10535:6;10531:14;10524:55;10407:179;:::o;10592:366::-;10734:3;10755:67;10819:2;10814:3;10755:67;:::i;:::-;10748:74;;10831:93;10920:3;10831:93;:::i;:::-;10949:2;10944:3;10940:12;10933:19;;10592:366;;;:::o;10964:419::-;11130:4;11168:2;11157:9;11153:18;11145:26;;11217:9;11211:4;11207:20;11203:1;11192:9;11188:17;11181:47;11245:131;11371:4;11245:131;:::i;:::-;11237:139;;10964:419;;;:::o;11389:180::-;11437:77;11434:1;11427:88;11534:4;11531:1;11524:15;11558:4;11555:1;11548:15;11575:320;11619:6;11656:1;11650:4;11646:12;11636:22;;11703:1;11697:4;11693:12;11724:18;11714:81;;11780:4;11772:6;11768:17;11758:27;;11714:81;11842:2;11834:6;11831:14;11811:18;11808:38;11805:84;;;11861:18;;:::i;:::-;11805:84;11626:269;11575:320;;;:::o;11901:348::-;11941:7;11964:20;11982:1;11964:20;:::i;:::-;11959:25;;11998:20;12016:1;11998:20;:::i;:::-;11993:25;;12186:1;12118:66;12114:74;12111:1;12108:81;12103:1;12096:9;12089:17;12085:105;12082:131;;;12193:18;;:::i;:::-;12082:131;12241:1;12238;12234:9;12223:20;;11901:348;;;;:::o;12255:180::-;12303:77;12300:1;12293:88;12400:4;12397:1;12390:15;12424:4;12421:1;12414:15;12441:185;12481:1;12498:20;12516:1;12498:20;:::i;:::-;12493:25;;12532:20;12550:1;12532:20;:::i;:::-;12527:25;;12571:1;12561:35;;12576:18;;:::i;:::-;12561:35;12618:1;12615;12611:9;12606:14;;12441:185;;;;:::o;12632:234::-;12772:34;12768:1;12760:6;12756:14;12749:58;12841:17;12836:2;12828:6;12824:15;12817:42;12632:234;:::o;12872:366::-;13014:3;13035:67;13099:2;13094:3;13035:67;:::i;:::-;13028:74;;13111:93;13200:3;13111:93;:::i;:::-;13229:2;13224:3;13220:12;13213:19;;12872:366;;;:::o;13244:419::-;13410:4;13448:2;13437:9;13433:18;13425:26;;13497:9;13491:4;13487:20;13483:1;13472:9;13468:17;13461:47;13525:131;13651:4;13525:131;:::i;:::-;13517:139;;13244:419;;;:::o;13669:227::-;13809:34;13805:1;13797:6;13793:14;13786:58;13878:10;13873:2;13865:6;13861:15;13854:35;13669:227;:::o;13902:366::-;14044:3;14065:67;14129:2;14124:3;14065:67;:::i;:::-;14058:74;;14141:93;14230:3;14141:93;:::i;:::-;14259:2;14254:3;14250:12;14243:19;;13902:366;;;:::o;14274:419::-;14440:4;14478:2;14467:9;14463:18;14455:26;;14527:9;14521:4;14517:20;14513:1;14502:9;14498:17;14491:47;14555:131;14681:4;14555:131;:::i;:::-;14547:139;;14274:419;;;:::o;14699:176::-;14839:28;14835:1;14827:6;14823:14;14816:52;14699:176;:::o;14881:366::-;15023:3;15044:67;15108:2;15103:3;15044:67;:::i;:::-;15037:74;;15120:93;15209:3;15120:93;:::i;:::-;15238:2;15233:3;15229:12;15222:19;;14881:366;;;:::o;15253:419::-;15419:4;15457:2;15446:9;15442:18;15434:26;;15506:9;15500:4;15496:20;15492:1;15481:9;15477:17;15470:47;15534:131;15660:4;15534:131;:::i;:::-;15526:139;;15253:419;;;:::o;15678:178::-;15818:30;15814:1;15806:6;15802:14;15795:54;15678:178;:::o;15862:366::-;16004:3;16025:67;16089:2;16084:3;16025:67;:::i;:::-;16018:74;;16101:93;16190:3;16101:93;:::i;:::-;16219:2;16214:3;16210:12;16203:19;;15862:366;;;:::o;16234:419::-;16400:4;16438:2;16427:9;16423:18;16415:26;;16487:9;16481:4;16477:20;16473:1;16462:9;16458:17;16451:47;16515:131;16641:4;16515:131;:::i;:::-;16507:139;;16234:419;;;:::o;16659:143::-;16716:5;16747:6;16741:13;16732:22;;16763:33;16790:5;16763:33;:::i;:::-;16659:143;;;;:::o;16808:351::-;16878:6;16927:2;16915:9;16906:7;16902:23;16898:32;16895:119;;;16933:79;;:::i;:::-;16895:119;17053:1;17078:64;17134:7;17125:6;17114:9;17110:22;17078:64;:::i;:::-;17068:74;;17024:128;16808:351;;;;:::o;17165:332::-;17286:4;17324:2;17313:9;17309:18;17301:26;;17337:71;17405:1;17394:9;17390:17;17381:6;17337:71;:::i;:::-;17418:72;17486:2;17475:9;17471:18;17462:6;17418:72;:::i;:::-;17165:332;;;;;:::o;17503:137::-;17557:5;17588:6;17582:13;17573:22;;17604:30;17628:5;17604:30;:::i;:::-;17503:137;;;;:::o;17646:345::-;17713:6;17762:2;17750:9;17741:7;17737:23;17733:32;17730:119;;;17768:79;;:::i;:::-;17730:119;17888:1;17913:61;17966:7;17957:6;17946:9;17942:22;17913:61;:::i;:::-;17903:71;;17859:125;17646:345;;;;:::o;17997:244::-;18137:34;18133:1;18125:6;18121:14;18114:58;18206:27;18201:2;18193:6;18189:15;18182:52;17997:244;:::o;18247:366::-;18389:3;18410:67;18474:2;18469:3;18410:67;:::i;:::-;18403:74;;18486:93;18575:3;18486:93;:::i;:::-;18604:2;18599:3;18595:12;18588:19;;18247:366;;;:::o;18619:419::-;18785:4;18823:2;18812:9;18808:18;18800:26;;18872:9;18866:4;18862:20;18858:1;18847:9;18843:17;18836:47;18900:131;19026:4;18900:131;:::i;:::-;18892:139;;18619:419;;;:::o;19044:224::-;19184:34;19180:1;19172:6;19168:14;19161:58;19253:7;19248:2;19240:6;19236:15;19229:32;19044:224;:::o;19274:366::-;19416:3;19437:67;19501:2;19496:3;19437:67;:::i;:::-;19430:74;;19513:93;19602:3;19513:93;:::i;:::-;19631:2;19626:3;19622:12;19615:19;;19274:366;;;:::o;19646:419::-;19812:4;19850:2;19839:9;19835:18;19827:26;;19899:9;19893:4;19889:20;19885:1;19874:9;19870:17;19863:47;19927:131;20053:4;19927:131;:::i;:::-;19919:139;;19646:419;;;:::o;20071:223::-;20211:34;20207:1;20199:6;20195:14;20188:58;20280:6;20275:2;20267:6;20263:15;20256:31;20071:223;:::o;20300:366::-;20442:3;20463:67;20527:2;20522:3;20463:67;:::i;:::-;20456:74;;20539:93;20628:3;20539:93;:::i;:::-;20657:2;20652:3;20648:12;20641:19;;20300:366;;;:::o;20672:419::-;20838:4;20876:2;20865:9;20861:18;20853:26;;20925:9;20919:4;20915:20;20911:1;20900:9;20896:17;20889:47;20953:131;21079:4;20953:131;:::i;:::-;20945:139;;20672:419;;;:::o;21097:240::-;21237:34;21233:1;21225:6;21221:14;21214:58;21306:23;21301:2;21293:6;21289:15;21282:48;21097:240;:::o;21343:366::-;21485:3;21506:67;21570:2;21565:3;21506:67;:::i;:::-;21499:74;;21582:93;21671:3;21582:93;:::i;:::-;21700:2;21695:3;21691:12;21684:19;;21343:366;;;:::o;21715:419::-;21881:4;21919:2;21908:9;21904:18;21896:26;;21968:9;21962:4;21958:20;21954:1;21943:9;21939:17;21932:47;21996:131;22122:4;21996:131;:::i;:::-;21988:139;;21715:419;;;:::o;22140:239::-;22280:34;22276:1;22268:6;22264:14;22257:58;22349:22;22344:2;22336:6;22332:15;22325:47;22140:239;:::o;22385:366::-;22527:3;22548:67;22612:2;22607:3;22548:67;:::i;:::-;22541:74;;22624:93;22713:3;22624:93;:::i;:::-;22742:2;22737:3;22733:12;22726:19;;22385:366;;;:::o;22757:419::-;22923:4;22961:2;22950:9;22946:18;22938:26;;23010:9;23004:4;23000:20;22996:1;22985:9;22981:17;22974:47;23038:131;23164:4;23038:131;:::i;:::-;23030:139;;22757:419;;;:::o;23182:225::-;23322:34;23318:1;23310:6;23306:14;23299:58;23391:8;23386:2;23378:6;23374:15;23367:33;23182:225;:::o;23413:366::-;23555:3;23576:67;23640:2;23635:3;23576:67;:::i;:::-;23569:74;;23652:93;23741:3;23652:93;:::i;:::-;23770:2;23765:3;23761:12;23754:19;;23413:366;;;:::o;23785:419::-;23951:4;23989:2;23978:9;23974:18;23966:26;;24038:9;24032:4;24028:20;24024:1;24013:9;24009:17;24002:47;24066:131;24192:4;24066:131;:::i;:::-;24058:139;;23785:419;;;:::o;24210:223::-;24350:34;24346:1;24338:6;24334:14;24327:58;24419:6;24414:2;24406:6;24402:15;24395:31;24210:223;:::o;24439:366::-;24581:3;24602:67;24666:2;24661:3;24602:67;:::i;:::-;24595:74;;24678:93;24767:3;24678:93;:::i;:::-;24796:2;24791:3;24787:12;24780:19;;24439:366;;;:::o;24811:419::-;24977:4;25015:2;25004:9;25000:18;24992:26;;25064:9;25058:4;25054:20;25050:1;25039:9;25035:17;25028:47;25092:131;25218:4;25092:131;:::i;:::-;25084:139;;24811:419;;;:::o;25236:221::-;25376:34;25372:1;25364:6;25360:14;25353:58;25445:4;25440:2;25432:6;25428:15;25421:29;25236:221;:::o;25463:366::-;25605:3;25626:67;25690:2;25685:3;25626:67;:::i;:::-;25619:74;;25702:93;25791:3;25702:93;:::i;:::-;25820:2;25815:3;25811:12;25804:19;;25463:366;;;:::o;25835:419::-;26001:4;26039:2;26028:9;26024:18;26016:26;;26088:9;26082:4;26078:20;26074:1;26063:9;26059:17;26052:47;26116:131;26242:4;26116:131;:::i;:::-;26108:139;;25835:419;;;:::o;26260:224::-;26400:34;26396:1;26388:6;26384:14;26377:58;26469:7;26464:2;26456:6;26452:15;26445:32;26260:224;:::o;26490:366::-;26632:3;26653:67;26717:2;26712:3;26653:67;:::i;:::-;26646:74;;26729:93;26818:3;26729:93;:::i;:::-;26847:2;26842:3;26838:12;26831:19;;26490:366;;;:::o;26862:419::-;27028:4;27066:2;27055:9;27051:18;27043:26;;27115:9;27109:4;27105:20;27101:1;27090:9;27086:17;27079:47;27143:131;27269:4;27143:131;:::i;:::-;27135:139;;26862:419;;;:::o;27287:222::-;27427:34;27423:1;27415:6;27411:14;27404:58;27496:5;27491:2;27483:6;27479:15;27472:30;27287:222;:::o;27515:366::-;27657:3;27678:67;27742:2;27737:3;27678:67;:::i;:::-;27671:74;;27754:93;27843:3;27754:93;:::i;:::-;27872:2;27867:3;27863:12;27856:19;;27515:366;;;:::o;27887:419::-;28053:4;28091:2;28080:9;28076:18;28068:26;;28140:9;28134:4;28130:20;28126:1;28115:9;28111:17;28104:47;28168:131;28294:4;28168:131;:::i;:::-;28160:139;;27887:419;;;:::o;28312:172::-;28452:24;28448:1;28440:6;28436:14;28429:48;28312:172;:::o;28490:366::-;28632:3;28653:67;28717:2;28712:3;28653:67;:::i;:::-;28646:74;;28729:93;28818:3;28729:93;:::i;:::-;28847:2;28842:3;28838:12;28831:19;;28490:366;;;:::o;28862:419::-;29028:4;29066:2;29055:9;29051:18;29043:26;;29115:9;29109:4;29105:20;29101:1;29090:9;29086:17;29079:47;29143:131;29269:4;29143:131;:::i;:::-;29135:139;;28862:419;;;:::o;29287:302::-;29427:34;29423:1;29415:6;29411:14;29404:58;29496:34;29491:2;29483:6;29479:15;29472:59;29565:16;29560:2;29552:6;29548:15;29541:41;29287:302;:::o;29595:366::-;29737:3;29758:67;29822:2;29817:3;29758:67;:::i;:::-;29751:74;;29834:93;29923:3;29834:93;:::i;:::-;29952:2;29947:3;29943:12;29936:19;;29595:366;;;:::o;29967:419::-;30133:4;30171:2;30160:9;30156:18;30148:26;;30220:9;30214:4;30210:20;30206:1;30195:9;30191:17;30184:47;30248:131;30374:4;30248:131;:::i;:::-;30240:139;;29967:419;;;:::o;30392:240::-;30532:34;30528:1;30520:6;30516:14;30509:58;30601:23;30596:2;30588:6;30584:15;30577:48;30392:240;:::o;30638:366::-;30780:3;30801:67;30865:2;30860:3;30801:67;:::i;:::-;30794:74;;30877:93;30966:3;30877:93;:::i;:::-;30995:2;30990:3;30986:12;30979:19;;30638:366;;;:::o;31010:419::-;31176:4;31214:2;31203:9;31199:18;31191:26;;31263:9;31257:4;31253:20;31249:1;31238:9;31234:17;31227:47;31291:131;31417:4;31291:131;:::i;:::-;31283:139;;31010:419;;;:::o;31435:169::-;31575:21;31571:1;31563:6;31559:14;31552:45;31435:169;:::o;31610:366::-;31752:3;31773:67;31837:2;31832:3;31773:67;:::i;:::-;31766:74;;31849:93;31938:3;31849:93;:::i;:::-;31967:2;31962:3;31958:12;31951:19;;31610:366;;;:::o;31982:419::-;32148:4;32186:2;32175:9;32171:18;32163:26;;32235:9;32229:4;32225:20;32221:1;32210:9;32206:17;32199:47;32263:131;32389:4;32263:131;:::i;:::-;32255:139;;31982:419;;;:::o;32407:241::-;32547:34;32543:1;32535:6;32531:14;32524:58;32616:24;32611:2;32603:6;32599:15;32592:49;32407:241;:::o;32654:366::-;32796:3;32817:67;32881:2;32876:3;32817:67;:::i;:::-;32810:74;;32893:93;32982:3;32893:93;:::i;:::-;33011:2;33006:3;33002:12;32995:19;;32654:366;;;:::o;33026:419::-;33192:4;33230:2;33219:9;33215:18;33207:26;;33279:9;33273:4;33269:20;33265:1;33254:9;33250:17;33243:47;33307:131;33433:4;33307:131;:::i;:::-;33299:139;;33026:419;;;:::o;33451:191::-;33491:4;33511:20;33529:1;33511:20;:::i;:::-;33506:25;;33545:20;33563:1;33545:20;:::i;:::-;33540:25;;33584:1;33581;33578:8;33575:34;;;33589:18;;:::i;:::-;33575:34;33634:1;33631;33627:9;33619:17;;33451:191;;;;:::o;33648:225::-;33788:34;33784:1;33776:6;33772:14;33765:58;33857:8;33852:2;33844:6;33840:15;33833:33;33648:225;:::o;33879:366::-;34021:3;34042:67;34106:2;34101:3;34042:67;:::i;:::-;34035:74;;34118:93;34207:3;34118:93;:::i;:::-;34236:2;34231:3;34227:12;34220:19;;33879:366;;;:::o;34251:419::-;34417:4;34455:2;34444:9;34440:18;34432:26;;34504:9;34498:4;34494:20;34490:1;34479:9;34475:17;34468:47;34532:131;34658:4;34532:131;:::i;:::-;34524:139;;34251:419;;;:::o;34676:147::-;34777:11;34814:3;34799:18;;34676:147;;;;:::o;34829:114::-;;:::o;34949:398::-;35108:3;35129:83;35210:1;35205:3;35129:83;:::i;:::-;35122:90;;35221:93;35310:3;35221:93;:::i;:::-;35339:1;35334:3;35330:11;35323:18;;34949:398;;;:::o;35353:379::-;35537:3;35559:147;35702:3;35559:147;:::i;:::-;35552:154;;35723:3;35716:10;;35353:379;;;:::o;35738:442::-;35887:4;35925:2;35914:9;35910:18;35902:26;;35938:71;36006:1;35995:9;35991:17;35982:6;35938:71;:::i;:::-;36019:72;36087:2;36076:9;36072:18;36063:6;36019:72;:::i;:::-;36101;36169:2;36158:9;36154:18;36145:6;36101:72;:::i;:::-;35738:442;;;;;;:::o;36186:180::-;36234:77;36231:1;36224:88;36331:4;36328:1;36321:15;36355:4;36352:1;36345:15;36372:180;36420:77;36417:1;36410:88;36517:4;36514:1;36507:15;36541:4;36538:1;36531:15;36558:143;36615:5;36646:6;36640:13;36631:22;;36662:33;36689:5;36662:33;:::i;:::-;36558:143;;;;:::o;36707:351::-;36777:6;36826:2;36814:9;36805:7;36801:23;36797:32;36794:119;;;36832:79;;:::i;:::-;36794:119;36952:1;36977:64;37033:7;37024:6;37013:9;37009:22;36977:64;:::i;:::-;36967:74;;36923:128;36707:351;;;;:::o;37064:85::-;37109:7;37138:5;37127:16;;37064:85;;;:::o;37155:158::-;37213:9;37246:61;37264:42;37273:32;37299:5;37273:32;:::i;:::-;37264:42;:::i;:::-;37246:61;:::i;:::-;37233:74;;37155:158;;;:::o;37319:147::-;37414:45;37453:5;37414:45;:::i;:::-;37409:3;37402:58;37319:147;;:::o;37472:114::-;37539:6;37573:5;37567:12;37557:22;;37472:114;;;:::o;37592:184::-;37691:11;37725:6;37720:3;37713:19;37765:4;37760:3;37756:14;37741:29;;37592:184;;;;:::o;37782:132::-;37849:4;37872:3;37864:11;;37902:4;37897:3;37893:14;37885:22;;37782:132;;;:::o;37920:108::-;37997:24;38015:5;37997:24;:::i;:::-;37992:3;37985:37;37920:108;;:::o;38034:179::-;38103:10;38124:46;38166:3;38158:6;38124:46;:::i;:::-;38202:4;38197:3;38193:14;38179:28;;38034:179;;;;:::o;38219:113::-;38289:4;38321;38316:3;38312:14;38304:22;;38219:113;;;:::o;38368:732::-;38487:3;38516:54;38564:5;38516:54;:::i;:::-;38586:86;38665:6;38660:3;38586:86;:::i;:::-;38579:93;;38696:56;38746:5;38696:56;:::i;:::-;38775:7;38806:1;38791:284;38816:6;38813:1;38810:13;38791:284;;;38892:6;38886:13;38919:63;38978:3;38963:13;38919:63;:::i;:::-;38912:70;;39005:60;39058:6;39005:60;:::i;:::-;38995:70;;38851:224;38838:1;38835;38831:9;38826:14;;38791:284;;;38795:14;39091:3;39084:10;;38492:608;;;38368:732;;;;:::o;39106:831::-;39369:4;39407:3;39396:9;39392:19;39384:27;;39421:71;39489:1;39478:9;39474:17;39465:6;39421:71;:::i;:::-;39502:80;39578:2;39567:9;39563:18;39554:6;39502:80;:::i;:::-;39629:9;39623:4;39619:20;39614:2;39603:9;39599:18;39592:48;39657:108;39760:4;39751:6;39657:108;:::i;:::-;39649:116;;39775:72;39843:2;39832:9;39828:18;39819:6;39775:72;:::i;:::-;39857:73;39925:3;39914:9;39910:19;39901:6;39857:73;:::i;:::-;39106:831;;;;;;;;:::o;39943:807::-;40192:4;40230:3;40219:9;40215:19;40207:27;;40244:71;40312:1;40301:9;40297:17;40288:6;40244:71;:::i;:::-;40325:72;40393:2;40382:9;40378:18;40369:6;40325:72;:::i;:::-;40407:80;40483:2;40472:9;40468:18;40459:6;40407:80;:::i;:::-;40497;40573:2;40562:9;40558:18;40549:6;40497:80;:::i;:::-;40587:73;40655:3;40644:9;40640:19;40631:6;40587:73;:::i;:::-;40670;40738:3;40727:9;40723:19;40714:6;40670:73;:::i;:::-;39943:807;;;;;;;;;:::o;40756:663::-;40844:6;40852;40860;40909:2;40897:9;40888:7;40884:23;40880:32;40877:119;;;40915:79;;:::i;:::-;40877:119;41035:1;41060:64;41116:7;41107:6;41096:9;41092:22;41060:64;:::i;:::-;41050:74;;41006:128;41173:2;41199:64;41255:7;41246:6;41235:9;41231:22;41199:64;:::i;:::-;41189:74;;41144:129;41312:2;41338:64;41394:7;41385:6;41374:9;41370:22;41338:64;:::i;:::-;41328:74;;41283:129;40756:663;;;;;:::o

Swarm Source

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