ETH Price: $3,109.09 (+0.51%)
Gas: 3 Gwei

Token

Blendr Network (BLENDR)
 

Overview

Max Total Supply

42,000,000 BLENDR

Holders

15,524

Market

Price

$1.68 @ 0.000540 ETH (+0.49%)

Onchain Market Cap

$70,560,000.00

Circulating Supply Market Cap

$69,483,102.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
258.375511515696858804 BLENDR

Value
$434.07 ( ~0.13961302288038 Eth) [0.0006%]
0xb53126d086d49fa583b117804da57a0e65c7efed
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Blendr revolutionizes the landscape of GPU computing infrastructure for artificial intelligence and content rendering systems by introducing a decentralized network accessible to businesses worldwide that leverage idle GPUs from diverse locations.

Market

Volume (24H):$1,800,426.00
Market Capitalization:$69,483,102.00
Circulating Supply:40,963,196.00 BLENDR
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Unknown

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-02
*/

// SPDX-License-Identifier: MIT

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

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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


/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}


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

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

    /**
     * @dev Returns the subtraction 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, uint);

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    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, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    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 (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}


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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
    external
    payable
    returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
    external
    returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
    external
    returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
    external
    payable
    returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

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

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

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


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

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

    uint256 private _totalSupply;

    string internal _name;
    string internal _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() {

    }

    /**
     * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
        // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
        // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
        // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

contract Unknown is ERC20, Ownable {
    using SafeMath for uint256;
    address public constant deadAddress = address(0xdead);
    address public uniswapV2Pair;
    bool public tradingActive = false;


    IUniswapV2Router02 public uniswapV2Router;
    address public routerAddress;
    bool private swapping;
    address public Treasury;
    uint256 public swapTokensAtAmount;
    bool public swapEnabled = true;

    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    uint256 public maxTransactionAmount;
    uint256 public maxWallet;
    bool public limitsInEffect = true;

    bool public blacklistRenounced = false;
    bool public restrictSwapBack = true;


    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buySniperFee;
    uint256 public buyLiquidityFee;
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public lastSwapBack;
    mapping(address => bool) private _isExcludedFromFees;

    bool reducedFirstBlockEnabled = true;
    uint256 public reducedMaxTransactionAmount;
    uint256 public swapsAmount;
    uint256 public tradingStartBlock;

    mapping(address => bool) public blacklists;

    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 SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
    event AutoNukeLP();
    event ManualNukeLP();

    constructor() ERC20() {
        uint256 totalSupply = 42_000_000 * 1e18;

        routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
        if (block.chainid == 56) {
            routerAddress = 0x10ED43C718714eb63d5aA57B78B54704E256024E;
        } else if (block.chainid == 97) {
            routerAddress = 0x9Ac64Cc6e4415144C455BD8E4837Fea55603e5c3;
        } else if (block.chainid == 1 || block.chainid == 4 || block.chainid == 3 || block.chainid == 5 || block.chainid == 31337) {
            routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
        } else if(block.chainid == 11155111){
            routerAddress = 0xC532a74256D3Db42D0Bf7a0400fEFDbad7694008;
        } else {
            revert();
        }
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            routerAddress
        );
        uniswapV2Router = _uniswapV2Router;

        uint256 _buyMarketingFee = 25;
        uint256 _buyLiquidityFee = 0;
        uint256 _sellMarketingFee = 25;
        uint256 _sellLiquidityFee = 0;
        swapTokensAtAmount = (totalSupply * 5) / 1000;
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee;


        Treasury = address(owner());
        _excludeFromFees(owner(), true);
        _excludeFromFees(address(this), true);
        _excludeFromFees(address(0xdead), true);
        limitsInEffect = true;
        maxTransactionAmount = (totalSupply * 2) / 100;
        maxWallet = (totalSupply * 2) / 100;
        disableWalletLimits(owner(), true);
        disableWalletLimits(address(this), true);
        disableWalletLimits(address(0xdead), true);
        disableWalletLimits(address(_uniswapV2Router), true);

        _mint(address(this), totalSupply);
    }

    receive() external payable {}

    function launch(string memory name, string memory symbol, uint256 amountLeft) public onlyOwner {
        require(!tradingActive);
        _name = name;
        _symbol = symbol;
        _approve(address(this), address(uniswapV2Router), totalSupply());
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        disableWalletLimits(address(uniswapV2Pair), true);
        automatedMarketMakerPairs[uniswapV2Pair] = true;
        uniswapV2Router.addLiquidityETH { value: address(this).balance }(
            address(this),
            balanceOf(address(this)) * (100 - amountLeft) / 100,
            0,
            0,
            owner(),
            block.timestamp);
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
        tradingStartBlock = block.number;
        tradingActive = true;
    }


    function limitsOff() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }


    function updateSwapTokensAtAmount(uint256 newAmount)
    external
    onlyOwner
    returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 4) / 100,
            "Swap amount cannot be higher than 4% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateMaxTransaction(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18
        );
        maxTransactionAmount = newNum * (10 ** 18);
    }

    function updateMaxWallet(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18
        );
        maxWallet = newNum * (10 ** 18);
    }

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

    function changeBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;
        require(buyTotalFees <= 30);
    }

    function setSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee;
        require(sellTotalFees <= 30);
    }

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

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _excludeFromFees(account, excluded);
        emit ExcludeFromFees(account, excluded);
    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address _Treasury)
    external
    onlyOwner
    {
        emit marketingWalletUpdated(_Treasury, Treasury);
        Treasury = _Treasury;
    }

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


    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!blacklists[from], "Blacklisted");
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                !swapping &&
                to != address(0) &&
                to != address(0xdead)

            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }



                uint256 maxTxAmount = maxTransactionAmount;
                uint256 difference = block.number - tradingStartBlock;
                if (difference < 10 && reducedFirstBlockEnabled && swapsAmount > 2) {
                    if(difference == 0) {
                        maxTxAmount = totalSupply() * 125 / 10000;
                    } else if (difference > 8) {
                        maxTxAmount = totalSupply() * 100 / 10000;
                    } else {
                        maxTxAmount = totalSupply() * (difference * 10) / 10000;
                    }
                }


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

                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTxAmount,
                        "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(amount);
            swapping = false;
        }

        bool takeFee = !swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        if (takeFee) {
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }
        if (swapsAmount < 10) {
            swapsAmount += 1;
        }
        super._transfer(from, to, amount);
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(_address != address(uniswapV2Pair),"Cannot blacklist token's v2 router or v2 pool.");
        require(_address != address(routerAddress),"Cannot blacklist token's v2 router or v2 pool.");

        blacklists[_address] = _isBlacklisting;
    }
    function renounceBlacklist() public onlyOwner {
        blacklistRenounced = true;
    }
    function unsetReducedFirstBlock() public onlyOwner {
        reducedFirstBlockEnabled = false;
    }

    function updateRestrictSwapBack(bool newVal) public onlyOwner {
        restrictSwapBack = newVal;
    }



    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value : ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            Treasury,
            block.timestamp
        );
    }

    function swapBack(uint amount) private {

        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing;
        bool success;

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


        if (contractBalance > swapTokensAtAmount) {
            contractBalance = swapTokensAtAmount;
        }
        if (restrictSwapBack && contractBalance > amount) {
            contractBalance = amount;
        }
        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 ethForLiquidity = ethBalance - ethForMarketing;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;

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

        (success,) = address(Treasury).call{
                value : address(this).balance
            }("");
    }
    function removeStuckTokens() public onlyOwner {
        bool success;
        swapTokensForEth(balanceOf(address(this)));
        (success,) = address(Treasury).call{value : address(this).balance}("");
    }

    function sendStuckTokens() external onlyOwner {
        bool success;
        (success,) = address(Treasury).call{value : address(this).balance}("");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[],"name":"Treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"","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":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"buySniperFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"changeBuyFees","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"disableWalletLimits","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":"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":"lastSwapBack","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"amountLeft","type":"uint256"}],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsOff","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"reducedMaxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"restrictSwapBack","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"routerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"sendStuckTokens","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":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"setSellFees","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":"swapsAmount","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":"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":[],"name":"tradingStartBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":[],"name":"unsetReducedFirstBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_Treasury","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newVal","type":"bool"}],"name":"updateRestrictSwapBack","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"}]

60806040526000600660146101000a81548160ff0219169083151502179055506001600b60006101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff0219169083151502179055506001601b60006101000a81548160ff021916908315150217905550348015620000b357600080fd5b50620000d4620000c86200056260201b60201c565b6200056a60201b60201c565b60006a22bdd88fed9efc6a0000009050737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550603846036200019d577310ed43c718714eb63d5aa57b78b54704e256024e600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000305565b606146036200020157739ac64cc6e4415144c455bd8e4837fea55603e5c3600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000304565b6001461480620002115750600446145b806200021d5750600346145b80620002295750600546145b80620002365750617a6946145b156200029757737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000303565b62aa36a74603620002fd5773c532a74256d3db42d0bf7a0400fefdbad7694008600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000302565b600080fd5b5b5b5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601990506000806019905060006103e86005876200038e919062000971565b6200039a919062000a01565b600a8190555083601181905550826013819055508160158190555080601681905550601354601154620003ce919062000a39565b601081905550601654601554620003e6919062000a39565b601481905550620003fc6200063060201b60201c565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200045e620004506200063060201b60201c565b60016200065a60201b60201c565b620004713060016200065a60201b60201c565b6200048661dead60016200065a60201b60201c565b6001600f60006101000a81548160ff0219169083151502179055506064600287620004b2919062000971565b620004be919062000a01565b600d819055506064600287620004d5919062000971565b620004e1919062000a01565b600e8190555062000509620004fb6200063060201b60201c565b6001620006c560201b60201c565b6200051c306001620006c560201b60201c565b6200053161dead6001620006c560201b60201c565b62000544856001620006c560201b60201c565b6200055630876200073060201b60201c565b50505050505062000bb9565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200066a6200089d60201b60201c565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b620006d56200089d60201b60201c565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007999062000af7565b60405180910390fd5b620007b6600083836200092e60201b60201c565b8060026000828254620007ca919062000a39565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200087d919062000b2a565b60405180910390a362000899600083836200093360201b60201c565b5050565b620008ad6200056260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008d36200063060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200092c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009239062000b97565b60405180910390fd5b565b505050565b505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200097e8262000938565b91506200098b8362000938565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620009c757620009c662000942565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000a0e8262000938565b915062000a1b8362000938565b92508262000a2e5762000a2d620009d2565b5b828204905092915050565b600062000a468262000938565b915062000a538362000938565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a8b5762000a8a62000942565b5b828201905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000adf601f8362000a96565b915062000aec8262000aa7565b602082019050919050565b6000602082019050818103600083015262000b128162000ad0565b9050919050565b62000b248162000938565b82525050565b600060208201905062000b41600083018462000b19565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000b7f60208362000a96565b915062000b8c8262000b47565b602082019050919050565b6000602082019050818103600083015262000bb28162000b70565b9050919050565b61531e8062000bc96000396000f3fe6080604052600436106103bc5760003560e01c80636ddd1713116101f2578063aca0359f1161010d578063d85ba063116100a0578063f11a24d31161006f578063f11a24d314610e0b578063f2fde38b14610e36578063f637434214610e5f578063f8b45b0514610e8a576103c3565b8063d85ba06314610d61578063dd62ed3e14610d8c578063e2f4560514610dc9578063ec7fa51114610df4576103c3565b8063c0246668116100dc578063c024666814610ca5578063c8c8ebe414610cce578063d257b34f14610cf9578063d798cbd214610d36576103c3565b8063aca0359f14610be9578063b104b32114610c14578063b62496f514610c3d578063bbc0c74214610c7a576103c3565b80639371897611610185578063a2ec185311610154578063a2ec185314610b1b578063a457c2d714610b46578063a9059cbb14610b83578063aacebbe314610bc0576103c3565b80639371897614610a8757806395d89b4114610a9e5780639a7a23d614610ac95780639fd8234e14610af2576103c3565b80638da5cb5b116101c15780638da5cb5b146109df5780639083497014610a0a5780639213691314610a33578063924de9b714610a5e576103c3565b80636ddd17131461093557806370a0823114610960578063715018a61461099d5780637bce5a04146109b4576103c3565b8063313ce567116102e2578063421f715a11610275578063563df32f11610244578063563df32f1461089f5780635f189361146108ca57806369921a40146108e15780636a486a8e1461090a576103c3565b8063421f715a146107e157806349bd5a5e1461080c5780634a62bb65146108375780634fbee19314610862576103c3565b806339509351116102b157806339509351146107395780633dc599ff146107765780634013fc88146107a1578063404e5129146107b8576103c3565b8063313ce5671461068d578063320a4859146106b85780633268cc56146106e357806333defeae1461070e576103c3565b806318160ddd1161035a57806321d9f2ca1161032957806321d9f2ca146105d1578063232050f9146105fa57806323b872dd1461062557806327c8f83514610662576103c3565b806318160ddd146105275780631a8145bb146105525780631c499ab01461057d5780631f3fed8f146105a6576103c3565b8063095ea7b311610396578063095ea7b31461044557806310d5de53146104825780631694505e146104bf57806316c02129146104ea576103c3565b8063036958a2146103c85780630517d13d146103f157806306fdde031461041a576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103ef60048036038101906103ea9190613ad1565b610eb5565b005b3480156103fd57600080fd5b5061041860048036038101906104139190613b11565b610ef5565b005b34801561042657600080fd5b5061042f610f5a565b60405161043c9190613bd7565b60405180910390f35b34801561045157600080fd5b5061046c60048036038101906104679190613c57565b610fec565b6040516104799190613cb2565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190613ccd565b61100f565b6040516104b69190613cb2565b60405180910390f35b3480156104cb57600080fd5b506104d461102f565b6040516104e19190613d59565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190613ccd565b611055565b60405161051e9190613cb2565b60405180910390f35b34801561053357600080fd5b5061053c611075565b6040516105499190613d83565b60405180910390f35b34801561055e57600080fd5b5061056761107f565b6040516105749190613d83565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f9190613b11565b611085565b005b3480156105b257600080fd5b506105bb6110ea565b6040516105c89190613d83565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f39190613dca565b6110f0565b005b34801561060657600080fd5b5061060f611153565b60405161061c9190613cb2565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190613e0a565b61117f565b6040516106599190613cb2565b60405180910390f35b34801561066e57600080fd5b506106776111ae565b6040516106849190613e6c565b60405180910390f35b34801561069957600080fd5b506106a26111b4565b6040516106af9190613ea3565b60405180910390f35b3480156106c457600080fd5b506106cd6111bd565b6040516106da9190613d83565b60405180910390f35b3480156106ef57600080fd5b506106f86111c3565b6040516107059190613e6c565b60405180910390f35b34801561071a57600080fd5b506107236111e9565b6040516107309190613d83565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b9190613c57565b6111ef565b60405161076d9190613cb2565b60405180910390f35b34801561078257600080fd5b5061078b611226565b6040516107989190613cb2565b60405180910390f35b3480156107ad57600080fd5b506107b6611239565b005b3480156107c457600080fd5b506107df60048036038101906107da9190613dca565b6112d4565b005b3480156107ed57600080fd5b506107f66114a7565b6040516108039190613d83565b60405180910390f35b34801561081857600080fd5b506108216114ad565b60405161082e9190613e6c565b60405180910390f35b34801561084357600080fd5b5061084c6114d3565b6040516108599190613cb2565b60405180910390f35b34801561086e57600080fd5b5061088960048036038101906108849190613ccd565b6114e6565b6040516108969190613cb2565b60405180910390f35b3480156108ab57600080fd5b506108b461153c565b6040516108c19190613e6c565b60405180910390f35b3480156108d657600080fd5b506108df611562565b005b3480156108ed57600080fd5b5061090860048036038101906109039190613dca565b611587565b005b34801561091657600080fd5b5061091f6115ea565b60405161092c9190613d83565b60405180910390f35b34801561094157600080fd5b5061094a6115f0565b6040516109579190613cb2565b60405180910390f35b34801561096c57600080fd5b5061098760048036038101906109829190613ccd565b611603565b6040516109949190613d83565b60405180910390f35b3480156109a957600080fd5b506109b261164b565b005b3480156109c057600080fd5b506109c961165f565b6040516109d69190613d83565b60405180910390f35b3480156109eb57600080fd5b506109f4611665565b604051610a019190613e6c565b60405180910390f35b348015610a1657600080fd5b50610a316004803603810190610a2c9190613ebe565b61168f565b005b348015610a3f57600080fd5b50610a486116b4565b604051610a559190613d83565b60405180910390f35b348015610a6a57600080fd5b50610a856004803603810190610a809190613ebe565b6116ba565b005b348015610a9357600080fd5b50610a9c6116df565b005b348015610aaa57600080fd5b50610ab361178b565b604051610ac09190613bd7565b60405180910390f35b348015610ad557600080fd5b50610af06004803603810190610aeb9190613dca565b61181d565b005b348015610afe57600080fd5b50610b196004803603810190610b149190613ad1565b6118c3565b005b348015610b2757600080fd5b50610b30611903565b604051610b3d9190613d83565b60405180910390f35b348015610b5257600080fd5b50610b6d6004803603810190610b689190613c57565b611909565b604051610b7a9190613cb2565b60405180910390f35b348015610b8f57600080fd5b50610baa6004803603810190610ba59190613c57565b611980565b604051610bb79190613cb2565b60405180910390f35b348015610bcc57600080fd5b50610be76004803603810190610be29190613ccd565b6119a3565b005b348015610bf557600080fd5b50610bfe611a6b565b604051610c0b9190613cb2565b60405180910390f35b348015610c2057600080fd5b50610c3b6004803603810190610c369190614020565b611a7e565b005b348015610c4957600080fd5b50610c646004803603810190610c5f9190613ccd565b611f62565b604051610c719190613cb2565b60405180910390f35b348015610c8657600080fd5b50610c8f611f81565b604051610c9c9190613cb2565b60405180910390f35b348015610cb157600080fd5b50610ccc6004803603810190610cc79190613dca565b611f94565b005b348015610cda57600080fd5b50610ce3611ff8565b604051610cf09190613d83565b60405180910390f35b348015610d0557600080fd5b50610d206004803603810190610d1b9190613b11565b611ffe565b604051610d2d9190613cb2565b60405180910390f35b348015610d4257600080fd5b50610d4b6120de565b604051610d589190613d83565b60405180910390f35b348015610d6d57600080fd5b50610d766120e4565b604051610d839190613d83565b60405180910390f35b348015610d9857600080fd5b50610db36004803603810190610dae91906140ab565b6120ea565b604051610dc09190613d83565b60405180910390f35b348015610dd557600080fd5b50610dde612171565b604051610deb9190613d83565b60405180910390f35b348015610e0057600080fd5b50610e09612177565b005b348015610e1757600080fd5b50610e2061219c565b604051610e2d9190613d83565b60405180910390f35b348015610e4257600080fd5b50610e5d6004803603810190610e589190613ccd565b6121a2565b005b348015610e6b57600080fd5b50610e74612225565b604051610e819190613d83565b60405180910390f35b348015610e9657600080fd5b50610e9f61222b565b604051610eac9190613d83565b60405180910390f35b610ebd612231565b8160118190555080601381905550601354601154610edb919061411a565b601081905550601e6010541115610ef157600080fd5b5050565b610efd612231565b670de0b6b3a76400006103e86001610f13611075565b610f1d9190614170565b610f2791906141f9565b610f3191906141f9565b811015610f3d57600080fd5b670de0b6b3a764000081610f519190614170565b600d8190555050565b606060038054610f6990614259565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9590614259565b8015610fe25780601f10610fb757610100808354040283529160200191610fe2565b820191906000526020600020905b815481529060010190602001808311610fc557829003601f168201915b5050505050905090565b600080610ff76122af565b90506110048185856122b7565b600191505092915050565b600c6020528060005260406000206000915054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601f6020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b60185481565b61108d612231565b670de0b6b3a76400006103e860016110a3611075565b6110ad9190614170565b6110b791906141f9565b6110c191906141f9565b8110156110cd57600080fd5b670de0b6b3a7640000816110e19190614170565b600e8190555050565b60175481565b6110f8612231565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600061115d612231565b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60008061118a6122af565b9050611197858285612480565b6111a285858561250c565b60019150509392505050565b61dead81565b60006012905090565b60195481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601c5481565b6000806111fa6122af565b905061121b81858561120c85896120ea565b611216919061411a565b6122b7565b600191505092915050565b600f60019054906101000a900460ff1681565b611241612231565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611289906142bb565b60006040518083038185875af1925050503d80600081146112c6576040519150601f19603f3d011682016040523d82523d6000602084013e6112cb565b606091505b50508091505050565b6112dc612231565b600f60019054906101000a900460ff161561132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390614342565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b3906143d4565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361144c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611443906143d4565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60125481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900460ff1681565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61156a612231565b6001600f60016101000a81548160ff021916908315150217905550565b61158f612231565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60145481565b600b60009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611653612231565b61165d6000613101565b565b60115481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611697612231565b80600f60026101000a81548160ff02191690831515021790555050565b60155481565b6116c2612231565b80600b60006101000a81548160ff02191690831515021790555050565b6116e7612231565b60006116fa6116f530611603565b6131c7565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611740906142bb565b60006040518083038185875af1925050503d806000811461177d576040519150601f19603f3d011682016040523d82523d6000602084013e611782565b606091505b50508091505050565b60606004805461179a90614259565b80601f01602080910402602001604051908101604052809291908181526020018280546117c690614259565b80156118135780601f106117e857610100808354040283529160200191611813565b820191906000526020600020905b8154815290600101906020018083116117f657829003601f168201915b5050505050905090565b611825612231565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac90614466565b60405180910390fd5b6118bf828261340a565b5050565b6118cb612231565b81601581905550806016819055506016546015546118e9919061411a565b601481905550601e60145411156118ff57600080fd5b5050565b601d5481565b6000806119146122af565b9050600061192282866120ea565b905083811015611967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195e906144f8565b60405180910390fd5b61197482868684036122b7565b60019250505092915050565b60008061198b6122af565b905061199881858561250c565b600191505092915050565b6119ab612231565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f60029054906101000a900460ff1681565b611a86612231565b600660149054906101000a900460ff1615611aa057600080fd5b8260039081611aaf91906146ba565b508160049081611abf91906146ba565b50611af430600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611aef611075565b6122b7565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b8591906147a1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c3291906147a1565b6040518363ffffffff1660e01b8152600401611c4f9291906147ce565b6020604051808303816000875af1158015611c6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c9291906147a1565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611cff600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016110f0565b600160206000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71947306064856064611dc891906147f7565b611dd130611603565b611ddb9190614170565b611de591906141f9565b600080611df0611665565b426040518863ffffffff1660e01b8152600401611e1296959493929190614866565b60606040518083038185885af1158015611e30573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e5591906148dc565b505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401611ef792919061492f565b6020604051808303816000875af1158015611f16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f3a919061496d565b5043601e819055506001600660146101000a81548160ff021916908315150217905550505050565b602080528060005260406000206000915054906101000a900460ff1681565b600660149054906101000a900460ff1681565b611f9c612231565b611fa68282611587565b8173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fec9190613cb2565b60405180910390a25050565b600d5481565b6000612008612231565b620186a06001612016611075565b6120209190614170565b61202a91906141f9565b82101561206c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206390614a0c565b60405180910390fd5b60646004612078611075565b6120829190614170565b61208c91906141f9565b8211156120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c590614a9e565b60405180910390fd5b81600a8190555060019050919050565b601e5481565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b61217f612231565b6000601b60006101000a81548160ff021916908315150217905550565b60135481565b6121aa612231565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612219576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221090614b30565b60405180910390fd5b61222281613101565b50565b60165481565b600e5481565b6122396122af565b73ffffffffffffffffffffffffffffffffffffffff16612257611665565b73ffffffffffffffffffffffffffffffffffffffff16146122ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a490614b9c565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231d90614c2e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c90614cc0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124739190613d83565b60405180910390a3505050565b600061248c84846120ea565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461250657818110156124f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ef90614d2c565b60405180910390fd5b61250584848484036122b7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361257b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257290614dbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e190614e50565b60405180910390fd5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266e90614ebc565b60405180910390fd5b600081036126905761268b838360006134ab565b6130fc565b600f60009054906101000a900460ff1615612c63576126ad611665565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561271b57506126eb611665565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127345750600860149054906101000a900460ff16155b801561276d5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127a7575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612c6257600660149054906101000a900460ff166128a157601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128615750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6128a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289790614f28565b60405180910390fd5b5b6000600d5490506000601e54436128b891906147f7565b9050600a811080156128d65750601b60009054906101000a900460ff165b80156128e457506002601d54115b1561297b576000810361291957612710607d6128fe611075565b6129089190614170565b61291291906141f9565b915061297a565b600881111561294a57612710606461292f611075565b6129399190614170565b61294391906141f9565b9150612979565b612710600a8261295a9190614170565b612962611075565b61296c9190614170565b61297691906141f9565b91505b5b5b602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a1e5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ac35781831115612a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5d90614fba565b60405180910390fd5b600e54612a7285611603565b84612a7d919061411a565b1115612abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab590615026565b60405180910390fd5b612c5f565b602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b665750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bb35781831115612bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba5906150b8565b60405180910390fd5b612c5e565b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612c5d57600e54612c1085611603565b84612c1b919061411a565b1115612c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5390615026565b60405180910390fd5b5b5b5b50505b5b6000612c6e30611603565b90506000600a548210159050808015612c935750600b60009054906101000a900460ff165b8015612cac5750600860149054906101000a900460ff16155b8015612d025750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d585750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612dae5750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612df3576001600860146101000a81548160ff021916908315150217905550612dd783613721565b6000600860146101000a81548160ff0219169083151502179055505b6000600860149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ea95750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612eb357600090505b600081156130c657602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f1657506000601454115b15612fb057612f436064612f356014548861393b90919063ffffffff16565b61395190919063ffffffff16565b905060145460165482612f569190614170565b612f6091906141f9565b60186000828254612f71919061411a565b9250508190555060145460155482612f899190614170565b612f9391906141f9565b60176000828254612fa4919061411a565b925050819055506130a2565b602060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561300b57506000601054115b156130a157613038606461302a6010548861393b90919063ffffffff16565b61395190919063ffffffff16565b90506010546013548261304b9190614170565b61305591906141f9565b60186000828254613066919061411a565b925050819055506010546011548261307e9190614170565b61308891906141f9565b60176000828254613099919061411a565b925050819055505b5b60008111156130b7576130b68730836134ab565b5b80856130c391906147f7565b94505b600a601d5410156130ec576001601d60008282546130e4919061411a565b925050819055505b6130f78787876134ab565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff8111156131e4576131e3613ef5565b5b6040519080825280602002602001820160405280156132125781602001602082028036833780820191505090505b509050308160008151811061322a576132296150d8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132f591906147a1565b81600181518110613309576133086150d8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061337030600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846122b7565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016133d49594939291906151c5565b600060405180830381600087803b1580156133ee57600080fd5b505af1158015613402573d6000803e3d6000fd5b505050505050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361351a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161351190614dbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161358090614e50565b60405180910390fd5b613594838383613967565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561361a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161361190615291565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516137089190613d83565b60405180910390a361371b84848461396c565b50505050565b600061372c30611603565b90506000601754601854613740919061411a565b90506000808314806137525750600082145b1561375f57505050613938565b600a5483111561376f57600a5492505b600f60029054906101000a900460ff16801561378a57508383115b15613793578392505b6000600283601854866137a69190614170565b6137b091906141f9565b6137ba91906141f9565b905060006137d1828661397190919063ffffffff16565b905060004790506137e1826131c7565b60006137f6824761397190919063ffffffff16565b90506000613821876138136017548561393b90919063ffffffff16565b61395190919063ffffffff16565b90506000818361383191906147f7565b9050600060188190555060006017819055506000861180156138535750600081115b156138a0576138628682613987565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601854604051613897939291906152b1565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516138e6906142bb565b60006040518083038185875af1925050503d8060008114613923576040519150601f19603f3d011682016040523d82523d6000602084013e613928565b606091505b5050809750505050505050505050505b50565b600081836139499190614170565b905092915050565b6000818361395f91906141f9565b905092915050565b505050565b505050565b6000818361397f91906147f7565b905092915050565b6139b430600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846122b7565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613a3d96959493929190614866565b60606040518083038185885af1158015613a5b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613a8091906148dc565b5050505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b613aae81613a9b565b8114613ab957600080fd5b50565b600081359050613acb81613aa5565b92915050565b60008060408385031215613ae857613ae7613a91565b5b6000613af685828601613abc565b9250506020613b0785828601613abc565b9150509250929050565b600060208284031215613b2757613b26613a91565b5b6000613b3584828501613abc565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b78578082015181840152602081019050613b5d565b83811115613b87576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ba982613b3e565b613bb38185613b49565b9350613bc3818560208601613b5a565b613bcc81613b8d565b840191505092915050565b60006020820190508181036000830152613bf18184613b9e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c2482613bf9565b9050919050565b613c3481613c19565b8114613c3f57600080fd5b50565b600081359050613c5181613c2b565b92915050565b60008060408385031215613c6e57613c6d613a91565b5b6000613c7c85828601613c42565b9250506020613c8d85828601613abc565b9150509250929050565b60008115159050919050565b613cac81613c97565b82525050565b6000602082019050613cc76000830184613ca3565b92915050565b600060208284031215613ce357613ce2613a91565b5b6000613cf184828501613c42565b91505092915050565b6000819050919050565b6000613d1f613d1a613d1584613bf9565b613cfa565b613bf9565b9050919050565b6000613d3182613d04565b9050919050565b6000613d4382613d26565b9050919050565b613d5381613d38565b82525050565b6000602082019050613d6e6000830184613d4a565b92915050565b613d7d81613a9b565b82525050565b6000602082019050613d986000830184613d74565b92915050565b613da781613c97565b8114613db257600080fd5b50565b600081359050613dc481613d9e565b92915050565b60008060408385031215613de157613de0613a91565b5b6000613def85828601613c42565b9250506020613e0085828601613db5565b9150509250929050565b600080600060608486031215613e2357613e22613a91565b5b6000613e3186828701613c42565b9350506020613e4286828701613c42565b9250506040613e5386828701613abc565b9150509250925092565b613e6681613c19565b82525050565b6000602082019050613e816000830184613e5d565b92915050565b600060ff82169050919050565b613e9d81613e87565b82525050565b6000602082019050613eb86000830184613e94565b92915050565b600060208284031215613ed457613ed3613a91565b5b6000613ee284828501613db5565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f2d82613b8d565b810181811067ffffffffffffffff82111715613f4c57613f4b613ef5565b5b80604052505050565b6000613f5f613a87565b9050613f6b8282613f24565b919050565b600067ffffffffffffffff821115613f8b57613f8a613ef5565b5b613f9482613b8d565b9050602081019050919050565b82818337600083830152505050565b6000613fc3613fbe84613f70565b613f55565b905082815260208101848484011115613fdf57613fde613ef0565b5b613fea848285613fa1565b509392505050565b600082601f83011261400757614006613eeb565b5b8135614017848260208601613fb0565b91505092915050565b60008060006060848603121561403957614038613a91565b5b600084013567ffffffffffffffff81111561405757614056613a96565b5b61406386828701613ff2565b935050602084013567ffffffffffffffff81111561408457614083613a96565b5b61409086828701613ff2565b92505060406140a186828701613abc565b9150509250925092565b600080604083850312156140c2576140c1613a91565b5b60006140d085828601613c42565b92505060206140e185828601613c42565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061412582613a9b565b915061413083613a9b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614165576141646140eb565b5b828201905092915050565b600061417b82613a9b565b915061418683613a9b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141bf576141be6140eb565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061420482613a9b565b915061420f83613a9b565b92508261421f5761421e6141ca565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061427157607f821691505b6020821081036142845761428361422a565b5b50919050565b600081905092915050565b50565b60006142a560008361428a565b91506142b082614295565b600082019050919050565b60006142c682614298565b9150819050919050565b7f5465616d20686173207265766f6b656420626c61636b6c69737420726967687460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061432c602183613b49565b9150614337826142d0565b604082019050919050565b6000602082019050818103600083015261435b8161431f565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460008201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b60006143be602e83613b49565b91506143c982614362565b604082019050919050565b600060208201905081810360008301526143ed816143b1565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614450603983613b49565b915061445b826143f4565b604082019050919050565b6000602082019050818103600083015261447f81614443565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006144e2602583613b49565b91506144ed82614486565b604082019050919050565b60006020820190508181036000830152614511816144d5565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261457a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261453d565b614584868361453d565b95508019841693508086168417925050509392505050565b60006145b76145b26145ad84613a9b565b613cfa565b613a9b565b9050919050565b6000819050919050565b6145d18361459c565b6145e56145dd826145be565b84845461454a565b825550505050565b600090565b6145fa6145ed565b6146058184846145c8565b505050565b5b818110156146295761461e6000826145f2565b60018101905061460b565b5050565b601f82111561466e5761463f81614518565b6146488461452d565b81016020851015614657578190505b61466b6146638561452d565b83018261460a565b50505b505050565b600082821c905092915050565b600061469160001984600802614673565b1980831691505092915050565b60006146aa8383614680565b9150826002028217905092915050565b6146c382613b3e565b67ffffffffffffffff8111156146dc576146db613ef5565b5b6146e68254614259565b6146f182828561462d565b600060209050601f8311600181146147245760008415614712578287015190505b61471c858261469e565b865550614784565b601f19841661473286614518565b60005b8281101561475a57848901518255600182019150602085019450602081019050614735565b868310156147775784890151614773601f891682614680565b8355505b6001600288020188555050505b505050505050565b60008151905061479b81613c2b565b92915050565b6000602082840312156147b7576147b6613a91565b5b60006147c58482850161478c565b91505092915050565b60006040820190506147e36000830185613e5d565b6147f06020830184613e5d565b9392505050565b600061480282613a9b565b915061480d83613a9b565b9250828210156148205761481f6140eb565b5b828203905092915050565b6000819050919050565b600061485061484b6148468461482b565b613cfa565b613a9b565b9050919050565b61486081614835565b82525050565b600060c08201905061487b6000830189613e5d565b6148886020830188613d74565b6148956040830187614857565b6148a26060830186614857565b6148af6080830185613e5d565b6148bc60a0830184613d74565b979650505050505050565b6000815190506148d681613aa5565b92915050565b6000806000606084860312156148f5576148f4613a91565b5b6000614903868287016148c7565b9350506020614914868287016148c7565b9250506040614925868287016148c7565b9150509250925092565b60006040820190506149446000830185613e5d565b6149516020830184613d74565b9392505050565b60008151905061496781613d9e565b92915050565b60006020828403121561498357614982613a91565b5b600061499184828501614958565b91505092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006149f6603583613b49565b9150614a018261499a565b604082019050919050565b60006020820190508181036000830152614a25816149e9565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20342520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000614a88603283613b49565b9150614a9382614a2c565b604082019050919050565b60006020820190508181036000830152614ab781614a7b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b1a602683613b49565b9150614b2582614abe565b604082019050919050565b60006020820190508181036000830152614b4981614b0d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b86602083613b49565b9150614b9182614b50565b602082019050919050565b60006020820190508181036000830152614bb581614b79565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614c18602483613b49565b9150614c2382614bbc565b604082019050919050565b60006020820190508181036000830152614c4781614c0b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614caa602283613b49565b9150614cb582614c4e565b604082019050919050565b60006020820190508181036000830152614cd981614c9d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614d16601d83613b49565b9150614d2182614ce0565b602082019050919050565b60006020820190508181036000830152614d4581614d09565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614da8602583613b49565b9150614db382614d4c565b604082019050919050565b60006020820190508181036000830152614dd781614d9b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614e3a602383613b49565b9150614e4582614dde565b604082019050919050565b60006020820190508181036000830152614e6981614e2d565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000614ea6600b83613b49565b9150614eb182614e70565b602082019050919050565b60006020820190508181036000830152614ed581614e99565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614f12601683613b49565b9150614f1d82614edc565b602082019050919050565b60006020820190508181036000830152614f4181614f05565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614fa4603583613b49565b9150614faf82614f48565b604082019050919050565b60006020820190508181036000830152614fd381614f97565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615010601383613b49565b915061501b82614fda565b602082019050919050565b6000602082019050818103600083015261503f81615003565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006150a2603683613b49565b91506150ad82615046565b604082019050919050565b600060208201905081810360008301526150d181615095565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61513c81613c19565b82525050565b600061514e8383615133565b60208301905092915050565b6000602082019050919050565b600061517282615107565b61517c8185615112565b935061518783615123565b8060005b838110156151b857815161519f8882615142565b97506151aa8361515a565b92505060018101905061518b565b5085935050505092915050565b600060a0820190506151da6000830188613d74565b6151e76020830187614857565b81810360408301526151f98186615167565b90506152086060830185613e5d565b6152156080830184613d74565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061527b602683613b49565b91506152868261521f565b604082019050919050565b600060208201905081810360008301526152aa8161526e565b9050919050565b60006060820190506152c66000830186613d74565b6152d36020830185613d74565b6152e06040830184613d74565b94935050505056fea26469706673582212206b376b09d99024f506caf2d4d926ba4c9d21171c5477ab0a02523d727e8129d364736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106103bc5760003560e01c80636ddd1713116101f2578063aca0359f1161010d578063d85ba063116100a0578063f11a24d31161006f578063f11a24d314610e0b578063f2fde38b14610e36578063f637434214610e5f578063f8b45b0514610e8a576103c3565b8063d85ba06314610d61578063dd62ed3e14610d8c578063e2f4560514610dc9578063ec7fa51114610df4576103c3565b8063c0246668116100dc578063c024666814610ca5578063c8c8ebe414610cce578063d257b34f14610cf9578063d798cbd214610d36576103c3565b8063aca0359f14610be9578063b104b32114610c14578063b62496f514610c3d578063bbc0c74214610c7a576103c3565b80639371897611610185578063a2ec185311610154578063a2ec185314610b1b578063a457c2d714610b46578063a9059cbb14610b83578063aacebbe314610bc0576103c3565b80639371897614610a8757806395d89b4114610a9e5780639a7a23d614610ac95780639fd8234e14610af2576103c3565b80638da5cb5b116101c15780638da5cb5b146109df5780639083497014610a0a5780639213691314610a33578063924de9b714610a5e576103c3565b80636ddd17131461093557806370a0823114610960578063715018a61461099d5780637bce5a04146109b4576103c3565b8063313ce567116102e2578063421f715a11610275578063563df32f11610244578063563df32f1461089f5780635f189361146108ca57806369921a40146108e15780636a486a8e1461090a576103c3565b8063421f715a146107e157806349bd5a5e1461080c5780634a62bb65146108375780634fbee19314610862576103c3565b806339509351116102b157806339509351146107395780633dc599ff146107765780634013fc88146107a1578063404e5129146107b8576103c3565b8063313ce5671461068d578063320a4859146106b85780633268cc56146106e357806333defeae1461070e576103c3565b806318160ddd1161035a57806321d9f2ca1161032957806321d9f2ca146105d1578063232050f9146105fa57806323b872dd1461062557806327c8f83514610662576103c3565b806318160ddd146105275780631a8145bb146105525780631c499ab01461057d5780631f3fed8f146105a6576103c3565b8063095ea7b311610396578063095ea7b31461044557806310d5de53146104825780631694505e146104bf57806316c02129146104ea576103c3565b8063036958a2146103c85780630517d13d146103f157806306fdde031461041a576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103ef60048036038101906103ea9190613ad1565b610eb5565b005b3480156103fd57600080fd5b5061041860048036038101906104139190613b11565b610ef5565b005b34801561042657600080fd5b5061042f610f5a565b60405161043c9190613bd7565b60405180910390f35b34801561045157600080fd5b5061046c60048036038101906104679190613c57565b610fec565b6040516104799190613cb2565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190613ccd565b61100f565b6040516104b69190613cb2565b60405180910390f35b3480156104cb57600080fd5b506104d461102f565b6040516104e19190613d59565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190613ccd565b611055565b60405161051e9190613cb2565b60405180910390f35b34801561053357600080fd5b5061053c611075565b6040516105499190613d83565b60405180910390f35b34801561055e57600080fd5b5061056761107f565b6040516105749190613d83565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f9190613b11565b611085565b005b3480156105b257600080fd5b506105bb6110ea565b6040516105c89190613d83565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f39190613dca565b6110f0565b005b34801561060657600080fd5b5061060f611153565b60405161061c9190613cb2565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190613e0a565b61117f565b6040516106599190613cb2565b60405180910390f35b34801561066e57600080fd5b506106776111ae565b6040516106849190613e6c565b60405180910390f35b34801561069957600080fd5b506106a26111b4565b6040516106af9190613ea3565b60405180910390f35b3480156106c457600080fd5b506106cd6111bd565b6040516106da9190613d83565b60405180910390f35b3480156106ef57600080fd5b506106f86111c3565b6040516107059190613e6c565b60405180910390f35b34801561071a57600080fd5b506107236111e9565b6040516107309190613d83565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b9190613c57565b6111ef565b60405161076d9190613cb2565b60405180910390f35b34801561078257600080fd5b5061078b611226565b6040516107989190613cb2565b60405180910390f35b3480156107ad57600080fd5b506107b6611239565b005b3480156107c457600080fd5b506107df60048036038101906107da9190613dca565b6112d4565b005b3480156107ed57600080fd5b506107f66114a7565b6040516108039190613d83565b60405180910390f35b34801561081857600080fd5b506108216114ad565b60405161082e9190613e6c565b60405180910390f35b34801561084357600080fd5b5061084c6114d3565b6040516108599190613cb2565b60405180910390f35b34801561086e57600080fd5b5061088960048036038101906108849190613ccd565b6114e6565b6040516108969190613cb2565b60405180910390f35b3480156108ab57600080fd5b506108b461153c565b6040516108c19190613e6c565b60405180910390f35b3480156108d657600080fd5b506108df611562565b005b3480156108ed57600080fd5b5061090860048036038101906109039190613dca565b611587565b005b34801561091657600080fd5b5061091f6115ea565b60405161092c9190613d83565b60405180910390f35b34801561094157600080fd5b5061094a6115f0565b6040516109579190613cb2565b60405180910390f35b34801561096c57600080fd5b5061098760048036038101906109829190613ccd565b611603565b6040516109949190613d83565b60405180910390f35b3480156109a957600080fd5b506109b261164b565b005b3480156109c057600080fd5b506109c961165f565b6040516109d69190613d83565b60405180910390f35b3480156109eb57600080fd5b506109f4611665565b604051610a019190613e6c565b60405180910390f35b348015610a1657600080fd5b50610a316004803603810190610a2c9190613ebe565b61168f565b005b348015610a3f57600080fd5b50610a486116b4565b604051610a559190613d83565b60405180910390f35b348015610a6a57600080fd5b50610a856004803603810190610a809190613ebe565b6116ba565b005b348015610a9357600080fd5b50610a9c6116df565b005b348015610aaa57600080fd5b50610ab361178b565b604051610ac09190613bd7565b60405180910390f35b348015610ad557600080fd5b50610af06004803603810190610aeb9190613dca565b61181d565b005b348015610afe57600080fd5b50610b196004803603810190610b149190613ad1565b6118c3565b005b348015610b2757600080fd5b50610b30611903565b604051610b3d9190613d83565b60405180910390f35b348015610b5257600080fd5b50610b6d6004803603810190610b689190613c57565b611909565b604051610b7a9190613cb2565b60405180910390f35b348015610b8f57600080fd5b50610baa6004803603810190610ba59190613c57565b611980565b604051610bb79190613cb2565b60405180910390f35b348015610bcc57600080fd5b50610be76004803603810190610be29190613ccd565b6119a3565b005b348015610bf557600080fd5b50610bfe611a6b565b604051610c0b9190613cb2565b60405180910390f35b348015610c2057600080fd5b50610c3b6004803603810190610c369190614020565b611a7e565b005b348015610c4957600080fd5b50610c646004803603810190610c5f9190613ccd565b611f62565b604051610c719190613cb2565b60405180910390f35b348015610c8657600080fd5b50610c8f611f81565b604051610c9c9190613cb2565b60405180910390f35b348015610cb157600080fd5b50610ccc6004803603810190610cc79190613dca565b611f94565b005b348015610cda57600080fd5b50610ce3611ff8565b604051610cf09190613d83565b60405180910390f35b348015610d0557600080fd5b50610d206004803603810190610d1b9190613b11565b611ffe565b604051610d2d9190613cb2565b60405180910390f35b348015610d4257600080fd5b50610d4b6120de565b604051610d589190613d83565b60405180910390f35b348015610d6d57600080fd5b50610d766120e4565b604051610d839190613d83565b60405180910390f35b348015610d9857600080fd5b50610db36004803603810190610dae91906140ab565b6120ea565b604051610dc09190613d83565b60405180910390f35b348015610dd557600080fd5b50610dde612171565b604051610deb9190613d83565b60405180910390f35b348015610e0057600080fd5b50610e09612177565b005b348015610e1757600080fd5b50610e2061219c565b604051610e2d9190613d83565b60405180910390f35b348015610e4257600080fd5b50610e5d6004803603810190610e589190613ccd565b6121a2565b005b348015610e6b57600080fd5b50610e74612225565b604051610e819190613d83565b60405180910390f35b348015610e9657600080fd5b50610e9f61222b565b604051610eac9190613d83565b60405180910390f35b610ebd612231565b8160118190555080601381905550601354601154610edb919061411a565b601081905550601e6010541115610ef157600080fd5b5050565b610efd612231565b670de0b6b3a76400006103e86001610f13611075565b610f1d9190614170565b610f2791906141f9565b610f3191906141f9565b811015610f3d57600080fd5b670de0b6b3a764000081610f519190614170565b600d8190555050565b606060038054610f6990614259565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9590614259565b8015610fe25780601f10610fb757610100808354040283529160200191610fe2565b820191906000526020600020905b815481529060010190602001808311610fc557829003601f168201915b5050505050905090565b600080610ff76122af565b90506110048185856122b7565b600191505092915050565b600c6020528060005260406000206000915054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601f6020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b60185481565b61108d612231565b670de0b6b3a76400006103e860016110a3611075565b6110ad9190614170565b6110b791906141f9565b6110c191906141f9565b8110156110cd57600080fd5b670de0b6b3a7640000816110e19190614170565b600e8190555050565b60175481565b6110f8612231565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600061115d612231565b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60008061118a6122af565b9050611197858285612480565b6111a285858561250c565b60019150509392505050565b61dead81565b60006012905090565b60195481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601c5481565b6000806111fa6122af565b905061121b81858561120c85896120ea565b611216919061411a565b6122b7565b600191505092915050565b600f60019054906101000a900460ff1681565b611241612231565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611289906142bb565b60006040518083038185875af1925050503d80600081146112c6576040519150601f19603f3d011682016040523d82523d6000602084013e6112cb565b606091505b50508091505050565b6112dc612231565b600f60019054906101000a900460ff161561132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390614342565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b3906143d4565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361144c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611443906143d4565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60125481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900460ff1681565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61156a612231565b6001600f60016101000a81548160ff021916908315150217905550565b61158f612231565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60145481565b600b60009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611653612231565b61165d6000613101565b565b60115481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611697612231565b80600f60026101000a81548160ff02191690831515021790555050565b60155481565b6116c2612231565b80600b60006101000a81548160ff02191690831515021790555050565b6116e7612231565b60006116fa6116f530611603565b6131c7565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611740906142bb565b60006040518083038185875af1925050503d806000811461177d576040519150601f19603f3d011682016040523d82523d6000602084013e611782565b606091505b50508091505050565b60606004805461179a90614259565b80601f01602080910402602001604051908101604052809291908181526020018280546117c690614259565b80156118135780601f106117e857610100808354040283529160200191611813565b820191906000526020600020905b8154815290600101906020018083116117f657829003601f168201915b5050505050905090565b611825612231565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac90614466565b60405180910390fd5b6118bf828261340a565b5050565b6118cb612231565b81601581905550806016819055506016546015546118e9919061411a565b601481905550601e60145411156118ff57600080fd5b5050565b601d5481565b6000806119146122af565b9050600061192282866120ea565b905083811015611967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195e906144f8565b60405180910390fd5b61197482868684036122b7565b60019250505092915050565b60008061198b6122af565b905061199881858561250c565b600191505092915050565b6119ab612231565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f60029054906101000a900460ff1681565b611a86612231565b600660149054906101000a900460ff1615611aa057600080fd5b8260039081611aaf91906146ba565b508160049081611abf91906146ba565b50611af430600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611aef611075565b6122b7565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b8591906147a1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c3291906147a1565b6040518363ffffffff1660e01b8152600401611c4f9291906147ce565b6020604051808303816000875af1158015611c6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c9291906147a1565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611cff600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016110f0565b600160206000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71947306064856064611dc891906147f7565b611dd130611603565b611ddb9190614170565b611de591906141f9565b600080611df0611665565b426040518863ffffffff1660e01b8152600401611e1296959493929190614866565b60606040518083038185885af1158015611e30573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e5591906148dc565b505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401611ef792919061492f565b6020604051808303816000875af1158015611f16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f3a919061496d565b5043601e819055506001600660146101000a81548160ff021916908315150217905550505050565b602080528060005260406000206000915054906101000a900460ff1681565b600660149054906101000a900460ff1681565b611f9c612231565b611fa68282611587565b8173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fec9190613cb2565b60405180910390a25050565b600d5481565b6000612008612231565b620186a06001612016611075565b6120209190614170565b61202a91906141f9565b82101561206c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206390614a0c565b60405180910390fd5b60646004612078611075565b6120829190614170565b61208c91906141f9565b8211156120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c590614a9e565b60405180910390fd5b81600a8190555060019050919050565b601e5481565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b61217f612231565b6000601b60006101000a81548160ff021916908315150217905550565b60135481565b6121aa612231565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612219576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221090614b30565b60405180910390fd5b61222281613101565b50565b60165481565b600e5481565b6122396122af565b73ffffffffffffffffffffffffffffffffffffffff16612257611665565b73ffffffffffffffffffffffffffffffffffffffff16146122ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a490614b9c565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231d90614c2e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c90614cc0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124739190613d83565b60405180910390a3505050565b600061248c84846120ea565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461250657818110156124f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ef90614d2c565b60405180910390fd5b61250584848484036122b7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361257b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257290614dbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e190614e50565b60405180910390fd5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266e90614ebc565b60405180910390fd5b600081036126905761268b838360006134ab565b6130fc565b600f60009054906101000a900460ff1615612c63576126ad611665565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561271b57506126eb611665565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127345750600860149054906101000a900460ff16155b801561276d5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127a7575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612c6257600660149054906101000a900460ff166128a157601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128615750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6128a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289790614f28565b60405180910390fd5b5b6000600d5490506000601e54436128b891906147f7565b9050600a811080156128d65750601b60009054906101000a900460ff165b80156128e457506002601d54115b1561297b576000810361291957612710607d6128fe611075565b6129089190614170565b61291291906141f9565b915061297a565b600881111561294a57612710606461292f611075565b6129399190614170565b61294391906141f9565b9150612979565b612710600a8261295a9190614170565b612962611075565b61296c9190614170565b61297691906141f9565b91505b5b5b602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a1e5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ac35781831115612a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5d90614fba565b60405180910390fd5b600e54612a7285611603565b84612a7d919061411a565b1115612abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab590615026565b60405180910390fd5b612c5f565b602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b665750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bb35781831115612bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba5906150b8565b60405180910390fd5b612c5e565b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612c5d57600e54612c1085611603565b84612c1b919061411a565b1115612c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5390615026565b60405180910390fd5b5b5b5b50505b5b6000612c6e30611603565b90506000600a548210159050808015612c935750600b60009054906101000a900460ff165b8015612cac5750600860149054906101000a900460ff16155b8015612d025750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d585750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612dae5750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612df3576001600860146101000a81548160ff021916908315150217905550612dd783613721565b6000600860146101000a81548160ff0219169083151502179055505b6000600860149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ea95750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612eb357600090505b600081156130c657602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f1657506000601454115b15612fb057612f436064612f356014548861393b90919063ffffffff16565b61395190919063ffffffff16565b905060145460165482612f569190614170565b612f6091906141f9565b60186000828254612f71919061411a565b9250508190555060145460155482612f899190614170565b612f9391906141f9565b60176000828254612fa4919061411a565b925050819055506130a2565b602060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561300b57506000601054115b156130a157613038606461302a6010548861393b90919063ffffffff16565b61395190919063ffffffff16565b90506010546013548261304b9190614170565b61305591906141f9565b60186000828254613066919061411a565b925050819055506010546011548261307e9190614170565b61308891906141f9565b60176000828254613099919061411a565b925050819055505b5b60008111156130b7576130b68730836134ab565b5b80856130c391906147f7565b94505b600a601d5410156130ec576001601d60008282546130e4919061411a565b925050819055505b6130f78787876134ab565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff8111156131e4576131e3613ef5565b5b6040519080825280602002602001820160405280156132125781602001602082028036833780820191505090505b509050308160008151811061322a576132296150d8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132f591906147a1565b81600181518110613309576133086150d8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061337030600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846122b7565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016133d49594939291906151c5565b600060405180830381600087803b1580156133ee57600080fd5b505af1158015613402573d6000803e3d6000fd5b505050505050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361351a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161351190614dbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161358090614e50565b60405180910390fd5b613594838383613967565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561361a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161361190615291565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516137089190613d83565b60405180910390a361371b84848461396c565b50505050565b600061372c30611603565b90506000601754601854613740919061411a565b90506000808314806137525750600082145b1561375f57505050613938565b600a5483111561376f57600a5492505b600f60029054906101000a900460ff16801561378a57508383115b15613793578392505b6000600283601854866137a69190614170565b6137b091906141f9565b6137ba91906141f9565b905060006137d1828661397190919063ffffffff16565b905060004790506137e1826131c7565b60006137f6824761397190919063ffffffff16565b90506000613821876138136017548561393b90919063ffffffff16565b61395190919063ffffffff16565b90506000818361383191906147f7565b9050600060188190555060006017819055506000861180156138535750600081115b156138a0576138628682613987565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601854604051613897939291906152b1565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516138e6906142bb565b60006040518083038185875af1925050503d8060008114613923576040519150601f19603f3d011682016040523d82523d6000602084013e613928565b606091505b5050809750505050505050505050505b50565b600081836139499190614170565b905092915050565b6000818361395f91906141f9565b905092915050565b505050565b505050565b6000818361397f91906147f7565b905092915050565b6139b430600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846122b7565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613a3d96959493929190614866565b60606040518083038185885af1158015613a5b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613a8091906148dc565b5050505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b613aae81613a9b565b8114613ab957600080fd5b50565b600081359050613acb81613aa5565b92915050565b60008060408385031215613ae857613ae7613a91565b5b6000613af685828601613abc565b9250506020613b0785828601613abc565b9150509250929050565b600060208284031215613b2757613b26613a91565b5b6000613b3584828501613abc565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b78578082015181840152602081019050613b5d565b83811115613b87576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ba982613b3e565b613bb38185613b49565b9350613bc3818560208601613b5a565b613bcc81613b8d565b840191505092915050565b60006020820190508181036000830152613bf18184613b9e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c2482613bf9565b9050919050565b613c3481613c19565b8114613c3f57600080fd5b50565b600081359050613c5181613c2b565b92915050565b60008060408385031215613c6e57613c6d613a91565b5b6000613c7c85828601613c42565b9250506020613c8d85828601613abc565b9150509250929050565b60008115159050919050565b613cac81613c97565b82525050565b6000602082019050613cc76000830184613ca3565b92915050565b600060208284031215613ce357613ce2613a91565b5b6000613cf184828501613c42565b91505092915050565b6000819050919050565b6000613d1f613d1a613d1584613bf9565b613cfa565b613bf9565b9050919050565b6000613d3182613d04565b9050919050565b6000613d4382613d26565b9050919050565b613d5381613d38565b82525050565b6000602082019050613d6e6000830184613d4a565b92915050565b613d7d81613a9b565b82525050565b6000602082019050613d986000830184613d74565b92915050565b613da781613c97565b8114613db257600080fd5b50565b600081359050613dc481613d9e565b92915050565b60008060408385031215613de157613de0613a91565b5b6000613def85828601613c42565b9250506020613e0085828601613db5565b9150509250929050565b600080600060608486031215613e2357613e22613a91565b5b6000613e3186828701613c42565b9350506020613e4286828701613c42565b9250506040613e5386828701613abc565b9150509250925092565b613e6681613c19565b82525050565b6000602082019050613e816000830184613e5d565b92915050565b600060ff82169050919050565b613e9d81613e87565b82525050565b6000602082019050613eb86000830184613e94565b92915050565b600060208284031215613ed457613ed3613a91565b5b6000613ee284828501613db5565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f2d82613b8d565b810181811067ffffffffffffffff82111715613f4c57613f4b613ef5565b5b80604052505050565b6000613f5f613a87565b9050613f6b8282613f24565b919050565b600067ffffffffffffffff821115613f8b57613f8a613ef5565b5b613f9482613b8d565b9050602081019050919050565b82818337600083830152505050565b6000613fc3613fbe84613f70565b613f55565b905082815260208101848484011115613fdf57613fde613ef0565b5b613fea848285613fa1565b509392505050565b600082601f83011261400757614006613eeb565b5b8135614017848260208601613fb0565b91505092915050565b60008060006060848603121561403957614038613a91565b5b600084013567ffffffffffffffff81111561405757614056613a96565b5b61406386828701613ff2565b935050602084013567ffffffffffffffff81111561408457614083613a96565b5b61409086828701613ff2565b92505060406140a186828701613abc565b9150509250925092565b600080604083850312156140c2576140c1613a91565b5b60006140d085828601613c42565b92505060206140e185828601613c42565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061412582613a9b565b915061413083613a9b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614165576141646140eb565b5b828201905092915050565b600061417b82613a9b565b915061418683613a9b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141bf576141be6140eb565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061420482613a9b565b915061420f83613a9b565b92508261421f5761421e6141ca565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061427157607f821691505b6020821081036142845761428361422a565b5b50919050565b600081905092915050565b50565b60006142a560008361428a565b91506142b082614295565b600082019050919050565b60006142c682614298565b9150819050919050565b7f5465616d20686173207265766f6b656420626c61636b6c69737420726967687460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061432c602183613b49565b9150614337826142d0565b604082019050919050565b6000602082019050818103600083015261435b8161431f565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460008201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b60006143be602e83613b49565b91506143c982614362565b604082019050919050565b600060208201905081810360008301526143ed816143b1565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614450603983613b49565b915061445b826143f4565b604082019050919050565b6000602082019050818103600083015261447f81614443565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006144e2602583613b49565b91506144ed82614486565b604082019050919050565b60006020820190508181036000830152614511816144d5565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261457a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261453d565b614584868361453d565b95508019841693508086168417925050509392505050565b60006145b76145b26145ad84613a9b565b613cfa565b613a9b565b9050919050565b6000819050919050565b6145d18361459c565b6145e56145dd826145be565b84845461454a565b825550505050565b600090565b6145fa6145ed565b6146058184846145c8565b505050565b5b818110156146295761461e6000826145f2565b60018101905061460b565b5050565b601f82111561466e5761463f81614518565b6146488461452d565b81016020851015614657578190505b61466b6146638561452d565b83018261460a565b50505b505050565b600082821c905092915050565b600061469160001984600802614673565b1980831691505092915050565b60006146aa8383614680565b9150826002028217905092915050565b6146c382613b3e565b67ffffffffffffffff8111156146dc576146db613ef5565b5b6146e68254614259565b6146f182828561462d565b600060209050601f8311600181146147245760008415614712578287015190505b61471c858261469e565b865550614784565b601f19841661473286614518565b60005b8281101561475a57848901518255600182019150602085019450602081019050614735565b868310156147775784890151614773601f891682614680565b8355505b6001600288020188555050505b505050505050565b60008151905061479b81613c2b565b92915050565b6000602082840312156147b7576147b6613a91565b5b60006147c58482850161478c565b91505092915050565b60006040820190506147e36000830185613e5d565b6147f06020830184613e5d565b9392505050565b600061480282613a9b565b915061480d83613a9b565b9250828210156148205761481f6140eb565b5b828203905092915050565b6000819050919050565b600061485061484b6148468461482b565b613cfa565b613a9b565b9050919050565b61486081614835565b82525050565b600060c08201905061487b6000830189613e5d565b6148886020830188613d74565b6148956040830187614857565b6148a26060830186614857565b6148af6080830185613e5d565b6148bc60a0830184613d74565b979650505050505050565b6000815190506148d681613aa5565b92915050565b6000806000606084860312156148f5576148f4613a91565b5b6000614903868287016148c7565b9350506020614914868287016148c7565b9250506040614925868287016148c7565b9150509250925092565b60006040820190506149446000830185613e5d565b6149516020830184613d74565b9392505050565b60008151905061496781613d9e565b92915050565b60006020828403121561498357614982613a91565b5b600061499184828501614958565b91505092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006149f6603583613b49565b9150614a018261499a565b604082019050919050565b60006020820190508181036000830152614a25816149e9565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20342520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000614a88603283613b49565b9150614a9382614a2c565b604082019050919050565b60006020820190508181036000830152614ab781614a7b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b1a602683613b49565b9150614b2582614abe565b604082019050919050565b60006020820190508181036000830152614b4981614b0d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b86602083613b49565b9150614b9182614b50565b602082019050919050565b60006020820190508181036000830152614bb581614b79565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614c18602483613b49565b9150614c2382614bbc565b604082019050919050565b60006020820190508181036000830152614c4781614c0b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614caa602283613b49565b9150614cb582614c4e565b604082019050919050565b60006020820190508181036000830152614cd981614c9d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614d16601d83613b49565b9150614d2182614ce0565b602082019050919050565b60006020820190508181036000830152614d4581614d09565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614da8602583613b49565b9150614db382614d4c565b604082019050919050565b60006020820190508181036000830152614dd781614d9b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614e3a602383613b49565b9150614e4582614dde565b604082019050919050565b60006020820190508181036000830152614e6981614e2d565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000614ea6600b83613b49565b9150614eb182614e70565b602082019050919050565b60006020820190508181036000830152614ed581614e99565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614f12601683613b49565b9150614f1d82614edc565b602082019050919050565b60006020820190508181036000830152614f4181614f05565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614fa4603583613b49565b9150614faf82614f48565b604082019050919050565b60006020820190508181036000830152614fd381614f97565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615010601383613b49565b915061501b82614fda565b602082019050919050565b6000602082019050818103600083015261503f81615003565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006150a2603683613b49565b91506150ad82615046565b604082019050919050565b600060208201905081810360008301526150d181615095565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61513c81613c19565b82525050565b600061514e8383615133565b60208301905092915050565b6000602082019050919050565b600061517282615107565b61517c8185615112565b935061518783615123565b8060005b838110156151b857815161519f8882615142565b97506151aa8361515a565b92505060018101905061518b565b5085935050505092915050565b600060a0820190506151da6000830188613d74565b6151e76020830187614857565b81810360408301526151f98186615167565b90506152086060830185613e5d565b6152156080830184613d74565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061527b602683613b49565b91506152868261521f565b604082019050919050565b600060208201905081810360008301526152aa8161526e565b9050919050565b60006060820190506152c66000830186613d74565b6152d36020830185613d74565b6152e06040830184613d74565b94935050505056fea26469706673582212206b376b09d99024f506caf2d4d926ba4c9d21171c5477ab0a02523d727e8129d364736f6c634300080f0033

Deployed Bytecode Sourcemap

34469:15901:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40746:302;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40155:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23299:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25650:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34903:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34683:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35773:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24419:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35472:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40378:199;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35432:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40585:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39429:118;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26431:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34544:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24261:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35512:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34731:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35650:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27135:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35088:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50209:158;;;;;;;;;;;;;:::i;:::-;;46776:419;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35250:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34604:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35046:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42387:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34794:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47201:90;;;;;;;;;;;;;:::i;:::-;;41370:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35321:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34864:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24590:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2539:103;;;;;;;;;;;;;:::i;:::-;;35213:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1891:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47407:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35356:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40047:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49990:211;;;;;;;;;;;;;:::i;:::-;;23518:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41697:296;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41056:306;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35699:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27876:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24923:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42197:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35133:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38508:911;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35824:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34639:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41511:178;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34973:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39557:482;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35732:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35179:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25179:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34824:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47297:102;;;;;;;;;;;;;:::i;:::-;;35284:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2797:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35394:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35015:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40746:302;1777:13;:11;:13::i;:::-;40888::::1;40870:15;:31;;;;40930:13;40912:15;:31;;;;40987:15;;40969;;:33;;;;:::i;:::-;40954:12;:48;;;;41037:2;41021:12;;:18;;41013:27;;;::::0;::::1;;40746:302:::0;;:::o;40155:215::-;1777:13;:11;:13::i;:::-;40294:4:::1;40286;40281:1;40265:13;:11;:13::i;:::-;:17;;;;:::i;:::-;40264:26;;;;:::i;:::-;40263:35;;;;:::i;:::-;40253:6;:45;;40231:78;;;::::0;::::1;;40353:8;40343:6;:19;;;;:::i;:::-;40320:20;:42;;;;40155:215:::0;:::o;23299:100::-;23353:13;23386:5;23379:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23299:100;:::o;25650:201::-;25733:4;25750:13;25766:12;:10;:12::i;:::-;25750:28;;25789:32;25798:5;25805:7;25814:6;25789:8;:32::i;:::-;25839:4;25832:11;;;25650:201;;;;:::o;34903:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;34683:41::-;;;;;;;;;;;;;:::o;35773:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;24419:108::-;24480:7;24507:12;;24500:19;;24419:108;:::o;35472:33::-;;;;:::o;40378:199::-;1777:13;:11;:13::i;:::-;40512:4:::1;40504;40499:1;40483:13;:11;:13::i;:::-;:17;;;;:::i;:::-;40482:26;;;;:::i;:::-;40481:35;;;;:::i;:::-;40471:6;:45;;40449:78;;;::::0;::::1;;40560:8;40550:6;:19;;;;:::i;:::-;40538:9;:31;;;;40378:199:::0;:::o;35432:33::-;;;;:::o;40585:153::-;1777:13;:11;:13::i;:::-;40726:4:::1;40684:31;:39;40716:6;40684:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;40585:153:::0;;:::o;39429:118::-;39478:4;1777:13;:11;:13::i;:::-;39512:5:::1;39495:14;;:22;;;;;;;;;;;;;;;;;;39535:4;39528:11;;39429:118:::0;:::o;26431:295::-;26562:4;26579:15;26597:12;:10;:12::i;:::-;26579:30;;26620:38;26636:4;26642:7;26651:6;26620:15;:38::i;:::-;26669:27;26679:4;26685:2;26689:6;26669:9;:27::i;:::-;26714:4;26707:11;;;26431:295;;;;;:::o;34544:53::-;34590:6;34544:53;:::o;24261:93::-;24319:5;24344:2;24337:9;;24261:93;:::o;35512:27::-;;;;:::o;34731:28::-;;;;;;;;;;;;;:::o;35650:42::-;;;;:::o;27135:238::-;27223:4;27240:13;27256:12;:10;:12::i;:::-;27240:28;;27279:64;27288:5;27295:7;27332:10;27304:25;27314:5;27321:7;27304:9;:25::i;:::-;:38;;;;:::i;:::-;27279:8;:64::i;:::-;27361:4;27354:11;;;27135:238;;;;:::o;35088:38::-;;;;;;;;;;;;;:::o;50209:158::-;1777:13;:11;:13::i;:::-;50266:12:::1;50310:8;;;;;;;;;;;50302:22;;50333:21;50302:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50289:70;;;;;50255:112;50209:158::o:0;46776:419::-;1777:13;:11;:13::i;:::-;46874:18:::1;;;;;;;;;;;46873:19;46865:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;46969:13;;;;;;;;;;;46949:34;;:8;:34;;::::0;46941:92:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;47072:13;;;;;;;;;;;47052:34;;:8;:34;;::::0;47044:92:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;47172:15;47149:10;:20;47160:8;47149:20;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;46776:419:::0;;:::o;35250:27::-;;;;:::o;34604:28::-;;;;;;;;;;;;;:::o;35046:33::-;;;;;;;;;;;;;:::o;42387:126::-;42453:4;42477:19;:28;42497:7;42477:28;;;;;;;;;;;;;;;;;;;;;;;;;42470:35;;42387:126;;;:::o;34794:23::-;;;;;;;;;;;;;:::o;47201:90::-;1777:13;:11;:13::i;:::-;47279:4:::1;47258:18;;:25;;;;;;;;;;;;;;;;;;47201:90::o:0;41370:133::-;1777:13;:11;:13::i;:::-;41487:8:::1;41456:19;:28;41476:7;41456:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41370:133:::0;;:::o;35321:28::-;;;;:::o;34864:30::-;;;;;;;;;;;;;:::o;24590:127::-;24664:7;24691:9;:18;24701:7;24691:18;;;;;;;;;;;;;;;;24684:25;;24590:127;;;:::o;2539:103::-;1777:13;:11;:13::i;:::-;2604:30:::1;2631:1;2604:18;:30::i;:::-;2539:103::o:0;35213:30::-;;;;:::o;1891:87::-;1937:7;1964:6;;;;;;;;;;;1957:13;;1891:87;:::o;47407:106::-;1777:13;:11;:13::i;:::-;47499:6:::1;47480:16;;:25;;;;;;;;;;;;;;;;;;47407:106:::0;:::o;35356:31::-;;;;:::o;40047:100::-;1777:13;:11;:13::i;:::-;40132:7:::1;40118:11;;:21;;;;;;;;;;;;;;;;;;40047:100:::0;:::o;49990:211::-;1777:13;:11;:13::i;:::-;50047:12:::1;50070:42;50087:24;50105:4;50087:9;:24::i;:::-;50070:16;:42::i;:::-;50144:8;;;;;;;;;;;50136:22;;50167:21;50136:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50123:70;;;;;50036:165;49990:211::o:0;23518:104::-;23574:13;23607:7;23600:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23518:104;:::o;41697:296::-;1777:13;:11;:13::i;:::-;41833::::1;;;;;;;;;;;41825:21;;:4;:21;;::::0;41803:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;41944:41;41973:4;41979:5;41944:28;:41::i;:::-;41697:296:::0;;:::o;41056:306::-;1777:13;:11;:13::i;:::-;41197::::1;41178:16;:32;;;;41240:13;41221:16;:32;;;;41299:16;;41280;;:35;;;;:::i;:::-;41264:13;:51;;;;41351:2;41334:13;;:19;;41326:28;;;::::0;::::1;;41056:306:::0;;:::o;35699:26::-;;;;:::o;27876:436::-;27969:4;27986:13;28002:12;:10;:12::i;:::-;27986:28;;28025:24;28052:25;28062:5;28069:7;28052:9;:25::i;:::-;28025:52;;28116:15;28096:16;:35;;28088:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;28209:60;28218:5;28225:7;28253:15;28234:16;:34;28209:8;:60::i;:::-;28300:4;28293:11;;;;27876:436;;;;:::o;24923:193::-;25002:4;25019:13;25035:12;:10;:12::i;:::-;25019:28;;25058;25068:5;25075:2;25079:6;25058:9;:28::i;:::-;25104:4;25097:11;;;24923:193;;;;:::o;42197:182::-;1777:13;:11;:13::i;:::-;42331:8:::1;;;;;;;;;;;42297:43;;42320:9;42297:43;;;;;;;;;;;;42362:9;42351:8;;:20;;;;;;;;;;;;;;;;;;42197:182:::0;:::o;35133:35::-;;;;;;;;;;;;;:::o;38508:911::-;1777:13;:11;:13::i;:::-;38623::::1;;;;;;;;;;;38622:14;38614:23;;;::::0;::::1;;38656:4;38648:5;:12;;;;;;:::i;:::-;;38681:6;38671:7;:16;;;;;;:::i;:::-;;38698:64;38715:4;38730:15;;;;;;;;;;;38748:13;:11;:13::i;:::-;38698:8;:64::i;:::-;38807:15;;;;;;;;;;;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38789:55;;;38853:4;38860:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38789:94;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38773:13;;:110;;;;;;;;;;;;;;;;;;38894:49;38922:13;;;;;;;;;;;38938:4;38894:19;:49::i;:::-;38997:4;38954:25;:40;38980:13;;;;;;;;;;;38954:40;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;39012:15;;;;;;;;;;;:31;;;39053:21;39099:4;39167:3;39153:10;39147:3;:16;;;;:::i;:::-;39119:24;39137:4;39119:9;:24::i;:::-;:45;;;;:::i;:::-;:51;;;;:::i;:::-;39185:1;39201::::0;39217:7:::1;:5;:7::i;:::-;39239:15;39012:243;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;39273:13;;;;;;;;;;;39266:29;;;39304:15;;;;;;;;;;;39322:14;39266:71;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39368:12;39348:17;:32;;;;39407:4;39391:13;;:20;;;;;;;;;;;;;;;;;;38508:911:::0;;;:::o;35824:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;34639:33::-;;;;;;;;;;;;;:::o;41511:178::-;1777:13;:11;:13::i;:::-;41596:35:::1;41613:7;41622:8;41596:16;:35::i;:::-;41663:7;41647:34;;;41672:8;41647:34;;;;;;:::i;:::-;;;;;;;;41511:178:::0;;:::o;34973:35::-;;;;:::o;39557:482::-;39653:4;1777:13;:11;:13::i;:::-;39732:6:::1;39727:1;39711:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39710:28;;;;:::i;:::-;39697:9;:41;;39675:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;39887:3;39882:1;39866:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39865:25;;;;:::i;:::-;39852:9;:38;;39830:138;;;;;;;;;;;;:::i;:::-;;;;;;;;;40000:9;39979:18;:30;;;;40027:4;40020:11;;39557:482:::0;;;:::o;35732:32::-;;;;:::o;35179:27::-;;;;:::o;25179:151::-;25268:7;25295:11;:18;25307:5;25295:18;;;;;;;;;;;;;;;:27;25314:7;25295:27;;;;;;;;;;;;;;;;25288:34;;25179:151;;;;:::o;34824:33::-;;;;:::o;47297:102::-;1777:13;:11;:13::i;:::-;47386:5:::1;47359:24;;:32;;;;;;;;;;;;;;;;;;47297:102::o:0;35284:30::-;;;;:::o;2797:201::-;1777:13;:11;:13::i;:::-;2906:1:::1;2886:22;;:8;:22;;::::0;2878:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2962:28;2981:8;2962:18;:28::i;:::-;2797:201:::0;:::o;35394:31::-;;;;:::o;35015:24::-;;;;:::o;2056:132::-;2131:12;:10;:12::i;:::-;2120:23;;:7;:5;:7::i;:::-;:23;;;2112:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2056:132::o;600:98::-;653:7;680:10;673:17;;600:98;:::o;31885:380::-;32038:1;32021:19;;:5;:19;;;32013:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32119:1;32100:21;;:7;:21;;;32092:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32203:6;32173:11;:18;32185:5;32173:18;;;;;;;;;;;;;;;:27;32192:7;32173:27;;;;;;;;;;;;;;;:36;;;;32241:7;32225:32;;32234:5;32225:32;;;32250:6;32225:32;;;;;;:::i;:::-;;;;;;;;31885:380;;;:::o;32556:453::-;32691:24;32718:25;32728:5;32735:7;32718:9;:25::i;:::-;32691:52;;32778:17;32758:16;:37;32754:248;;32840:6;32820:16;:26;;32812:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32924:51;32933:5;32940:7;32968:6;32949:16;:25;32924:8;:51::i;:::-;32754:248;32680:329;32556:453;;;:::o;42523:4245::-;42671:1;42655:18;;:4;:18;;;42647:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42748:1;42734:16;;:2;:16;;;42726:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42810:10;:16;42821:4;42810:16;;;;;;;;;;;;;;;;;;;;;;;;;42809:17;42801:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;42867:1;42857:6;:11;42853:93;;42885:28;42901:4;42907:2;42911:1;42885:15;:28::i;:::-;42928:7;;42853:93;42962:14;;;;;;;;;;;42958:2236;;;43023:7;:5;:7::i;:::-;43015:15;;:4;:15;;;;:49;;;;;43057:7;:5;:7::i;:::-;43051:13;;:2;:13;;;;43015:49;:79;;;;;43086:8;;;;;;;;;;;43085:9;43015:79;:116;;;;;43129:1;43115:16;;:2;:16;;;;43015:116;:158;;;;;43166:6;43152:21;;:2;:21;;;;43015:158;42993:2190;;;43215:13;;;;;;;;;;;43210:223;;43287:19;:25;43307:4;43287:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;43316:19;:23;43336:2;43316:23;;;;;;;;;;;;;;;;;;;;;;;;;43287:52;43253:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;43210:223;43457:19;43479:20;;43457:42;;43518:18;43554:17;;43539:12;:32;;;;:::i;:::-;43518:53;;43607:2;43594:10;:15;:43;;;;;43613:24;;;;;;;;;;;43594:43;:62;;;;;43655:1;43641:11;;:15;43594:62;43590:452;;;43698:1;43684:10;:15;43681:342;;43764:5;43758:3;43742:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:27;;;;:::i;:::-;43728:41;;43681:342;;;43816:1;43803:10;:14;43799:224;;;43882:5;43876:3;43860:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:27;;;;:::i;:::-;43846:41;;43799:224;;;43994:5;43988:2;43975:10;:15;;;;:::i;:::-;43958:13;:11;:13::i;:::-;:33;;;;:::i;:::-;:41;;;;:::i;:::-;43944:55;;43799:224;43681:342;43590:452;44090:25;:31;44116:4;44090:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44147:31;:35;44179:2;44147:35;;;;;;;;;;;;;;;;;;;;;;;;;44146:36;44090:92;44064:1102;;;44269:11;44259:6;:21;;44225:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;44468:9;;44451:13;44461:2;44451:9;:13::i;:::-;44442:6;:22;;;;:::i;:::-;:35;;44408:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44064:1102;;;44619:25;:29;44645:2;44619:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44674:31;:37;44706:4;44674:37;;;;;;;;;;;;;;;;;;;;;;;;;44673:38;44619:92;44593:573;;;44798:11;44788:6;:21;;44754:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;44593:573;;;44946:31;:35;44978:2;44946:35;;;;;;;;;;;;;;;;;;;;;;;;;44941:225;;45066:9;;45049:13;45059:2;45049:9;:13::i;:::-;45040:6;:22;;;;:::i;:::-;:35;;45006:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44941:225;44593:573;44064:1102;43191:1992;;42993:2190;42958:2236;45204:28;45235:24;45253:4;45235:9;:24::i;:::-;45204:55;;45272:12;45311:18;;45287:20;:42;;45272:57;;45360:7;:35;;;;;45384:11;;;;;;;;;;;45360:35;:61;;;;;45413:8;;;;;;;;;;;45412:9;45360:61;:110;;;;;45439:25;:31;45465:4;45439:31;;;;;;;;;;;;;;;;;;;;;;;;;45438:32;45360:110;:153;;;;;45488:19;:25;45508:4;45488:25;;;;;;;;;;;;;;;;;;;;;;;;;45487:26;45360:153;:194;;;;;45531:19;:23;45551:2;45531:23;;;;;;;;;;;;;;;;;;;;;;;;;45530:24;45360:194;45342:328;;;45592:4;45581:8;;:15;;;;;;;;;;;;;;;;;;45611:16;45620:6;45611:8;:16::i;:::-;45653:5;45642:8;;:16;;;;;;;;;;;;;;;;;;45342:328;45682:12;45698:8;;;;;;;;;;;45697:9;45682:24;;45723:19;:25;45743:4;45723:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45752:19;:23;45772:2;45752:23;;;;;;;;;;;;;;;;;;;;;;;;;45723:52;45719:100;;;45802:5;45792:15;;45719:100;45831:12;45862:7;45858:784;;;45890:25;:29;45916:2;45890:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45939:1;45923:13;;:17;45890:50;45886:607;;;45968:34;45998:3;45968:25;45979:13;;45968:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45961:41;;46071:13;;46051:16;;46044:4;:23;;;;:::i;:::-;46043:41;;;;:::i;:::-;46021:18;;:63;;;;;;;:::i;:::-;;;;;;;;46153:13;;46133:16;;46126:4;:23;;;;:::i;:::-;46125:41;;;;:::i;:::-;46103:18;;:63;;;;;;;:::i;:::-;;;;;;;;45886:607;;;46205:25;:31;46231:4;46205:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46255:1;46240:12;;:16;46205:51;46201:292;;;46284:33;46313:3;46284:24;46295:12;;46284:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46277:40;;46385:12;;46366:15;;46359:4;:22;;;;:::i;:::-;46358:39;;;;:::i;:::-;46336:18;;:61;;;;;;;:::i;:::-;;;;;;;;46465:12;;46446:15;;46439:4;:22;;;;:::i;:::-;46438:39;;;;:::i;:::-;46416:18;;:61;;;;;;;:::i;:::-;;;;;;;;46201:292;45886:607;46520:1;46513:4;:8;46509:91;;;46542:42;46558:4;46572;46579;46542:15;:42::i;:::-;46509:91;46626:4;46616:14;;;;;:::i;:::-;;;45858:784;46670:2;46656:11;;:16;46652:65;;;46704:1;46689:11;;:16;;;;;;;:::i;:::-;;;;;;;;46652:65;46727:33;46743:4;46749:2;46753:6;46727:15;:33::i;:::-;42636:4132;;;;42523:4245;;;;:::o;3158:191::-;3232:16;3251:6;;;;;;;;;;;3232:25;;3277:8;3268:6;;:17;;;;;;;;;;;;;;;;;;3332:8;3301:40;;3322:8;3301:40;;;;;;;;;;;;3221:128;3158:191;:::o;47525:475::-;47591:21;47629:1;47615:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47591:40;;47660:4;47642;47647:1;47642:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47686:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47676:4;47681:1;47676:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47721:62;47738:4;47753:15;;;;;;;;;;;47771:11;47721:8;:62::i;:::-;47796:15;;;;;;;;;;;:66;;;47877:11;47903:1;47919:4;47946;47966:15;47796:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47580:420;47525:475;:::o;42001:188::-;42118:5;42084:25;:31;42110:4;42084:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;42175:5;42141:40;;42169:4;42141:40;;;;;;;;;;;;42001:188;;:::o;28782:830::-;28929:1;28913:18;;:4;:18;;;28905:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29006:1;28992:16;;:2;:16;;;28984:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29059:38;29080:4;29086:2;29090:6;29059:20;:38::i;:::-;29110:19;29132:9;:15;29142:4;29132:15;;;;;;;;;;;;;;;;29110:37;;29181:6;29166:11;:21;;29158:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;29298:6;29284:11;:20;29266:9;:15;29276:4;29266:15;;;;;;;;;;;;;;;:38;;;;29493:6;29476:9;:13;29486:2;29476:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;29543:2;29528:26;;29537:4;29528:26;;;29547:6;29528:26;;;;;;:::i;:::-;;;;;;;;29567:37;29587:4;29593:2;29597:6;29567:19;:37::i;:::-;28894:718;28782:830;;;:::o;48380:1604::-;48432:23;48458:24;48476:4;48458:9;:24::i;:::-;48432:50;;48493:25;48542:18;;48521;;:39;;;;:::i;:::-;48493:67;;48571:12;48619:1;48600:15;:20;:46;;;;48645:1;48624:17;:22;48600:46;48596:85;;;48663:7;;;;;48596:85;48717:18;;48699:15;:36;48695:105;;;48770:18;;48752:36;;48695:105;48814:16;;;;;;;;;;;:44;;;;;48852:6;48834:15;:24;48814:44;48810:101;;;48893:6;48875:24;;48810:101;48921:23;49050:1;49009:17;48966:18;;48948:15;:36;;;;:::i;:::-;48947:79;;;;:::i;:::-;:104;;;;:::i;:::-;48921:130;;49062:26;49091:36;49111:15;49091;:19;;:36;;;;:::i;:::-;49062:65;;49140:25;49168:21;49140:49;;49202:36;49219:18;49202:16;:36::i;:::-;49251:18;49272:44;49298:17;49272:21;:25;;:44;;;;:::i;:::-;49251:65;;49329:23;49355:81;49408:17;49355:34;49370:18;;49355:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;49329:107;;49449:23;49488:15;49475:10;:28;;;;:::i;:::-;49449:54;;49537:1;49516:18;:22;;;;49570:1;49549:18;:22;;;;49606:1;49588:15;:19;:42;;;;;49629:1;49611:15;:19;49588:42;49584:278;;;49647:46;49660:15;49677;49647:12;:46::i;:::-;49713:137;49746:18;49783:15;49817:18;;49713:137;;;;;;;;:::i;:::-;;;;;;;;49584:278;49895:8;;;;;;;;;;;49887:22;;49936:21;49887:89;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49874:102;;;;;48419:1565;;;;;;;;;48380:1604;;:::o;9511:98::-;9569:7;9600:1;9596;:5;;;;:::i;:::-;9589:12;;9511:98;;;;:::o;9910:::-;9968:7;9999:1;9995;:5;;;;:::i;:::-;9988:12;;9910:98;;;;:::o;33609:125::-;;;;:::o;34338:124::-;;;;:::o;9154:98::-;9212:7;9243:1;9239;:5;;;;:::i;:::-;9232:12;;9154:98;;;;:::o;48008:364::-;48089:62;48106:4;48121:15;;;;;;;;;;;48139:11;48089:8;:62::i;:::-;48164:15;;;;;;;;;;;:31;;;48204:9;48237:4;48257:11;48283:1;48299;48315:8;;;;;;;;;;;48338:15;48164:200;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;48008:364;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:329::-;1229:6;1278:2;1266:9;1257:7;1253:23;1249:32;1246:119;;;1284:79;;:::i;:::-;1246:119;1404:1;1429:53;1474:7;1465:6;1454:9;1450:22;1429:53;:::i;:::-;1419:63;;1375:117;1170:329;;;;:::o;1505:99::-;1557:6;1591:5;1585:12;1575:22;;1505:99;;;:::o;1610:169::-;1694:11;1728:6;1723:3;1716:19;1768:4;1763:3;1759:14;1744:29;;1610:169;;;;:::o;1785:307::-;1853:1;1863:113;1877:6;1874:1;1871:13;1863:113;;;1962:1;1957:3;1953:11;1947:18;1943:1;1938:3;1934:11;1927:39;1899:2;1896:1;1892:10;1887:15;;1863:113;;;1994:6;1991:1;1988:13;1985:101;;;2074:1;2065:6;2060:3;2056:16;2049:27;1985:101;1834:258;1785:307;;;:::o;2098:102::-;2139:6;2190:2;2186:7;2181:2;2174:5;2170:14;2166:28;2156:38;;2098:102;;;:::o;2206:364::-;2294:3;2322:39;2355:5;2322:39;:::i;:::-;2377:71;2441:6;2436:3;2377:71;:::i;:::-;2370:78;;2457:52;2502:6;2497:3;2490:4;2483:5;2479:16;2457:52;:::i;:::-;2534:29;2556:6;2534:29;:::i;:::-;2529:3;2525:39;2518:46;;2298:272;2206:364;;;;:::o;2576:313::-;2689:4;2727:2;2716:9;2712:18;2704:26;;2776:9;2770:4;2766:20;2762:1;2751:9;2747:17;2740:47;2804:78;2877:4;2868:6;2804:78;:::i;:::-;2796:86;;2576:313;;;;:::o;2895:126::-;2932:7;2972:42;2965:5;2961:54;2950:65;;2895:126;;;:::o;3027:96::-;3064:7;3093:24;3111:5;3093:24;:::i;:::-;3082:35;;3027:96;;;:::o;3129:122::-;3202:24;3220:5;3202:24;:::i;:::-;3195:5;3192:35;3182:63;;3241:1;3238;3231:12;3182:63;3129:122;:::o;3257:139::-;3303:5;3341:6;3328:20;3319:29;;3357:33;3384:5;3357:33;:::i;:::-;3257:139;;;;:::o;3402:474::-;3470:6;3478;3527:2;3515:9;3506:7;3502:23;3498:32;3495:119;;;3533:79;;:::i;:::-;3495:119;3653:1;3678:53;3723:7;3714:6;3703:9;3699:22;3678:53;:::i;:::-;3668:63;;3624:117;3780:2;3806:53;3851:7;3842:6;3831:9;3827:22;3806:53;:::i;:::-;3796:63;;3751:118;3402:474;;;;;:::o;3882:90::-;3916:7;3959:5;3952:13;3945:21;3934:32;;3882:90;;;:::o;3978:109::-;4059:21;4074:5;4059:21;:::i;:::-;4054:3;4047:34;3978:109;;:::o;4093:210::-;4180:4;4218:2;4207:9;4203:18;4195:26;;4231:65;4293:1;4282:9;4278:17;4269:6;4231:65;:::i;:::-;4093:210;;;;:::o;4309:329::-;4368:6;4417:2;4405:9;4396:7;4392:23;4388:32;4385:119;;;4423:79;;:::i;:::-;4385:119;4543:1;4568:53;4613:7;4604:6;4593:9;4589:22;4568:53;:::i;:::-;4558:63;;4514:117;4309:329;;;;:::o;4644:60::-;4672:3;4693:5;4686:12;;4644:60;;;:::o;4710:142::-;4760:9;4793:53;4811:34;4820:24;4838:5;4820:24;:::i;:::-;4811:34;:::i;:::-;4793:53;:::i;:::-;4780:66;;4710:142;;;:::o;4858:126::-;4908:9;4941:37;4972:5;4941:37;:::i;:::-;4928:50;;4858:126;;;:::o;4990:153::-;5067:9;5100:37;5131:5;5100:37;:::i;:::-;5087:50;;4990:153;;;:::o;5149:185::-;5263:64;5321:5;5263:64;:::i;:::-;5258:3;5251:77;5149:185;;:::o;5340:276::-;5460:4;5498:2;5487:9;5483:18;5475:26;;5511:98;5606:1;5595:9;5591:17;5582:6;5511:98;:::i;:::-;5340:276;;;;:::o;5622:118::-;5709:24;5727:5;5709:24;:::i;:::-;5704:3;5697:37;5622:118;;:::o;5746:222::-;5839:4;5877:2;5866:9;5862:18;5854:26;;5890:71;5958:1;5947:9;5943:17;5934:6;5890:71;:::i;:::-;5746:222;;;;:::o;5974:116::-;6044:21;6059:5;6044:21;:::i;:::-;6037:5;6034:32;6024:60;;6080:1;6077;6070:12;6024:60;5974:116;:::o;6096:133::-;6139:5;6177:6;6164:20;6155:29;;6193:30;6217:5;6193:30;:::i;:::-;6096:133;;;;:::o;6235:468::-;6300:6;6308;6357:2;6345:9;6336:7;6332:23;6328:32;6325:119;;;6363:79;;:::i;:::-;6325:119;6483:1;6508:53;6553:7;6544:6;6533:9;6529:22;6508:53;:::i;:::-;6498:63;;6454:117;6610:2;6636:50;6678:7;6669:6;6658:9;6654:22;6636:50;:::i;:::-;6626:60;;6581:115;6235:468;;;;;:::o;6709:619::-;6786:6;6794;6802;6851:2;6839:9;6830:7;6826:23;6822:32;6819:119;;;6857:79;;:::i;:::-;6819:119;6977:1;7002:53;7047:7;7038:6;7027:9;7023:22;7002:53;:::i;:::-;6992:63;;6948:117;7104:2;7130:53;7175:7;7166:6;7155:9;7151:22;7130:53;:::i;:::-;7120:63;;7075:118;7232:2;7258:53;7303:7;7294:6;7283:9;7279:22;7258:53;:::i;:::-;7248:63;;7203:118;6709:619;;;;;:::o;7334:118::-;7421:24;7439:5;7421:24;:::i;:::-;7416:3;7409:37;7334:118;;:::o;7458:222::-;7551:4;7589:2;7578:9;7574:18;7566:26;;7602:71;7670:1;7659:9;7655:17;7646:6;7602:71;:::i;:::-;7458:222;;;;:::o;7686:86::-;7721:7;7761:4;7754:5;7750:16;7739:27;;7686:86;;;:::o;7778:112::-;7861:22;7877:5;7861:22;:::i;:::-;7856:3;7849:35;7778:112;;:::o;7896:214::-;7985:4;8023:2;8012:9;8008:18;8000:26;;8036:67;8100:1;8089:9;8085:17;8076:6;8036:67;:::i;:::-;7896:214;;;;:::o;8116:323::-;8172:6;8221:2;8209:9;8200:7;8196:23;8192:32;8189:119;;;8227:79;;:::i;:::-;8189:119;8347:1;8372:50;8414:7;8405:6;8394:9;8390:22;8372:50;:::i;:::-;8362:60;;8318:114;8116:323;;;;:::o;8445:117::-;8554:1;8551;8544:12;8568:117;8677:1;8674;8667:12;8691:180;8739:77;8736:1;8729:88;8836:4;8833:1;8826:15;8860:4;8857:1;8850:15;8877:281;8960:27;8982:4;8960:27;:::i;:::-;8952:6;8948:40;9090:6;9078:10;9075:22;9054:18;9042:10;9039:34;9036:62;9033:88;;;9101:18;;:::i;:::-;9033:88;9141:10;9137:2;9130:22;8920:238;8877:281;;:::o;9164:129::-;9198:6;9225:20;;:::i;:::-;9215:30;;9254:33;9282:4;9274:6;9254:33;:::i;:::-;9164:129;;;:::o;9299:308::-;9361:4;9451:18;9443:6;9440:30;9437:56;;;9473:18;;:::i;:::-;9437:56;9511:29;9533:6;9511:29;:::i;:::-;9503:37;;9595:4;9589;9585:15;9577:23;;9299:308;;;:::o;9613:154::-;9697:6;9692:3;9687;9674:30;9759:1;9750:6;9745:3;9741:16;9734:27;9613:154;;;:::o;9773:412::-;9851:5;9876:66;9892:49;9934:6;9892:49;:::i;:::-;9876:66;:::i;:::-;9867:75;;9965:6;9958:5;9951:21;10003:4;9996:5;9992:16;10041:3;10032:6;10027:3;10023:16;10020:25;10017:112;;;10048:79;;:::i;:::-;10017:112;10138:41;10172:6;10167:3;10162;10138:41;:::i;:::-;9857:328;9773:412;;;;;:::o;10205:340::-;10261:5;10310:3;10303:4;10295:6;10291:17;10287:27;10277:122;;10318:79;;:::i;:::-;10277:122;10435:6;10422:20;10460:79;10535:3;10527:6;10520:4;10512:6;10508:17;10460:79;:::i;:::-;10451:88;;10267:278;10205:340;;;;:::o;10551:979::-;10648:6;10656;10664;10713:2;10701:9;10692:7;10688:23;10684:32;10681:119;;;10719:79;;:::i;:::-;10681:119;10867:1;10856:9;10852:17;10839:31;10897:18;10889:6;10886:30;10883:117;;;10919:79;;:::i;:::-;10883:117;11024:63;11079:7;11070:6;11059:9;11055:22;11024:63;:::i;:::-;11014:73;;10810:287;11164:2;11153:9;11149:18;11136:32;11195:18;11187:6;11184:30;11181:117;;;11217:79;;:::i;:::-;11181:117;11322:63;11377:7;11368:6;11357:9;11353:22;11322:63;:::i;:::-;11312:73;;11107:288;11434:2;11460:53;11505:7;11496:6;11485:9;11481:22;11460:53;:::i;:::-;11450:63;;11405:118;10551:979;;;;;:::o;11536:474::-;11604:6;11612;11661:2;11649:9;11640:7;11636:23;11632:32;11629:119;;;11667:79;;:::i;:::-;11629:119;11787:1;11812:53;11857:7;11848:6;11837:9;11833:22;11812:53;:::i;:::-;11802:63;;11758:117;11914:2;11940:53;11985:7;11976:6;11965:9;11961:22;11940:53;:::i;:::-;11930:63;;11885:118;11536:474;;;;;:::o;12016:180::-;12064:77;12061:1;12054:88;12161:4;12158:1;12151:15;12185:4;12182:1;12175:15;12202:305;12242:3;12261:20;12279:1;12261:20;:::i;:::-;12256:25;;12295:20;12313:1;12295:20;:::i;:::-;12290:25;;12449:1;12381:66;12377:74;12374:1;12371:81;12368:107;;;12455:18;;:::i;:::-;12368:107;12499:1;12496;12492:9;12485:16;;12202:305;;;;:::o;12513:348::-;12553:7;12576:20;12594:1;12576:20;:::i;:::-;12571:25;;12610:20;12628:1;12610:20;:::i;:::-;12605:25;;12798:1;12730:66;12726:74;12723:1;12720:81;12715:1;12708:9;12701:17;12697:105;12694:131;;;12805:18;;:::i;:::-;12694:131;12853:1;12850;12846:9;12835:20;;12513:348;;;;:::o;12867:180::-;12915:77;12912:1;12905:88;13012:4;13009:1;13002:15;13036:4;13033:1;13026:15;13053:185;13093:1;13110:20;13128:1;13110:20;:::i;:::-;13105:25;;13144:20;13162:1;13144:20;:::i;:::-;13139:25;;13183:1;13173:35;;13188:18;;:::i;:::-;13173:35;13230:1;13227;13223:9;13218:14;;13053:185;;;;:::o;13244:180::-;13292:77;13289:1;13282:88;13389:4;13386:1;13379:15;13413:4;13410:1;13403:15;13430:320;13474:6;13511:1;13505:4;13501:12;13491:22;;13558:1;13552:4;13548:12;13579:18;13569:81;;13635:4;13627:6;13623:17;13613:27;;13569:81;13697:2;13689:6;13686:14;13666:18;13663:38;13660:84;;13716:18;;:::i;:::-;13660:84;13481:269;13430:320;;;:::o;13756:147::-;13857:11;13894:3;13879:18;;13756:147;;;;:::o;13909:114::-;;:::o;14029:398::-;14188:3;14209:83;14290:1;14285:3;14209:83;:::i;:::-;14202:90;;14301:93;14390:3;14301:93;:::i;:::-;14419:1;14414:3;14410:11;14403:18;;14029:398;;;:::o;14433:379::-;14617:3;14639:147;14782:3;14639:147;:::i;:::-;14632:154;;14803:3;14796:10;;14433:379;;;:::o;14818:220::-;14958:34;14954:1;14946:6;14942:14;14935:58;15027:3;15022:2;15014:6;15010:15;15003:28;14818:220;:::o;15044:366::-;15186:3;15207:67;15271:2;15266:3;15207:67;:::i;:::-;15200:74;;15283:93;15372:3;15283:93;:::i;:::-;15401:2;15396:3;15392:12;15385:19;;15044:366;;;:::o;15416:419::-;15582:4;15620:2;15609:9;15605:18;15597:26;;15669:9;15663:4;15659:20;15655:1;15644:9;15640:17;15633:47;15697:131;15823:4;15697:131;:::i;:::-;15689:139;;15416:419;;;:::o;15841:233::-;15981:34;15977:1;15969:6;15965:14;15958:58;16050:16;16045:2;16037:6;16033:15;16026:41;15841:233;:::o;16080:366::-;16222:3;16243:67;16307:2;16302:3;16243:67;:::i;:::-;16236:74;;16319:93;16408:3;16319:93;:::i;:::-;16437:2;16432:3;16428:12;16421:19;;16080:366;;;:::o;16452:419::-;16618:4;16656:2;16645:9;16641:18;16633:26;;16705:9;16699:4;16695:20;16691:1;16680:9;16676:17;16669:47;16733:131;16859:4;16733:131;:::i;:::-;16725:139;;16452:419;;;:::o;16877:244::-;17017:34;17013:1;17005:6;17001:14;16994:58;17086:27;17081:2;17073:6;17069:15;17062:52;16877:244;:::o;17127:366::-;17269:3;17290:67;17354:2;17349:3;17290:67;:::i;:::-;17283:74;;17366:93;17455:3;17366:93;:::i;:::-;17484:2;17479:3;17475:12;17468:19;;17127:366;;;:::o;17499:419::-;17665:4;17703:2;17692:9;17688:18;17680:26;;17752:9;17746:4;17742:20;17738:1;17727:9;17723:17;17716:47;17780:131;17906:4;17780:131;:::i;:::-;17772:139;;17499:419;;;:::o;17924:224::-;18064:34;18060:1;18052:6;18048:14;18041:58;18133:7;18128:2;18120:6;18116:15;18109:32;17924:224;:::o;18154:366::-;18296:3;18317:67;18381:2;18376:3;18317:67;:::i;:::-;18310:74;;18393:93;18482:3;18393:93;:::i;:::-;18511:2;18506:3;18502:12;18495:19;;18154:366;;;:::o;18526:419::-;18692:4;18730:2;18719:9;18715:18;18707:26;;18779:9;18773:4;18769:20;18765:1;18754:9;18750:17;18743:47;18807:131;18933:4;18807:131;:::i;:::-;18799:139;;18526:419;;;:::o;18951:141::-;19000:4;19023:3;19015:11;;19046:3;19043:1;19036:14;19080:4;19077:1;19067:18;19059:26;;18951:141;;;:::o;19098:93::-;19135:6;19182:2;19177;19170:5;19166:14;19162:23;19152:33;;19098:93;;;:::o;19197:107::-;19241:8;19291:5;19285:4;19281:16;19260:37;;19197:107;;;;:::o;19310:393::-;19379:6;19429:1;19417:10;19413:18;19452:97;19482:66;19471:9;19452:97;:::i;:::-;19570:39;19600:8;19589:9;19570:39;:::i;:::-;19558:51;;19642:4;19638:9;19631:5;19627:21;19618:30;;19691:4;19681:8;19677:19;19670:5;19667:30;19657:40;;19386:317;;19310:393;;;;;:::o;19709:142::-;19759:9;19792:53;19810:34;19819:24;19837:5;19819:24;:::i;:::-;19810:34;:::i;:::-;19792:53;:::i;:::-;19779:66;;19709:142;;;:::o;19857:75::-;19900:3;19921:5;19914:12;;19857:75;;;:::o;19938:269::-;20048:39;20079:7;20048:39;:::i;:::-;20109:91;20158:41;20182:16;20158:41;:::i;:::-;20150:6;20143:4;20137:11;20109:91;:::i;:::-;20103:4;20096:105;20014:193;19938:269;;;:::o;20213:73::-;20258:3;20213:73;:::o;20292:189::-;20369:32;;:::i;:::-;20410:65;20468:6;20460;20454:4;20410:65;:::i;:::-;20345:136;20292:189;;:::o;20487:186::-;20547:120;20564:3;20557:5;20554:14;20547:120;;;20618:39;20655:1;20648:5;20618:39;:::i;:::-;20591:1;20584:5;20580:13;20571:22;;20547:120;;;20487:186;;:::o;20679:543::-;20780:2;20775:3;20772:11;20769:446;;;20814:38;20846:5;20814:38;:::i;:::-;20898:29;20916:10;20898:29;:::i;:::-;20888:8;20884:44;21081:2;21069:10;21066:18;21063:49;;;21102:8;21087:23;;21063:49;21125:80;21181:22;21199:3;21181:22;:::i;:::-;21171:8;21167:37;21154:11;21125:80;:::i;:::-;20784:431;;20769:446;20679:543;;;:::o;21228:117::-;21282:8;21332:5;21326:4;21322:16;21301:37;;21228:117;;;;:::o;21351:169::-;21395:6;21428:51;21476:1;21472:6;21464:5;21461:1;21457:13;21428:51;:::i;:::-;21424:56;21509:4;21503;21499:15;21489:25;;21402:118;21351:169;;;;:::o;21525:295::-;21601:4;21747:29;21772:3;21766:4;21747:29;:::i;:::-;21739:37;;21809:3;21806:1;21802:11;21796:4;21793:21;21785:29;;21525:295;;;;:::o;21825:1395::-;21942:37;21975:3;21942:37;:::i;:::-;22044:18;22036:6;22033:30;22030:56;;;22066:18;;:::i;:::-;22030:56;22110:38;22142:4;22136:11;22110:38;:::i;:::-;22195:67;22255:6;22247;22241:4;22195:67;:::i;:::-;22289:1;22313:4;22300:17;;22345:2;22337:6;22334:14;22362:1;22357:618;;;;23019:1;23036:6;23033:77;;;23085:9;23080:3;23076:19;23070:26;23061:35;;23033:77;23136:67;23196:6;23189:5;23136:67;:::i;:::-;23130:4;23123:81;22992:222;22327:887;;22357:618;22409:4;22405:9;22397:6;22393:22;22443:37;22475:4;22443:37;:::i;:::-;22502:1;22516:208;22530:7;22527:1;22524:14;22516:208;;;22609:9;22604:3;22600:19;22594:26;22586:6;22579:42;22660:1;22652:6;22648:14;22638:24;;22707:2;22696:9;22692:18;22679:31;;22553:4;22550:1;22546:12;22541:17;;22516:208;;;22752:6;22743:7;22740:19;22737:179;;;22810:9;22805:3;22801:19;22795:26;22853:48;22895:4;22887:6;22883:17;22872:9;22853:48;:::i;:::-;22845:6;22838:64;22760:156;22737:179;22962:1;22958;22950:6;22946:14;22942:22;22936:4;22929:36;22364:611;;;22327:887;;21917:1303;;;21825:1395;;:::o;23226:143::-;23283:5;23314:6;23308:13;23299:22;;23330:33;23357:5;23330:33;:::i;:::-;23226:143;;;;:::o;23375:351::-;23445:6;23494:2;23482:9;23473:7;23469:23;23465:32;23462:119;;;23500:79;;:::i;:::-;23462:119;23620:1;23645:64;23701:7;23692:6;23681:9;23677:22;23645:64;:::i;:::-;23635:74;;23591:128;23375:351;;;;:::o;23732:332::-;23853:4;23891:2;23880:9;23876:18;23868:26;;23904:71;23972:1;23961:9;23957:17;23948:6;23904:71;:::i;:::-;23985:72;24053:2;24042:9;24038:18;24029:6;23985:72;:::i;:::-;23732:332;;;;;:::o;24070:191::-;24110:4;24130:20;24148:1;24130:20;:::i;:::-;24125:25;;24164:20;24182:1;24164:20;:::i;:::-;24159:25;;24203:1;24200;24197:8;24194:34;;;24208:18;;:::i;:::-;24194:34;24253:1;24250;24246:9;24238:17;;24070:191;;;;:::o;24267:85::-;24312:7;24341:5;24330:16;;24267:85;;;:::o;24358:158::-;24416:9;24449:61;24467:42;24476:32;24502:5;24476:32;:::i;:::-;24467:42;:::i;:::-;24449:61;:::i;:::-;24436:74;;24358:158;;;:::o;24522:147::-;24617:45;24656:5;24617:45;:::i;:::-;24612:3;24605:58;24522:147;;:::o;24675:807::-;24924:4;24962:3;24951:9;24947:19;24939:27;;24976:71;25044:1;25033:9;25029:17;25020:6;24976:71;:::i;:::-;25057:72;25125:2;25114:9;25110:18;25101:6;25057:72;:::i;:::-;25139:80;25215:2;25204:9;25200:18;25191:6;25139:80;:::i;:::-;25229;25305:2;25294:9;25290:18;25281:6;25229:80;:::i;:::-;25319:73;25387:3;25376:9;25372:19;25363:6;25319:73;:::i;:::-;25402;25470:3;25459:9;25455:19;25446:6;25402:73;:::i;:::-;24675:807;;;;;;;;;:::o;25488:143::-;25545:5;25576:6;25570:13;25561:22;;25592:33;25619:5;25592:33;:::i;:::-;25488:143;;;;:::o;25637:663::-;25725:6;25733;25741;25790:2;25778:9;25769:7;25765:23;25761:32;25758:119;;;25796:79;;:::i;:::-;25758:119;25916:1;25941:64;25997:7;25988:6;25977:9;25973:22;25941:64;:::i;:::-;25931:74;;25887:128;26054:2;26080:64;26136:7;26127:6;26116:9;26112:22;26080:64;:::i;:::-;26070:74;;26025:129;26193:2;26219:64;26275:7;26266:6;26255:9;26251:22;26219:64;:::i;:::-;26209:74;;26164:129;25637:663;;;;;:::o;26306:332::-;26427:4;26465:2;26454:9;26450:18;26442:26;;26478:71;26546:1;26535:9;26531:17;26522:6;26478:71;:::i;:::-;26559:72;26627:2;26616:9;26612:18;26603:6;26559:72;:::i;:::-;26306:332;;;;;:::o;26644:137::-;26698:5;26729:6;26723:13;26714:22;;26745:30;26769:5;26745:30;:::i;:::-;26644:137;;;;:::o;26787:345::-;26854:6;26903:2;26891:9;26882:7;26878:23;26874:32;26871:119;;;26909:79;;:::i;:::-;26871:119;27029:1;27054:61;27107:7;27098:6;27087:9;27083:22;27054:61;:::i;:::-;27044:71;;27000:125;26787:345;;;;:::o;27138:240::-;27278:34;27274:1;27266:6;27262:14;27255:58;27347:23;27342:2;27334:6;27330:15;27323:48;27138:240;:::o;27384:366::-;27526:3;27547:67;27611:2;27606:3;27547:67;:::i;:::-;27540:74;;27623:93;27712:3;27623:93;:::i;:::-;27741:2;27736:3;27732:12;27725:19;;27384:366;;;:::o;27756:419::-;27922:4;27960:2;27949:9;27945:18;27937:26;;28009:9;28003:4;27999:20;27995:1;27984:9;27980:17;27973:47;28037:131;28163:4;28037:131;:::i;:::-;28029:139;;27756:419;;;:::o;28181:237::-;28321:34;28317:1;28309:6;28305:14;28298:58;28390:20;28385:2;28377:6;28373:15;28366:45;28181:237;:::o;28424:366::-;28566:3;28587:67;28651:2;28646:3;28587:67;:::i;:::-;28580:74;;28663:93;28752:3;28663:93;:::i;:::-;28781:2;28776:3;28772:12;28765:19;;28424:366;;;:::o;28796:419::-;28962:4;29000:2;28989:9;28985:18;28977:26;;29049:9;29043:4;29039:20;29035:1;29024:9;29020:17;29013:47;29077:131;29203:4;29077:131;:::i;:::-;29069:139;;28796:419;;;:::o;29221:225::-;29361:34;29357:1;29349:6;29345:14;29338:58;29430:8;29425:2;29417:6;29413:15;29406:33;29221:225;:::o;29452:366::-;29594:3;29615:67;29679:2;29674:3;29615:67;:::i;:::-;29608:74;;29691:93;29780:3;29691:93;:::i;:::-;29809:2;29804:3;29800:12;29793:19;;29452:366;;;:::o;29824:419::-;29990:4;30028:2;30017:9;30013:18;30005:26;;30077:9;30071:4;30067:20;30063:1;30052:9;30048:17;30041:47;30105:131;30231:4;30105:131;:::i;:::-;30097:139;;29824:419;;;:::o;30249:182::-;30389:34;30385:1;30377:6;30373:14;30366:58;30249:182;:::o;30437:366::-;30579:3;30600:67;30664:2;30659:3;30600:67;:::i;:::-;30593:74;;30676:93;30765:3;30676:93;:::i;:::-;30794:2;30789:3;30785:12;30778:19;;30437:366;;;:::o;30809:419::-;30975:4;31013:2;31002:9;30998:18;30990:26;;31062:9;31056:4;31052:20;31048:1;31037:9;31033:17;31026:47;31090:131;31216:4;31090:131;:::i;:::-;31082:139;;30809:419;;;:::o;31234:223::-;31374:34;31370:1;31362:6;31358:14;31351:58;31443:6;31438:2;31430:6;31426:15;31419:31;31234:223;:::o;31463:366::-;31605:3;31626:67;31690:2;31685:3;31626:67;:::i;:::-;31619:74;;31702:93;31791:3;31702:93;:::i;:::-;31820:2;31815:3;31811:12;31804:19;;31463:366;;;:::o;31835:419::-;32001:4;32039:2;32028:9;32024:18;32016:26;;32088:9;32082:4;32078:20;32074:1;32063:9;32059:17;32052:47;32116:131;32242:4;32116:131;:::i;:::-;32108:139;;31835:419;;;:::o;32260:221::-;32400:34;32396:1;32388:6;32384:14;32377:58;32469:4;32464:2;32456:6;32452:15;32445:29;32260:221;:::o;32487:366::-;32629:3;32650:67;32714:2;32709:3;32650:67;:::i;:::-;32643:74;;32726:93;32815:3;32726:93;:::i;:::-;32844:2;32839:3;32835:12;32828:19;;32487:366;;;:::o;32859:419::-;33025:4;33063:2;33052:9;33048:18;33040:26;;33112:9;33106:4;33102:20;33098:1;33087:9;33083:17;33076:47;33140:131;33266:4;33140:131;:::i;:::-;33132:139;;32859:419;;;:::o;33284:179::-;33424:31;33420:1;33412:6;33408:14;33401:55;33284:179;:::o;33469:366::-;33611:3;33632:67;33696:2;33691:3;33632:67;:::i;:::-;33625:74;;33708:93;33797:3;33708:93;:::i;:::-;33826:2;33821:3;33817:12;33810:19;;33469:366;;;:::o;33841:419::-;34007:4;34045:2;34034:9;34030:18;34022:26;;34094:9;34088:4;34084:20;34080:1;34069:9;34065:17;34058:47;34122:131;34248:4;34122:131;:::i;:::-;34114:139;;33841:419;;;:::o;34266:224::-;34406:34;34402:1;34394:6;34390:14;34383:58;34475:7;34470:2;34462:6;34458:15;34451:32;34266:224;:::o;34496:366::-;34638:3;34659:67;34723:2;34718:3;34659:67;:::i;:::-;34652:74;;34735:93;34824:3;34735:93;:::i;:::-;34853:2;34848:3;34844:12;34837:19;;34496:366;;;:::o;34868:419::-;35034:4;35072:2;35061:9;35057:18;35049:26;;35121:9;35115:4;35111:20;35107:1;35096:9;35092:17;35085:47;35149:131;35275:4;35149:131;:::i;:::-;35141:139;;34868:419;;;:::o;35293:222::-;35433:34;35429:1;35421:6;35417:14;35410:58;35502:5;35497:2;35489:6;35485:15;35478:30;35293:222;:::o;35521:366::-;35663:3;35684:67;35748:2;35743:3;35684:67;:::i;:::-;35677:74;;35760:93;35849:3;35760:93;:::i;:::-;35878:2;35873:3;35869:12;35862:19;;35521:366;;;:::o;35893:419::-;36059:4;36097:2;36086:9;36082:18;36074:26;;36146:9;36140:4;36136:20;36132:1;36121:9;36117:17;36110:47;36174:131;36300:4;36174:131;:::i;:::-;36166:139;;35893:419;;;:::o;36318:161::-;36458:13;36454:1;36446:6;36442:14;36435:37;36318:161;:::o;36485:366::-;36627:3;36648:67;36712:2;36707:3;36648:67;:::i;:::-;36641:74;;36724:93;36813:3;36724:93;:::i;:::-;36842:2;36837:3;36833:12;36826:19;;36485:366;;;:::o;36857:419::-;37023:4;37061:2;37050:9;37046:18;37038:26;;37110:9;37104:4;37100:20;37096:1;37085:9;37081:17;37074:47;37138:131;37264:4;37138:131;:::i;:::-;37130:139;;36857:419;;;:::o;37282:172::-;37422:24;37418:1;37410:6;37406:14;37399:48;37282:172;:::o;37460:366::-;37602:3;37623:67;37687:2;37682:3;37623:67;:::i;:::-;37616:74;;37699:93;37788:3;37699:93;:::i;:::-;37817:2;37812:3;37808:12;37801:19;;37460:366;;;:::o;37832:419::-;37998:4;38036:2;38025:9;38021:18;38013:26;;38085:9;38079:4;38075:20;38071:1;38060:9;38056:17;38049:47;38113:131;38239:4;38113:131;:::i;:::-;38105:139;;37832:419;;;:::o;38257:240::-;38397:34;38393:1;38385:6;38381:14;38374:58;38466:23;38461:2;38453:6;38449:15;38442:48;38257:240;:::o;38503:366::-;38645:3;38666:67;38730:2;38725:3;38666:67;:::i;:::-;38659:74;;38742:93;38831:3;38742:93;:::i;:::-;38860:2;38855:3;38851:12;38844:19;;38503:366;;;:::o;38875:419::-;39041:4;39079:2;39068:9;39064:18;39056:26;;39128:9;39122:4;39118:20;39114:1;39103:9;39099:17;39092:47;39156:131;39282:4;39156:131;:::i;:::-;39148:139;;38875:419;;;:::o;39300:169::-;39440:21;39436:1;39428:6;39424:14;39417:45;39300:169;:::o;39475:366::-;39617:3;39638:67;39702:2;39697:3;39638:67;:::i;:::-;39631:74;;39714:93;39803:3;39714:93;:::i;:::-;39832:2;39827:3;39823:12;39816:19;;39475:366;;;:::o;39847:419::-;40013:4;40051:2;40040:9;40036:18;40028:26;;40100:9;40094:4;40090:20;40086:1;40075:9;40071:17;40064:47;40128:131;40254:4;40128:131;:::i;:::-;40120:139;;39847:419;;;:::o;40272:241::-;40412:34;40408:1;40400:6;40396:14;40389:58;40481:24;40476:2;40468:6;40464:15;40457:49;40272:241;:::o;40519:366::-;40661:3;40682:67;40746:2;40741:3;40682:67;:::i;:::-;40675:74;;40758:93;40847:3;40758:93;:::i;:::-;40876:2;40871:3;40867:12;40860:19;;40519:366;;;:::o;40891:419::-;41057:4;41095:2;41084:9;41080:18;41072:26;;41144:9;41138:4;41134:20;41130:1;41119:9;41115:17;41108:47;41172:131;41298:4;41172:131;:::i;:::-;41164:139;;40891:419;;;:::o;41316:180::-;41364:77;41361:1;41354:88;41461:4;41458:1;41451:15;41485:4;41482:1;41475:15;41502:114;41569:6;41603:5;41597:12;41587:22;;41502:114;;;:::o;41622:184::-;41721:11;41755:6;41750:3;41743:19;41795:4;41790:3;41786:14;41771:29;;41622:184;;;;:::o;41812:132::-;41879:4;41902:3;41894:11;;41932:4;41927:3;41923:14;41915:22;;41812:132;;;:::o;41950:108::-;42027:24;42045:5;42027:24;:::i;:::-;42022:3;42015:37;41950:108;;:::o;42064:179::-;42133:10;42154:46;42196:3;42188:6;42154:46;:::i;:::-;42232:4;42227:3;42223:14;42209:28;;42064:179;;;;:::o;42249:113::-;42319:4;42351;42346:3;42342:14;42334:22;;42249:113;;;:::o;42398:732::-;42517:3;42546:54;42594:5;42546:54;:::i;:::-;42616:86;42695:6;42690:3;42616:86;:::i;:::-;42609:93;;42726:56;42776:5;42726:56;:::i;:::-;42805:7;42836:1;42821:284;42846:6;42843:1;42840:13;42821:284;;;42922:6;42916:13;42949:63;43008:3;42993:13;42949:63;:::i;:::-;42942:70;;43035:60;43088:6;43035:60;:::i;:::-;43025:70;;42881:224;42868:1;42865;42861:9;42856:14;;42821:284;;;42825:14;43121:3;43114:10;;42522:608;;;42398:732;;;;:::o;43136:831::-;43399:4;43437:3;43426:9;43422:19;43414:27;;43451:71;43519:1;43508:9;43504:17;43495:6;43451:71;:::i;:::-;43532:80;43608:2;43597:9;43593:18;43584:6;43532:80;:::i;:::-;43659:9;43653:4;43649:20;43644:2;43633:9;43629:18;43622:48;43687:108;43790:4;43781:6;43687:108;:::i;:::-;43679:116;;43805:72;43873:2;43862:9;43858:18;43849:6;43805:72;:::i;:::-;43887:73;43955:3;43944:9;43940:19;43931:6;43887:73;:::i;:::-;43136:831;;;;;;;;:::o;43973:225::-;44113:34;44109:1;44101:6;44097:14;44090:58;44182:8;44177:2;44169:6;44165:15;44158:33;43973:225;:::o;44204:366::-;44346:3;44367:67;44431:2;44426:3;44367:67;:::i;:::-;44360:74;;44443:93;44532:3;44443:93;:::i;:::-;44561:2;44556:3;44552:12;44545:19;;44204:366;;;:::o;44576:419::-;44742:4;44780:2;44769:9;44765:18;44757:26;;44829:9;44823:4;44819:20;44815:1;44804:9;44800:17;44793:47;44857:131;44983:4;44857:131;:::i;:::-;44849:139;;44576:419;;;:::o;45001:442::-;45150:4;45188:2;45177:9;45173:18;45165:26;;45201:71;45269:1;45258:9;45254:17;45245:6;45201:71;:::i;:::-;45282:72;45350:2;45339:9;45335:18;45326:6;45282:72;:::i;:::-;45364;45432:2;45421:9;45417:18;45408:6;45364:72;:::i;:::-;45001:442;;;;;;:::o

Swarm Source

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