ETH Price: $2,617.84 (+1.15%)

Token

Dejitaru Ha (Blade)
 

Overview

Max Total Supply

1,000,000 Blade

Holders

128

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
batmaxi.eth
Balance
0.000000000000000001 Blade

Value
$0.00
0xbe918d37ced93bdf0d0dd7d25e185712b410d7cf
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:
DejitaruHa

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-13
*/

/*
 * 
https://dejitaru-ha.com 

 TSUKA is the handle
 HA is the blade
 The Sword has been passed.
 A swining sword with no vision draws air.
 The vision has been inherited by the wyrmlings.

 Honor the Dragon
 protect the Sangha.


 */
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

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

    function WETH() external pure returns (address);

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

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

interface IUniswapV2Pair {
    function sync() external;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract DejitaruHa is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 0; // 0 = 0%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 360000000000000 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 300000000000000 minutes;
    uint256 public lastManualLpBurnTime;

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

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

    uint256 public buyTotalFees;
    uint256 public constant buyMarketingFee = 5;
    uint256 public constant buyLiquidityFee = 0;
    uint256 public constant buyDevFee = 0;

    uint256 public sellTotalFees;
    uint256 public constant sellMarketingFee = 5;
    uint256 public constant sellLiquidityFee = 0;
    uint256 public constant sellDevFee = 0;

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

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    event BoughtEarly(address indexed sniper);

