ETH Price: $3,459.25 (-0.69%)
Gas: 2 Gwei

Token

NGMI (NGMI)
 

Overview

Max Total Supply

1,000,000 NGMI

Holders

18

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
8,000 NGMI

Value
$0.00
0xe81e0543e47a16cddd4dd8504f54188724f59509
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:
NGMI

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

/**
 * SPDX-License-Identifier: MIT
 */
 
pragma solidity >=0.8.19;

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

    bool private swapping;

    address public lpWallet;
    address public marketingWallet;
    address public devWallet;

    uint256 public maxTokensForSwapback;
    uint256 public swapTokensAtAmount;

    uint256 public maxTransactionAmount;
    uint256 public maxWallet;

    uint256 public percentForLPBurn = 0;
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public lastManualLpBurnTime;
    uint256 public manualBurnFrequency = 45 minutes;

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

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

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

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

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

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    constructor() ERC20("NGMI", "NGMI") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyMarketingFee = 20;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 99;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1000000 * 1e18;

        maxTransactionAmount = (totalSupply * 1) / 100; // 1% of total supply
        maxWallet = (totalSupply * 1) / 100; // 1% of total supply

        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swapback trigger
        maxTokensForSwapback = totalSupply / 100;

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

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

        marketingWallet = address(msg.sender); 
        devWallet = address(msg.sender);
        lpWallet = msg.sender;

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(marketingWallet, 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 {}

    /// @notice Launches the token and enables trading. Irriversable.
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

    function haveFunStayingPoor() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

    /// @notice Removes the max wallet and max transaction limits
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    /// @notice Disables the Same wallet block transfer delay
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    /// @notice Changes the minimum balance of tokens the contract must have before swapping tokens for ETH. Base 100000, so 0.5% = 500.
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= 1,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= 500,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount * totalSupply()/ 100000;
        return true;
    }

    /// @notice Changes the maximum amount of tokens the contract can swap for ETH. Base 10000, so 0.5% = 50.
    function updateMaxTokensForSwapback(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        maxTokensForSwapback = newAmount * totalSupply()/ 100000;
        return true;
    }

    /// @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
    /// @param newNum Base 1000, so 1% = 10
    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    /// @notice Changes the maximum amount of tokens a wallet can hold
    /// @param newNum Base 1000, so 1% = 10
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= 5,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * totalSupply()/1000;
    }


    /// @notice Sets if a wallet is excluded from the max wallet and tx limits
    /// @param updAds The wallet to update
    /// @param isEx If the wallet is excluded or not
    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    /// @notice Sets if the contract can sell tokens
    /// @param enabled set to false to disable selling
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }
    
    /// @notice Sets the fees for buys
    /// @param _marketingFee The fee for the marketing wallet
    /// @param _liquidityFee The fee for the liquidity pool
    /// @param _devFee The fee for the dev wallet
    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
    }

    /// @notice Sets the fees for sells
    /// @param _marketingFee The fee for the marketing wallet
    /// @param _liquidityFee The fee for the liquidity pool
    /// @param _devFee The fee for the dev wallet
    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
    }

    /// @notice Sets if a wallet is excluded from fees
    /// @param account The wallet to update
    /// @param excluded If the wallet is excluded or not
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    /// @notice Sets an address as a new liquidity pair. You probably dont want to do this.
    /// @param pair The new pair
    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 updateLPWallet(address newLPWallet)
        external
        onlyOwner
    {
        lpWallet = newLPWallet;
    }

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

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

    event BoughtEarly(address indexed sniper);

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

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

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            lpWallet,
            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 > maxTokensForSwapback) {
            contractBalance = maxTokensForSwapback;
        }

        // 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();
        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();
        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":[{"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":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"haveFunStayingPoor","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":"lpWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"maxTokensForSwapback","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newLPWallet","type":"address"}],"name":"updateLPWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateMaxTokensForSwapback","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600d556001600e60006101000a81548160ff021916908315150217905550610e10600f55610a8c6012556001601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506000601360026101000a81548160ff0219169083151502179055506001601560006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600481526020017f4e474d49000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4e474d4900000000000000000000000000000000000000000000000000000000815250816003908162000127919062000e30565b50806004908162000139919062000e30565b5050506200015c620001506200067760201b60201c565b6200067f60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001888160016200074560201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e919062000f81565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000296573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc919062000f81565b6040518363ffffffff1660e01b8152600401620002db92919062000fc4565b6020604051808303816000875af1158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000f81565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036960a05160016200074560201b60201c565b6200037e60a05160016200082f60201b60201c565b600060149050600080600060639050600080600069d3c21bcecceda100000090506064600182620003b0919062001020565b620003bc91906200109a565b600b819055506064600182620003d3919062001020565b620003df91906200109a565b600c81905550612710600582620003f7919062001020565b6200040391906200109a565b600a819055506064816200041891906200109a565b600981905550866017819055508560188190555084601981905550601954601854601754620004489190620010d2565b620004549190620010d2565b60168190555083601b8190555082601c8190555081601d81905550601d54601c54601b54620004849190620010d2565b620004909190620010d2565b601a8190555033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200057b6200056d620008d060201b60201c565b6001620008fa60201b60201c565b6200058e306001620008fa60201b60201c565b620005a361dead6001620008fa60201b60201c565b620005d8600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008fa60201b60201c565b620005fa620005ec620008d060201b60201c565b60016200074560201b60201c565b6200060d3060016200074560201b60201c565b6200062261dead60016200074560201b60201c565b62000657600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200074560201b60201c565b62000669338262000a3460201b60201c565b50505050505050506200126a565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007556200067760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200077b620008d060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007cb906200116e565b60405180910390fd5b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200090a6200067760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000930620008d060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000980906200116e565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a289190620011ad565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000aa6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a9d906200121a565b60405180910390fd5b62000aba6000838362000bac60201b60201c565b806002600082825462000ace9190620010d2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000b259190620010d2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b8c91906200124d565b60405180910390a362000ba86000838362000bb160201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c3857607f821691505b60208210810362000c4e5762000c4d62000bf0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000cb87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c79565b62000cc4868362000c79565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d1162000d0b62000d058462000cdc565b62000ce6565b62000cdc565b9050919050565b6000819050919050565b62000d2d8362000cf0565b62000d4562000d3c8262000d18565b84845462000c86565b825550505050565b600090565b62000d5c62000d4d565b62000d6981848462000d22565b505050565b5b8181101562000d915762000d8560008262000d52565b60018101905062000d6f565b5050565b601f82111562000de05762000daa8162000c54565b62000db58462000c69565b8101602085101562000dc5578190505b62000ddd62000dd48562000c69565b83018262000d6e565b50505b505050565b600082821c905092915050565b600062000e056000198460080262000de5565b1980831691505092915050565b600062000e20838362000df2565b9150826002028217905092915050565b62000e3b8262000bb6565b67ffffffffffffffff81111562000e575762000e5662000bc1565b5b62000e63825462000c1f565b62000e7082828562000d95565b600060209050601f83116001811462000ea8576000841562000e93578287015190505b62000e9f858262000e12565b86555062000f0f565b601f19841662000eb88662000c54565b60005b8281101562000ee25784890151825560018201915060208501945060208101905062000ebb565b8683101562000f02578489015162000efe601f89168262000df2565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f498262000f1c565b9050919050565b62000f5b8162000f3c565b811462000f6757600080fd5b50565b60008151905062000f7b8162000f50565b92915050565b60006020828403121562000f9a5762000f9962000f17565b5b600062000faa8482850162000f6a565b91505092915050565b62000fbe8162000f3c565b82525050565b600060408201905062000fdb600083018562000fb3565b62000fea602083018462000fb3565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200102d8262000cdc565b91506200103a8362000cdc565b92508282026200104a8162000cdc565b9150828204841483151762001064576200106362000ff1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010a78262000cdc565b9150620010b48362000cdc565b925082620010c757620010c66200106b565b5b828204905092915050565b6000620010df8262000cdc565b9150620010ec8362000cdc565b925082820190508082111562001107576200110662000ff1565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620011566020836200110d565b915062001163826200111e565b602082019050919050565b60006020820190508181036000830152620011898162001147565b9050919050565b60008115159050919050565b620011a78162001190565b82525050565b6000602082019050620011c460008301846200119c565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001202601f836200110d565b91506200120f82620011ca565b602082019050919050565b600060208201905081810360008301526200123581620011f3565b9050919050565b620012478162000cdc565b82525050565b60006020820190506200126460008301846200123c565b92915050565b60805160a051615d53620012f2600039600081816114f801528181611d9c015281816129d501528181612a8c01528181612ab9015281816130cc015281816141b60152818161426f015261429c01526000818161109b01528181613074015281816143e6015281816144c7015281816144ee0152818161458a01526145b10152615d536000f3fe6080604052600436106103e85760003560e01c80638a8c523c11610208578063c024666811610118578063dd62ed3e116100ab578063f2fde38b1161007a578063f2fde38b14610ee4578063f637434214610f0d578063f8b45b0514610f38578063fbc10c5514610f63578063fe72b27a14610f8c576103ef565b8063dd62ed3e14610e26578063e2f4560514610e63578063e884f26014610e8e578063f11a24d314610eb9576103ef565b8063c8c8ebe4116100e7578063c8c8ebe414610d7c578063d257b34f14610da7578063d3bdf54014610de4578063d85ba06314610dfb576103ef565b8063c024666814610cd6578063c17b5b8c14610cff578063c18bc19514610d28578063c876d0b914610d51576103ef565b80639ec22c0e1161019b578063a4c82a001161016a578063a4c82a0014610bdd578063a9059cbb14610c08578063aacebbe314610c45578063b62496f514610c6e578063bbc0c74214610cab576103ef565b80639ec22c0e14610b1f5780639fccce3214610b4a578063a0d82dc514610b75578063a457c2d714610ba0576103ef565b8063924de9b7116101d7578063924de9b714610a7757806395d89b4114610aa05780639a7a23d614610acb5780639c3b4fdc14610af4576103ef565b80638a8c523c146109df5780638da5cb5b146109f65780638ea5220f14610a215780639213691314610a4c576103ef565b80633950935111610303578063715018a61161029657806375f0a8741161026557806375f0a874146108f857806377c18352146109235780637af8ed9c1461094e5780637bce5a041461098b5780638095d564146109b6576103ef565b8063715018a614610864578063730c18881461087b578063751039fc146108a45780637571336a146108cf576103ef565b80636303516c116102d25780636303516c146107a65780636a486a8e146107d15780636ddd1713146107fc57806370a0823114610827576103ef565b806339509351146106d657806349bd5a5e146107135780634a62bb651461073e5780634fbee19314610769576103ef565b80631a8145bb1161037b57806327c8f8351161034a57806327c8f8351461062a5780632c3e486c146106555780632e82f1a014610680578063313ce567146106ab576103ef565b80631a8145bb1461056e5780631f3fed8f14610599578063203e727e146105c457806323b872dd146105ed576103ef565b806318160ddd116103b757806318160ddd146104c45780631816467f146104ef578063184c16c514610518578063199ffc7214610543576103ef565b806306fdde03146103f4578063095ea7b31461041f57806310d5de531461045c5780631694505e14610499576103ef565b366103ef57005b600080fd5b34801561040057600080fd5b50610409610fc9565b6040516104169190614710565b60405180910390f35b34801561042b57600080fd5b50610446600480360381019061044191906147cb565b61105b565b6040516104539190614826565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e9190614841565b611079565b6040516104909190614826565b60405180910390f35b3480156104a557600080fd5b506104ae611099565b6040516104bb91906148cd565b60405180910390f35b3480156104d057600080fd5b506104d96110bd565b6040516104e691906148f7565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190614841565b6110c7565b005b34801561052457600080fd5b5061052d611203565b60405161053a91906148f7565b60405180910390f35b34801561054f57600080fd5b50610558611209565b60405161056591906148f7565b60405180910390f35b34801561057a57600080fd5b5061058361120f565b60405161059091906148f7565b60405180910390f35b3480156105a557600080fd5b506105ae611215565b6040516105bb91906148f7565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e69190614912565b61121b565b005b3480156105f957600080fd5b50610614600480360381019061060f919061493f565b61132a565b6040516106219190614826565b60405180910390f35b34801561063657600080fd5b5061063f611422565b60405161064c91906149a1565b60405180910390f35b34801561066157600080fd5b5061066a611428565b60405161067791906148f7565b60405180910390f35b34801561068c57600080fd5b5061069561142e565b6040516106a29190614826565b60405180910390f35b3480156106b757600080fd5b506106c0611441565b6040516106cd91906149d8565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f891906147cb565b61144a565b60405161070a9190614826565b60405180910390f35b34801561071f57600080fd5b506107286114f6565b60405161073591906149a1565b60405180910390f35b34801561074a57600080fd5b5061075361151a565b6040516107609190614826565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b9190614841565b61152d565b60405161079d9190614826565b60405180910390f35b3480156107b257600080fd5b506107bb611583565b6040516107c891906149a1565b60405180910390f35b3480156107dd57600080fd5b506107e66115a9565b6040516107f391906148f7565b60405180910390f35b34801561080857600080fd5b506108116115af565b60405161081e9190614826565b60405180910390f35b34801561083357600080fd5b5061084e60048036038101906108499190614841565b6115c2565b60405161085b91906148f7565b60405180910390f35b34801561087057600080fd5b5061087961160a565b005b34801561088757600080fd5b506108a2600480360381019061089d9190614a1f565b611692565b005b3480156108b057600080fd5b506108b96117d2565b6040516108c69190614826565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f19190614a72565b611872565b005b34801561090457600080fd5b5061090d611949565b60405161091a91906149a1565b60405180910390f35b34801561092f57600080fd5b5061093861196f565b60405161094591906148f7565b60405180910390f35b34801561095a57600080fd5b5061097560048036038101906109709190614912565b611975565b6040516109829190614826565b60405180910390f35b34801561099757600080fd5b506109a0611a23565b6040516109ad91906148f7565b60405180910390f35b3480156109c257600080fd5b506109dd60048036038101906109d89190614ab2565b611a29565b005b3480156109eb57600080fd5b506109f4611ae2565b005b348015610a0257600080fd5b50610a0b611b9d565b604051610a1891906149a1565b60405180910390f35b348015610a2d57600080fd5b50610a36611bc7565b604051610a4391906149a1565b60405180910390f35b348015610a5857600080fd5b50610a61611bed565b604051610a6e91906148f7565b60405180910390f35b348015610a8357600080fd5b50610a9e6004803603810190610a999190614b05565b611bf3565b005b348015610aac57600080fd5b50610ab5611c8c565b604051610ac29190614710565b60405180910390f35b348015610ad757600080fd5b50610af26004803603810190610aed9190614a72565b611d1e565b005b348015610b0057600080fd5b50610b09611e36565b604051610b1691906148f7565b60405180910390f35b348015610b2b57600080fd5b50610b34611e3c565b604051610b4191906148f7565b60405180910390f35b348015610b5657600080fd5b50610b5f611e42565b604051610b6c91906148f7565b60405180910390f35b348015610b8157600080fd5b50610b8a611e48565b604051610b9791906148f7565b60405180910390f35b348015610bac57600080fd5b50610bc76004803603810190610bc291906147cb565b611e4e565b604051610bd49190614826565b60405180910390f35b348015610be957600080fd5b50610bf2611f39565b604051610bff91906148f7565b60405180910390f35b348015610c1457600080fd5b50610c2f6004803603810190610c2a91906147cb565b611f3f565b604051610c3c9190614826565b60405180910390f35b348015610c5157600080fd5b50610c6c6004803603810190610c679190614841565b611f5d565b005b348015610c7a57600080fd5b50610c956004803603810190610c909190614841565b612099565b604051610ca29190614826565b60405180910390f35b348015610cb757600080fd5b50610cc06120b9565b604051610ccd9190614826565b60405180910390f35b348015610ce257600080fd5b50610cfd6004803603810190610cf89190614a72565b6120cc565b005b348015610d0b57600080fd5b50610d266004803603810190610d219190614ab2565b6121f1565b005b348015610d3457600080fd5b50610d4f6004803603810190610d4a9190614912565b6122aa565b005b348015610d5d57600080fd5b50610d66612393565b604051610d739190614826565b60405180910390f35b348015610d8857600080fd5b50610d916123a6565b604051610d9e91906148f7565b60405180910390f35b348015610db357600080fd5b50610dce6004803603810190610dc99190614912565b6123ac565b604051610ddb9190614826565b60405180910390f35b348015610df057600080fd5b50610df96124e3565b005b348015610e0757600080fd5b50610e1061259e565b604051610e1d91906148f7565b60405180910390f35b348015610e3257600080fd5b50610e4d6004803603810190610e489190614b32565b6125a4565b604051610e5a91906148f7565b60405180910390f35b348015610e6f57600080fd5b50610e7861262b565b604051610e8591906148f7565b60405180910390f35b348015610e9a57600080fd5b50610ea3612631565b604051610eb09190614826565b60405180910390f35b348015610ec557600080fd5b50610ece6126d1565b604051610edb91906148f7565b60405180910390f35b348015610ef057600080fd5b50610f0b6004803603810190610f069190614841565b6126d7565b005b348015610f1957600080fd5b50610f226127ce565b604051610f2f91906148f7565b60405180910390f35b348015610f4457600080fd5b50610f4d6127d4565b604051610f5a91906148f7565b60405180910390f35b348015610f6f57600080fd5b50610f8a6004803603810190610f859190614841565b6127da565b005b348015610f9857600080fd5b50610fb36004803603810190610fae9190614912565b61289a565b604051610fc09190614826565b60405180910390f35b606060038054610fd890614ba1565b80601f016020809104026020016040519081016040528092919081815260200182805461100490614ba1565b80156110515780601f1061102657610100808354040283529160200191611051565b820191906000526020600020905b81548152906001019060200180831161103457829003601f168201915b5050505050905090565b600061106f611068612b46565b8484612b4e565b6001905092915050565b60226020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6110cf612b46565b73ffffffffffffffffffffffffffffffffffffffff166110ed611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90614c1e565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60125481565b600d5481565b601f5481565b601e5481565b611223612b46565b73ffffffffffffffffffffffffffffffffffffffff16611241611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90614c1e565b60405180910390fd5b670de0b6b3a76400006103e860016112ad6110bd565b6112b79190614c6d565b6112c19190614cde565b6112cb9190614cde565b81101561130d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130490614d81565b60405180910390fd5b670de0b6b3a7640000816113219190614c6d565b600b8190555050565b6000611337848484612d17565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611382612b46565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990614e13565b60405180910390fd5b6114168561140e612b46565b858403612b4e565b60019150509392505050565b61dead81565b600f5481565b600e60009054906101000a900460ff1681565b60006012905090565b60006114ec611457612b46565b848460016000611465612b46565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114e79190614e33565b612b4e565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601360009054906101000a900460ff1681565b6000602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601a5481565b601360019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611612612b46565b73ffffffffffffffffffffffffffffffffffffffff16611630611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d90614c1e565b60405180910390fd5b6116906000613aac565b565b61169a612b46565b73ffffffffffffffffffffffffffffffffffffffff166116b8611b9d565b73ffffffffffffffffffffffffffffffffffffffff161461170e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170590614c1e565b60405180910390fd5b610258831015611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614ed9565b60405180910390fd5b6103e88211158015611766575060008210155b6117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c90614f6b565b60405180910390fd5b82600f8190555081600d8190555080600e60006101000a81548160ff021916908315150217905550505050565b60006117dc612b46565b73ffffffffffffffffffffffffffffffffffffffff166117fa611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184790614c1e565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b61187a612b46565b73ffffffffffffffffffffffffffffffffffffffff16611898611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e590614c1e565b60405180910390fd5b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095481565b600061197f612b46565b73ffffffffffffffffffffffffffffffffffffffff1661199d611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90614c1e565b60405180910390fd5b620186a06119ff6110bd565b83611a0a9190614c6d565b611a149190614cde565b60098190555060019050919050565b60175481565b611a31612b46565b73ffffffffffffffffffffffffffffffffffffffff16611a4f611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90614c1e565b60405180910390fd5b826017819055508160188190555080601981905550601954601854601754611acd9190614e33565b611ad79190614e33565b601681905550505050565b611aea612b46565b73ffffffffffffffffffffffffffffffffffffffff16611b08611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5590614c1e565b60405180910390fd5b6001601360026101000a81548160ff0219169083151502179055506001601360016101000a81548160ff02191690831515021790555042601081905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601b5481565b611bfb612b46565b73ffffffffffffffffffffffffffffffffffffffff16611c19611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6690614c1e565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b606060048054611c9b90614ba1565b80601f0160208091040260200160405190810160405280929190818152602001828054611cc790614ba1565b8015611d145780601f10611ce957610100808354040283529160200191611d14565b820191906000526020600020905b815481529060010190602001808311611cf757829003601f168201915b5050505050905090565b611d26612b46565b73ffffffffffffffffffffffffffffffffffffffff16611d44611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9190614c1e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90614ffd565b60405180910390fd5b611e328282613b72565b5050565b60195481565b60115481565b60205481565b601d5481565b60008060016000611e5d612b46565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f119061508f565b60405180910390fd5b611f2e611f25612b46565b85858403612b4e565b600191505092915050565b60105481565b6000611f53611f4c612b46565b8484612d17565b6001905092915050565b611f65612b46565b73ffffffffffffffffffffffffffffffffffffffff16611f83611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090614c1e565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60236020528060005260406000206000915054906101000a900460ff1681565b601360029054906101000a900460ff1681565b6120d4612b46565b73ffffffffffffffffffffffffffffffffffffffff166120f2611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614612148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213f90614c1e565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516121e59190614826565b60405180910390a25050565b6121f9612b46565b73ffffffffffffffffffffffffffffffffffffffff16612217611b9d565b73ffffffffffffffffffffffffffffffffffffffff161461226d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226490614c1e565b60405180910390fd5b82601b8190555081601c8190555080601d81905550601d54601c54601b546122959190614e33565b61229f9190614e33565b601a81905550505050565b6122b2612b46565b73ffffffffffffffffffffffffffffffffffffffff166122d0611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614612326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231d90614c1e565b60405180910390fd5b600581101561236a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236190615121565b60405180910390fd5b6103e86123756110bd565b826123809190614c6d565b61238a9190614cde565b600c8190555050565b601560009054906101000a900460ff1681565b600b5481565b60006123b6612b46565b73ffffffffffffffffffffffffffffffffffffffff166123d4611b9d565b73ffffffffffffffffffffffffffffffffffffffff161461242a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242190614c1e565b60405180910390fd5b600182101561246e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612465906151b3565b60405180910390fd5b6101f48211156124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90615245565b60405180910390fd5b620186a06124bf6110bd565b836124ca9190614c6d565b6124d49190614cde565b600a8190555060019050919050565b6124eb612b46565b73ffffffffffffffffffffffffffffffffffffffff16612509611b9d565b73ffffffffffffffffffffffffffffffffffffffff161461255f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255690614c1e565b60405180910390fd5b6001601360026101000a81548160ff0219169083151502179055506001601360016101000a81548160ff02191690831515021790555042601081905550565b60165481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b600061263b612b46565b73ffffffffffffffffffffffffffffffffffffffff16612659611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a690614c1e565b60405180910390fd5b6000601560006101000a81548160ff0219169083151502179055506001905090565b60185481565b6126df612b46565b73ffffffffffffffffffffffffffffffffffffffff166126fd611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614612753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274a90614c1e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b9906152d7565b60405180910390fd5b6127cb81613aac565b50565b601c5481565b600c5481565b6127e2612b46565b73ffffffffffffffffffffffffffffffffffffffff16612800611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d90614c1e565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006128a4612b46565b73ffffffffffffffffffffffffffffffffffffffff166128c2611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614612918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290f90614c1e565b60405180910390fd5b6012546011546129289190614e33565b4211612969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296090615343565b60405180910390fd5b6103e88211156129ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a5906153d5565b60405180910390fd5b4260118190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401612a1091906149a1565b602060405180830381865afa158015612a2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a51919061540a565b90506000612a7c612710612a6e8685613c1390919063ffffffff16565b613c2990919063ffffffff16565b90506000811115612ab557612ab47f000000000000000000000000000000000000000000000000000000000000000061dead83613c3f565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612b2257600080fd5b505af1158015612b36573d6000803e3d6000fd5b5050505060019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb4906154a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c239061553b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612d0a91906148f7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7d906155cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dec9061565f565b60405180910390fd5b60008103612e0e57612e0983836000613c3f565b613aa7565b601360009054906101000a900460ff16156134d157612e2b611b9d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612e995750612e69611b9d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ed25750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f0c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f255750600560149054906101000a900460ff16155b156134d057601360029054906101000a900460ff1661301f57602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fdf5750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61301e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613015906156cb565b60405180910390fd5b5b601560009054906101000a900460ff16156131e75761303c611b9d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156130c357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561311b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156131e65743601460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106131a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319890615783565b60405180910390fd5b43601460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561328a5750602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561333157600b548111156132d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cb90615815565b60405180910390fd5b600c546132e0836115c2565b826132eb9190614e33565b111561332c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332390615881565b60405180910390fd5b6134cf565b602360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133d45750602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561342357600b5481111561341e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341590615913565b60405180910390fd5b6134ce565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166134cd57600c54613480836115c2565b8261348b9190614e33565b11156134cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c390615881565b60405180910390fd5b5b5b5b5b5b60006134dc306115c2565b90506000600a5482101590508080156135015750601360019054906101000a900460ff165b801561351a5750600560149054906101000a900460ff16155b80156135705750602360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156135c65750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561361c5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613660576001600560146101000a81548160ff021916908315150217905550613644613ebe565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156136c65750602360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156136de5750600e60009054906101000a900460ff165b80156136f95750600f546010546136f59190614e33565b4210155b801561374f5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561375e5761375c61418d565b505b6000600560149054906101000a900460ff16159050602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806138145750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561381e57600090505b60008115613a9757602360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561388157506000601a54115b1561394e576138ae60646138a0601a5488613c1390919063ffffffff16565b613c2990919063ffffffff16565b9050601a54601c54826138c19190614c6d565b6138cb9190614cde565b601f60008282546138dc9190614e33565b92505081905550601a54601d54826138f49190614c6d565b6138fe9190614cde565b6020600082825461390f9190614e33565b92505081905550601a54601b54826139279190614c6d565b6139319190614cde565b601e60008282546139429190614e33565b92505081905550613a73565b602360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139a957506000601654115b15613a72576139d660646139c860165488613c1390919063ffffffff16565b613c2990919063ffffffff16565b9050601654601854826139e99190614c6d565b6139f39190614cde565b601f6000828254613a049190614e33565b9250508190555060165460195482613a1c9190614c6d565b613a269190614cde565b60206000828254613a379190614e33565b9250508190555060165460175482613a4f9190614c6d565b613a599190614cde565b601e6000828254613a6a9190614e33565b925050819055505b5b6000811115613a8857613a87873083613c3f565b5b8085613a949190615933565b94505b613aa2878787613c3f565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008183613c219190614c6d565b905092915050565b60008183613c379190614cde565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ca5906155cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d149061565f565b60405180910390fd5b613d28838383614327565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613da5906159d9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e419190614e33565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613ea591906148f7565b60405180910390a3613eb884848461432c565b50505050565b6000613ec9306115c2565b90506000602054601e54601f54613ee09190614e33565b613eea9190614e33565b9050600080831480613efc5750600082145b15613f095750505061418b565b600954831115613f195760095492505b6000600283601f5486613f2c9190614c6d565b613f369190614cde565b613f409190614cde565b90506000613f57828661433190919063ffffffff16565b90506000479050613f6782614347565b6000613f7c824761433190919063ffffffff16565b90506000613fa787613f99601e5485613c1390919063ffffffff16565b613c2990919063ffffffff16565b90506000613fd288613fc460205486613c1390919063ffffffff16565b613c2990919063ffffffff16565b90506000818385613fe39190615933565b613fed9190615933565b90506000601f819055506000601e819055506000602081905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161404d90615a2a565b60006040518083038185875af1925050503d806000811461408a576040519150601f19603f3d011682016040523d82523d6000602084013e61408f565b606091505b5050809850506000871180156140a55750600081115b156140f2576140b48782614584565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601f546040516140e993929190615a3f565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161413890615a2a565b60006040518083038185875af1925050503d8060008114614175576040519150601f19603f3d011682016040523d82523d6000602084013e61417a565b606091505b505080985050505050505050505050505b565b60004260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016141f191906149a1565b602060405180830381865afa15801561420e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614232919061540a565b9050600061425f612710614251600d5485613c1390919063ffffffff16565b613c2990919063ffffffff16565b90506000811115614298576142977f000000000000000000000000000000000000000000000000000000000000000061dead83613c3f565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561430557600080fd5b505af1158015614319573d6000803e3d6000fd5b505050506001935050505090565b505050565b505050565b6000818361433f9190615933565b905092915050565b6000600267ffffffffffffffff81111561436457614363615a76565b5b6040519080825280602002602001820160405280156143925781602001602082028036833780820191505090505b50905030816000815181106143aa576143a9615aa5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561444f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144739190615ae9565b8160018151811061448757614486615aa5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506144ec307f000000000000000000000000000000000000000000000000000000000000000084612b4e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161454e959493929190615c0f565b600060405180830381600087803b15801561456857600080fd5b505af115801561457c573d6000803e3d6000fd5b505050505050565b6145af307f000000000000000000000000000000000000000000000000000000000000000084612b4e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161463696959493929190615c69565b60606040518083038185885af1158015614654573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906146799190615cca565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156146ba57808201518184015260208101905061469f565b60008484015250505050565b6000601f19601f8301169050919050565b60006146e282614680565b6146ec818561468b565b93506146fc81856020860161469c565b614705816146c6565b840191505092915050565b6000602082019050818103600083015261472a81846146d7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061476282614737565b9050919050565b61477281614757565b811461477d57600080fd5b50565b60008135905061478f81614769565b92915050565b6000819050919050565b6147a881614795565b81146147b357600080fd5b50565b6000813590506147c58161479f565b92915050565b600080604083850312156147e2576147e1614732565b5b60006147f085828601614780565b9250506020614801858286016147b6565b9150509250929050565b60008115159050919050565b6148208161480b565b82525050565b600060208201905061483b6000830184614817565b92915050565b60006020828403121561485757614856614732565b5b600061486584828501614780565b91505092915050565b6000819050919050565b600061489361488e61488984614737565b61486e565b614737565b9050919050565b60006148a582614878565b9050919050565b60006148b78261489a565b9050919050565b6148c7816148ac565b82525050565b60006020820190506148e260008301846148be565b92915050565b6148f181614795565b82525050565b600060208201905061490c60008301846148e8565b92915050565b60006020828403121561492857614927614732565b5b6000614936848285016147b6565b91505092915050565b60008060006060848603121561495857614957614732565b5b600061496686828701614780565b935050602061497786828701614780565b9250506040614988868287016147b6565b9150509250925092565b61499b81614757565b82525050565b60006020820190506149b66000830184614992565b92915050565b600060ff82169050919050565b6149d2816149bc565b82525050565b60006020820190506149ed60008301846149c9565b92915050565b6149fc8161480b565b8114614a0757600080fd5b50565b600081359050614a19816149f3565b92915050565b600080600060608486031215614a3857614a37614732565b5b6000614a46868287016147b6565b9350506020614a57868287016147b6565b9250506040614a6886828701614a0a565b9150509250925092565b60008060408385031215614a8957614a88614732565b5b6000614a9785828601614780565b9250506020614aa885828601614a0a565b9150509250929050565b600080600060608486031215614acb57614aca614732565b5b6000614ad9868287016147b6565b9350506020614aea868287016147b6565b9250506040614afb868287016147b6565b9150509250925092565b600060208284031215614b1b57614b1a614732565b5b6000614b2984828501614a0a565b91505092915050565b60008060408385031215614b4957614b48614732565b5b6000614b5785828601614780565b9250506020614b6885828601614780565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614bb957607f821691505b602082108103614bcc57614bcb614b72565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c0860208361468b565b9150614c1382614bd2565b602082019050919050565b60006020820190508181036000830152614c3781614bfb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c7882614795565b9150614c8383614795565b9250828202614c9181614795565b91508282048414831517614ca857614ca7614c3e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ce982614795565b9150614cf483614795565b925082614d0457614d03614caf565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614d6b602f8361468b565b9150614d7682614d0f565b604082019050919050565b60006020820190508181036000830152614d9a81614d5e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614dfd60288361468b565b9150614e0882614da1565b604082019050919050565b60006020820190508181036000830152614e2c81614df0565b9050919050565b6000614e3e82614795565b9150614e4983614795565b9250828201905080821115614e6157614e60614c3e565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614ec360338361468b565b9150614ece82614e67565b604082019050919050565b60006020820190508181036000830152614ef281614eb6565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614f5560308361468b565b9150614f6082614ef9565b604082019050919050565b60006020820190508181036000830152614f8481614f48565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614fe760398361468b565b9150614ff282614f8b565b604082019050919050565b6000602082019050818103600083015261501681614fda565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061507960258361468b565b91506150848261501d565b604082019050919050565b600060208201905081810360008301526150a88161506c565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061510b60248361468b565b9150615116826150af565b604082019050919050565b6000602082019050818103600083015261513a816150fe565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061519d60358361468b565b91506151a882615141565b604082019050919050565b600060208201905081810360008301526151cc81615190565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061522f60348361468b565b915061523a826151d3565b604082019050919050565b6000602082019050818103600083015261525e81615222565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006152c160268361468b565b91506152cc82615265565b604082019050919050565b600060208201905081810360008301526152f0816152b4565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061532d60208361468b565b9150615338826152f7565b602082019050919050565b6000602082019050818103600083015261535c81615320565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006153bf602a8361468b565b91506153ca82615363565b604082019050919050565b600060208201905081810360008301526153ee816153b2565b9050919050565b6000815190506154048161479f565b92915050565b6000602082840312156154205761541f614732565b5b600061542e848285016153f5565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061549360248361468b565b915061549e82615437565b604082019050919050565b600060208201905081810360008301526154c281615486565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061552560228361468b565b9150615530826154c9565b604082019050919050565b6000602082019050818103600083015261555481615518565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006155b760258361468b565b91506155c28261555b565b604082019050919050565b600060208201905081810360008301526155e6816155aa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061564960238361468b565b9150615654826155ed565b604082019050919050565b600060208201905081810360008301526156788161563c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006156b560168361468b565b91506156c08261567f565b602082019050919050565b600060208201905081810360008301526156e4816156a8565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061576d60498361468b565b9150615778826156eb565b606082019050919050565b6000602082019050818103600083015261579c81615760565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006157ff60358361468b565b915061580a826157a3565b604082019050919050565b6000602082019050818103600083015261582e816157f2565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061586b60138361468b565b915061587682615835565b602082019050919050565b6000602082019050818103600083015261589a8161585e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006158fd60368361468b565b9150615908826158a1565b604082019050919050565b6000602082019050818103600083015261592c816158f0565b9050919050565b600061593e82614795565b915061594983614795565b925082820390508181111561596157615960614c3e565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006159c360268361468b565b91506159ce82615967565b604082019050919050565b600060208201905081810360008301526159f2816159b6565b9050919050565b600081905092915050565b50565b6000615a146000836159f9565b9150615a1f82615a04565b600082019050919050565b6000615a3582615a07565b9150819050919050565b6000606082019050615a5460008301866148e8565b615a6160208301856148e8565b615a6e60408301846148e8565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615ae381614769565b92915050565b600060208284031215615aff57615afe614732565b5b6000615b0d84828501615ad4565b91505092915050565b6000819050919050565b6000615b3b615b36615b3184615b16565b61486e565b614795565b9050919050565b615b4b81615b20565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615b8681614757565b82525050565b6000615b988383615b7d565b60208301905092915050565b6000602082019050919050565b6000615bbc82615b51565b615bc68185615b5c565b9350615bd183615b6d565b8060005b83811015615c02578151615be98882615b8c565b9750615bf483615ba4565b925050600181019050615bd5565b5085935050505092915050565b600060a082019050615c2460008301886148e8565b615c316020830187615b42565b8181036040830152615c438186615bb1565b9050615c526060830185614992565b615c5f60808301846148e8565b9695505050505050565b600060c082019050615c7e6000830189614992565b615c8b60208301886148e8565b615c986040830187615b42565b615ca56060830186615b42565b615cb26080830185614992565b615cbf60a08301846148e8565b979650505050505050565b600080600060608486031215615ce357615ce2614732565b5b6000615cf1868287016153f5565b9350506020615d02868287016153f5565b9250506040615d13868287016153f5565b915050925092509256fea26469706673582212208ea7d0c3dfb0488c5fff9b0aaa936064949353285b696754c85892715e6f226d64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106103e85760003560e01c80638a8c523c11610208578063c024666811610118578063dd62ed3e116100ab578063f2fde38b1161007a578063f2fde38b14610ee4578063f637434214610f0d578063f8b45b0514610f38578063fbc10c5514610f63578063fe72b27a14610f8c576103ef565b8063dd62ed3e14610e26578063e2f4560514610e63578063e884f26014610e8e578063f11a24d314610eb9576103ef565b8063c8c8ebe4116100e7578063c8c8ebe414610d7c578063d257b34f14610da7578063d3bdf54014610de4578063d85ba06314610dfb576103ef565b8063c024666814610cd6578063c17b5b8c14610cff578063c18bc19514610d28578063c876d0b914610d51576103ef565b80639ec22c0e1161019b578063a4c82a001161016a578063a4c82a0014610bdd578063a9059cbb14610c08578063aacebbe314610c45578063b62496f514610c6e578063bbc0c74214610cab576103ef565b80639ec22c0e14610b1f5780639fccce3214610b4a578063a0d82dc514610b75578063a457c2d714610ba0576103ef565b8063924de9b7116101d7578063924de9b714610a7757806395d89b4114610aa05780639a7a23d614610acb5780639c3b4fdc14610af4576103ef565b80638a8c523c146109df5780638da5cb5b146109f65780638ea5220f14610a215780639213691314610a4c576103ef565b80633950935111610303578063715018a61161029657806375f0a8741161026557806375f0a874146108f857806377c18352146109235780637af8ed9c1461094e5780637bce5a041461098b5780638095d564146109b6576103ef565b8063715018a614610864578063730c18881461087b578063751039fc146108a45780637571336a146108cf576103ef565b80636303516c116102d25780636303516c146107a65780636a486a8e146107d15780636ddd1713146107fc57806370a0823114610827576103ef565b806339509351146106d657806349bd5a5e146107135780634a62bb651461073e5780634fbee19314610769576103ef565b80631a8145bb1161037b57806327c8f8351161034a57806327c8f8351461062a5780632c3e486c146106555780632e82f1a014610680578063313ce567146106ab576103ef565b80631a8145bb1461056e5780631f3fed8f14610599578063203e727e146105c457806323b872dd146105ed576103ef565b806318160ddd116103b757806318160ddd146104c45780631816467f146104ef578063184c16c514610518578063199ffc7214610543576103ef565b806306fdde03146103f4578063095ea7b31461041f57806310d5de531461045c5780631694505e14610499576103ef565b366103ef57005b600080fd5b34801561040057600080fd5b50610409610fc9565b6040516104169190614710565b60405180910390f35b34801561042b57600080fd5b50610446600480360381019061044191906147cb565b61105b565b6040516104539190614826565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e9190614841565b611079565b6040516104909190614826565b60405180910390f35b3480156104a557600080fd5b506104ae611099565b6040516104bb91906148cd565b60405180910390f35b3480156104d057600080fd5b506104d96110bd565b6040516104e691906148f7565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190614841565b6110c7565b005b34801561052457600080fd5b5061052d611203565b60405161053a91906148f7565b60405180910390f35b34801561054f57600080fd5b50610558611209565b60405161056591906148f7565b60405180910390f35b34801561057a57600080fd5b5061058361120f565b60405161059091906148f7565b60405180910390f35b3480156105a557600080fd5b506105ae611215565b6040516105bb91906148f7565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e69190614912565b61121b565b005b3480156105f957600080fd5b50610614600480360381019061060f919061493f565b61132a565b6040516106219190614826565b60405180910390f35b34801561063657600080fd5b5061063f611422565b60405161064c91906149a1565b60405180910390f35b34801561066157600080fd5b5061066a611428565b60405161067791906148f7565b60405180910390f35b34801561068c57600080fd5b5061069561142e565b6040516106a29190614826565b60405180910390f35b3480156106b757600080fd5b506106c0611441565b6040516106cd91906149d8565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f891906147cb565b61144a565b60405161070a9190614826565b60405180910390f35b34801561071f57600080fd5b506107286114f6565b60405161073591906149a1565b60405180910390f35b34801561074a57600080fd5b5061075361151a565b6040516107609190614826565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b9190614841565b61152d565b60405161079d9190614826565b60405180910390f35b3480156107b257600080fd5b506107bb611583565b6040516107c891906149a1565b60405180910390f35b3480156107dd57600080fd5b506107e66115a9565b6040516107f391906148f7565b60405180910390f35b34801561080857600080fd5b506108116115af565b60405161081e9190614826565b60405180910390f35b34801561083357600080fd5b5061084e60048036038101906108499190614841565b6115c2565b60405161085b91906148f7565b60405180910390f35b34801561087057600080fd5b5061087961160a565b005b34801561088757600080fd5b506108a2600480360381019061089d9190614a1f565b611692565b005b3480156108b057600080fd5b506108b96117d2565b6040516108c69190614826565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f19190614a72565b611872565b005b34801561090457600080fd5b5061090d611949565b60405161091a91906149a1565b60405180910390f35b34801561092f57600080fd5b5061093861196f565b60405161094591906148f7565b60405180910390f35b34801561095a57600080fd5b5061097560048036038101906109709190614912565b611975565b6040516109829190614826565b60405180910390f35b34801561099757600080fd5b506109a0611a23565b6040516109ad91906148f7565b60405180910390f35b3480156109c257600080fd5b506109dd60048036038101906109d89190614ab2565b611a29565b005b3480156109eb57600080fd5b506109f4611ae2565b005b348015610a0257600080fd5b50610a0b611b9d565b604051610a1891906149a1565b60405180910390f35b348015610a2d57600080fd5b50610a36611bc7565b604051610a4391906149a1565b60405180910390f35b348015610a5857600080fd5b50610a61611bed565b604051610a6e91906148f7565b60405180910390f35b348015610a8357600080fd5b50610a9e6004803603810190610a999190614b05565b611bf3565b005b348015610aac57600080fd5b50610ab5611c8c565b604051610ac29190614710565b60405180910390f35b348015610ad757600080fd5b50610af26004803603810190610aed9190614a72565b611d1e565b005b348015610b0057600080fd5b50610b09611e36565b604051610b1691906148f7565b60405180910390f35b348015610b2b57600080fd5b50610b34611e3c565b604051610b4191906148f7565b60405180910390f35b348015610b5657600080fd5b50610b5f611e42565b604051610b6c91906148f7565b60405180910390f35b348015610b8157600080fd5b50610b8a611e48565b604051610b9791906148f7565b60405180910390f35b348015610bac57600080fd5b50610bc76004803603810190610bc291906147cb565b611e4e565b604051610bd49190614826565b60405180910390f35b348015610be957600080fd5b50610bf2611f39565b604051610bff91906148f7565b60405180910390f35b348015610c1457600080fd5b50610c2f6004803603810190610c2a91906147cb565b611f3f565b604051610c3c9190614826565b60405180910390f35b348015610c5157600080fd5b50610c6c6004803603810190610c679190614841565b611f5d565b005b348015610c7a57600080fd5b50610c956004803603810190610c909190614841565b612099565b604051610ca29190614826565b60405180910390f35b348015610cb757600080fd5b50610cc06120b9565b604051610ccd9190614826565b60405180910390f35b348015610ce257600080fd5b50610cfd6004803603810190610cf89190614a72565b6120cc565b005b348015610d0b57600080fd5b50610d266004803603810190610d219190614ab2565b6121f1565b005b348015610d3457600080fd5b50610d4f6004803603810190610d4a9190614912565b6122aa565b005b348015610d5d57600080fd5b50610d66612393565b604051610d739190614826565b60405180910390f35b348015610d8857600080fd5b50610d916123a6565b604051610d9e91906148f7565b60405180910390f35b348015610db357600080fd5b50610dce6004803603810190610dc99190614912565b6123ac565b604051610ddb9190614826565b60405180910390f35b348015610df057600080fd5b50610df96124e3565b005b348015610e0757600080fd5b50610e1061259e565b604051610e1d91906148f7565b60405180910390f35b348015610e3257600080fd5b50610e4d6004803603810190610e489190614b32565b6125a4565b604051610e5a91906148f7565b60405180910390f35b348015610e6f57600080fd5b50610e7861262b565b604051610e8591906148f7565b60405180910390f35b348015610e9a57600080fd5b50610ea3612631565b604051610eb09190614826565b60405180910390f35b348015610ec557600080fd5b50610ece6126d1565b604051610edb91906148f7565b60405180910390f35b348015610ef057600080fd5b50610f0b6004803603810190610f069190614841565b6126d7565b005b348015610f1957600080fd5b50610f226127ce565b604051610f2f91906148f7565b60405180910390f35b348015610f4457600080fd5b50610f4d6127d4565b604051610f5a91906148f7565b60405180910390f35b348015610f6f57600080fd5b50610f8a6004803603810190610f859190614841565b6127da565b005b348015610f9857600080fd5b50610fb36004803603810190610fae9190614912565b61289a565b604051610fc09190614826565b60405180910390f35b606060038054610fd890614ba1565b80601f016020809104026020016040519081016040528092919081815260200182805461100490614ba1565b80156110515780601f1061102657610100808354040283529160200191611051565b820191906000526020600020905b81548152906001019060200180831161103457829003601f168201915b5050505050905090565b600061106f611068612b46565b8484612b4e565b6001905092915050565b60226020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6110cf612b46565b73ffffffffffffffffffffffffffffffffffffffff166110ed611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90614c1e565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60125481565b600d5481565b601f5481565b601e5481565b611223612b46565b73ffffffffffffffffffffffffffffffffffffffff16611241611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90614c1e565b60405180910390fd5b670de0b6b3a76400006103e860016112ad6110bd565b6112b79190614c6d565b6112c19190614cde565b6112cb9190614cde565b81101561130d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130490614d81565b60405180910390fd5b670de0b6b3a7640000816113219190614c6d565b600b8190555050565b6000611337848484612d17565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611382612b46565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990614e13565b60405180910390fd5b6114168561140e612b46565b858403612b4e565b60019150509392505050565b61dead81565b600f5481565b600e60009054906101000a900460ff1681565b60006012905090565b60006114ec611457612b46565b848460016000611465612b46565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114e79190614e33565b612b4e565b6001905092915050565b7f000000000000000000000000299e18b6e685f0dbd9e3d8012755f1df4f7b7ed981565b601360009054906101000a900460ff1681565b6000602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601a5481565b601360019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611612612b46565b73ffffffffffffffffffffffffffffffffffffffff16611630611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d90614c1e565b60405180910390fd5b6116906000613aac565b565b61169a612b46565b73ffffffffffffffffffffffffffffffffffffffff166116b8611b9d565b73ffffffffffffffffffffffffffffffffffffffff161461170e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170590614c1e565b60405180910390fd5b610258831015611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614ed9565b60405180910390fd5b6103e88211158015611766575060008210155b6117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c90614f6b565b60405180910390fd5b82600f8190555081600d8190555080600e60006101000a81548160ff021916908315150217905550505050565b60006117dc612b46565b73ffffffffffffffffffffffffffffffffffffffff166117fa611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184790614c1e565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b61187a612b46565b73ffffffffffffffffffffffffffffffffffffffff16611898611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e590614c1e565b60405180910390fd5b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095481565b600061197f612b46565b73ffffffffffffffffffffffffffffffffffffffff1661199d611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90614c1e565b60405180910390fd5b620186a06119ff6110bd565b83611a0a9190614c6d565b611a149190614cde565b60098190555060019050919050565b60175481565b611a31612b46565b73ffffffffffffffffffffffffffffffffffffffff16611a4f611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90614c1e565b60405180910390fd5b826017819055508160188190555080601981905550601954601854601754611acd9190614e33565b611ad79190614e33565b601681905550505050565b611aea612b46565b73ffffffffffffffffffffffffffffffffffffffff16611b08611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5590614c1e565b60405180910390fd5b6001601360026101000a81548160ff0219169083151502179055506001601360016101000a81548160ff02191690831515021790555042601081905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601b5481565b611bfb612b46565b73ffffffffffffffffffffffffffffffffffffffff16611c19611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6690614c1e565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b606060048054611c9b90614ba1565b80601f0160208091040260200160405190810160405280929190818152602001828054611cc790614ba1565b8015611d145780601f10611ce957610100808354040283529160200191611d14565b820191906000526020600020905b815481529060010190602001808311611cf757829003601f168201915b5050505050905090565b611d26612b46565b73ffffffffffffffffffffffffffffffffffffffff16611d44611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9190614c1e565b60405180910390fd5b7f000000000000000000000000299e18b6e685f0dbd9e3d8012755f1df4f7b7ed973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90614ffd565b60405180910390fd5b611e328282613b72565b5050565b60195481565b60115481565b60205481565b601d5481565b60008060016000611e5d612b46565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f119061508f565b60405180910390fd5b611f2e611f25612b46565b85858403612b4e565b600191505092915050565b60105481565b6000611f53611f4c612b46565b8484612d17565b6001905092915050565b611f65612b46565b73ffffffffffffffffffffffffffffffffffffffff16611f83611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090614c1e565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60236020528060005260406000206000915054906101000a900460ff1681565b601360029054906101000a900460ff1681565b6120d4612b46565b73ffffffffffffffffffffffffffffffffffffffff166120f2611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614612148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213f90614c1e565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516121e59190614826565b60405180910390a25050565b6121f9612b46565b73ffffffffffffffffffffffffffffffffffffffff16612217611b9d565b73ffffffffffffffffffffffffffffffffffffffff161461226d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226490614c1e565b60405180910390fd5b82601b8190555081601c8190555080601d81905550601d54601c54601b546122959190614e33565b61229f9190614e33565b601a81905550505050565b6122b2612b46565b73ffffffffffffffffffffffffffffffffffffffff166122d0611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614612326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231d90614c1e565b60405180910390fd5b600581101561236a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236190615121565b60405180910390fd5b6103e86123756110bd565b826123809190614c6d565b61238a9190614cde565b600c8190555050565b601560009054906101000a900460ff1681565b600b5481565b60006123b6612b46565b73ffffffffffffffffffffffffffffffffffffffff166123d4611b9d565b73ffffffffffffffffffffffffffffffffffffffff161461242a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242190614c1e565b60405180910390fd5b600182101561246e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612465906151b3565b60405180910390fd5b6101f48211156124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90615245565b60405180910390fd5b620186a06124bf6110bd565b836124ca9190614c6d565b6124d49190614cde565b600a8190555060019050919050565b6124eb612b46565b73ffffffffffffffffffffffffffffffffffffffff16612509611b9d565b73ffffffffffffffffffffffffffffffffffffffff161461255f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255690614c1e565b60405180910390fd5b6001601360026101000a81548160ff0219169083151502179055506001601360016101000a81548160ff02191690831515021790555042601081905550565b60165481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b600061263b612b46565b73ffffffffffffffffffffffffffffffffffffffff16612659611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a690614c1e565b60405180910390fd5b6000601560006101000a81548160ff0219169083151502179055506001905090565b60185481565b6126df612b46565b73ffffffffffffffffffffffffffffffffffffffff166126fd611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614612753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274a90614c1e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b9906152d7565b60405180910390fd5b6127cb81613aac565b50565b601c5481565b600c5481565b6127e2612b46565b73ffffffffffffffffffffffffffffffffffffffff16612800611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d90614c1e565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006128a4612b46565b73ffffffffffffffffffffffffffffffffffffffff166128c2611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614612918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290f90614c1e565b60405180910390fd5b6012546011546129289190614e33565b4211612969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296090615343565b60405180910390fd5b6103e88211156129ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a5906153d5565b60405180910390fd5b4260118190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000299e18b6e685f0dbd9e3d8012755f1df4f7b7ed96040518263ffffffff1660e01b8152600401612a1091906149a1565b602060405180830381865afa158015612a2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a51919061540a565b90506000612a7c612710612a6e8685613c1390919063ffffffff16565b613c2990919063ffffffff16565b90506000811115612ab557612ab47f000000000000000000000000299e18b6e685f0dbd9e3d8012755f1df4f7b7ed961dead83613c3f565b5b60007f000000000000000000000000299e18b6e685f0dbd9e3d8012755f1df4f7b7ed990508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612b2257600080fd5b505af1158015612b36573d6000803e3d6000fd5b5050505060019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb4906154a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c239061553b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612d0a91906148f7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7d906155cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dec9061565f565b60405180910390fd5b60008103612e0e57612e0983836000613c3f565b613aa7565b601360009054906101000a900460ff16156134d157612e2b611b9d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612e995750612e69611b9d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ed25750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f0c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f255750600560149054906101000a900460ff16155b156134d057601360029054906101000a900460ff1661301f57602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fdf5750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61301e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613015906156cb565b60405180910390fd5b5b601560009054906101000a900460ff16156131e75761303c611b9d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156130c357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561311b57507f000000000000000000000000299e18b6e685f0dbd9e3d8012755f1df4f7b7ed973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156131e65743601460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106131a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319890615783565b60405180910390fd5b43601460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561328a5750602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561333157600b548111156132d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cb90615815565b60405180910390fd5b600c546132e0836115c2565b826132eb9190614e33565b111561332c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332390615881565b60405180910390fd5b6134cf565b602360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133d45750602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561342357600b5481111561341e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341590615913565b60405180910390fd5b6134ce565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166134cd57600c54613480836115c2565b8261348b9190614e33565b11156134cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c390615881565b60405180910390fd5b5b5b5b5b5b60006134dc306115c2565b90506000600a5482101590508080156135015750601360019054906101000a900460ff165b801561351a5750600560149054906101000a900460ff16155b80156135705750602360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156135c65750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561361c5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613660576001600560146101000a81548160ff021916908315150217905550613644613ebe565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156136c65750602360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156136de5750600e60009054906101000a900460ff165b80156136f95750600f546010546136f59190614e33565b4210155b801561374f5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561375e5761375c61418d565b505b6000600560149054906101000a900460ff16159050602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806138145750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561381e57600090505b60008115613a9757602360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561388157506000601a54115b1561394e576138ae60646138a0601a5488613c1390919063ffffffff16565b613c2990919063ffffffff16565b9050601a54601c54826138c19190614c6d565b6138cb9190614cde565b601f60008282546138dc9190614e33565b92505081905550601a54601d54826138f49190614c6d565b6138fe9190614cde565b6020600082825461390f9190614e33565b92505081905550601a54601b54826139279190614c6d565b6139319190614cde565b601e60008282546139429190614e33565b92505081905550613a73565b602360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139a957506000601654115b15613a72576139d660646139c860165488613c1390919063ffffffff16565b613c2990919063ffffffff16565b9050601654601854826139e99190614c6d565b6139f39190614cde565b601f6000828254613a049190614e33565b9250508190555060165460195482613a1c9190614c6d565b613a269190614cde565b60206000828254613a379190614e33565b9250508190555060165460175482613a4f9190614c6d565b613a599190614cde565b601e6000828254613a6a9190614e33565b925050819055505b5b6000811115613a8857613a87873083613c3f565b5b8085613a949190615933565b94505b613aa2878787613c3f565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008183613c219190614c6d565b905092915050565b60008183613c379190614cde565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ca5906155cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d149061565f565b60405180910390fd5b613d28838383614327565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613da5906159d9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e419190614e33565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613ea591906148f7565b60405180910390a3613eb884848461432c565b50505050565b6000613ec9306115c2565b90506000602054601e54601f54613ee09190614e33565b613eea9190614e33565b9050600080831480613efc5750600082145b15613f095750505061418b565b600954831115613f195760095492505b6000600283601f5486613f2c9190614c6d565b613f369190614cde565b613f409190614cde565b90506000613f57828661433190919063ffffffff16565b90506000479050613f6782614347565b6000613f7c824761433190919063ffffffff16565b90506000613fa787613f99601e5485613c1390919063ffffffff16565b613c2990919063ffffffff16565b90506000613fd288613fc460205486613c1390919063ffffffff16565b613c2990919063ffffffff16565b90506000818385613fe39190615933565b613fed9190615933565b90506000601f819055506000601e819055506000602081905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161404d90615a2a565b60006040518083038185875af1925050503d806000811461408a576040519150601f19603f3d011682016040523d82523d6000602084013e61408f565b606091505b5050809850506000871180156140a55750600081115b156140f2576140b48782614584565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601f546040516140e993929190615a3f565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161413890615a2a565b60006040518083038185875af1925050503d8060008114614175576040519150601f19603f3d011682016040523d82523d6000602084013e61417a565b606091505b505080985050505050505050505050505b565b60004260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000299e18b6e685f0dbd9e3d8012755f1df4f7b7ed96040518263ffffffff1660e01b81526004016141f191906149a1565b602060405180830381865afa15801561420e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614232919061540a565b9050600061425f612710614251600d5485613c1390919063ffffffff16565b613c2990919063ffffffff16565b90506000811115614298576142977f000000000000000000000000299e18b6e685f0dbd9e3d8012755f1df4f7b7ed961dead83613c3f565b5b60007f000000000000000000000000299e18b6e685f0dbd9e3d8012755f1df4f7b7ed990508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561430557600080fd5b505af1158015614319573d6000803e3d6000fd5b505050506001935050505090565b505050565b505050565b6000818361433f9190615933565b905092915050565b6000600267ffffffffffffffff81111561436457614363615a76565b5b6040519080825280602002602001820160405280156143925781602001602082028036833780820191505090505b50905030816000815181106143aa576143a9615aa5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561444f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144739190615ae9565b8160018151811061448757614486615aa5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506144ec307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612b4e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161454e959493929190615c0f565b600060405180830381600087803b15801561456857600080fd5b505af115801561457c573d6000803e3d6000fd5b505050505050565b6145af307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612b4e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161463696959493929190615c69565b60606040518083038185885af1158015614654573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906146799190615cca565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156146ba57808201518184015260208101905061469f565b60008484015250505050565b6000601f19601f8301169050919050565b60006146e282614680565b6146ec818561468b565b93506146fc81856020860161469c565b614705816146c6565b840191505092915050565b6000602082019050818103600083015261472a81846146d7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061476282614737565b9050919050565b61477281614757565b811461477d57600080fd5b50565b60008135905061478f81614769565b92915050565b6000819050919050565b6147a881614795565b81146147b357600080fd5b50565b6000813590506147c58161479f565b92915050565b600080604083850312156147e2576147e1614732565b5b60006147f085828601614780565b9250506020614801858286016147b6565b9150509250929050565b60008115159050919050565b6148208161480b565b82525050565b600060208201905061483b6000830184614817565b92915050565b60006020828403121561485757614856614732565b5b600061486584828501614780565b91505092915050565b6000819050919050565b600061489361488e61488984614737565b61486e565b614737565b9050919050565b60006148a582614878565b9050919050565b60006148b78261489a565b9050919050565b6148c7816148ac565b82525050565b60006020820190506148e260008301846148be565b92915050565b6148f181614795565b82525050565b600060208201905061490c60008301846148e8565b92915050565b60006020828403121561492857614927614732565b5b6000614936848285016147b6565b91505092915050565b60008060006060848603121561495857614957614732565b5b600061496686828701614780565b935050602061497786828701614780565b9250506040614988868287016147b6565b9150509250925092565b61499b81614757565b82525050565b60006020820190506149b66000830184614992565b92915050565b600060ff82169050919050565b6149d2816149bc565b82525050565b60006020820190506149ed60008301846149c9565b92915050565b6149fc8161480b565b8114614a0757600080fd5b50565b600081359050614a19816149f3565b92915050565b600080600060608486031215614a3857614a37614732565b5b6000614a46868287016147b6565b9350506020614a57868287016147b6565b9250506040614a6886828701614a0a565b9150509250925092565b60008060408385031215614a8957614a88614732565b5b6000614a9785828601614780565b9250506020614aa885828601614a0a565b9150509250929050565b600080600060608486031215614acb57614aca614732565b5b6000614ad9868287016147b6565b9350506020614aea868287016147b6565b9250506040614afb868287016147b6565b9150509250925092565b600060208284031215614b1b57614b1a614732565b5b6000614b2984828501614a0a565b91505092915050565b60008060408385031215614b4957614b48614732565b5b6000614b5785828601614780565b9250506020614b6885828601614780565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614bb957607f821691505b602082108103614bcc57614bcb614b72565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c0860208361468b565b9150614c1382614bd2565b602082019050919050565b60006020820190508181036000830152614c3781614bfb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c7882614795565b9150614c8383614795565b9250828202614c9181614795565b91508282048414831517614ca857614ca7614c3e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ce982614795565b9150614cf483614795565b925082614d0457614d03614caf565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614d6b602f8361468b565b9150614d7682614d0f565b604082019050919050565b60006020820190508181036000830152614d9a81614d5e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614dfd60288361468b565b9150614e0882614da1565b604082019050919050565b60006020820190508181036000830152614e2c81614df0565b9050919050565b6000614e3e82614795565b9150614e4983614795565b9250828201905080821115614e6157614e60614c3e565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614ec360338361468b565b9150614ece82614e67565b604082019050919050565b60006020820190508181036000830152614ef281614eb6565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614f5560308361468b565b9150614f6082614ef9565b604082019050919050565b60006020820190508181036000830152614f8481614f48565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614fe760398361468b565b9150614ff282614f8b565b604082019050919050565b6000602082019050818103600083015261501681614fda565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061507960258361468b565b91506150848261501d565b604082019050919050565b600060208201905081810360008301526150a88161506c565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061510b60248361468b565b9150615116826150af565b604082019050919050565b6000602082019050818103600083015261513a816150fe565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061519d60358361468b565b91506151a882615141565b604082019050919050565b600060208201905081810360008301526151cc81615190565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061522f60348361468b565b915061523a826151d3565b604082019050919050565b6000602082019050818103600083015261525e81615222565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006152c160268361468b565b91506152cc82615265565b604082019050919050565b600060208201905081810360008301526152f0816152b4565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061532d60208361468b565b9150615338826152f7565b602082019050919050565b6000602082019050818103600083015261535c81615320565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006153bf602a8361468b565b91506153ca82615363565b604082019050919050565b600060208201905081810360008301526153ee816153b2565b9050919050565b6000815190506154048161479f565b92915050565b6000602082840312156154205761541f614732565b5b600061542e848285016153f5565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061549360248361468b565b915061549e82615437565b604082019050919050565b600060208201905081810360008301526154c281615486565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061552560228361468b565b9150615530826154c9565b604082019050919050565b6000602082019050818103600083015261555481615518565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006155b760258361468b565b91506155c28261555b565b604082019050919050565b600060208201905081810360008301526155e6816155aa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061564960238361468b565b9150615654826155ed565b604082019050919050565b600060208201905081810360008301526156788161563c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006156b560168361468b565b91506156c08261567f565b602082019050919050565b600060208201905081810360008301526156e4816156a8565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061576d60498361468b565b9150615778826156eb565b606082019050919050565b6000602082019050818103600083015261579c81615760565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006157ff60358361468b565b915061580a826157a3565b604082019050919050565b6000602082019050818103600083015261582e816157f2565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061586b60138361468b565b915061587682615835565b602082019050919050565b6000602082019050818103600083015261589a8161585e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006158fd60368361468b565b9150615908826158a1565b604082019050919050565b6000602082019050818103600083015261592c816158f0565b9050919050565b600061593e82614795565b915061594983614795565b925082820390508181111561596157615960614c3e565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006159c360268361468b565b91506159ce82615967565b604082019050919050565b600060208201905081810360008301526159f2816159b6565b9050919050565b600081905092915050565b50565b6000615a146000836159f9565b9150615a1f82615a04565b600082019050919050565b6000615a3582615a07565b9150819050919050565b6000606082019050615a5460008301866148e8565b615a6160208301856148e8565b615a6e60408301846148e8565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615ae381614769565b92915050565b600060208284031215615aff57615afe614732565b5b6000615b0d84828501615ad4565b91505092915050565b6000819050919050565b6000615b3b615b36615b3184615b16565b61486e565b614795565b9050919050565b615b4b81615b20565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615b8681614757565b82525050565b6000615b988383615b7d565b60208301905092915050565b6000602082019050919050565b6000615bbc82615b51565b615bc68185615b5c565b9350615bd183615b6d565b8060005b83811015615c02578151615be98882615b8c565b9750615bf483615ba4565b925050600181019050615bd5565b5085935050505092915050565b600060a082019050615c2460008301886148e8565b615c316020830187615b42565b8181036040830152615c438186615bb1565b9050615c526060830185614992565b615c5f60808301846148e8565b9695505050505050565b600060c082019050615c7e6000830189614992565b615c8b60208301886148e8565b615c986040830187615b42565b615ca56060830186615b42565b615cb26080830185614992565b615cbf60a08301846148e8565b979650505050505050565b600080600060608486031215615ce357615ce2614732565b5b6000615cf1868287016153f5565b9350506020615d02868287016153f5565b9250506040615d13868287016153f5565b915050925092509256fea26469706673582212208ea7d0c3dfb0488c5fff9b0aaa936064949353285b696754c85892715e6f226d64736f6c63430008130033

Deployed Bytecode Sourcemap

27883:21201:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6150:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8317:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29568:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27957:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7270:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38479:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28624:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28411:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29352:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34784:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8968:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28060:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28492:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28453:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7112:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9869:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28015:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28680:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38644:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28152:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29167:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28720:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7441:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1456:103;;;;;;;;;;;;;:::i;:::-;;46724:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33345:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35604:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28182:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28252:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34408:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29060:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36216:332;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32947:155;;;;;;;;;;;;;:::i;:::-;;805:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28219:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29202:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35889:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6369:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37596:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29134:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28582:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29392:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29278:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10587:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28544:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7781:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38104:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29789:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28760:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37279:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36772:340;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35184:232;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28978:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28336:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33818:471;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33110:160;;;;;;;;;;;;;:::i;:::-;;29026:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8019:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28294:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33537:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29097:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1714:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29240:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28378:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38343:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48055:1026;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6150:100;6204:13;6237:5;6230:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6150:100;:::o;8317:169::-;8400:4;8417:39;8426:12;:10;:12::i;:::-;8440:7;8449:6;8417:8;:39::i;:::-;8474:4;8467:11;;8317:169;;;;:::o;29568:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;27957:51::-;;;:::o;7270:108::-;7331:7;7358:12;;7351:19;;7270:108;:::o;38479:157::-;1036:12;:10;:12::i;:::-;1025:23;;:7;:5;:7::i;:::-;:23;;;1017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38586:9:::1;;;;;;;;;;;38558:38;;38575:9;38558:38;;;;;;;;;;;;38619:9;38607;;:21;;;;;;;;;;;;;;;;;;38479:157:::0;:::o;28624:47::-;;;;:::o;28411:35::-;;;;:::o;29352:33::-;;;;:::o;29312:::-;;;;:::o;34784:275::-;1036:12;:10;:12::i;:::-;1025:23;;:7;:5;:7::i;:::-;:23;;;1017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34921:4:::1;34913;34908:1;34892:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34891:26;;;;:::i;:::-;34890:35;;;;:::i;:::-;34880:6;:45;;34858:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;35044:6;35034;:17;;;;:::i;:::-;35011:20;:40;;;;34784:275:::0;:::o;8968:492::-;9108:4;9125:36;9135:6;9143:9;9154:6;9125:9;:36::i;:::-;9174:24;9201:11;:19;9213:6;9201:19;;;;;;;;;;;;;;;:33;9221:12;:10;:12::i;:::-;9201:33;;;;;;;;;;;;;;;;9174:60;;9273:6;9253:16;:26;;9245:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9360:57;9369:6;9377:12;:10;:12::i;:::-;9410:6;9391:16;:25;9360:8;:57::i;:::-;9448:4;9441:11;;;8968:492;;;;;:::o;28060:53::-;28106:6;28060:53;:::o;28492:45::-;;;;:::o;28453:32::-;;;;;;;;;;;;;:::o;7112:93::-;7170:5;7195:2;7188:9;;7112:93;:::o;9869:215::-;9957:4;9974:80;9983:12;:10;:12::i;:::-;9997:7;10043:10;10006:11;:25;10018:12;:10;:12::i;:::-;10006:25;;;;;;;;;;;;;;;:34;10032:7;10006:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9974:8;:80::i;:::-;10072:4;10065:11;;9869:215;;;;:::o;28015:38::-;;;:::o;28680:33::-;;;;;;;;;;;;;:::o;38644:126::-;38710:4;38734:19;:28;38754:7;38734:28;;;;;;;;;;;;;;;;;;;;;;;;;38727:35;;38644:126;;;:::o;28152:23::-;;;;;;;;;;;;;:::o;29167:28::-;;;;:::o;28720:31::-;;;;;;;;;;;;;:::o;7441:127::-;7515:7;7542:9;:18;7552:7;7542:18;;;;;;;;;;;;;;;;7535:25;;7441:127;;;:::o;1456:103::-;1036:12;:10;:12::i;:::-;1025:23;;:7;:5;:7::i;:::-;:23;;;1017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1521:30:::1;1548:1;1521:18;:30::i;:::-;1456:103::o:0;46724:555::-;1036:12;:10;:12::i;:::-;1025:23;;:7;:5;:7::i;:::-;:23;;;1017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46926:3:::1;46903:19;:26;;46881:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;47053:4;47041:8;:16;;:33;;;;;47073:1;47061:8;:13;;47041:33;47019:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;47179:19;47161:15;:37;;;;47228:8;47209:16;:27;;;;47263:8;47247:13;;:24;;;;;;;;;;;;;;;;;;46724:555:::0;;;:::o;33345:121::-;33397:4;1036:12;:10;:12::i;:::-;1025:23;;:7;:5;:7::i;:::-;:23;;;1017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33431:5:::1;33414:14;;:22;;;;;;;;;;;;;;;;;;33454:4;33447:11;;33345:121:::0;:::o;35604:167::-;1036:12;:10;:12::i;:::-;1025:23;;:7;:5;:7::i;:::-;:23;;;1017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35759:4:::1;35717:31;:39;35749:6;35717:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35604:167:::0;;:::o;28182:30::-;;;;;;;;;;;;;:::o;28252:35::-;;;;:::o;34408:218::-;34518:4;1036:12;:10;:12::i;:::-;1025:23;;:7;:5;:7::i;:::-;:23;;;1017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34590:6:::1;34575:13;:11;:13::i;:::-;34563:9;:25;;;;:::i;:::-;:33;;;;:::i;:::-;34540:20;:56;;;;34614:4;34607:11;;34408:218:::0;;;:::o;29060:30::-;;;;:::o;36216:332::-;1036:12;:10;:12::i;:::-;1025:23;;:7;:5;:7::i;:::-;:23;;;1017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36384:13:::1;36366:15;:31;;;;36426:13;36408:15;:31;;;;36462:7;36450:9;:19;;;;36531:9;;36513:15;;36495;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;36480:12;:60;;;;36216:332:::0;;;:::o;32947:155::-;1036:12;:10;:12::i;:::-;1025:23;;:7;:5;:7::i;:::-;:23;;;1017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33018:4:::1;33002:13;;:20;;;;;;;;;;;;;;;;;;33047:4;33033:11;;:18;;;;;;;;;;;;;;;;;;33079:15;33062:14;:32;;;;32947:155::o:0;805:87::-;851:7;878:6;;;;;;;;;;;871:13;;805:87;:::o;28219:24::-;;;;;;;;;;;;;:::o;29202:31::-;;;;:::o;35889:100::-;1036:12;:10;:12::i;:::-;1025:23;;:7;:5;:7::i;:::-;:23;;;1017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35974:7:::1;35960:11;;:21;;;;;;;;;;;;;;;;;;35889:100:::0;:::o;6369:104::-;6425:13;6458:7;6451:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6369:104;:::o;37596:304::-;1036:12;:10;:12::i;:::-;1025:23;;:7;:5;:7::i;:::-;:23;;;1017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37740:13:::1;37732:21;;:4;:21;;::::0;37710:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37851:41;37880:4;37886:5;37851:28;:41::i;:::-;37596:304:::0;;:::o;29134:24::-;;;;:::o;28582:35::-;;;;:::o;29392:27::-;;;;:::o;29278:25::-;;;;:::o;10587:413::-;10680:4;10697:24;10724:11;:25;10736:12;:10;:12::i;:::-;10724:25;;;;;;;;;;;;;;;:34;10750:7;10724:34;;;;;;;;;;;;;;;;10697:61;;10797:15;10777:16;:35;;10769:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10890:67;10899:12;:10;:12::i;:::-;10913:7;10941:15;10922:16;:34;10890:8;:67::i;:::-;10988:4;10981:11;;;10587:413;;;;:::o;28544:29::-;;;;:::o;7781:175::-;7867:4;7884:42;7894:12;:10;:12::i;:::-;7908:9;7919:6;7884:9;:42::i;:::-;7944:4;7937:11;;7781:175;;;;:::o;38104:231::-;1036:12;:10;:12::i;:::-;1025:23;;:7;:5;:7::i;:::-;:23;;;1017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38264:15:::1;;;;;;;;;;;38221:59;;38244:18;38221:59;;;;;;;;;;;;38309:18;38291:15;;:36;;;;;;;;;;;;;;;;;;38104:231:::0;:::o;29789:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;28760:33::-;;;;;;;;;;;;;:::o;37279:182::-;1036:12;:10;:12::i;:::-;1025:23;;:7;:5;:7::i;:::-;:23;;;1017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37395:8:::1;37364:19;:28;37384:7;37364:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37435:7;37419:34;;;37444:8;37419:34;;;;;;:::i;:::-;;;;;;;;37279:182:::0;;:::o;36772:340::-;1036:12;:10;:12::i;:::-;1025:23;;:7;:5;:7::i;:::-;:23;;;1017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36942:13:::1;36923:16;:32;;;;36985:13;36966:16;:32;;;;37022:7;37009:10;:20;;;;37094:10;;37075:16;;37056;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;37040:13;:64;;;;36772:340:::0;;;:::o;35184:232::-;1036:12;:10;:12::i;:::-;1025:23;;:7;:5;:7::i;:::-;:23;;;1017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35293:1:::1;35283:6;:11;;35261:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;35404:4;35390:13;:11;:13::i;:::-;35381:6;:22;;;;:::i;:::-;:27;;;;:::i;:::-;35369:9;:39;;;;35184:232:::0;:::o;28978:39::-;;;;;;;;;;;;;:::o;28336:35::-;;;;:::o;33818:471::-;33926:4;1036:12;:10;:12::i;:::-;1025:23;;:7;:5;:7::i;:::-;:23;;;1017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33983:1:::1;33970:9;:14;;33948:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;34111:3;34098:9;:16;;34076:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;34253:6;34238:13;:11;:13::i;:::-;34226:9;:25;;;;:::i;:::-;:33;;;;:::i;:::-;34205:18;:54;;;;34277:4;34270:11;;33818:471:::0;;;:::o;33110:160::-;1036:12;:10;:12::i;:::-;1025:23;;:7;:5;:7::i;:::-;:23;;;1017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33186:4:::1;33170:13;;:20;;;;;;;;;;;;;;;;;;33215:4;33201:11;;:18;;;;;;;;;;;;;;;;;;33247:15;33230:14;:32;;;;33110:160::o:0;29026:27::-;;;;:::o;8019:151::-;8108:7;8135:11;:18;8147:5;8135:18;;;;;;;;;;;;;;;:27;8154:7;8135:27;;;;;;;;;;;;;;;;8128:34;;8019:151;;;;:::o;28294:33::-;;;;:::o;33537:135::-;33597:4;1036:12;:10;:12::i;:::-;1025:23;;:7;:5;:7::i;:::-;:23;;;1017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33637:5:::1;33614:20;;:28;;;;;;;;;;;;;;;;;;33660:4;33653:11;;33537:135:::0;:::o;29097:30::-;;;;:::o;1714:201::-;1036:12;:10;:12::i;:::-;1025:23;;:7;:5;:7::i;:::-;:23;;;1017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1823:1:::1;1803:22;;:8;:22;;::::0;1795:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1879:28;1898:8;1879:18;:28::i;:::-;1714:201:::0;:::o;29240:31::-;;;;:::o;28378:24::-;;;;:::o;38343:128::-;1036:12;:10;:12::i;:::-;1025:23;;:7;:5;:7::i;:::-;:23;;;1017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38452:11:::1;38441:8;;:22;;;;;;;;;;;;;;;;;;38343:128:::0;:::o;48055:1026::-;48166:4;1036:12;:10;:12::i;:::-;1025:23;;:7;:5;:7::i;:::-;:23;;;1017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48251:19:::1;;48228:20;;:42;;;;:::i;:::-;48210:15;:60;48188:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;48360:4;48349:7;:15;;48341:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;48445:15;48422:20;:38;;;;48515:28;48546:4;:14;;;48561:13;48546:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48515:60;;48625:20;48648:44;48686:5;48648:33;48673:7;48648:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;48625:67;;48812:1;48797:12;:16;48793:110;;;48830:61;48846:13;48869:6;48878:12;48830:15;:61::i;:::-;48793:110;48978:19;49015:13;48978:51;;49040:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;49069:4;49062:11;;;;;48055:1026:::0;;;:::o;179:98::-;232:7;259:10;252:17;;179:98;:::o;14271:380::-;14424:1;14407:19;;:5;:19;;;14399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14505:1;14486:21;;:7;:21;;;14478:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14589:6;14559:11;:18;14571:5;14559:18;;;;;;;;;;;;;;;:27;14578:7;14559:27;;;;;;;;;;;;;;;:36;;;;14627:7;14611:32;;14620:5;14611:32;;;14636:6;14611:32;;;;;;:::i;:::-;;;;;;;;14271:380;;;:::o;38828:5011::-;38976:1;38960:18;;:4;:18;;;38952:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39053:1;39039:16;;:2;:16;;;39031:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;39122:1;39112:6;:11;39108:93;;39140:28;39156:4;39162:2;39166:1;39140:15;:28::i;:::-;39183:7;;39108:93;39217:14;;;;;;;;;;;39213:2487;;;39278:7;:5;:7::i;:::-;39270:15;;:4;:15;;;;:49;;;;;39312:7;:5;:7::i;:::-;39306:13;;:2;:13;;;;39270:49;:86;;;;;39354:1;39340:16;;:2;:16;;;;39270:86;:128;;;;;39391:6;39377:21;;:2;:21;;;;39270:128;:158;;;;;39420:8;;;;;;;;;;;39419:9;39270:158;39248:2441;;;39468:13;;;;;;;;;;;39463:223;;39540:19;:25;39560:4;39540:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39569:19;:23;39589:2;39569:23;;;;;;;;;;;;;;;;;;;;;;;;;39540:52;39506:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;39463:223;39842:20;;;;;;;;;;;39838:641;;;39923:7;:5;:7::i;:::-;39917:13;;:2;:13;;;;:72;;;;;39973:15;39959:30;;:2;:30;;;;39917:72;:129;;;;;40032:13;40018:28;;:2;:28;;;;39917:129;39887:573;;;40210:12;40135:28;:39;40164:9;40135:39;;;;;;;;;;;;;;;;:87;40097:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;40424:12;40382:28;:39;40411:9;40382:39;;;;;;;;;;;;;;;:54;;;;39887:573;39838:641;40553:25;:31;40579:4;40553:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40610:31;:35;40642:2;40610:35;;;;;;;;;;;;;;;;;;;;;;;;;40609:36;40553:92;40527:1147;;;40732:20;;40722:6;:30;;40688:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40940:9;;40923:13;40933:2;40923:9;:13::i;:::-;40914:6;:22;;;;:::i;:::-;:35;;40880:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40527:1147;;;41118:25;:29;41144:2;41118:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;41173:31;:37;41205:4;41173:37;;;;;;;;;;;;;;;;;;;;;;;;;41172:38;41118:92;41092:582;;;41297:20;;41287:6;:30;;41253:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;41092:582;;;41454:31;:35;41486:2;41454:35;;;;;;;;;;;;;;;;;;;;;;;;;41449:225;;41574:9;;41557:13;41567:2;41557:9;:13::i;:::-;41548:6;:22;;;;:::i;:::-;:35;;41514:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;41449:225;41092:582;40527:1147;39248:2441;39213:2487;41712:28;41743:24;41761:4;41743:9;:24::i;:::-;41712:55;;41780:12;41819:18;;41795:20;:42;;41780:57;;41868:7;:35;;;;;41892:11;;;;;;;;;;;41868:35;:61;;;;;41921:8;;;;;;;;;;;41920:9;41868:61;:110;;;;;41947:25;:31;41973:4;41947:31;;;;;;;;;;;;;;;;;;;;;;;;;41946:32;41868:110;:153;;;;;41996:19;:25;42016:4;41996:25;;;;;;;;;;;;;;;;;;;;;;;;;41995:26;41868:153;:194;;;;;42039:19;:23;42059:2;42039:23;;;;;;;;;;;;;;;;;;;;;;;;;42038:24;41868:194;41850:326;;;42100:4;42089:8;;:15;;;;;;;;;;;;;;;;;;42121:10;:8;:10::i;:::-;42159:5;42148:8;;:16;;;;;;;;;;;;;;;;;;41850:326;42207:8;;;;;;;;;;;42206:9;:55;;;;;42232:25;:29;42258:2;42232:29;;;;;;;;;;;;;;;;;;;;;;;;;42206:55;:85;;;;;42278:13;;;;;;;;;;;42206:85;:153;;;;;42344:15;;42327:14;;:32;;;;:::i;:::-;42308:15;:51;;42206:153;:196;;;;;42377:19;:25;42397:4;42377:25;;;;;;;;;;;;;;;;;;;;;;;;;42376:26;42206:196;42188:282;;;42429:29;:27;:29::i;:::-;;42188:282;42482:12;42498:8;;;;;;;;;;;42497:9;42482:24;;42608:19;:25;42628:4;42608:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42637:19;:23;42657:2;42637:23;;;;;;;;;;;;;;;;;;;;;;;;;42608:52;42604:100;;;42687:5;42677:15;;42604:100;42716:12;42821:7;42817:969;;;42873:25;:29;42899:2;42873:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;42922:1;42906:13;;:17;42873:50;42869:768;;;42951:34;42981:3;42951:25;42962:13;;42951:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;42944:41;;43054:13;;43034:16;;43027:4;:23;;;;:::i;:::-;43026:41;;;;:::i;:::-;43004:18;;:63;;;;;;;:::i;:::-;;;;;;;;43124:13;;43110:10;;43103:4;:17;;;;:::i;:::-;43102:35;;;;:::i;:::-;43086:12;;:51;;;;;;;:::i;:::-;;;;;;;;43206:13;;43186:16;;43179:4;:23;;;;:::i;:::-;43178:41;;;;:::i;:::-;43156:18;;:63;;;;;;;:::i;:::-;;;;;;;;42869:768;;;43281:25;:31;43307:4;43281:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;43331:1;43316:12;;:16;43281:51;43277:360;;;43360:33;43389:3;43360:24;43371:12;;43360:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;43353:40;;43461:12;;43442:15;;43435:4;:22;;;;:::i;:::-;43434:39;;;;:::i;:::-;43412:18;;:61;;;;;;;:::i;:::-;;;;;;;;43529:12;;43516:9;;43509:4;:16;;;;:::i;:::-;43508:33;;;;:::i;:::-;43492:12;;:49;;;;;;;:::i;:::-;;;;;;;;43609:12;;43590:15;;43583:4;:22;;;;:::i;:::-;43582:39;;;;:::i;:::-;43560:18;;:61;;;;;;;:::i;:::-;;;;;;;;43277:360;42869:768;43664:1;43657:4;:8;43653:91;;;43686:42;43702:4;43716;43723;43686:15;:42::i;:::-;43653:91;43770:4;43760:14;;;;;:::i;:::-;;;42817:969;43798:33;43814:4;43820:2;43824:6;43798:15;:33::i;:::-;38941:4898;;;;38828:5011;;;;:::o;2075:191::-;2149:16;2168:6;;;;;;;;;;;2149:25;;2194:8;2185:6;;:17;;;;;;;;;;;;;;;;;;2249:8;2218:40;;2239:8;2218:40;;;;;;;;;;;;2138:128;2075:191;:::o;37908:188::-;38025:5;37991:25;:31;38017:4;37991:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38082:5;38048:40;;38076:4;38048:40;;;;;;;;;;;;37908:188;;:::o;19200:98::-;19258:7;19289:1;19285;:5;;;;:::i;:::-;19278:12;;19200:98;;;;:::o;19599:::-;19657:7;19688:1;19684;:5;;;;:::i;:::-;19677:12;;19599:98;;;;:::o;11490:733::-;11648:1;11630:20;;:6;:20;;;11622:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11732:1;11711:23;;:9;:23;;;11703:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11787:47;11808:6;11816:9;11827:6;11787:20;:47::i;:::-;11847:21;11871:9;:17;11881:6;11871:17;;;;;;;;;;;;;;;;11847:41;;11924:6;11907:13;:23;;11899:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12045:6;12029:13;:22;12009:9;:17;12019:6;12009:17;;;;;;;;;;;;;;;:42;;;;12097:6;12073:9;:20;12083:9;12073:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12138:9;12121:35;;12130:6;12121:35;;;12149:6;12121:35;;;;;;:::i;:::-;;;;;;;;12169:46;12189:6;12197:9;12208:6;12169:19;:46::i;:::-;11611:612;11490:733;;;:::o;44966:1750::-;45005:23;45031:24;45049:4;45031:9;:24::i;:::-;45005:50;;45066:25;45162:12;;45128:18;;45094;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;45066:108;;45185:12;45233:1;45214:15;:20;:46;;;;45259:1;45238:17;:22;45214:46;45210:85;;;45277:7;;;;;45210:85;45329:20;;45311:15;:38;45307:109;;;45384:20;;45366:38;;45307:109;45477:23;45590:1;45557:17;45522:18;;45504:15;:36;;;;:::i;:::-;45503:71;;;;:::i;:::-;:88;;;;:::i;:::-;45477:114;;45602:26;45631:36;45651:15;45631;:19;;:36;;;;:::i;:::-;45602:65;;45680:25;45708:21;45680:49;;45742:36;45759:18;45742:16;:36::i;:::-;45791:18;45812:44;45838:17;45812:21;:25;;:44;;;;:::i;:::-;45791:65;;45869:23;45895:81;45948:17;45895:34;45910:18;;45895:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;45869:107;;45987:17;46007:51;46040:17;46007:28;46022:12;;46007:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;45987:71;;46071:23;46128:9;46110:15;46097:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;46071:66;;46171:1;46150:18;:22;;;;46204:1;46183:18;:22;;;;46231:1;46216:12;:16;;;;46267:9;;;;;;;;;;;46259:23;;46290:9;46259:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46245:59;;;;;46339:1;46321:15;:19;:42;;;;;46362:1;46344:15;:19;46321:42;46317:278;;;46380:46;46393:15;46410;46380:12;:46::i;:::-;46446:137;46479:18;46516:15;46550:18;;46446:137;;;;;;;;:::i;:::-;;;;;;;;46317:278;46629:15;;;;;;;;;;;46621:29;;46672:21;46621:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46607:101;;;;;44994:1722;;;;;;;;;;44966:1750;:::o;47287:760::-;47344:4;47378:15;47361:14;:32;;;;47448:28;47479:4;:14;;;47494:13;47479:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47448:60;;47558:20;47581:77;47642:5;47581:42;47606:16;;47581:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;47558:100;;47778:1;47763:12;:16;47759:110;;;47796:61;47812:13;47835:6;47844:12;47796:15;:61::i;:::-;47759:110;47944:19;47981:13;47944:51;;48006:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48035:4;48028:11;;;;;47287:760;:::o;15251:125::-;;;;:::o;15980:124::-;;;;:::o;18843:98::-;18901:7;18932:1;18928;:5;;;;:::i;:::-;18921:12;;18843:98;;;;:::o;43847:589::-;43973:21;44011:1;43997:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43973:40;;44042:4;44024;44029:1;44024:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;44068:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44058:4;44063:1;44058:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;44103:62;44120:4;44135:15;44153:11;44103:8;:62::i;:::-;44204:15;:66;;;44285:11;44311:1;44355:4;44382;44402:15;44204:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43902:534;43847:589;:::o;44444:514::-;44592:62;44609:4;44624:15;44642:11;44592:8;:62::i;:::-;44697:15;:31;;;44736:9;44769:4;44789:11;44815:1;44858;44901:8;;;;;;;;;;;44924:15;44697:253;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44444:514;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:613::-;7188:6;7196;7204;7253:2;7241:9;7232:7;7228:23;7224:32;7221:119;;;7259:79;;:::i;:::-;7221:119;7379:1;7404:53;7449:7;7440:6;7429:9;7425:22;7404:53;:::i;:::-;7394:63;;7350:117;7506:2;7532:53;7577:7;7568:6;7557:9;7553:22;7532:53;:::i;:::-;7522:63;;7477:118;7634:2;7660:50;7702:7;7693:6;7682:9;7678:22;7660:50;:::i;:::-;7650:60;;7605:115;7114:613;;;;;:::o;7733:468::-;7798:6;7806;7855:2;7843:9;7834:7;7830:23;7826:32;7823:119;;;7861:79;;:::i;:::-;7823:119;7981:1;8006:53;8051:7;8042:6;8031:9;8027:22;8006:53;:::i;:::-;7996:63;;7952:117;8108:2;8134:50;8176:7;8167:6;8156:9;8152:22;8134:50;:::i;:::-;8124:60;;8079:115;7733:468;;;;;:::o;8207:619::-;8284:6;8292;8300;8349:2;8337:9;8328:7;8324:23;8320:32;8317:119;;;8355:79;;:::i;:::-;8317:119;8475:1;8500:53;8545:7;8536:6;8525:9;8521:22;8500:53;:::i;:::-;8490:63;;8446:117;8602:2;8628:53;8673:7;8664:6;8653:9;8649:22;8628:53;:::i;:::-;8618:63;;8573:118;8730:2;8756:53;8801:7;8792:6;8781:9;8777:22;8756:53;:::i;:::-;8746:63;;8701:118;8207:619;;;;;:::o;8832:323::-;8888:6;8937:2;8925:9;8916:7;8912:23;8908:32;8905:119;;;8943:79;;:::i;:::-;8905:119;9063:1;9088:50;9130:7;9121:6;9110:9;9106:22;9088:50;:::i;:::-;9078:60;;9034:114;8832:323;;;;:::o;9161:474::-;9229:6;9237;9286:2;9274:9;9265:7;9261:23;9257:32;9254:119;;;9292:79;;:::i;:::-;9254:119;9412:1;9437:53;9482:7;9473:6;9462:9;9458:22;9437:53;:::i;:::-;9427:63;;9383:117;9539:2;9565:53;9610:7;9601:6;9590:9;9586:22;9565:53;:::i;:::-;9555:63;;9510:118;9161:474;;;;;:::o;9641:180::-;9689:77;9686:1;9679:88;9786:4;9783:1;9776:15;9810:4;9807:1;9800:15;9827:320;9871:6;9908:1;9902:4;9898:12;9888:22;;9955:1;9949:4;9945:12;9976:18;9966:81;;10032:4;10024:6;10020:17;10010:27;;9966:81;10094:2;10086:6;10083:14;10063:18;10060:38;10057:84;;10113:18;;:::i;:::-;10057:84;9878:269;9827:320;;;:::o;10153:182::-;10293:34;10289:1;10281:6;10277:14;10270:58;10153:182;:::o;10341:366::-;10483:3;10504:67;10568:2;10563:3;10504:67;:::i;:::-;10497:74;;10580:93;10669:3;10580:93;:::i;:::-;10698:2;10693:3;10689:12;10682:19;;10341:366;;;:::o;10713:419::-;10879:4;10917:2;10906:9;10902:18;10894:26;;10966:9;10960:4;10956:20;10952:1;10941:9;10937:17;10930:47;10994:131;11120:4;10994:131;:::i;:::-;10986:139;;10713:419;;;:::o;11138:180::-;11186:77;11183:1;11176:88;11283:4;11280:1;11273:15;11307:4;11304:1;11297:15;11324:410;11364:7;11387:20;11405:1;11387:20;:::i;:::-;11382:25;;11421:20;11439:1;11421:20;:::i;:::-;11416:25;;11476:1;11473;11469:9;11498:30;11516:11;11498:30;:::i;:::-;11487:41;;11677:1;11668:7;11664:15;11661:1;11658:22;11638:1;11631:9;11611:83;11588:139;;11707:18;;:::i;:::-;11588:139;11372:362;11324:410;;;;:::o;11740:180::-;11788:77;11785:1;11778:88;11885:4;11882:1;11875:15;11909:4;11906:1;11899:15;11926:185;11966:1;11983:20;12001:1;11983:20;:::i;:::-;11978:25;;12017:20;12035:1;12017:20;:::i;:::-;12012:25;;12056:1;12046:35;;12061:18;;:::i;:::-;12046:35;12103:1;12100;12096:9;12091:14;;11926:185;;;;:::o;12117:234::-;12257:34;12253:1;12245:6;12241:14;12234:58;12326:17;12321:2;12313:6;12309:15;12302:42;12117:234;:::o;12357:366::-;12499:3;12520:67;12584:2;12579:3;12520:67;:::i;:::-;12513:74;;12596:93;12685:3;12596:93;:::i;:::-;12714:2;12709:3;12705:12;12698:19;;12357:366;;;:::o;12729:419::-;12895:4;12933:2;12922:9;12918:18;12910:26;;12982:9;12976:4;12972:20;12968:1;12957:9;12953:17;12946:47;13010:131;13136:4;13010:131;:::i;:::-;13002:139;;12729:419;;;:::o;13154:227::-;13294:34;13290:1;13282:6;13278:14;13271:58;13363:10;13358:2;13350:6;13346:15;13339:35;13154:227;:::o;13387:366::-;13529:3;13550:67;13614:2;13609:3;13550:67;:::i;:::-;13543:74;;13626:93;13715:3;13626:93;:::i;:::-;13744:2;13739:3;13735:12;13728:19;;13387:366;;;:::o;13759:419::-;13925:4;13963:2;13952:9;13948:18;13940:26;;14012:9;14006:4;14002:20;13998:1;13987:9;13983:17;13976:47;14040:131;14166:4;14040:131;:::i;:::-;14032:139;;13759:419;;;:::o;14184:191::-;14224:3;14243:20;14261:1;14243:20;:::i;:::-;14238:25;;14277:20;14295:1;14277:20;:::i;:::-;14272:25;;14320:1;14317;14313:9;14306:16;;14341:3;14338:1;14335:10;14332:36;;;14348:18;;:::i;:::-;14332:36;14184:191;;;;:::o;14381:238::-;14521:34;14517:1;14509:6;14505:14;14498:58;14590:21;14585:2;14577:6;14573:15;14566:46;14381:238;:::o;14625:366::-;14767:3;14788:67;14852:2;14847:3;14788:67;:::i;:::-;14781:74;;14864:93;14953:3;14864:93;:::i;:::-;14982:2;14977:3;14973:12;14966:19;;14625:366;;;:::o;14997:419::-;15163:4;15201:2;15190:9;15186:18;15178:26;;15250:9;15244:4;15240:20;15236:1;15225:9;15221:17;15214:47;15278:131;15404:4;15278:131;:::i;:::-;15270:139;;14997:419;;;:::o;15422:235::-;15562:34;15558:1;15550:6;15546:14;15539:58;15631:18;15626:2;15618:6;15614:15;15607:43;15422:235;:::o;15663:366::-;15805:3;15826:67;15890:2;15885:3;15826:67;:::i;:::-;15819:74;;15902:93;15991:3;15902:93;:::i;:::-;16020:2;16015:3;16011:12;16004:19;;15663:366;;;:::o;16035:419::-;16201:4;16239:2;16228:9;16224:18;16216:26;;16288:9;16282:4;16278:20;16274:1;16263:9;16259:17;16252:47;16316:131;16442:4;16316:131;:::i;:::-;16308:139;;16035:419;;;:::o;16460:244::-;16600:34;16596:1;16588:6;16584:14;16577:58;16669:27;16664:2;16656:6;16652:15;16645:52;16460:244;:::o;16710:366::-;16852:3;16873:67;16937:2;16932:3;16873:67;:::i;:::-;16866:74;;16949:93;17038:3;16949:93;:::i;:::-;17067:2;17062:3;17058:12;17051:19;;16710:366;;;:::o;17082:419::-;17248:4;17286:2;17275:9;17271:18;17263:26;;17335:9;17329:4;17325:20;17321:1;17310:9;17306:17;17299:47;17363:131;17489:4;17363:131;:::i;:::-;17355:139;;17082:419;;;:::o;17507:224::-;17647:34;17643:1;17635:6;17631:14;17624:58;17716:7;17711:2;17703:6;17699:15;17692:32;17507:224;:::o;17737:366::-;17879:3;17900:67;17964:2;17959:3;17900:67;:::i;:::-;17893:74;;17976:93;18065:3;17976:93;:::i;:::-;18094:2;18089:3;18085:12;18078:19;;17737:366;;;:::o;18109:419::-;18275:4;18313:2;18302:9;18298:18;18290:26;;18362:9;18356:4;18352:20;18348:1;18337:9;18333:17;18326:47;18390:131;18516:4;18390:131;:::i;:::-;18382:139;;18109:419;;;:::o;18534:223::-;18674:34;18670:1;18662:6;18658:14;18651:58;18743:6;18738:2;18730:6;18726:15;18719:31;18534:223;:::o;18763:366::-;18905:3;18926:67;18990:2;18985:3;18926:67;:::i;:::-;18919:74;;19002:93;19091:3;19002:93;:::i;:::-;19120:2;19115:3;19111:12;19104:19;;18763:366;;;:::o;19135:419::-;19301:4;19339:2;19328:9;19324:18;19316:26;;19388:9;19382:4;19378:20;19374:1;19363:9;19359:17;19352:47;19416:131;19542:4;19416:131;:::i;:::-;19408:139;;19135:419;;;:::o;19560:240::-;19700:34;19696:1;19688:6;19684:14;19677:58;19769:23;19764:2;19756:6;19752:15;19745:48;19560:240;:::o;19806:366::-;19948:3;19969:67;20033:2;20028:3;19969:67;:::i;:::-;19962:74;;20045:93;20134:3;20045:93;:::i;:::-;20163:2;20158:3;20154:12;20147:19;;19806:366;;;:::o;20178:419::-;20344:4;20382:2;20371:9;20367:18;20359:26;;20431:9;20425:4;20421:20;20417:1;20406:9;20402:17;20395:47;20459:131;20585:4;20459:131;:::i;:::-;20451:139;;20178:419;;;:::o;20603:239::-;20743:34;20739:1;20731:6;20727:14;20720:58;20812:22;20807:2;20799:6;20795:15;20788:47;20603:239;:::o;20848:366::-;20990:3;21011:67;21075:2;21070:3;21011:67;:::i;:::-;21004:74;;21087:93;21176:3;21087:93;:::i;:::-;21205:2;21200:3;21196:12;21189:19;;20848:366;;;:::o;21220:419::-;21386:4;21424:2;21413:9;21409:18;21401:26;;21473:9;21467:4;21463:20;21459:1;21448:9;21444:17;21437:47;21501:131;21627:4;21501:131;:::i;:::-;21493:139;;21220:419;;;:::o;21645:225::-;21785:34;21781:1;21773:6;21769:14;21762:58;21854:8;21849:2;21841:6;21837:15;21830:33;21645:225;:::o;21876:366::-;22018:3;22039:67;22103:2;22098:3;22039:67;:::i;:::-;22032:74;;22115:93;22204:3;22115:93;:::i;:::-;22233:2;22228:3;22224:12;22217:19;;21876:366;;;:::o;22248:419::-;22414:4;22452:2;22441:9;22437:18;22429:26;;22501:9;22495:4;22491:20;22487:1;22476:9;22472:17;22465:47;22529:131;22655:4;22529:131;:::i;:::-;22521:139;;22248:419;;;:::o;22673:182::-;22813:34;22809:1;22801:6;22797:14;22790:58;22673:182;:::o;22861:366::-;23003:3;23024:67;23088:2;23083:3;23024:67;:::i;:::-;23017:74;;23100:93;23189:3;23100:93;:::i;:::-;23218:2;23213:3;23209:12;23202:19;;22861:366;;;:::o;23233:419::-;23399:4;23437:2;23426:9;23422:18;23414:26;;23486:9;23480:4;23476:20;23472:1;23461:9;23457:17;23450:47;23514:131;23640:4;23514:131;:::i;:::-;23506:139;;23233:419;;;:::o;23658:229::-;23798:34;23794:1;23786:6;23782:14;23775:58;23867:12;23862:2;23854:6;23850:15;23843:37;23658:229;:::o;23893:366::-;24035:3;24056:67;24120:2;24115:3;24056:67;:::i;:::-;24049:74;;24132:93;24221:3;24132:93;:::i;:::-;24250:2;24245:3;24241:12;24234:19;;23893:366;;;:::o;24265:419::-;24431:4;24469:2;24458:9;24454:18;24446:26;;24518:9;24512:4;24508:20;24504:1;24493:9;24489:17;24482:47;24546:131;24672:4;24546:131;:::i;:::-;24538:139;;24265:419;;;:::o;24690:143::-;24747:5;24778:6;24772:13;24763:22;;24794:33;24821:5;24794:33;:::i;:::-;24690:143;;;;:::o;24839:351::-;24909:6;24958:2;24946:9;24937:7;24933:23;24929:32;24926:119;;;24964:79;;:::i;:::-;24926:119;25084:1;25109:64;25165:7;25156:6;25145:9;25141:22;25109:64;:::i;:::-;25099:74;;25055:128;24839:351;;;;:::o;25196:223::-;25336:34;25332:1;25324:6;25320:14;25313:58;25405:6;25400:2;25392:6;25388:15;25381:31;25196:223;:::o;25425:366::-;25567:3;25588:67;25652:2;25647:3;25588:67;:::i;:::-;25581:74;;25664:93;25753:3;25664:93;:::i;:::-;25782:2;25777:3;25773:12;25766:19;;25425:366;;;:::o;25797:419::-;25963:4;26001:2;25990:9;25986:18;25978:26;;26050:9;26044:4;26040:20;26036:1;26025:9;26021:17;26014:47;26078:131;26204:4;26078:131;:::i;:::-;26070:139;;25797:419;;;:::o;26222:221::-;26362:34;26358:1;26350:6;26346:14;26339:58;26431:4;26426:2;26418:6;26414:15;26407:29;26222:221;:::o;26449:366::-;26591:3;26612:67;26676:2;26671:3;26612:67;:::i;:::-;26605:74;;26688:93;26777:3;26688:93;:::i;:::-;26806:2;26801:3;26797:12;26790:19;;26449:366;;;:::o;26821:419::-;26987:4;27025:2;27014:9;27010:18;27002:26;;27074:9;27068:4;27064:20;27060:1;27049:9;27045:17;27038:47;27102:131;27228:4;27102:131;:::i;:::-;27094:139;;26821:419;;;:::o;27246:224::-;27386:34;27382:1;27374:6;27370:14;27363:58;27455:7;27450:2;27442:6;27438:15;27431:32;27246:224;:::o;27476:366::-;27618:3;27639:67;27703:2;27698:3;27639:67;:::i;:::-;27632:74;;27715:93;27804:3;27715:93;:::i;:::-;27833:2;27828:3;27824:12;27817:19;;27476:366;;;:::o;27848:419::-;28014:4;28052:2;28041:9;28037:18;28029:26;;28101:9;28095:4;28091:20;28087:1;28076:9;28072:17;28065:47;28129:131;28255:4;28129:131;:::i;:::-;28121:139;;27848:419;;;:::o;28273:222::-;28413:34;28409:1;28401:6;28397:14;28390:58;28482:5;28477:2;28469:6;28465:15;28458:30;28273:222;:::o;28501:366::-;28643:3;28664:67;28728:2;28723:3;28664:67;:::i;:::-;28657:74;;28740:93;28829:3;28740:93;:::i;:::-;28858:2;28853:3;28849:12;28842:19;;28501:366;;;:::o;28873:419::-;29039:4;29077:2;29066:9;29062:18;29054:26;;29126:9;29120:4;29116:20;29112:1;29101:9;29097:17;29090:47;29154:131;29280:4;29154:131;:::i;:::-;29146:139;;28873:419;;;:::o;29298:172::-;29438:24;29434:1;29426:6;29422:14;29415:48;29298:172;:::o;29476:366::-;29618:3;29639:67;29703:2;29698:3;29639:67;:::i;:::-;29632:74;;29715:93;29804:3;29715:93;:::i;:::-;29833:2;29828:3;29824:12;29817:19;;29476:366;;;:::o;29848:419::-;30014:4;30052:2;30041:9;30037:18;30029:26;;30101:9;30095:4;30091:20;30087:1;30076:9;30072:17;30065:47;30129:131;30255:4;30129:131;:::i;:::-;30121:139;;29848:419;;;:::o;30273:297::-;30413:34;30409:1;30401:6;30397:14;30390:58;30482:34;30477:2;30469:6;30465:15;30458:59;30551:11;30546:2;30538:6;30534:15;30527:36;30273:297;:::o;30576:366::-;30718:3;30739:67;30803:2;30798:3;30739:67;:::i;:::-;30732:74;;30815:93;30904:3;30815:93;:::i;:::-;30933:2;30928:3;30924:12;30917:19;;30576:366;;;:::o;30948:419::-;31114:4;31152:2;31141:9;31137:18;31129:26;;31201:9;31195:4;31191:20;31187:1;31176:9;31172:17;31165:47;31229:131;31355:4;31229:131;:::i;:::-;31221:139;;30948:419;;;:::o;31373:240::-;31513:34;31509:1;31501:6;31497:14;31490:58;31582:23;31577:2;31569:6;31565:15;31558:48;31373:240;:::o;31619:366::-;31761:3;31782:67;31846:2;31841:3;31782:67;:::i;:::-;31775:74;;31858:93;31947:3;31858:93;:::i;:::-;31976:2;31971:3;31967:12;31960:19;;31619:366;;;:::o;31991:419::-;32157:4;32195:2;32184:9;32180:18;32172:26;;32244:9;32238:4;32234:20;32230:1;32219:9;32215:17;32208:47;32272:131;32398:4;32272:131;:::i;:::-;32264:139;;31991:419;;;:::o;32416:169::-;32556:21;32552:1;32544:6;32540:14;32533:45;32416:169;:::o;32591:366::-;32733:3;32754:67;32818:2;32813:3;32754:67;:::i;:::-;32747:74;;32830:93;32919:3;32830:93;:::i;:::-;32948:2;32943:3;32939:12;32932:19;;32591:366;;;:::o;32963:419::-;33129:4;33167:2;33156:9;33152:18;33144:26;;33216:9;33210:4;33206:20;33202:1;33191:9;33187:17;33180:47;33244:131;33370:4;33244:131;:::i;:::-;33236:139;;32963:419;;;:::o;33388:241::-;33528:34;33524:1;33516:6;33512:14;33505:58;33597:24;33592:2;33584:6;33580:15;33573:49;33388:241;:::o;33635:366::-;33777:3;33798:67;33862:2;33857:3;33798:67;:::i;:::-;33791:74;;33874:93;33963:3;33874:93;:::i;:::-;33992:2;33987:3;33983:12;33976:19;;33635:366;;;:::o;34007:419::-;34173:4;34211:2;34200:9;34196:18;34188:26;;34260:9;34254:4;34250:20;34246:1;34235:9;34231:17;34224:47;34288:131;34414:4;34288:131;:::i;:::-;34280:139;;34007:419;;;:::o;34432:194::-;34472:4;34492:20;34510:1;34492:20;:::i;:::-;34487:25;;34526:20;34544:1;34526:20;:::i;:::-;34521:25;;34570:1;34567;34563:9;34555:17;;34594:1;34588:4;34585:11;34582:37;;;34599:18;;:::i;:::-;34582:37;34432:194;;;;:::o;34632:225::-;34772:34;34768:1;34760:6;34756:14;34749:58;34841:8;34836:2;34828:6;34824:15;34817:33;34632:225;:::o;34863:366::-;35005:3;35026:67;35090:2;35085:3;35026:67;:::i;:::-;35019:74;;35102:93;35191:3;35102:93;:::i;:::-;35220:2;35215:3;35211:12;35204:19;;34863:366;;;:::o;35235:419::-;35401:4;35439:2;35428:9;35424:18;35416:26;;35488:9;35482:4;35478:20;35474:1;35463:9;35459:17;35452:47;35516:131;35642:4;35516:131;:::i;:::-;35508:139;;35235:419;;;:::o;35660:147::-;35761:11;35798:3;35783:18;;35660:147;;;;:::o;35813:114::-;;:::o;35933:398::-;36092:3;36113:83;36194:1;36189:3;36113:83;:::i;:::-;36106:90;;36205:93;36294:3;36205:93;:::i;:::-;36323:1;36318:3;36314:11;36307:18;;35933:398;;;:::o;36337:379::-;36521:3;36543:147;36686:3;36543:147;:::i;:::-;36536:154;;36707:3;36700:10;;36337:379;;;:::o;36722:442::-;36871:4;36909:2;36898:9;36894:18;36886:26;;36922:71;36990:1;36979:9;36975:17;36966:6;36922:71;:::i;:::-;37003:72;37071:2;37060:9;37056:18;37047:6;37003:72;:::i;:::-;37085;37153:2;37142:9;37138:18;37129:6;37085:72;:::i;:::-;36722:442;;;;;;:::o;37170:180::-;37218:77;37215:1;37208:88;37315:4;37312:1;37305:15;37339:4;37336:1;37329:15;37356:180;37404:77;37401:1;37394:88;37501:4;37498:1;37491:15;37525:4;37522:1;37515:15;37542:143;37599:5;37630:6;37624:13;37615:22;;37646:33;37673:5;37646:33;:::i;:::-;37542:143;;;;:::o;37691:351::-;37761:6;37810:2;37798:9;37789:7;37785:23;37781:32;37778:119;;;37816:79;;:::i;:::-;37778:119;37936:1;37961:64;38017:7;38008:6;37997:9;37993:22;37961:64;:::i;:::-;37951:74;;37907:128;37691:351;;;;:::o;38048:85::-;38093:7;38122:5;38111:16;;38048:85;;;:::o;38139:158::-;38197:9;38230:61;38248:42;38257:32;38283:5;38257:32;:::i;:::-;38248:42;:::i;:::-;38230:61;:::i;:::-;38217:74;;38139:158;;;:::o;38303:147::-;38398:45;38437:5;38398:45;:::i;:::-;38393:3;38386:58;38303:147;;:::o;38456:114::-;38523:6;38557:5;38551:12;38541:22;;38456:114;;;:::o;38576:184::-;38675:11;38709:6;38704:3;38697:19;38749:4;38744:3;38740:14;38725:29;;38576:184;;;;:::o;38766:132::-;38833:4;38856:3;38848:11;;38886:4;38881:3;38877:14;38869:22;;38766:132;;;:::o;38904:108::-;38981:24;38999:5;38981:24;:::i;:::-;38976:3;38969:37;38904:108;;:::o;39018:179::-;39087:10;39108:46;39150:3;39142:6;39108:46;:::i;:::-;39186:4;39181:3;39177:14;39163:28;;39018:179;;;;:::o;39203:113::-;39273:4;39305;39300:3;39296:14;39288:22;;39203:113;;;:::o;39352:732::-;39471:3;39500:54;39548:5;39500:54;:::i;:::-;39570:86;39649:6;39644:3;39570:86;:::i;:::-;39563:93;;39680:56;39730:5;39680:56;:::i;:::-;39759:7;39790:1;39775:284;39800:6;39797:1;39794:13;39775:284;;;39876:6;39870:13;39903:63;39962:3;39947:13;39903:63;:::i;:::-;39896:70;;39989:60;40042:6;39989:60;:::i;:::-;39979:70;;39835:224;39822:1;39819;39815:9;39810:14;;39775:284;;;39779:14;40075:3;40068:10;;39476:608;;;39352:732;;;;:::o;40090:831::-;40353:4;40391:3;40380:9;40376:19;40368:27;;40405:71;40473:1;40462:9;40458:17;40449:6;40405:71;:::i;:::-;40486:80;40562:2;40551:9;40547:18;40538:6;40486:80;:::i;:::-;40613:9;40607:4;40603:20;40598:2;40587:9;40583:18;40576:48;40641:108;40744:4;40735:6;40641:108;:::i;:::-;40633:116;;40759:72;40827:2;40816:9;40812:18;40803:6;40759:72;:::i;:::-;40841:73;40909:3;40898:9;40894:19;40885:6;40841:73;:::i;:::-;40090:831;;;;;;;;:::o;40927:807::-;41176:4;41214:3;41203:9;41199:19;41191:27;;41228:71;41296:1;41285:9;41281:17;41272:6;41228:71;:::i;:::-;41309:72;41377:2;41366:9;41362:18;41353:6;41309:72;:::i;:::-;41391:80;41467:2;41456:9;41452:18;41443:6;41391:80;:::i;:::-;41481;41557:2;41546:9;41542:18;41533:6;41481:80;:::i;:::-;41571:73;41639:3;41628:9;41624:19;41615:6;41571:73;:::i;:::-;41654;41722:3;41711:9;41707:19;41698:6;41654:73;:::i;:::-;40927:807;;;;;;;;;:::o;41740:663::-;41828:6;41836;41844;41893:2;41881:9;41872:7;41868:23;41864:32;41861:119;;;41899:79;;:::i;:::-;41861:119;42019:1;42044:64;42100:7;42091:6;42080:9;42076:22;42044:64;:::i;:::-;42034:74;;41990:128;42157:2;42183:64;42239:7;42230:6;42219:9;42215:22;42183:64;:::i;:::-;42173:74;;42128:129;42296:2;42322:64;42378:7;42369:6;42358:9;42354:22;42322:64;:::i;:::-;42312:74;;42267:129;41740:663;;;;;:::o

Swarm Source

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