    constructor() ERC20("Dejitaru Ha", "Blade") {
        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 totalSupply = 1_000_000 * 1e18; // 1 million total supply

        maxTransactionAmount = 30_000 * 1e18; //3% from total supply maxTransactionAmountTxn
        maxWallet = 30_000 * 1e18; // 3% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 3) / 1000; // 0.03% swap wallet

        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0x8242e56a759aa0B069B9c983fe3f582020CD1eC9); // set as marketing wallet
        devWallet = address(0x8242e56a759aa0B069B9c983fe3f582020CD1eC9); // 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 startTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

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

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

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

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

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

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

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

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

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

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

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

60a06040526000600c556001600d60006101000a81548160ff0219169083151502179055506601476b081e8000600e55663ff2e795f500006010556001601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff0219169083151502179055506001601460006101000a81548160ff021916908315150217905550348015620000b357600080fd5b506040518060400160405280600b81526020017f44656a69746172752048610000000000000000000000000000000000000000008152506040518060400160405280600581526020017f426c61646500000000000000000000000000000000000000000000000000000081525081600390805190602001906200013892919062000b49565b5080600490805190602001906200015192919062000b49565b50505062000174620001686200060960201b60201c565b6200061160201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001a0816001620006d760201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021e57600080fd5b505afa15801562000233573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000259919062000c10565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002bc57600080fd5b505afa158015620002d1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f7919062000c10565b6040518363ffffffff1660e01b81526004016200031692919062000cf3565b602060405180830381600087803b1580156200033157600080fd5b505af115801562000346573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036c919062000c10565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003e1600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006d760201b60201c565b62000416600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620007c160201b60201c565b600069d3c21bcecceda1000000905069065a4da25d3016c0000060098190555069065a4da25d3016c00000600b819055506103e860038262000459919062000e44565b62000465919062000e0c565b600a8190555060008060056200047c919062000daf565b62000488919062000daf565b60158190555060008060056200049f919062000daf565b620004ab919062000daf565b601681905550738242e56a759aa0b069b9c983fe3f582020cd1ec9600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738242e56a759aa0b069b9c983fe3f582020cd1ec9600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200057d6200056f6200086260201b60201c565b60016200088c60201b60201c565b620005903060016200088c60201b60201c565b620005a561dead60016200088c60201b60201c565b620005c7620005b96200086260201b60201c565b6001620006d760201b60201c565b620005da306001620006d760201b60201c565b620005ef61dead6001620006d760201b60201c565b620006013382620009c660201b60201c565b505062000fcc565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006e76200060960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200070d6200086260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000766576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075d9062000d3d565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200089c6200060960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008c26200086260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200091b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009129062000d3d565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009ba919062000d20565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a309062000d5f565b60405180910390fd5b62000a4d6000838362000b3f60201b60201c565b806002600082825462000a61919062000daf565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ab8919062000daf565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b1f919062000d81565b60405180910390a362000b3b6000838362000b4460201b60201c565b5050565b505050565b505050565b82805462000b579062000eef565b90600052602060002090601f01602090048101928262000b7b576000855562000bc7565b82601f1062000b9657805160ff191683800117855562000bc7565b8280016001018555821562000bc7579182015b8281111562000bc657825182559160200191906001019062000ba9565b5b50905062000bd6919062000bda565b5090565b5b8082111562000bf557600081600090555060010162000bdb565b5090565b60008151905062000c0a8162000fb2565b92915050565b60006020828403121562000c2357600080fd5b600062000c338482850162000bf9565b91505092915050565b62000c478162000ea5565b82525050565b62000c588162000eb9565b82525050565b600062000c6d60208362000d9e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600062000caf601f8362000d9e565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b62000ced8162000ee5565b82525050565b600060408201905062000d0a600083018562000c3c565b62000d19602083018462000c3c565b9392505050565b600060208201905062000d37600083018462000c4d565b92915050565b6000602082019050818103600083015262000d588162000c5e565b9050919050565b6000602082019050818103600083015262000d7a8162000ca0565b9050919050565b600060208201905062000d98600083018462000ce2565b92915050565b600082825260208201905092915050565b600062000dbc8262000ee5565b915062000dc98362000ee5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e015762000e0062000f25565b5b828201905092915050565b600062000e198262000ee5565b915062000e268362000ee5565b92508262000e395762000e3862000f54565b5b828204905092915050565b600062000e518262000ee5565b915062000e5e8362000ee5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e9a5762000e9962000f25565b5b828202905092915050565b600062000eb28262000ec5565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000f0857607f821691505b6020821081141562000f1f5762000f1e62000f83565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b62000fbd8162000ea5565b811462000fc957600080fd5b50565b60805160601c6157676200101560003960008181610f2901528181612bc501528181613fda015281816140f001528181614117015281816141b301526141da01526157676000f3fe60806040526004361061039b5760003560e01c80638da5cb5b116101dc578063bbc0c74211610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610d9b578063f637434214610dc4578063f8b45b0514610def578063fe72b27a14610e1a576103a2565b8063dd62ed3e14610cdd578063e2f4560514610d1a578063e884f26014610d45578063f11a24d314610d70576103a2565b8063c876d0b9116100dc578063c876d0b914610c1f578063c8c8ebe414610c4a578063d257b34f14610c75578063d85ba06314610cb2576103a2565b8063bbc0c74214610ba2578063c024666814610bcd578063c18bc19514610bf6576103a2565b80639ec22c0e1161017a578063a4c82a0011610149578063a4c82a0014610ad4578063a9059cbb14610aff578063aacebbe314610b3c578063b62496f514610b65576103a2565b80639ec22c0e14610a165780639fccce3214610a41578063a0d82dc514610a6c578063a457c2d714610a97576103a2565b8063924de9b7116101b6578063924de9b71461096e57806395d89b41146109975780639a7a23d6146109c25780639c3b4fdc146109eb576103a2565b80638da5cb5b146108ed5780638ea5220f146109185780639213691314610943576103a2565b80632e82f1a0116102c15780636ddd17131161025f578063751039fc1161022e578063751039fc146108435780637571336a1461086e57806375f0a874146108975780637bce5a04146108c2576103a2565b80636ddd17131461079b57806370a08231146107c6578063715018a614610803578063730c18881461081a576103a2565b806349bd5a5e1161029b57806349bd5a5e146106dd5780634a62bb65146107085780634fbee193146107335780636a486a8e14610770576103a2565b80632e82f1a01461064a578063313ce5671461067557806339509351146106a0576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146105a057806327c8f835146105dd578063293230b8146106085780632c3e486c1461061f576103a2565b8063199ffc72146104f65780631a8145bb146105215780631f3fed8f1461054c578063203e727e14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e57565b6040516103c99190615020565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f4919061441a565b610ee9565b6040516104069190614fea565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190614301565b610f07565b6040516104439190614fea565b60405180910390f35b34801561045857600080fd5b50610461610f27565b60405161046e9190615005565b60405180910390f35b34801561048357600080fd5b5061048c610f4b565b6040516104999190615322565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190614301565b610f55565b005b3480156104d757600080fd5b506104e0611091565b6040516104ed9190615322565b60405180910390f35b34801561050257600080fd5b5061050b611097565b6040516105189190615322565b60405180910390f35b34801561052d57600080fd5b5061053661109d565b6040516105439190615322565b60405180910390f35b34801561055857600080fd5b506105616110a3565b60405161056e9190615322565b60405180910390f35b34801561058357600080fd5b5061059e6004803603810190610599919061447f565b6110a9565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061438f565b6111b8565b6040516105d49190614fea565b60405180910390f35b3480156105e957600080fd5b506105f26112b0565b6040516105ff9190614f6e565b60405180910390f35b34801561061457600080fd5b5061061d6112b6565b005b34801561062b57600080fd5b50610634611371565b6040516106419190615322565b60405180910390f35b34801561065657600080fd5b5061065f611377565b60405161066c9190614fea565b60405180910390f35b34801561068157600080fd5b5061068a61138a565b60405161069791906153ce565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c2919061441a565b611393565b6040516106d49190614fea565b60405180910390f35b3480156106e957600080fd5b506106f261143f565b6040516106ff9190614f6e565b60405180910390f35b34801561071457600080fd5b5061071d611465565b60405161072a9190614fea565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190614301565b611478565b6040516107679190614fea565b60405180910390f35b34801561077c57600080fd5b506107856114ce565b6040516107929190615322565b60405180910390f35b3480156107a757600080fd5b506107b06114d4565b6040516107bd9190614fea565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e89190614301565b6114e7565b6040516107fa9190615322565b60405180910390f35b34801561080f57600080fd5b5061081861152f565b005b34801561082657600080fd5b50610841600480360381019061083c91906144d1565b6115b7565b005b34801561084f57600080fd5b506108586116f7565b6040516108659190614fea565b60405180910390f35b34801561087a57600080fd5b50610895600480360381019061089091906143de565b611797565b005b3480156108a357600080fd5b506108ac61186e565b6040516108b99190614f6e565b60405180910390f35b3480156108ce57600080fd5b506108d7611894565b6040516108e49190615322565b60405180910390f35b3480156108f957600080fd5b50610902611899565b60405161090f9190614f6e565b60405180910390f35b34801561092457600080fd5b5061092d6118c3565b60405161093a9190614f6e565b60405180910390f35b34801561094f57600080fd5b506109586118e9565b6040516109659190615322565b60405180910390f35b34801561097a57600080fd5b5061099560048036038101906109909190614456565b6118ee565b005b3480156109a357600080fd5b506109ac611987565b6040516109b99190615020565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e491906143de565b611a19565b005b3480156109f757600080fd5b50610a00611b34565b604051610a0d9190615322565b60405180910390f35b348015610a2257600080fd5b50610a2b611b39565b604051610a389190615322565b60405180910390f35b348015610a4d57600080fd5b50610a56611b3f565b604051610a639190615322565b60405180910390f35b348015610a7857600080fd5b50610a81611b45565b604051610a8e9190615322565b60405180910390f35b348015610aa357600080fd5b50610abe6004803603810190610ab9919061441a565b611b4a565b604051610acb9190614fea565b60405180910390f35b348015610ae057600080fd5b50610ae9611c35565b604051610af69190615322565b60405180910390f35b348015610b0b57600080fd5b50610b266004803603810190610b21919061441a565b611c3b565b604051610b339190614fea565b60405180910390f35b348015610b4857600080fd5b50610b636004803603810190610b5e9190614301565b611c59565b005b348015610b7157600080fd5b50610b8c6004803603810190610b879190614301565b611d95565b604051610b999190614fea565b60405180910390f35b348015610bae57600080fd5b50610bb7611db5565b604051610bc49190614fea565b60405180910390f35b348015610bd957600080fd5b50610bf46004803603810190610bef91906143de565b611dc8565b005b348015610c0257600080fd5b50610c1d6004803603810190610c18919061447f565b611eed565b005b348015610c2b57600080fd5b50610c34611ffc565b604051610c419190614fea565b60405180910390f35b348015610c5657600080fd5b50610c5f61200f565b604051610c6c9190615322565b60405180910390f35b348015610c8157600080fd5b50610c9c6004803603810190610c97919061447f565b612015565b604051610ca99190614fea565b60405180910390f35b348015610cbe57600080fd5b50610cc761216a565b604051610cd49190615322565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190614353565b612170565b604051610d119190615322565b60405180910390f35b348015610d2657600080fd5b50610d2f6121f7565b604051610d3c9190615322565b60405180910390f35b348015610d5157600080fd5b50610d5a6121fd565b604051610d679190614fea565b60405180910390f35b348015610d7c57600080fd5b50610d8561229d565b604051610d929190615322565b60405180910390f35b348015610da757600080fd5b50610dc26004803603810190610dbd9190614301565b6122a2565b005b348015610dd057600080fd5b50610dd961239a565b604051610de69190615322565b60405180910390f35b348015610dfb57600080fd5b50610e0461239f565b604051610e119190615322565b60405180910390f35b348015610e2657600080fd5b50610e416004803603810190610e3c919061447f565b6123a5565b604051610e4e9190614fea565b60405180910390f35b606060038054610e669061561c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e929061561c565b8015610edf5780601f10610eb457610100808354040283529160200191610edf565b820191906000526020600020905b815481529060010190602001808311610ec257829003601f168201915b5050505050905090565b6000610efd610ef6612692565b848461269a565b6001905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610f5d612692565b73ffffffffffffffffffffffffffffffffffffffff16610f7b611899565b73ffffffffffffffffffffffffffffffffffffffff1614610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890615222565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60105481565b600c5481565b60185481565b60175481565b6110b1612692565b73ffffffffffffffffffffffffffffffffffffffff166110cf611899565b73ffffffffffffffffffffffffffffffffffffffff1614611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c90615222565b60405180910390fd5b670de0b6b3a76400006103e8600161113b610f4b565b61114591906154d0565b61114f919061549f565b611159919061549f565b81101561119b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119290615302565b60405180910390fd5b670de0b6b3a7640000816111af91906154d0565b60098190555050565b60006111c5848484612865565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611210612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790615202565b60405180910390fd5b6112a48561129c612692565b85840361269a565b60019150509392505050565b61dead81565b6112be612692565b73ffffffffffffffffffffffffffffffffffffffff166112dc611899565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990615222565b60405180910390fd5b6001601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff02191690831515021790555042600f81905550565b600e5481565b600d60009054906101000a900460ff1681565b60006012905090565b60006114356113a0612692565b8484600160006113ae612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114309190615449565b61269a565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260009054906101000a900460ff1681565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60165481565b601260029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611537612692565b73ffffffffffffffffffffffffffffffffffffffff16611555611899565b73ffffffffffffffffffffffffffffffffffffffff16146115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a290615222565b60405180910390fd5b6115b560006135f9565b565b6115bf612692565b73ffffffffffffffffffffffffffffffffffffffff166115dd611899565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90615222565b60405180910390fd5b610258831015611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f906150c2565b60405180910390fd5b6103e8821115801561168b575060008210155b6116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190615162565b60405180910390fd5b82600e8190555081600c8190555080600d60006101000a81548160ff021916908315150217905550505050565b6000611701612692565b73ffffffffffffffffffffffffffffffffffffffff1661171f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90615222565b60405180910390fd5b6000601260006101000a81548160ff0219169083151502179055506001905090565b61179f612692565b73ffffffffffffffffffffffffffffffffffffffff166117bd611899565b73ffffffffffffffffffffffffffffffffffffffff1614611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90615222565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600581565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600581565b6118f6612692565b73ffffffffffffffffffffffffffffffffffffffff16611914611899565b73ffffffffffffffffffffffffffffffffffffffff161461196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190615222565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b6060600480546119969061561c565b80601f01602080910402602001604051908101604052809291908181526020018280546119c29061561c565b8015611a0f5780601f106119e457610100808354040283529160200191611a0f565b820191906000526020600020905b8154815290600101906020018083116119f257829003601f168201915b5050505050905090565b611a21612692565b73ffffffffffffffffffffffffffffffffffffffff16611a3f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8c90615222565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90615102565b60405180910390fd5b611b3082826136bf565b5050565b600081565b60115481565b60195481565b600081565b60008060016000611b59612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0d906152e2565b60405180910390fd5b611c2a611c21612692565b8585840361269a565b600191505092915050565b600f5481565b6000611c4f611c48612692565b8484612865565b6001905092915050565b611c61612692565b73ffffffffffffffffffffffffffffffffffffffff16611c7f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc90615222565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601c6020528060005260406000206000915054906101000a900460ff1681565b601260019054906101000a900460ff1681565b611dd0612692565b73ffffffffffffffffffffffffffffffffffffffff16611dee611899565b73ffffffffffffffffffffffffffffffffffffffff1614611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b90615222565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ee19190614fea565b60405180910390a25050565b611ef5612692565b73ffffffffffffffffffffffffffffffffffffffff16611f13611899565b73ffffffffffffffffffffffffffffffffffffffff1614611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6090615222565b60405180910390fd5b670de0b6b3a76400006103e86005611f7f610f4b565b611f8991906154d0565b611f93919061549f565b611f9d919061549f565b811015611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd6906150e2565b60405180910390fd5b670de0b6b3a764000081611ff391906154d0565b600b8190555050565b601460009054906101000a900460ff1681565b60095481565b600061201f612692565b73ffffffffffffffffffffffffffffffffffffffff1661203d611899565b73ffffffffffffffffffffffffffffffffffffffff1614612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a90615222565b60405180910390fd5b620186a060016120a1610f4b565b6120ab91906154d0565b6120b5919061549f565b8210156120f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ee90615182565b60405180910390fd5b6103e86005612104610f4b565b61210e91906154d0565b612118919061549f565b82111561215a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612151906151a2565b60405180910390fd5b81600a8190555060019050919050565b60155481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b6000612207612692565b73ffffffffffffffffffffffffffffffffffffffff16612225611899565b73ffffffffffffffffffffffffffffffffffffffff161461227b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227290615222565b60405180910390fd5b6000601460006101000a81548160ff0219169083151502179055506001905090565b600081565b6122aa612692565b73ffffffffffffffffffffffffffffffffffffffff166122c8611899565b73ffffffffffffffffffffffffffffffffffffffff161461231e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231590615222565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561238e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238590615082565b60405180910390fd5b612397816135f9565b50565b600081565b600b5481565b60006123af612692565b73ffffffffffffffffffffffffffffffffffffffff166123cd611899565b73ffffffffffffffffffffffffffffffffffffffff1614612423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241a90615222565b60405180910390fd5b6010546011546124339190615449565b4211612474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246b90615282565b60405180910390fd5b6103e88211156124b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b090615242565b60405180910390fd5b4260118190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b815260040161251d9190614f6e565b60206040518083038186803b15801561253557600080fd5b505afa158015612549573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061256d91906144a8565b9050600061259861271061258a868561376090919063ffffffff16565b61377690919063ffffffff16565b905060008111156125d3576125d2600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead8361378c565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561264257600080fd5b505af1158015612656573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561270a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612701906152a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561277a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612771906150a2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128589190615322565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cc90615262565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293c90615042565b60405180910390fd5b600081141561295f5761295a8383600061378c565b6135f4565b601260009054906101000a900460ff16156130245761297c611899565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129ea57506129ba611899565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a235750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a765750600660149054906101000a900460ff16155b1561302357601260019054906101000a900460ff16612b7057601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b305750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6690615062565b60405180910390fd5b5b601460009054906101000a900460ff1615612d3a57612b8d611899565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612c1457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c6e5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d395743601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ceb906151e2565b60405180910390fd5b43601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ddd5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e8457600954811115612e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1e906151c2565b60405180910390fd5b600b54612e33836114e7565b82612e3e9190615449565b1115612e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e76906152c2565b60405180910390fd5b613022565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f275750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f7657600954811115612f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6890615142565b60405180910390fd5b613021565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661302057600b54612fd3836114e7565b82612fde9190615449565b111561301f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613016906152c2565b60405180910390fd5b5b5b5b5b5b600061302f306114e7565b90506000600a5482101590508080156130545750601260029054906101000a900460ff165b801561306d5750600660149054906101000a900460ff16155b80156130c35750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131195750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561316f5750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131b3576001600660146101000a81548160ff021916908315150217905550613197613a0d565b6000600660146101000a81548160ff0219169083151502179055505b600660149054906101000a900460ff161580156132195750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156132315750600d60009054906101000a900460ff165b801561324c5750600e54600f546132489190615449565b4210155b80156132a25750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132b1576132af613cf4565b505b6000600660149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133675750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561337157600090505b600081156135e457601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133d457506000601654115b1561349e5761340160646133f36016548861376090919063ffffffff16565b61377690919063ffffffff16565b905060165460008261341391906154d0565b61341d919061549f565b6018600082825461342e9190615449565b9250508190555060165460008261344591906154d0565b61344f919061549f565b601960008282546134609190615449565b9250508190555060165460058261347791906154d0565b613481919061549f565b601760008282546134929190615449565b925050819055506135c0565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134f957506000601554115b156135bf5761352660646135186015548861376090919063ffffffff16565b61377690919063ffffffff16565b905060155460008261353891906154d0565b613542919061549f565b601860008282546135539190615449565b9250508190555060155460008261356a91906154d0565b613574919061549f565b601960008282546135859190615449565b9250508190555060155460058261359c91906154d0565b6135a6919061549f565b601760008282546135b79190615449565b925050819055505b5b60008111156135d5576135d487308361378c565b5b80856135e1919061552a565b94505b6135ef87878761378c565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361376e91906154d0565b905092915050565b60008183613784919061549f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137f390615262565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561386c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161386390615042565b60405180910390fd5b613877838383613ecf565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156138fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138f490615122565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139909190615449565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516139f49190615322565b60405180910390a3613a07848484613ed4565b50505050565b6000613a18306114e7565b90506000601954601754601854613a2f9190615449565b613a399190615449565b9050600080831480613a4b5750600082145b15613a5857505050613cf2565b6014600a54613a6791906154d0565b831115613a80576014600a54613a7d91906154d0565b92505b600060028360185486613a9391906154d0565b613a9d919061549f565b613aa7919061549f565b90506000613abe8286613ed990919063ffffffff16565b90506000479050613ace82613eef565b6000613ae38247613ed990919063ffffffff16565b90506000613b0e87613b006017548561376090919063ffffffff16565b61377690919063ffffffff16565b90506000613b3988613b2b6019548661376090919063ffffffff16565b61377690919063ffffffff16565b90506000818385613b4a919061552a565b613b54919061552a565b9050600060188190555060006017819055506000601981905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613bb490614f59565b60006040518083038185875af1925050503d8060008114613bf1576040519150601f19603f3d011682016040523d82523d6000602084013e613bf6565b606091505b505080985050600087118015613c0c5750600081115b15613c5957613c1b87826141ad565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601854604051613c5093929190615397565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613c9f90614f59565b60006040518083038185875af1925050503d8060008114613cdc576040519150601f19603f3d011682016040523d82523d6000602084013e613ce1565b606091505b505080985050505050505050505050505b565b600042600f8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401613d5a9190614f6e565b60206040518083038186803b158015613d7257600080fd5b505afa158015613d86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613daa91906144a8565b90506000613dd7612710613dc9600c548561376090919063ffffffff16565b61377690919063ffffffff16565b90506000811115613e1257613e11600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead8361378c565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613e8157600080fd5b505af1158015613e95573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613ee7919061552a565b905092915050565b6000600267ffffffffffffffff811115613f32577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015613f605781602001602082028036833780820191505090505b5090503081600081518110613f9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561403e57600080fd5b505afa158015614052573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614076919061432a565b816001815181106140b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614115307f00000000000000000000000000000000000000000000000000000000000000008461269a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161417795949392919061533d565b600060405180830381600087803b15801561419157600080fd5b505af11580156141a5573d6000803e3d6000fd5b505050505050565b6141d8307f00000000000000000000000000000000000000000000000000000000000000008461269a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161423f96959493929190614f89565b6060604051808303818588803b15801561425857600080fd5b505af115801561426c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142919190614520565b5050505050565b6000813590506142a7816156ec565b92915050565b6000815190506142bc816156ec565b92915050565b6000813590506142d181615703565b92915050565b6000813590506142e68161571a565b92915050565b6000815190506142fb8161571a565b92915050565b60006020828403121561431357600080fd5b600061432184828501614298565b91505092915050565b60006020828403121561433c57600080fd5b600061434a848285016142ad565b91505092915050565b6000806040838503121561436657600080fd5b600061437485828601614298565b925050602061438585828601614298565b9150509250929050565b6000806000606084860312156143a457600080fd5b60006143b286828701614298565b93505060206143c386828701614298565b92505060406143d4868287016142d7565b9150509250925092565b600080604083850312156143f157600080fd5b60006143ff85828601614298565b9250506020614410858286016142c2565b9150509250929050565b6000806040838503121561442d57600080fd5b600061443b85828601614298565b925050602061444c858286016142d7565b9150509250929050565b60006020828403121561446857600080fd5b6000614476848285016142c2565b91505092915050565b60006020828403121561449157600080fd5b600061449f848285016142d7565b91505092915050565b6000602082840312156144ba57600080fd5b60006144c8848285016142ec565b91505092915050565b6000806000606084860312156144e657600080fd5b60006144f4868287016142d7565b9350506020614505868287016142d7565b9250506040614516868287016142c2565b9150509250925092565b60008060006060848603121561453557600080fd5b6000614543868287016142ec565b9350506020614554868287016142ec565b9250506040614565868287016142ec565b9150509250925092565b600061457b8383614587565b60208301905092915050565b6145908161555e565b82525050565b61459f8161555e565b82525050565b60006145b0826153f9565b6145ba818561541c565b93506145c5836153e9565b8060005b838110156145f65781516145dd888261456f565b97506145e88361540f565b9250506001810190506145c9565b5085935050505092915050565b61460c81615570565b82525050565b61461b816155b3565b82525050565b61462a816155d7565b82525050565b600061463b82615404565b6146458185615438565b93506146558185602086016155e9565b61465e816156db565b840191505092915050565b6000614676602383615438565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146dc601683615438565b91507f54726164696e67206973206e6f74206163746976652e000000000000000000006000830152602082019050919050565b600061471c602683615438565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614782602283615438565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147e8603383615438565b91507f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008301527f616e206576657279203130206d696e75746573000000000000000000000000006020830152604082019050919050565b600061484e602483615438565b91507f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008301527f302e3525000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148b4603983615438565b91507f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008301527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006020830152604082019050919050565b600061491a602683615438565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614980603683615438565b91507f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008301527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006020830152604082019050919050565b60006149e6603083615438565b91507f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008301527f747765656e20302520616e6420313025000000000000000000000000000000006020830152604082019050919050565b6000614a4c603583615438565b91507f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008301527f20302e3030312520746f74616c20737570706c792e00000000000000000000006020830152604082019050919050565b6000614ab2603483615438565b91507f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008301527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006020830152604082019050919050565b6000614b18603583615438565b91507f427579207472616e7366657220616d6f756e742065786365656473207468652060008301527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006020830152604082019050919050565b6000614b7e604983615438565b91507f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008301527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208301527f20616c6c6f7765642e00000000000000000000000000000000000000000000006040830152606082019050919050565b6000614c0a602883615438565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c70602083615438565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614cb0602a83615438565b91507f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008301527f6b656e7320696e204c50000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d16602583615438565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d7c602083615438565b91507f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686000830152602082019050919050565b6000614dbc60008361542d565b9150600082019050919050565b6000614dd6602483615438565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e3c601383615438565b91507f4d61782077616c6c6574206578636565646564000000000000000000000000006000830152602082019050919050565b6000614e7c602583615438565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ee2602f83615438565b91507f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008301527f6c6f776572207468616e20302e312500000000000000000000000000000000006020830152604082019050919050565b614f448161559c565b82525050565b614f53816155a6565b82525050565b6000614f6482614daf565b9150819050919050565b6000602082019050614f836000830184614596565b92915050565b600060c082019050614f9e6000830189614596565b614fab6020830188614f3b565b614fb86040830187614621565b614fc56060830186614621565b614fd26080830185614596565b614fdf60a0830184614f3b565b979650505050505050565b6000602082019050614fff6000830184614603565b92915050565b600060208201905061501a6000830184614612565b92915050565b6000602082019050818103600083015261503a8184614630565b905092915050565b6000602082019050818103600083015261505b81614669565b9050919050565b6000602082019050818103600083015261507b816146cf565b9050919050565b6000602082019050818103600083015261509b8161470f565b9050919050565b600060208201905081810360008301526150bb81614775565b9050919050565b600060208201905081810360008301526150db816147db565b9050919050565b600060208201905081810360008301526150fb81614841565b9050919050565b6000602082019050818103600083015261511b816148a7565b9050919050565b6000602082019050818103600083015261513b8161490d565b9050919050565b6000602082019050818103600083015261515b81614973565b9050919050565b6000602082019050818103600083015261517b816149d9565b9050919050565b6000602082019050818103600083015261519b81614a3f565b9050919050565b600060208201905081810360008301526151bb81614aa5565b9050919050565b600060208201905081810360008301526151db81614b0b565b9050919050565b600060208201905081810360008301526151fb81614b71565b9050919050565b6000602082019050818103600083015261521b81614bfd565b9050919050565b6000602082019050818103600083015261523b81614c63565b9050919050565b6000602082019050818103600083015261525b81614ca3565b9050919050565b6000602082019050818103600083015261527b81614d09565b9050919050565b6000602082019050818103600083015261529b81614d6f565b9050919050565b600060208201905081810360008301526152bb81614dc9565b9050919050565b600060208201905081810360008301526152db81614e2f565b9050919050565b600060208201905081810360008301526152fb81614e6f565b9050919050565b6000602082019050818103600083015261531b81614ed5565b9050919050565b60006020820190506153376000830184614f3b565b92915050565b600060a0820190506153526000830188614f3b565b61535f6020830187614621565b818103604083015261537181866145a5565b90506153806060830185614596565b61538d6080830184614f3b565b9695505050505050565b60006060820190506153ac6000830186614f3b565b6153b96020830185614f3b565b6153c66040830184614f3b565b949350505050565b60006020820190506153e36000830184614f4a565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006154548261559c565b915061545f8361559c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156154945761549361564e565b5b828201905092915050565b60006154aa8261559c565b91506154b58361559c565b9250826154c5576154c461567d565b5b828204905092915050565b60006154db8261559c565b91506154e68361559c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561551f5761551e61564e565b5b828202905092915050565b60006155358261559c565b91506155408361559c565b9250828210156155535761555261564e565b5b828203905092915050565b60006155698261557c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006155be826155c5565b9050919050565b60006155d08261557c565b9050919050565b60006155e28261559c565b9050919050565b60005b838110156156075780820151818401526020810190506155ec565b83811115615616576000848401525b50505050565b6000600282049050600182168061563457607f821691505b60208210811415615648576156476156ac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6156f58161555e565b811461570057600080fd5b50565b61570c81615570565b811461571757600080fd5b50565b6157238161559c565b811461572e57600080fd5b5056fea26469706673582212205e062ab7dfb340a66ef17503d709433e91c086d92ec94c3ae95ec01f28d6afe664736f6c63430008000033

Deployed Bytecode

0x60806040526004361061039b5760003560e01c80638da5cb5b116101dc578063bbc0c74211610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610d9b578063f637434214610dc4578063f8b45b0514610def578063fe72b27a14610e1a576103a2565b8063dd62ed3e14610cdd578063e2f4560514610d1a578063e884f26014610d45578063f11a24d314610d70576103a2565b8063c876d0b9116100dc578063c876d0b914610c1f578063c8c8ebe414610c4a578063d257b34f14610c75578063d85ba06314610cb2576103a2565b8063bbc0c74214610ba2578063c024666814610bcd578063c18bc19514610bf6576103a2565b80639ec22c0e1161017a578063a4c82a0011610149578063a4c82a0014610ad4578063a9059cbb14610aff578063aacebbe314610b3c578063b62496f514610b65576103a2565b80639ec22c0e14610a165780639fccce3214610a41578063a0d82dc514610a6c578063a457c2d714610a97576103a2565b8063924de9b7116101b6578063924de9b71461096e57806395d89b41146109975780639a7a23d6146109c25780639c3b4fdc146109eb576103a2565b80638da5cb5b146108ed5780638ea5220f146109185780639213691314610943576103a2565b80632e82f1a0116102c15780636ddd17131161025f578063751039fc1161022e578063751039fc146108435780637571336a1461086e57806375f0a874146108975780637bce5a04146108c2576103a2565b80636ddd17131461079b57806370a08231146107c6578063715018a614610803578063730c18881461081a576103a2565b806349bd5a5e1161029b57806349bd5a5e146106dd5780634a62bb65146107085780634fbee193146107335780636a486a8e14610770576103a2565b80632e82f1a01461064a578063313ce5671461067557806339509351146106a0576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146105a057806327c8f835146105dd578063293230b8146106085780632c3e486c1461061f576103a2565b8063199ffc72146104f65780631a8145bb146105215780631f3fed8f1461054c578063203e727e14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e57565b6040516103c99190615020565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f4919061441a565b610ee9565b6040516104069190614fea565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190614301565b610f07565b6040516104439190614fea565b60405180910390f35b34801561045857600080fd5b50610461610f27565b60405161046e9190615005565b60405180910390f35b34801561048357600080fd5b5061048c610f4b565b6040516104999190615322565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190614301565b610f55565b005b3480156104d757600080fd5b506104e0611091565b6040516104ed9190615322565b60405180910390f35b34801561050257600080fd5b5061050b611097565b6040516105189190615322565b60405180910390f35b34801561052d57600080fd5b5061053661109d565b6040516105439190615322565b60405180910390f35b34801561055857600080fd5b506105616110a3565b60405161056e9190615322565b60405180910390f35b34801561058357600080fd5b5061059e6004803603810190610599919061447f565b6110a9565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061438f565b6111b8565b6040516105d49190614fea565b60405180910390f35b3480156105e957600080fd5b506105f26112b0565b6040516105ff9190614f6e565b60405180910390f35b34801561061457600080fd5b5061061d6112b6565b005b34801561062b57600080fd5b50610634611371565b6040516106419190615322565b60405180910390f35b34801561065657600080fd5b5061065f611377565b60405161066c9190614fea565b60405180910390f35b34801561068157600080fd5b5061068a61138a565b60405161069791906153ce565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c2919061441a565b611393565b6040516106d49190614fea565b60405180910390f35b3480156106e957600080fd5b506106f261143f565b6040516106ff9190614f6e565b60405180910390f35b34801561071457600080fd5b5061071d611465565b60405161072a9190614fea565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190614301565b611478565b6040516107679190614fea565b60405180910390f35b34801561077c57600080fd5b506107856114ce565b6040516107929190615322565b60405180910390f35b3480156107a757600080fd5b506107b06114d4565b6040516107bd9190614fea565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e89190614301565b6114e7565b6040516107fa9190615322565b60405180910390f35b34801561080f57600080fd5b5061081861152f565b005b34801561082657600080fd5b50610841600480360381019061083c91906144d1565b6115b7565b005b34801561084f57600080fd5b506108586116f7565b6040516108659190614fea565b60405180910390f35b34801561087a57600080fd5b50610895600480360381019061089091906143de565b611797565b005b3480156108a357600080fd5b506108ac61186e565b6040516108b99190614f6e565b60405180910390f35b3480156108ce57600080fd5b506108d7611894565b6040516108e49190615322565b60405180910390f35b3480156108f957600080fd5b50610902611899565b60405161090f9190614f6e565b60405180910390f35b34801561092457600080fd5b5061092d6118c3565b60405161093a9190614f6e565b60405180910390f35b34801561094f57600080fd5b506109586118e9565b6040516109659190615322565b60405180910390f35b34801561097a57600080fd5b5061099560048036038101906109909190614456565b6118ee565b005b3480156109a357600080fd5b506109ac611987565b6040516109b99190615020565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e491906143de565b611a19565b005b3480156109f757600080fd5b50610a00611b34565b604051610a0d9190615322565b60405180910390f35b348015610a2257600080fd5b50610a2b611b39565b604051610a389190615322565b60405180910390f35b348015610a4d57600080fd5b50610a56611b3f565b604051610a639190615322565b60405180910390f35b348015610a7857600080fd5b50610a81611b45565b604051610a8e9190615322565b60405180910390f35b348015610aa357600080fd5b50610abe6004803603810190610ab9919061441a565b611b4a565b604051610acb9190614fea565b60405180910390f35b348015610ae057600080fd5b50610ae9611c35565b604051610af69190615322565b60405180910390f35b348015610b0b57600080fd5b50610b266004803603810190610b21919061441a565b611c3b565b604051610b339190614fea565b60405180910390f35b348015610b4857600080fd5b50610b636004803603810190610b5e9190614301565b611c59565b005b348015610b7157600080fd5b50610b8c6004803603810190610b879190614301565b611d95565b604051610b999190614fea565b60405180910390f35b348015610bae57600080fd5b50610bb7611db5565b604051610bc49190614fea565b60405180910390f35b348015610bd957600080fd5b50610bf46004803603810190610bef91906143de565b611dc8565b005b348015610c0257600080fd5b50610c1d6004803603810190610c18919061447f565b611eed565b005b348015610c2b57600080fd5b50610c34611ffc565b604051610c419190614fea565b60405180910390f35b348015610c5657600080fd5b50610c5f61200f565b604051610c6c9190615322565b60405180910390f35b348015610c8157600080fd5b50610c9c6004803603810190610c97919061447f565b612015565b604051610ca99190614fea565b60405180910390f35b348015610cbe57600080fd5b50610cc761216a565b604051610cd49190615322565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190614353565b612170565b604051610d119190615322565b60405180910390f35b348015610d2657600080fd5b50610d2f6121f7565b604051610d3c9190615322565b60405180910390f35b348015610d5157600080fd5b50610d5a6121fd565b604051610d679190614fea565b60405180910390f35b348015610d7c57600080fd5b50610d8561229d565b604051610d929190615322565b60405180910390f35b348015610da757600080fd5b50610dc26004803603810190610dbd9190614301565b6122a2565b005b348015610dd057600080fd5b50610dd961239a565b604051610de69190615322565b60405180910390f35b348015610dfb57600080fd5b50610e0461239f565b604051610e119190615322565b60405180910390f35b348015610e2657600080fd5b50610e416004803603810190610e3c919061447f565b6123a5565b604051610e4e9190614fea565b60405180910390f35b606060038054610e669061561c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e929061561c565b8015610edf5780601f10610eb457610100808354040283529160200191610edf565b820191906000526020600020905b815481529060010190602001808311610ec257829003601f168201915b5050505050905090565b6000610efd610ef6612692565b848461269a565b6001905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610f5d612692565b73ffffffffffffffffffffffffffffffffffffffff16610f7b611899565b73ffffffffffffffffffffffffffffffffffffffff1614610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890615222565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60105481565b600c5481565b60185481565b60175481565b6110b1612692565b73ffffffffffffffffffffffffffffffffffffffff166110cf611899565b73ffffffffffffffffffffffffffffffffffffffff1614611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c90615222565b60405180910390fd5b670de0b6b3a76400006103e8600161113b610f4b565b61114591906154d0565b61114f919061549f565b611159919061549f565b81101561119b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119290615302565b60405180910390fd5b670de0b6b3a7640000816111af91906154d0565b60098190555050565b60006111c5848484612865565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611210612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790615202565b60405180910390fd5b6112a48561129c612692565b85840361269a565b60019150509392505050565b61dead81565b6112be612692565b73ffffffffffffffffffffffffffffffffffffffff166112dc611899565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990615222565b60405180910390fd5b6001601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff02191690831515021790555042600f81905550565b600e5481565b600d60009054906101000a900460ff1681565b60006012905090565b60006114356113a0612692565b8484600160006113ae612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114309190615449565b61269a565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260009054906101000a900460ff1681565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60165481565b601260029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611537612692565b73ffffffffffffffffffffffffffffffffffffffff16611555611899565b73ffffffffffffffffffffffffffffffffffffffff16146115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a290615222565b60405180910390fd5b6115b560006135f9565b565b6115bf612692565b73ffffffffffffffffffffffffffffffffffffffff166115dd611899565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90615222565b60405180910390fd5b610258831015611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f906150c2565b60405180910390fd5b6103e8821115801561168b575060008210155b6116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190615162565b60405180910390fd5b82600e8190555081600c8190555080600d60006101000a81548160ff021916908315150217905550505050565b6000611701612692565b73ffffffffffffffffffffffffffffffffffffffff1661171f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90615222565b60405180910390fd5b6000601260006101000a81548160ff0219169083151502179055506001905090565b61179f612692565b73ffffffffffffffffffffffffffffffffffffffff166117bd611899565b73ffffffffffffffffffffffffffffffffffffffff1614611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90615222565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600581565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600581565b6118f6612692565b73ffffffffffffffffffffffffffffffffffffffff16611914611899565b73ffffffffffffffffffffffffffffffffffffffff161461196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190615222565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b6060600480546119969061561c565b80601f01602080910402602001604051908101604052809291908181526020018280546119c29061561c565b8015611a0f5780601f106119e457610100808354040283529160200191611a0f565b820191906000526020600020905b8154815290600101906020018083116119f257829003601f168201915b5050505050905090565b611a21612692565b73ffffffffffffffffffffffffffffffffffffffff16611a3f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8c90615222565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90615102565b60405180910390fd5b611b3082826136bf565b5050565b600081565b60115481565b60195481565b600081565b60008060016000611b59612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0d906152e2565b60405180910390fd5b611c2a611c21612692565b8585840361269a565b600191505092915050565b600f5481565b6000611c4f611c48612692565b8484612865565b6001905092915050565b611c61612692565b73ffffffffffffffffffffffffffffffffffffffff16611c7f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc90615222565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601c6020528060005260406000206000915054906101000a900460ff1681565b601260019054906101000a900460ff1681565b611dd0612692565b73ffffffffffffffffffffffffffffffffffffffff16611dee611899565b73ffffffffffffffffffffffffffffffffffffffff1614611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b90615222565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ee19190614fea565b60405180910390a25050565b611ef5612692565b73ffffffffffffffffffffffffffffffffffffffff16611f13611899565b73ffffffffffffffffffffffffffffffffffffffff1614611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6090615222565b60405180910390fd5b670de0b6b3a76400006103e86005611f7f610f4b565b611f8991906154d0565b611f93919061549f565b611f9d919061549f565b811015611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd6906150e2565b60405180910390fd5b670de0b6b3a764000081611ff391906154d0565b600b8190555050565b601460009054906101000a900460ff1681565b60095481565b600061201f612692565b73ffffffffffffffffffffffffffffffffffffffff1661203d611899565b73ffffffffffffffffffffffffffffffffffffffff1614612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a90615222565b60405180910390fd5b620186a060016120a1610f4b565b6120ab91906154d0565b6120b5919061549f565b8210156120f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ee90615182565b60405180910390fd5b6103e86005612104610f4b565b61210e91906154d0565b612118919061549f565b82111561215a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612151906151a2565b60405180910390fd5b81600a8190555060019050919050565b60155481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b6000612207612692565b73ffffffffffffffffffffffffffffffffffffffff16612225611899565b73ffffffffffffffffffffffffffffffffffffffff161461227b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227290615222565b60405180910390fd5b6000601460006101000a81548160ff0219169083151502179055506001905090565b600081565b6122aa612692565b73ffffffffffffffffffffffffffffffffffffffff166122c8611899565b73ffffffffffffffffffffffffffffffffffffffff161461231e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231590615222565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561238e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238590615082565b60405180910390fd5b612397816135f9565b50565b600081565b600b5481565b60006123af612692565b73ffffffffffffffffffffffffffffffffffffffff166123cd611899565b73ffffffffffffffffffffffffffffffffffffffff1614612423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241a90615222565b60405180910390fd5b6010546011546124339190615449565b4211612474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246b90615282565b60405180910390fd5b6103e88211156124b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b090615242565b60405180910390fd5b4260118190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b815260040161251d9190614f6e565b60206040518083038186803b15801561253557600080fd5b505afa158015612549573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061256d91906144a8565b9050600061259861271061258a868561376090919063ffffffff16565b61377690919063ffffffff16565b905060008111156125d3576125d2600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead8361378c565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561264257600080fd5b505af1158015612656573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561270a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612701906152a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561277a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612771906150a2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128589190615322565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cc90615262565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293c90615042565b60405180910390fd5b600081141561295f5761295a8383600061378c565b6135f4565b601260009054906101000a900460ff16156130245761297c611899565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129ea57506129ba611899565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a235750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a765750600660149054906101000a900460ff16155b1561302357601260019054906101000a900460ff16612b7057601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b305750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6690615062565b60405180910390fd5b5b601460009054906101000a900460ff1615612d3a57612b8d611899565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612c1457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c6e5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d395743601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ceb906151e2565b60405180910390fd5b43601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ddd5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e8457600954811115612e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1e906151c2565b60405180910390fd5b600b54612e33836114e7565b82612e3e9190615449565b1115612e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e76906152c2565b60405180910390fd5b613022565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f275750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f7657600954811115612f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6890615142565b60405180910390fd5b613021565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661302057600b54612fd3836114e7565b82612fde9190615449565b111561301f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613016906152c2565b60405180910390fd5b5b5b5b5b5b600061302f306114e7565b90506000600a5482101590508080156130545750601260029054906101000a900460ff165b801561306d5750600660149054906101000a900460ff16155b80156130c35750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131195750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561316f5750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131b3576001600660146101000a81548160ff021916908315150217905550613197613a0d565b6000600660146101000a81548160ff0219169083151502179055505b600660149054906101000a900460ff161580156132195750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156132315750600d60009054906101000a900460ff165b801561324c5750600e54600f546132489190615449565b4210155b80156132a25750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132b1576132af613cf4565b505b6000600660149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133675750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561337157600090505b600081156135e457601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133d457506000601654115b1561349e5761340160646133f36016548861376090919063ffffffff16565b61377690919063ffffffff16565b905060165460008261341391906154d0565b61341d919061549f565b6018600082825461342e9190615449565b9250508190555060165460008261344591906154d0565b61344f919061549f565b601960008282546134609190615449565b9250508190555060165460058261347791906154d0565b613481919061549f565b601760008282546134929190615449565b925050819055506135c0565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134f957506000601554115b156135bf5761352660646135186015548861376090919063ffffffff16565b61377690919063ffffffff16565b905060155460008261353891906154d0565b613542919061549f565b601860008282546135539190615449565b9250508190555060155460008261356a91906154d0565b613574919061549f565b601960008282546135859190615449565b9250508190555060155460058261359c91906154d0565b6135a6919061549f565b601760008282546135b79190615449565b925050819055505b5b60008111156135d5576135d487308361378c565b5b80856135e1919061552a565b94505b6135ef87878761378c565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361376e91906154d0565b905092915050565b60008183613784919061549f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137f390615262565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561386c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161386390615042565b60405180910390fd5b613877838383613ecf565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156138fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138f490615122565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139909190615449565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516139f49190615322565b60405180910390a3613a07848484613ed4565b50505050565b6000613a18306114e7565b90506000601954601754601854613a2f9190615449565b613a399190615449565b9050600080831480613a4b5750600082145b15613a5857505050613cf2565b6014600a54613a6791906154d0565b831115613a80576014600a54613a7d91906154d0565b92505b600060028360185486613a9391906154d0565b613a9d919061549f565b613aa7919061549f565b90506000613abe8286613ed990919063ffffffff16565b90506000479050613ace82613eef565b6000613ae38247613ed990919063ffffffff16565b90506000613b0e87613b006017548561376090919063ffffffff16565b61377690919063ffffffff16565b90506000613b3988613b2b6019548661376090919063ffffffff16565b61377690919063ffffffff16565b90506000818385613b4a919061552a565b613b54919061552a565b9050600060188190555060006017819055506000601981905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613bb490614f59565b60006040518083038185875af1925050503d8060008114613bf1576040519150601f19603f3d011682016040523d82523d6000602084013e613bf6565b606091505b505080985050600087118015613c0c5750600081115b15613c5957613c1b87826141ad565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601854604051613c5093929190615397565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613c9f90614f59565b60006040518083038185875af1925050503d8060008114613cdc576040519150601f19603f3d011682016040523d82523d6000602084013e613ce1565b606091505b505080985050505050505050505050505b565b600042600f8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401613d5a9190614f6e565b60206040518083038186803b158015613d7257600080fd5b505afa158015613d86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613daa91906144a8565b90506000613dd7612710613dc9600c548561376090919063ffffffff16565b61377690919063ffffffff16565b90506000811115613e1257613e11600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead8361378c565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613e8157600080fd5b505af1158015613e95573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613ee7919061552a565b905092915050565b6000600267ffffffffffffffff811115613f32577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015613f605781602001602082028036833780820191505090505b5090503081600081518110613f9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561403e57600080fd5b505afa158015614052573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614076919061432a565b816001815181106140b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614115307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461269a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161417795949392919061533d565b600060405180830381600087803b15801561419157600080fd5b505af11580156141a5573d6000803e3d6000fd5b505050505050565b6141d8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461269a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161423f96959493929190614f89565b6060604051808303818588803b15801561425857600080fd5b505af115801561426c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142919190614520565b5050505050565b6000813590506142a7816156ec565b92915050565b6000815190506142bc816156ec565b92915050565b6000813590506142d181615703565b92915050565b6000813590506142e68161571a565b92915050565b6000815190506142fb8161571a565b92915050565b60006020828403121561431357600080fd5b600061432184828501614298565b91505092915050565b60006020828403121561433c57600080fd5b600061434a848285016142ad565b91505092915050565b6000806040838503121561436657600080fd5b600061437485828601614298565b925050602061438585828601614298565b9150509250929050565b6000806000606084860312156143a457600080fd5b60006143b286828701614298565b93505060206143c386828701614298565b92505060406143d4868287016142d7565b9150509250925092565b600080604083850312156143f157600080fd5b60006143ff85828601614298565b9250506020614410858286016142c2565b9150509250929050565b6000806040838503121561442d57600080fd5b600061443b85828601614298565b925050602061444c858286016142d7565b9150509250929050565b60006020828403121561446857600080fd5b6000614476848285016142c2565b91505092915050565b60006020828403121561449157600080fd5b600061449f848285016142d7565b91505092915050565b6000602082840312156144ba57600080fd5b60006144c8848285016142ec565b91505092915050565b6000806000606084860312156144e657600080fd5b60006144f4868287016142d7565b9350506020614505868287016142d7565b9250506040614516868287016142c2565b9150509250925092565b60008060006060848603121561453557600080fd5b6000614543868287016142ec565b9350506020614554868287016142ec565b9250506040614565868287016142ec565b9150509250925092565b600061457b8383614587565b60208301905092915050565b6145908161555e565b82525050565b61459f8161555e565b82525050565b60006145b0826153f9565b6145ba818561541c565b93506145c5836153e9565b8060005b838110156145f65781516145dd888261456f565b97506145e88361540f565b9250506001810190506145c9565b5085935050505092915050565b61460c81615570565b82525050565b61461b816155b3565b82525050565b61462a816155d7565b82525050565b600061463b82615404565b6146458185615438565b93506146558185602086016155e9565b61465e816156db565b840191505092915050565b6000614676602383615438565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146dc601683615438565b91507f54726164696e67206973206e6f74206163746976652e000000000000000000006000830152602082019050919050565b600061471c602683615438565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614782602283615438565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147e8603383615438565b91507f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008301527f616e206576657279203130206d696e75746573000000000000000000000000006020830152604082019050919050565b600061484e602483615438565b91507f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008301527f302e3525000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148b4603983615438565b91507f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008301527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006020830152604082019050919050565b600061491a602683615438565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614980603683615438565b91507f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008301527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006020830152604082019050919050565b60006149e6603083615438565b91507f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008301527f747765656e20302520616e6420313025000000000000000000000000000000006020830152604082019050919050565b6000614a4c603583615438565b91507f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008301527f20302e3030312520746f74616c20737570706c792e00000000000000000000006020830152604082019050919050565b6000614ab2603483615438565b91507f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008301527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006020830152604082019050919050565b6000614b18603583615438565b91507f427579207472616e7366657220616d6f756e742065786365656473207468652060008301527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006020830152604082019050919050565b6000614b7e604983615438565b91507f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008301527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208301527f20616c6c6f7765642e00000000000000000000000000000000000000000000006040830152606082019050919050565b6000614c0a602883615438565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c70602083615438565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614cb0602a83615438565b91507f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008301527f6b656e7320696e204c50000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d16602583615438565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d7c602083615438565b91507f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686000830152602082019050919050565b6000614dbc60008361542d565b9150600082019050919050565b6000614dd6602483615438565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e3c601383615438565b91507f4d61782077616c6c6574206578636565646564000000000000000000000000006000830152602082019050919050565b6000614e7c602583615438565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ee2602f83615438565b91507f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008301527f6c6f776572207468616e20302e312500000000000000000000000000000000006020830152604082019050919050565b614f448161559c565b82525050565b614f53816155a6565b82525050565b6000614f6482614daf565b9150819050919050565b6000602082019050614f836000830184614596565b92915050565b600060c082019050614f9e6000830189614596565b614fab6020830188614f3b565b614fb86040830187614621565b614fc56060830186614621565b614fd26080830185614596565b614fdf60a0830184614f3b565b979650505050505050565b6000602082019050614fff6000830184614603565b92915050565b600060208201905061501a6000830184614612565b92915050565b6000602082019050818103600083015261503a8184614630565b905092915050565b6000602082019050818103600083015261505b81614669565b9050919050565b6000602082019050818103600083015261507b816146cf565b9050919050565b6000602082019050818103600083015261509b8161470f565b9050919050565b600060208201905081810360008301526150bb81614775565b9050919050565b600060208201905081810360008301526150db816147db565b9050919050565b600060208201905081810360008301526150fb81614841565b9050919050565b6000602082019050818103600083015261511b816148a7565b9050919050565b6000602082019050818103600083015261513b8161490d565b9050919050565b6000602082019050818103600083015261515b81614973565b9050919050565b6000602082019050818103600083015261517b816149d9565b9050919050565b6000602082019050818103600083015261519b81614a3f565b9050919050565b600060208201905081810360008301526151bb81614aa5565b9050919050565b600060208201905081810360008301526151db81614b0b565b9050919050565b600060208201905081810360008301526151fb81614b71565b9050919050565b6000602082019050818103600083015261521b81614bfd565b9050919050565b6000602082019050818103600083015261523b81614c63565b9050919050565b6000602082019050818103600083015261525b81614ca3565b9050919050565b6000602082019050818103600083015261527b81614d09565b9050919050565b6000602082019050818103600083015261529b81614d6f565b9050919050565b600060208201905081810360008301526152bb81614dc9565b9050919050565b600060208201905081810360008301526152db81614e2f565b9050919050565b600060208201905081810360008301526152fb81614e6f565b9050919050565b6000602082019050818103600083015261531b81614ed5565b9050919050565b60006020820190506153376000830184614f3b565b92915050565b600060a0820190506153526000830188614f3b565b61535f6020830187614621565b818103604083015261537181866145a5565b90506153806060830185614596565b61538d6080830184614f3b565b9695505050505050565b60006060820190506153ac6000830186614f3b565b6153b96020830185614f3b565b6153c66040830184614f3b565b949350505050565b60006020820190506153e36000830184614f4a565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006154548261559c565b915061545f8361559c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156154945761549361564e565b5b828201905092915050565b60006154aa8261559c565b91506154b58361559c565b9250826154c5576154c461567d565b5b828204905092915050565b60006154db8261559c565b91506154e68361559c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561551f5761551e61564e565b5b828202905092915050565b60006155358261559c565b91506155408361559c565b9250828210156155535761555261564e565b5b828203905092915050565b60006155698261557c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006155be826155c5565b9050919050565b60006155d08261557c565b9050919050565b60006155e28261559c565b9050919050565b60005b838110156156075780820151818401526020810190506155ec565b83811115615616576000848401525b50505050565b6000600282049050600182168061563457607f821691505b60208210811415615648576156476156ac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6156f58161555e565b811461570057600080fd5b50565b61570c81615570565b811461571757600080fd5b50565b6157238161559c565b811461572e57600080fd5b5056fea26469706673582212205e062ab7dfb340a66ef17503d709433e91c086d92ec94c3ae95ec01f28d6afe664736f6c63430008000033

Deployed Bytecode Sourcemap

27285:18232:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9881:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12189:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29002:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27365:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11001:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34895:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27927:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27735:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28786:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28746;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33040:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12881:529;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27458:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31942:154;;;;;;;;;;;;;:::i;:::-;;27826:56;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27787:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10843:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13819:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27423:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28038:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35060:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28562:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28117:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11172:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3677:103;;;;;;;;;;;;;:::i;:::-;;43099:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32148:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33587:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27550:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28416:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3026:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27587:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28597:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33850:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10100:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34148:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28516:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27994:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28826:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28699:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14619:482;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27889:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11562:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34656:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29223:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28078:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33958:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33323:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28334:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27620:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32535:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28382:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11841:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27662:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32330:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28466:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3935:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28648:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27702:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44458:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9881:100;9935:13;9968:5;9961:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9881:100;:::o;12189:210::-;12308:4;12330:39;12339:12;:10;:12::i;:::-;12353:7;12362:6;12330:8;:39::i;:::-;12387:4;12380:11;;12189:210;;;;:::o;29002:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;27365:51::-;;;:::o;11001:108::-;11062:7;11089:12;;11082:19;;11001:108;:::o;34895:157::-;3257:12;:10;:12::i;:::-;3246:23;;:7;:5;:7::i;:::-;:23;;;3238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35002:9:::1;;;;;;;;;;;34974:38;;34991:9;34974:38;;;;;;;;;;;;35035:9;35023;;:21;;;;;;;;;;;;;;;;;;34895:157:::0;:::o;27927:60::-;;;;:::o;27735:35::-;;;;:::o;28786:33::-;;;;:::o;28746:::-;;;;:::o;33040:275::-;3257:12;:10;:12::i;:::-;3246:23;;:7;:5;:7::i;:::-;:23;;;3238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33177:4:::1;33169;33164:1;33148:13;:11;:13::i;:::-;:17;;;;:::i;:::-;33147:26;;;;:::i;:::-;33146:35;;;;:::i;:::-;33136:6;:45;;33114:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;33300:6;33290;:17;;;;:::i;:::-;33267:20;:40;;;;33040:275:::0;:::o;12881:529::-;13021:4;13038:36;13048:6;13056:9;13067:6;13038:9;:36::i;:::-;13087:24;13114:11;:19;13126:6;13114:19;;;;;;;;;;;;;;;:33;13134:12;:10;:12::i;:::-;13114:33;;;;;;;;;;;;;;;;13087:60;;13200:6;13180:16;:26;;13158:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;13310:57;13319:6;13327:12;:10;:12::i;:::-;13360:6;13341:16;:25;13310:8;:57::i;:::-;13398:4;13391:11;;;12881:529;;;;;:::o;27458:53::-;27504:6;27458:53;:::o;31942:154::-;3257:12;:10;:12::i;:::-;3246:23;;:7;:5;:7::i;:::-;:23;;;3238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32012:4:::1;31996:13;;:20;;;;;;;;;;;;;;;;;;32041:4;32027:11;;:18;;;;;;;;;;;;;;;;;;32073:15;32056:14;:32;;;;31942:154::o:0;27826:56::-;;;;:::o;27787:32::-;;;;;;;;;;;;;:::o;10843:93::-;10901:5;10926:2;10919:9;;10843:93;:::o;13819:297::-;13934:4;13956:130;13979:12;:10;:12::i;:::-;14006:7;14065:10;14028:11;:25;14040:12;:10;:12::i;:::-;14028:25;;;;;;;;;;;;;;;:34;14054:7;14028:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13956:8;:130::i;:::-;14104:4;14097:11;;13819:297;;;;:::o;27423:28::-;;;;;;;;;;;;;:::o;28038:33::-;;;;;;;;;;;;;:::o;35060:126::-;35126:4;35150:19;:28;35170:7;35150:28;;;;;;;;;;;;;;;;;;;;;;;;;35143:35;;35060:126;;;:::o;28562:28::-;;;;:::o;28117:30::-;;;;;;;;;;;;;:::o;11172:177::-;11291:7;11323:9;:18;11333:7;11323:18;;;;;;;;;;;;;;;;11316:25;;11172:177;;;:::o;3677:103::-;3257:12;:10;:12::i;:::-;3246:23;;:7;:5;:7::i;:::-;:23;;;3238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3742:30:::1;3769:1;3742:18;:30::i;:::-;3677:103::o:0;43099:555::-;3257:12;:10;:12::i;:::-;3246:23;;:7;:5;:7::i;:::-;:23;;;3238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43301:3:::1;43278:19;:26;;43256:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;43428:4;43416:8;:16;;:33;;;;;43448:1;43436:8;:13;;43416:33;43394:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;43554:19;43536:15;:37;;;;43603:8;43584:16;:27;;;;43638:8;43622:13;;:24;;;;;;;;;;;;;;;;;;43099:555:::0;;;:::o;32148:121::-;32200:4;3257:12;:10;:12::i;:::-;3246:23;;:7;:5;:7::i;:::-;:23;;;3238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32234:5:::1;32217:14;;:22;;;;;;;;;;;;;;;;;;32257:4;32250:11;;32148:121:::0;:::o;33587:167::-;3257:12;:10;:12::i;:::-;3246:23;;:7;:5;:7::i;:::-;:23;;;3238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33742:4:::1;33700:31;:39;33732:6;33700:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33587:167:::0;;:::o;27550:30::-;;;;;;;;;;;;;:::o;28416:43::-;28458:1;28416:43;:::o;3026:87::-;3072:7;3099:6;;;;;;;;;;;3092:13;;3026:87;:::o;27587:24::-;;;;;;;;;;;;;:::o;28597:44::-;28640:1;28597:44;:::o;33850:100::-;3257:12;:10;:12::i;:::-;3246:23;;:7;:5;:7::i;:::-;:23;;;3238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33935:7:::1;33921:11;;:21;;;;;;;;;;;;;;;;;;33850:100:::0;:::o;10100:104::-;10156:13;10189:7;10182:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10100:104;:::o;34148:304::-;3257:12;:10;:12::i;:::-;3246:23;;:7;:5;:7::i;:::-;:23;;;3238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34292:13:::1;;;;;;;;;;;34284:21;;:4;:21;;;;34262:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;34403:41;34432:4;34438:5;34403:28;:41::i;:::-;34148:304:::0;;:::o;28516:37::-;28552:1;28516:37;:::o;27994:35::-;;;;:::o;28826:27::-;;;;:::o;28699:38::-;28736:1;28699:38;:::o;14619:482::-;14739:4;14761:24;14788:11;:25;14800:12;:10;:12::i;:::-;14788:25;;;;;;;;;;;;;;;:34;14814:7;14788:34;;;;;;;;;;;;;;;;14761:61;;14875:15;14855:16;:35;;14833:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;14991:67;15000:12;:10;:12::i;:::-;15014:7;15042:15;15023:16;:34;14991:8;:67::i;:::-;15089:4;15082:11;;;14619:482;;;;:::o;27889:29::-;;;;:::o;11562:216::-;11684:4;11706:42;11716:12;:10;:12::i;:::-;11730:9;11741:6;11706:9;:42::i;:::-;11766:4;11759:11;;11562:216;;;;:::o;34656:231::-;3257:12;:10;:12::i;:::-;3246:23;;:7;:5;:7::i;:::-;:23;;;3238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34816:15:::1;;;;;;;;;;;34773:59;;34796:18;34773:59;;;;;;;;;;;;34861:18;34843:15;;:36;;;;;;;;;;;;;;;;;;34656:231:::0;:::o;29223:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;28078:32::-;;;;;;;;;;;;;:::o;33958:182::-;3257:12;:10;:12::i;:::-;3246:23;;:7;:5;:7::i;:::-;:23;;;3238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34074:8:::1;34043:19;:28;34063:7;34043:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;34114:7;34098:34;;;34123:8;34098:34;;;;;;:::i;:::-;;;;;;;;33958:182:::0;;:::o;33323:256::-;3257:12;:10;:12::i;:::-;3246:23;;:7;:5;:7::i;:::-;:23;;;3238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33463:4:::1;33455;33450:1;33434:13;:11;:13::i;:::-;:17;;;;:::i;:::-;33433:26;;;;:::i;:::-;33432:35;;;;:::i;:::-;33422:6;:45;;33400:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;33564:6;33554;:17;;;;:::i;:::-;33542:9;:29;;;;33323:256:::0;:::o;28334:39::-;;;;;;;;;;;;;:::o;27620:35::-;;;;:::o;32535:497::-;32643:4;3257:12;:10;:12::i;:::-;3246:23;;:7;:5;:7::i;:::-;:23;;;3238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32722:6:::1;32717:1;32701:13;:11;:13::i;:::-;:17;;;;:::i;:::-;32700:28;;;;:::i;:::-;32687:9;:41;;32665:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;32877:4;32872:1;32856:13;:11;:13::i;:::-;:17;;;;:::i;:::-;32855:26;;;;:::i;:::-;32842:9;:39;;32820:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;32993:9;32972:18;:30;;;;33020:4;33013:11;;32535:497:::0;;;:::o;28382:27::-;;;;:::o;11841:201::-;11975:7;12007:11;:18;12019:5;12007:18;;;;;;;;;;;;;;;:27;12026:7;12007:27;;;;;;;;;;;;;;;;12000:34;;11841:201;;;;:::o;27662:33::-;;;;:::o;32330:135::-;32390:4;3257:12;:10;:12::i;:::-;3246:23;;:7;:5;:7::i;:::-;:23;;;3238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32430:5:::1;32407:20;;:28;;;;;;;;;;;;;;;;;;32453:4;32446:11;;32330:135:::0;:::o;28466:43::-;28508:1;28466:43;:::o;3935:238::-;3257:12;:10;:12::i;:::-;3246:23;;:7;:5;:7::i;:::-;:23;;;3238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4058:1:::1;4038:22;;:8;:22;;;;4016:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;4137:28;4156:8;4137:18;:28::i;:::-;3935:238:::0;:::o;28648:44::-;28691:1;28648:44;:::o;27702:24::-;;;;:::o;44458:1056::-;44569:4;3257:12;:10;:12::i;:::-;3246:23;;:7;:5;:7::i;:::-;:23;;;3238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44654:19:::1;;44631:20;;:42;;;;:::i;:::-;44613:15;:60;44591:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;44763:4;44752:7;:15;;44744:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;44848:15;44825:20;:38;;;;44918:28;44949:4;:14;;;44964:13;;;;;;;;;;;44949:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44918:60;;45028:20;45051:44;45089:5;45051:33;45076:7;45051:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;45028:67;;45215:1;45200:12;:16;45196:110;;;45233:61;45249:13;;;;;;;;;;;45272:6;45281:12;45233:15;:61::i;:::-;45196:110;45381:19;45418:13;;;;;;;;;;;45381:51;;45443:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;45470:14;;;;;;;;;;45502:4;45495:11;;;;;44458:1056:::0;;;:::o;1868:98::-;1921:7;1948:10;1941:17;;1868:98;:::o;18409:380::-;18562:1;18545:19;;:5;:19;;;;18537:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18643:1;18624:21;;:7;:21;;;;18616:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18727:6;18697:11;:18;18709:5;18697:18;;;;;;;;;;;;;;;:27;18716:7;18697:27;;;;;;;;;;;;;;;:36;;;;18765:7;18749:32;;18758:5;18749:32;;;18774:6;18749:32;;;;;;:::i;:::-;;;;;;;;18409:380;;;:::o;35194:5011::-;35342:1;35326:18;;:4;:18;;;;35318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35419:1;35405:16;;:2;:16;;;;35397:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;35488:1;35478:6;:11;35474:93;;;35506:28;35522:4;35528:2;35532:1;35506:15;:28::i;:::-;35549:7;;35474:93;35583:14;;;;;;;;;;;35579:2487;;;35644:7;:5;:7::i;:::-;35636:15;;:4;:15;;;;:49;;;;;35678:7;:5;:7::i;:::-;35672:13;;:2;:13;;;;35636:49;:86;;;;;35720:1;35706:16;;:2;:16;;;;35636:86;:128;;;;;35757:6;35743:21;;:2;:21;;;;35636:128;:158;;;;;35786:8;;;;;;;;;;;35785:9;35636:158;35614:2441;;;35834:13;;;;;;;;;;;35829:223;;35906:19;:25;35926:4;35906:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;35935:19;:23;35955:2;35935:23;;;;;;;;;;;;;;;;;;;;;;;;;35906:52;35872:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;35829:223;36208:20;;;;;;;;;;;36204:641;;;36289:7;:5;:7::i;:::-;36283:13;;:2;:13;;;;:72;;;;;36339:15;36325:30;;:2;:30;;;;36283:72;:129;;;;;36398:13;;;;;;;;;;;36384:28;;:2;:28;;;;36283:129;36253:573;;;36576:12;36501:28;:39;36530:9;36501:39;;;;;;;;;;;;;;;;:87;36463:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;36790:12;36748:28;:39;36777:9;36748:39;;;;;;;;;;;;;;;:54;;;;36253:573;36204:641;36919:25;:31;36945:4;36919:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;36976:31;:35;37008:2;36976:35;;;;;;;;;;;;;;;;;;;;;;;;;36975:36;36919:92;36893:1147;;;37098:20;;37088:6;:30;;37054:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;37306:9;;37289:13;37299:2;37289:9;:13::i;:::-;37280:6;:22;;;;:::i;:::-;:35;;37246:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;36893:1147;;;37484:25;:29;37510:2;37484:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;37539:31;:37;37571:4;37539:37;;;;;;;;;;;;;;;;;;;;;;;;;37538:38;37484:92;37458:582;;;37663:20;;37653:6;:30;;37619:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;37458:582;;;37820:31;:35;37852:2;37820:35;;;;;;;;;;;;;;;;;;;;;;;;;37815:225;;37940:9;;37923:13;37933:2;37923:9;:13::i;:::-;37914:6;:22;;;;:::i;:::-;:35;;37880:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;37815:225;37458:582;36893:1147;35614:2441;35579:2487;38078:28;38109:24;38127:4;38109:9;:24::i;:::-;38078:55;;38146:12;38185:18;;38161:20;:42;;38146:57;;38234:7;:35;;;;;38258:11;;;;;;;;;;;38234:35;:61;;;;;38287:8;;;;;;;;;;;38286:9;38234:61;:110;;;;;38313:25;:31;38339:4;38313:31;;;;;;;;;;;;;;;;;;;;;;;;;38312:32;38234:110;:153;;;;;38362:19;:25;38382:4;38362:25;;;;;;;;;;;;;;;;;;;;;;;;;38361:26;38234:153;:194;;;;;38405:19;:23;38425:2;38405:23;;;;;;;;;;;;;;;;;;;;;;;;;38404:24;38234:194;38216:326;;;38466:4;38455:8;;:15;;;;;;;;;;;;;;;;;;38487:10;:8;:10::i;:::-;38525:5;38514:8;;:16;;;;;;;;;;;;;;;;;;38216:326;38573:8;;;;;;;;;;;38572:9;:55;;;;;38598:25;:29;38624:2;38598:29;;;;;;;;;;;;;;;;;;;;;;;;;38572:55;:85;;;;;38644:13;;;;;;;;;;;38572:85;:153;;;;;38710:15;;38693:14;;:32;;;;:::i;:::-;38674:15;:51;;38572:153;:196;;;;;38743:19;:25;38763:4;38743:25;;;;;;;;;;;;;;;;;;;;;;;;;38742:26;38572:196;38554:282;;;38795:29;:27;:29::i;:::-;;38554:282;38848:12;38864:8;;;;;;;;;;;38863:9;38848:24;;38974:19;:25;38994:4;38974:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39003:19;:23;39023:2;39003:23;;;;;;;;;;;;;;;;;;;;;;;;;38974:52;38970:100;;;39053:5;39043:15;;38970:100;39082:12;39187:7;39183:969;;;39239:25;:29;39265:2;39239:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;39288:1;39272:13;;:17;39239:50;39235:768;;;39317:34;39347:3;39317:25;39328:13;;39317:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;39310:41;;39420:13;;28691:1;39393:4;:23;;;;:::i;:::-;39392:41;;;;:::i;:::-;39370:18;;:63;;;;;;;:::i;:::-;;;;;;;;39490:13;;28736:1;39469:4;:17;;;;:::i;:::-;39468:35;;;;:::i;:::-;39452:12;;:51;;;;;;;:::i;:::-;;;;;;;;39572:13;;28640:1;39545:4;:23;;;;:::i;:::-;39544:41;;;;:::i;:::-;39522:18;;:63;;;;;;;:::i;:::-;;;;;;;;39235:768;;;39647:25;:31;39673:4;39647:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;39697:1;39682:12;;:16;39647:51;39643:360;;;39726:33;39755:3;39726:24;39737:12;;39726:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;39719:40;;39827:12;;28508:1;39801:4;:22;;;;:::i;:::-;39800:39;;;;:::i;:::-;39778:18;;:61;;;;;;;:::i;:::-;;;;;;;;39895:12;;28552:1;39875:4;:16;;;;:::i;:::-;39874:33;;;;:::i;:::-;39858:12;;:49;;;;;;;:::i;:::-;;;;;;;;39975:12;;28458:1;39949:4;:22;;;;:::i;:::-;39948:39;;;;:::i;:::-;39926:18;;:61;;;;;;;:::i;:::-;;;;;;;;39643:360;39235:768;40030:1;40023:4;:8;40019:91;;;40052:42;40068:4;40082;40089;40052:15;:42::i;:::-;40019:91;40136:4;40126:14;;;;;:::i;:::-;;;39183:969;40164:33;40180:4;40186:2;40190:6;40164:15;:33::i;:::-;35194:5011;;;;;;;;:::o;4333:191::-;4407:16;4426:6;;;;;;;;;;;4407:25;;4452:8;4443:6;;:17;;;;;;;;;;;;;;;;;;4507:8;4476:40;;4497:8;4476:40;;;;;;;;;;;;4333:191;;:::o;34460:188::-;34577:5;34543:25;:31;34569:4;34543:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;34634:5;34600:40;;34628:4;34600:40;;;;;;;;;;;;34460:188;;:::o;23858:98::-;23916:7;23947:1;23943;:5;;;;:::i;:::-;23936:12;;23858:98;;;;:::o;24257:::-;24315:7;24346:1;24342;:5;;;;:::i;:::-;24335:12;;24257:98;;;;:::o;15591:770::-;15749:1;15731:20;;:6;:20;;;;15723:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15833:1;15812:23;;:9;:23;;;;15804:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15888:47;15909:6;15917:9;15928:6;15888:20;:47::i;:::-;15948:21;15972:9;:17;15982:6;15972:17;;;;;;;;;;;;;;;;15948:41;;16039:6;16022:13;:23;;16000:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;16183:6;16167:13;:22;16147:9;:17;16157:6;16147:17;;;;;;;;;;;;;;;:42;;;;16235:6;16211:9;:20;16221:9;16211:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16276:9;16259:35;;16268:6;16259:35;;;16287:6;16259:35;;;;;;:::i;:::-;;;;;;;;16307:46;16327:6;16335:9;16346:6;16307:19;:46::i;:::-;15591:770;;;;:::o;41335:1756::-;41374:23;41400:24;41418:4;41400:9;:24::i;:::-;41374:50;;41435:25;41531:12;;41497:18;;41463;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;41435:108;;41554:12;41602:1;41583:15;:20;:46;;;;41628:1;41607:17;:22;41583:46;41579:85;;;41646:7;;;;;41579:85;41719:2;41698:18;;:23;;;;:::i;:::-;41680:15;:41;41676:115;;;41777:2;41756:18;;:23;;;;:::i;:::-;41738:41;;41676:115;41852:23;41965:1;41932:17;41897:18;;41879:15;:36;;;;:::i;:::-;41878:71;;;;:::i;:::-;:88;;;;:::i;:::-;41852:114;;41977:26;42006:36;42026:15;42006;:19;;:36;;;;:::i;:::-;41977:65;;42055:25;42083:21;42055:49;;42117:36;42134:18;42117:16;:36::i;:::-;42166:18;42187:44;42213:17;42187:21;:25;;:44;;;;:::i;:::-;42166:65;;42244:23;42270:81;42323:17;42270:34;42285:18;;42270:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;42244:107;;42362:17;42382:51;42415:17;42382:28;42397:12;;42382:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;42362:71;;42446:23;42503:9;42485:15;42472:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;42446:66;;42546:1;42525:18;:22;;;;42579:1;42558:18;:22;;;;42606:1;42591:12;:16;;;;42642:9;;;;;;;;;;;42634:23;;42665:9;42634:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42620:59;;;;;42714:1;42696:15;:19;:42;;;;;42737:1;42719:15;:19;42696:42;42692:278;;;42755:46;42768:15;42785;42755:12;:46::i;:::-;42821:137;42854:18;42891:15;42925:18;;42821:137;;;;;;;;:::i;:::-;;;;;;;;42692:278;43004:15;;;;;;;;;;;42996:29;;43047:21;42996:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42982:101;;;;;41335:1756;;;;;;;;;;;:::o;43662:788::-;43719:4;43753:15;43736:14;:32;;;;43823:28;43854:4;:14;;;43869:13;;;;;;;;;;;43854:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43823:60;;43933:20;43956:77;44017:5;43956:42;43981:16;;43956:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;43933:100;;44153:1;44138:12;:16;44134:110;;;44171:61;44187:13;;;;;;;;;;;44210:6;44219:12;44171:15;:61::i;:::-;44134:110;44319:19;44356:13;;;;;;;;;;;44319:51;;44381:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44408:12;;;;;;;;;;44438:4;44431:11;;;;;43662:788;:::o;19389:125::-;;;;:::o;20118:124::-;;;;:::o;23501:98::-;23559:7;23590:1;23586;:5;;;;:::i;:::-;23579:12;;23501:98;;;;:::o;40213:589::-;40339:21;40377:1;40363:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40339:40;;40408:4;40390;40395:1;40390:7;;;;;;;;;;;;;;;;;;;;;:23;;;;;;;;;;;40434:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40424:4;40429:1;40424:7;;;;;;;;;;;;;;;;;;;;;:32;;;;;;;;;;;40469:62;40486:4;40501:15;40519:11;40469:8;:62::i;:::-;40570:15;:66;;;40651:11;40677:1;40721:4;40748;40768:15;40570:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40213:589;;:::o;40810:517::-;40958:62;40975:4;40990:15;41008:11;40958:8;:62::i;:::-;41063:15;:31;;;41102:9;41135:4;41155:11;41181:1;41224;27504:6;41293:15;41063:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;40810:517;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:143::-;;240:6;234:13;225:22;;256:33;283:5;256:33;:::i;:::-;215:80;;;;:::o;301:133::-;;382:6;369:20;360:29;;398:30;422:5;398:30;:::i;:::-;350:84;;;;:::o;440:139::-;;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;492:87;;;;:::o;585:143::-;;673:6;667:13;658:22;;689:33;716:5;689:33;:::i;:::-;648:80;;;;:::o;734:262::-;;842:2;830:9;821:7;817:23;813:32;810:2;;;858:1;855;848:12;810:2;901:1;926:53;971:7;962:6;951:9;947:22;926:53;:::i;:::-;916:63;;872:117;800:196;;;;:::o;1002:284::-;;1121:2;1109:9;1100:7;1096:23;1092:32;1089:2;;;1137:1;1134;1127:12;1089:2;1180:1;1205:64;1261:7;1252:6;1241:9;1237:22;1205:64;:::i;:::-;1195:74;;1151:128;1079:207;;;;:::o;1292:407::-;;;1417:2;1405:9;1396:7;1392:23;1388:32;1385:2;;;1433:1;1430;1423:12;1385:2;1476:1;1501:53;1546:7;1537:6;1526:9;1522:22;1501:53;:::i;:::-;1491:63;;1447:117;1603:2;1629:53;1674:7;1665:6;1654:9;1650:22;1629:53;:::i;:::-;1619:63;;1574:118;1375:324;;;;;:::o;1705:552::-;;;;1847:2;1835:9;1826:7;1822:23;1818:32;1815:2;;;1863:1;1860;1853:12;1815:2;1906:1;1931:53;1976:7;1967:6;1956:9;1952:22;1931:53;:::i;:::-;1921:63;;1877:117;2033:2;2059:53;2104:7;2095:6;2084:9;2080:22;2059:53;:::i;:::-;2049:63;;2004:118;2161:2;2187:53;2232:7;2223:6;2212:9;2208:22;2187:53;:::i;:::-;2177:63;;2132:118;1805:452;;;;;:::o;2263:401::-;;;2385:2;2373:9;2364:7;2360:23;2356:32;2353:2;;;2401:1;2398;2391:12;2353:2;2444:1;2469:53;2514:7;2505:6;2494:9;2490:22;2469:53;:::i;:::-;2459:63;;2415:117;2571:2;2597:50;2639:7;2630:6;2619:9;2615:22;2597:50;:::i;:::-;2587:60;;2542:115;2343:321;;;;;:::o;2670:407::-;;;2795:2;2783:9;2774:7;2770:23;2766:32;2763:2;;;2811:1;2808;2801:12;2763:2;2854:1;2879:53;2924:7;2915:6;2904:9;2900:22;2879:53;:::i;:::-;2869:63;;2825:117;2981:2;3007:53;3052:7;3043:6;3032:9;3028:22;3007:53;:::i;:::-;2997:63;;2952:118;2753:324;;;;;:::o;3083:256::-;;3188:2;3176:9;3167:7;3163:23;3159:32;3156:2;;;3204:1;3201;3194:12;3156:2;3247:1;3272:50;3314:7;3305:6;3294:9;3290:22;3272:50;:::i;:::-;3262:60;;3218:114;3146:193;;;;:::o;3345:262::-;;3453:2;3441:9;3432:7;3428:23;3424:32;3421:2;;;3469:1;3466;3459:12;3421:2;3512:1;3537:53;3582:7;3573:6;3562:9;3558:22;3537:53;:::i;:::-;3527:63;;3483:117;3411:196;;;;:::o;3613:284::-;;3732:2;3720:9;3711:7;3707:23;3703:32;3700:2;;;3748:1;3745;3738:12;3700:2;3791:1;3816:64;3872:7;3863:6;3852:9;3848:22;3816:64;:::i;:::-;3806:74;;3762:128;3690:207;;;;:::o;3903:546::-;;;;4042:2;4030:9;4021:7;4017:23;4013:32;4010:2;;;4058:1;4055;4048:12;4010:2;4101:1;4126:53;4171:7;4162:6;4151:9;4147:22;4126:53;:::i;:::-;4116:63;;4072:117;4228:2;4254:53;4299:7;4290:6;4279:9;4275:22;4254:53;:::i;:::-;4244:63;;4199:118;4356:2;4382:50;4424:7;4415:6;4404:9;4400:22;4382:50;:::i;:::-;4372:60;;4327:115;4000:449;;;;;:::o;4455:596::-;;;;4608:2;4596:9;4587:7;4583:23;4579:32;4576:2;;;4624:1;4621;4614:12;4576:2;4667:1;4692:64;4748:7;4739:6;4728:9;4724:22;4692:64;:::i;:::-;4682:74;;4638:128;4805:2;4831:64;4887:7;4878:6;4867:9;4863:22;4831:64;:::i;:::-;4821:74;;4776:129;4944:2;4970:64;5026:7;5017:6;5006:9;5002:22;4970:64;:::i;:::-;4960:74;;4915:129;4566:485;;;;;:::o;5057:179::-;;5147:46;5189:3;5181:6;5147:46;:::i;:::-;5225:4;5220:3;5216:14;5202:28;;5137:99;;;;:::o;5242:108::-;5319:24;5337:5;5319:24;:::i;:::-;5314:3;5307:37;5297:53;;:::o;5356:118::-;5443:24;5461:5;5443:24;:::i;:::-;5438:3;5431:37;5421:53;;:::o;5510:732::-;;5658:54;5706:5;5658:54;:::i;:::-;5728:86;5807:6;5802:3;5728:86;:::i;:::-;5721:93;;5838:56;5888:5;5838:56;:::i;:::-;5917:7;5948:1;5933:284;5958:6;5955:1;5952:13;5933:284;;;6034:6;6028:13;6061:63;6120:3;6105:13;6061:63;:::i;:::-;6054:70;;6147:60;6200:6;6147:60;:::i;:::-;6137:70;;5993:224;5980:1;5977;5973:9;5968:14;;5933:284;;;5937:14;6233:3;6226:10;;5634:608;;;;;;;:::o;6248:109::-;6329:21;6344:5;6329:21;:::i;:::-;6324:3;6317:34;6307:50;;:::o;6363:181::-;6475:62;6531:5;6475:62;:::i;:::-;6470:3;6463:75;6453:91;;:::o;6550:147::-;6645:45;6684:5;6645:45;:::i;:::-;6640:3;6633:58;6623:74;;:::o;6703:364::-;;6819:39;6852:5;6819:39;:::i;:::-;6874:71;6938:6;6933:3;6874:71;:::i;:::-;6867:78;;6954:52;6999:6;6994:3;6987:4;6980:5;6976:16;6954:52;:::i;:::-;7031:29;7053:6;7031:29;:::i;:::-;7026:3;7022:39;7015:46;;6795:272;;;;;:::o;7073:367::-;;7236:67;7300:2;7295:3;7236:67;:::i;:::-;7229:74;;7333:34;7329:1;7324:3;7320:11;7313:55;7399:5;7394:2;7389:3;7385:12;7378:27;7431:2;7426:3;7422:12;7415:19;;7219:221;;;:::o;7446:320::-;;7609:67;7673:2;7668:3;7609:67;:::i;:::-;7602:74;;7706:24;7702:1;7697:3;7693:11;7686:45;7757:2;7752:3;7748:12;7741:19;;7592:174;;;:::o;7772:370::-;;7935:67;7999:2;7994:3;7935:67;:::i;:::-;7928:74;;8032:34;8028:1;8023:3;8019:11;8012:55;8098:8;8093:2;8088:3;8084:12;8077:30;8133:2;8128:3;8124:12;8117:19;;7918:224;;;:::o;8148:366::-;;8311:67;8375:2;8370:3;8311:67;:::i;:::-;8304:74;;8408:34;8404:1;8399:3;8395:11;8388:55;8474:4;8469:2;8464:3;8460:12;8453:26;8505:2;8500:3;8496:12;8489:19;;8294:220;;;:::o;8520:383::-;;8683:67;8747:2;8742:3;8683:67;:::i;:::-;8676:74;;8780:34;8776:1;8771:3;8767:11;8760:55;8846:21;8841:2;8836:3;8832:12;8825:43;8894:2;8889:3;8885:12;8878:19;;8666:237;;;:::o;8909:368::-;;9072:67;9136:2;9131:3;9072:67;:::i;:::-;9065:74;;9169:34;9165:1;9160:3;9156:11;9149:55;9235:6;9230:2;9225:3;9221:12;9214:28;9268:2;9263:3;9259:12;9252:19;;9055:222;;;:::o;9283:389::-;;9446:67;9510:2;9505:3;9446:67;:::i;:::-;9439:74;;9543:34;9539:1;9534:3;9530:11;9523:55;9609:27;9604:2;9599:3;9595:12;9588:49;9663:2;9658:3;9654:12;9647:19;;9429:243;;;:::o;9678:370::-;;9841:67;9905:2;9900:3;9841:67;:::i;:::-;9834:74;;9938:34;9934:1;9929:3;9925:11;9918:55;10004:8;9999:2;9994:3;9990:12;9983:30;10039:2;10034:3;10030:12;10023:19;;9824:224;;;:::o;10054:386::-;;10217:67;10281:2;10276:3;10217:67;:::i;:::-;10210:74;;10314:34;10310:1;10305:3;10301:11;10294:55;10380:24;10375:2;10370:3;10366:12;10359:46;10431:2;10426:3;10422:12;10415:19;;10200:240;;;:::o;10446:380::-;;10609:67;10673:2;10668:3;10609:67;:::i;:::-;10602:74;;10706:34;10702:1;10697:3;10693:11;10686:55;10772:18;10767:2;10762:3;10758:12;10751:40;10817:2;10812:3;10808:12;10801:19;;10592:234;;;:::o;10832:385::-;;10995:67;11059:2;11054:3;10995:67;:::i;:::-;10988:74;;11092:34;11088:1;11083:3;11079:11;11072:55;11158:23;11153:2;11148:3;11144:12;11137:45;11208:2;11203:3;11199:12;11192:19;;10978:239;;;:::o;11223:384::-;;11386:67;11450:2;11445:3;11386:67;:::i;:::-;11379:74;;11483:34;11479:1;11474:3;11470:11;11463:55;11549:22;11544:2;11539:3;11535:12;11528:44;11598:2;11593:3;11589:12;11582:19;;11369:238;;;:::o;11613:385::-;;11776:67;11840:2;11835:3;11776:67;:::i;:::-;11769:74;;11873:34;11869:1;11864:3;11860:11;11853:55;11939:23;11934:2;11929:3;11925:12;11918:45;11989:2;11984:3;11980:12;11973:19;;11759:239;;;:::o;12004:439::-;;12167:67;12231:2;12226:3;12167:67;:::i;:::-;12160:74;;12264:34;12260:1;12255:3;12251:11;12244:55;12330:34;12325:2;12320:3;12316:12;12309:56;12396:11;12391:2;12386:3;12382:12;12375:33;12434:2;12429:3;12425:12;12418:19;;12150:293;;;:::o;12449:372::-;;12612:67;12676:2;12671:3;12612:67;:::i;:::-;12605:74;;12709:34;12705:1;12700:3;12696:11;12689:55;12775:10;12770:2;12765:3;12761:12;12754:32;12812:2;12807:3;12803:12;12796:19;;12595:226;;;:::o;12827:330::-;;12990:67;13054:2;13049:3;12990:67;:::i;:::-;12983:74;;13087:34;13083:1;13078:3;13074:11;13067:55;13148:2;13143:3;13139:12;13132:19;;12973:184;;;:::o;13163:374::-;;13326:67;13390:2;13385:3;13326:67;:::i;:::-;13319:74;;13423:34;13419:1;13414:3;13410:11;13403:55;13489:12;13484:2;13479:3;13475:12;13468:34;13528:2;13523:3;13519:12;13512:19;;13309:228;;;:::o;13543:369::-;;13706:67;13770:2;13765:3;13706:67;:::i;:::-;13699:74;;13803:34;13799:1;13794:3;13790:11;13783:55;13869:7;13864:2;13859:3;13855:12;13848:29;13903:2;13898:3;13894:12;13887:19;;13689:223;;;:::o;13918:330::-;;14081:67;14145:2;14140:3;14081:67;:::i;:::-;14074:74;;14178:34;14174:1;14169:3;14165:11;14158:55;14239:2;14234:3;14230:12;14223:19;;14064:184;;;:::o;14254:297::-;;14434:83;14515:1;14510:3;14434:83;:::i;:::-;14427:90;;14543:1;14538:3;14534:11;14527:18;;14417:134;;;:::o;14557:368::-;;14720:67;14784:2;14779:3;14720:67;:::i;:::-;14713:74;;14817:34;14813:1;14808:3;14804:11;14797:55;14883:6;14878:2;14873:3;14869:12;14862:28;14916:2;14911:3;14907:12;14900:19;;14703:222;;;:::o;14931:317::-;;15094:67;15158:2;15153:3;15094:67;:::i;:::-;15087:74;;15191:21;15187:1;15182:3;15178:11;15171:42;15239:2;15234:3;15230:12;15223:19;;15077:171;;;:::o;15254:369::-;;15417:67;15481:2;15476:3;15417:67;:::i;:::-;15410:74;;15514:34;15510:1;15505:3;15501:11;15494:55;15580:7;15575:2;15570:3;15566:12;15559:29;15614:2;15609:3;15605:12;15598:19;;15400:223;;;:::o;15629:379::-;;15792:67;15856:2;15851:3;15792:67;:::i;:::-;15785:74;;15889:34;15885:1;15880:3;15876:11;15869:55;15955:17;15950:2;15945:3;15941:12;15934:39;15999:2;15994:3;15990:12;15983:19;;15775:233;;;:::o;16014:118::-;16101:24;16119:5;16101:24;:::i;:::-;16096:3;16089:37;16079:53;;:::o;16138:112::-;16221:22;16237:5;16221:22;:::i;:::-;16216:3;16209:35;16199:51;;:::o;16256:379::-;;16462:147;16605:3;16462:147;:::i;:::-;16455:154;;16626:3;16619:10;;16444:191;;;:::o;16641:222::-;;16772:2;16761:9;16757:18;16749:26;;16785:71;16853:1;16842:9;16838:17;16829:6;16785:71;:::i;:::-;16739:124;;;;:::o;16869:807::-;;17156:3;17145:9;17141:19;17133:27;;17170:71;17238:1;17227:9;17223:17;17214:6;17170:71;:::i;:::-;17251:72;17319:2;17308:9;17304:18;17295:6;17251:72;:::i;:::-;17333:80;17409:2;17398:9;17394:18;17385:6;17333:80;:::i;:::-;17423;17499:2;17488:9;17484:18;17475:6;17423:80;:::i;:::-;17513:73;17581:3;17570:9;17566:19;17557:6;17513:73;:::i;:::-;17596;17664:3;17653:9;17649:19;17640:6;17596:73;:::i;:::-;17123:553;;;;;;;;;:::o;17682:210::-;;17807:2;17796:9;17792:18;17784:26;;17820:65;17882:1;17871:9;17867:17;17858:6;17820:65;:::i;:::-;17774:118;;;;:::o;17898:272::-;;18054:2;18043:9;18039:18;18031:26;;18067:96;18160:1;18149:9;18145:17;18136:6;18067:96;:::i;:::-;18021:149;;;;:::o;18176:313::-;;18327:2;18316:9;18312:18;18304:26;;18376:9;18370:4;18366:20;18362:1;18351:9;18347:17;18340:47;18404:78;18477:4;18468:6;18404:78;:::i;:::-;18396:86;;18294:195;;;;:::o;18495:419::-;;18699:2;18688:9;18684:18;18676:26;;18748:9;18742:4;18738:20;18734:1;18723:9;18719:17;18712:47;18776:131;18902:4;18776:131;:::i;:::-;18768:139;;18666:248;;;:::o;18920:419::-;;19124:2;19113:9;19109:18;19101:26;;19173:9;19167:4;19163:20;19159:1;19148:9;19144:17;19137:47;19201:131;19327:4;19201:131;:::i;:::-;19193:139;;19091:248;;;:::o;19345:419::-;;19549:2;19538:9;19534:18;19526:26;;19598:9;19592:4;19588:20;19584:1;19573:9;19569:17;19562:47;19626:131;19752:4;19626:131;:::i;:::-;19618:139;;19516:248;;;:::o;19770:419::-;;19974:2;19963:9;19959:18;19951:26;;20023:9;20017:4;20013:20;20009:1;19998:9;19994:17;19987:47;20051:131;20177:4;20051:131;:::i;:::-;20043:139;;19941:248;;;:::o;20195:419::-;;20399:2;20388:9;20384:18;20376:26;;20448:9;20442:4;20438:20;20434:1;20423:9;20419:17;20412:47;20476:131;20602:4;20476:131;:::i;:::-;20468:139;;20366:248;;;:::o;20620:419::-;;20824:2;20813:9;20809:18;20801:26;;20873:9;20867:4;20863:20;20859:1;20848:9;20844:17;20837:47;20901:131;21027:4;20901:131;:::i;:::-;20893:139;;20791:248;;;:::o;21045:419::-;;21249:2;21238:9;21234:18;21226:26;;21298:9;21292:4;21288:20;21284:1;21273:9;21269:17;21262:47;21326:131;21452:4;21326:131;:::i;:::-;21318:139;;21216:248;;;:::o;21470:419::-;;21674:2;21663:9;21659:18;21651:26;;21723:9;21717:4;21713:20;21709:1;21698:9;21694:17;21687:47;21751:131;21877:4;21751:131;:::i;:::-;21743:139;;21641:248;;;:::o;21895:419::-;;22099:2;22088:9;22084:18;22076:26;;22148:9;22142:4;22138:20;22134:1;22123:9;22119:17;22112:47;22176:131;22302:4;22176:131;:::i;:::-;22168:139;;22066:248;;;:::o;22320:419::-;;22524:2;22513:9;22509:18;22501:26;;22573:9;22567:4;22563:20;22559:1;22548:9;22544:17;22537:47;22601:131;22727:4;22601:131;:::i;:::-;22593:139;;22491:248;;;:::o;22745:419::-;;22949:2;22938:9;22934:18;22926:26;;22998:9;22992:4;22988:20;22984:1;22973:9;22969:17;22962:47;23026:131;23152:4;23026:131;:::i;:::-;23018:139;;22916:248;;;:::o;23170:419::-;;23374:2;23363:9;23359:18;23351:26;;23423:9;23417:4;23413:20;23409:1;23398:9;23394:17;23387:47;23451:131;23577:4;23451:131;:::i;:::-;23443:139;;23341:248;;;:::o;23595:419::-;;23799:2;23788:9;23784:18;23776:26;;23848:9;23842:4;23838:20;23834:1;23823:9;23819:17;23812:47;23876:131;24002:4;23876:131;:::i;:::-;23868:139;;23766:248;;;:::o;24020:419::-;;24224:2;24213:9;24209:18;24201:26;;24273:9;24267:4;24263:20;24259:1;24248:9;24244:17;24237:47;24301:131;24427:4;24301:131;:::i;:::-;24293:139;;24191:248;;;:::o;24445:419::-;;24649:2;24638:9;24634:18;24626:26;;24698:9;24692:4;24688:20;24684:1;24673:9;24669:17;24662:47;24726:131;24852:4;24726:131;:::i;:::-;24718:139;;24616:248;;;:::o;24870:419::-;;25074:2;25063:9;25059:18;25051:26;;25123:9;25117:4;25113:20;25109:1;25098:9;25094:17;25087:47;25151:131;25277:4;25151:131;:::i;:::-;25143:139;;25041:248;;;:::o;25295:419::-;;25499:2;25488:9;25484:18;25476:26;;25548:9;25542:4;25538:20;25534:1;25523:9;25519:17;25512:47;25576:131;25702:4;25576:131;:::i;:::-;25568:139;;25466:248;;;:::o;25720:419::-;;25924:2;25913:9;25909:18;25901:26;;25973:9;25967:4;25963:20;25959:1;25948:9;25944:17;25937:47;26001:131;26127:4;26001:131;:::i;:::-;25993:139;;25891:248;;;:::o;26145:419::-;;26349:2;26338:9;26334:18;26326:26;;26398:9;26392:4;26388:20;26384:1;26373:9;26369:17;26362:47;26426:131;26552:4;26426:131;:::i;:::-;26418:139;;26316:248;;;:::o;26570:419::-;;26774:2;26763:9;26759:18;26751:26;;26823:9;26817:4;26813:20;26809:1;26798:9;26794:17;26787:47;26851:131;26977:4;26851:131;:::i;:::-;26843:139;;26741:248;;;:::o;26995:419::-;;27199:2;27188:9;27184:18;27176:26;;27248:9;27242:4;27238:20;27234:1;27223:9;27219:17;27212:47;27276:131;27402:4;27276:131;:::i;:::-;27268:139;;27166:248;;;:::o;27420:419::-;;27624:2;27613:9;27609:18;27601:26;;27673:9;27667:4;27663:20;27659:1;27648:9;27644:17;27637:47;27701:131;27827:4;27701:131;:::i;:::-;27693:139;;27591:248;;;:::o;27845:419::-;;28049:2;28038:9;28034:18;28026:26;;28098:9;28092:4;28088:20;28084:1;28073:9;28069:17;28062:47;28126:131;28252:4;28126:131;:::i;:::-;28118:139;;28016:248;;;:::o;28270:222::-;;28401:2;28390:9;28386:18;28378:26;;28414:71;28482:1;28471:9;28467:17;28458:6;28414:71;:::i;:::-;28368:124;;;;:::o;28498:831::-;;28799:3;28788:9;28784:19;28776:27;;28813:71;28881:1;28870:9;28866:17;28857:6;28813:71;:::i;:::-;28894:80;28970:2;28959:9;28955:18;28946:6;28894:80;:::i;:::-;29021:9;29015:4;29011:20;29006:2;28995:9;28991:18;28984:48;29049:108;29152:4;29143:6;29049:108;:::i;:::-;29041:116;;29167:72;29235:2;29224:9;29220:18;29211:6;29167:72;:::i;:::-;29249:73;29317:3;29306:9;29302:19;29293:6;29249:73;:::i;:::-;28766:563;;;;;;;;:::o;29335:442::-;;29522:2;29511:9;29507:18;29499:26;;29535:71;29603:1;29592:9;29588:17;29579:6;29535:71;:::i;:::-;29616:72;29684:2;29673:9;29669:18;29660:6;29616:72;:::i;:::-;29698;29766:2;29755:9;29751:18;29742:6;29698:72;:::i;:::-;29489:288;;;;;;:::o;29783:214::-;;29910:2;29899:9;29895:18;29887:26;;29923:67;29987:1;29976:9;29972:17;29963:6;29923:67;:::i;:::-;29877:120;;;;:::o;30003:132::-;;30093:3;30085:11;;30123:4;30118:3;30114:14;30106:22;;30075:60;;;:::o;30141:114::-;;30242:5;30236:12;30226:22;;30215:40;;;:::o;30261:99::-;;30347:5;30341:12;30331:22;;30320:40;;;:::o;30366:113::-;;30468:4;30463:3;30459:14;30451:22;;30441:38;;;:::o;30485:184::-;;30618:6;30613:3;30606:19;30658:4;30653:3;30649:14;30634:29;;30596:73;;;;:::o;30675:147::-;;30813:3;30798:18;;30788:34;;;;:::o;30828:169::-;;30946:6;30941:3;30934:19;30986:4;30981:3;30977:14;30962:29;;30924:73;;;;:::o;31003:305::-;;31062:20;31080:1;31062:20;:::i;:::-;31057:25;;31096:20;31114:1;31096:20;:::i;:::-;31091:25;;31250:1;31182:66;31178:74;31175:1;31172:81;31169:2;;;31256:18;;:::i;:::-;31169:2;31300:1;31297;31293:9;31286:16;;31047:261;;;;:::o;31314:185::-;;31371:20;31389:1;31371:20;:::i;:::-;31366:25;;31405:20;31423:1;31405:20;:::i;:::-;31400:25;;31444:1;31434:2;;31449:18;;:::i;:::-;31434:2;31491:1;31488;31484:9;31479:14;;31356:143;;;;:::o;31505:348::-;;31568:20;31586:1;31568:20;:::i;:::-;31563:25;;31602:20;31620:1;31602:20;:::i;:::-;31597:25;;31790:1;31722:66;31718:74;31715:1;31712:81;31707:1;31700:9;31693:17;31689:105;31686:2;;;31797:18;;:::i;:::-;31686:2;31845:1;31842;31838:9;31827:20;;31553:300;;;;:::o;31859:191::-;;31919:20;31937:1;31919:20;:::i;:::-;31914:25;;31953:20;31971:1;31953:20;:::i;:::-;31948:25;;31992:1;31989;31986:8;31983:2;;;31997:18;;:::i;:::-;31983:2;32042:1;32039;32035:9;32027:17;;31904:146;;;;:::o;32056:96::-;;32122:24;32140:5;32122:24;:::i;:::-;32111:35;;32101:51;;;:::o;32158:90::-;;32235:5;32228:13;32221:21;32210:32;;32200:48;;;:::o;32254:126::-;;32331:42;32324:5;32320:54;32309:65;;32299:81;;;:::o;32386:77::-;;32452:5;32441:16;;32431:32;;;:::o;32469:86::-;;32544:4;32537:5;32533:16;32522:27;;32512:43;;;:::o;32561:176::-;;32669:62;32725:5;32669:62;:::i;:::-;32656:75;;32646:91;;;:::o;32743:138::-;;32851:24;32869:5;32851:24;:::i;:::-;32838:37;;32828:53;;;:::o;32887:121::-;;32978:24;32996:5;32978:24;:::i;:::-;32965:37;;32955:53;;;:::o;33014:307::-;33082:1;33092:113;33106:6;33103:1;33100:13;33092:113;;;33191:1;33186:3;33182:11;33176:18;33172:1;33167:3;33163:11;33156:39;33128:2;33125:1;33121:10;33116:15;;33092:113;;;33223:6;33220:1;33217:13;33214:2;;;33303:1;33294:6;33289:3;33285:16;33278:27;33214:2;33063:258;;;;:::o;33327:320::-;;33408:1;33402:4;33398:12;33388:22;;33455:1;33449:4;33445:12;33476:18;33466:2;;33532:4;33524:6;33520:17;33510:27;;33466:2;33594;33586:6;33583:14;33563:18;33560:38;33557:2;;;33613:18;;:::i;:::-;33557:2;33378:269;;;;:::o;33653:180::-;33701:77;33698:1;33691:88;33798:4;33795:1;33788:15;33822:4;33819:1;33812:15;33839:180;33887:77;33884:1;33877:88;33984:4;33981:1;33974:15;34008:4;34005:1;33998:15;34025:180;34073:77;34070:1;34063:88;34170:4;34167:1;34160:15;34194:4;34191:1;34184:15;34211:102;;34303:2;34299:7;34294:2;34287:5;34283:14;34279:28;34269:38;;34259:54;;;:::o;34319:122::-;34392:24;34410:5;34392:24;:::i;:::-;34385:5;34382:35;34372:2;;34431:1;34428;34421:12;34372:2;34362:79;:::o;34447:116::-;34517:21;34532:5;34517:21;:::i;:::-;34510:5;34507:32;34497:2;;34553:1;34550;34543:12;34497:2;34487:76;:::o;34569:122::-;34642:24;34660:5;34642:24;:::i;:::-;34635:5;34632:35;34622:2;;34681:1;34678;34671:12;34622:2;34612:79;:::o

Swarm Source

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