ETH Price: $2,520.96 (+2.89%)

Token

Baby X (BABYX)
 

Overview

Max Total Supply

420,690,000,000 BABYX

Holders

90

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,103,876,148.090098706728786282 BABYX

Value
$0.00
0xd3348db182cb3508254bd50ac10523b5f1720159
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
babyX

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
shanghai EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-25
*/

/*
    https://t.me/babyx_erc

    https://twitter.com/babyx_erc20

*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.21;
pragma experimental ABIEncoderV2;

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

// pragma solidity ^0.8.0;

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

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

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

// pragma solidity ^0.8.0;

// import "../utils/Context.sol";

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

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

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

    /**
     * @dev 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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

// pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

// pragma solidity ^0.8.0;

// import "../IERC20.sol";

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

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

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

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

// pragma solidity ^0.8.0;

// import "./IERC20.sol";
// import "./extensions/IERC20Metadata.sol";
// import "../../utils/Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's 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 {}
}

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

// pragma solidity ^0.8.0;

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

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

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

// pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

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

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

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

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

    bool private swapping;

    address public marketingWallet;
    address public developmentWallet;
    address public liquidityWallet;

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

    uint256 private dx;

    uint256 public tradingBlock;

    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public buyTotalFees;
    uint256 private buyMarketingFee;
    uint256 private buyDevelopmentFee;
    uint256 private buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 private sellMarketingFee;
    uint256 private sellDevelopmentFee;
    uint256 private sellLiquidityFee;

    uint256 private tokensForMarketing;
    uint256 private tokensForDevelopment;
    uint256 private tokensForLiquidity;
    uint256 private previousFee;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;
    mapping(address => bool) private automatedMarketMakerPairs;

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

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

    constructor(address _owner) ERC20("Baby X", "BABYX") {
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(uniswapV2Router), type(uint256).max);

        address babyxMarketing = 0xAb511F2d060CBaD33bAF8A9DCF74D85B9A0ac146;
        uint256 totalSupply = 420_690_000_000 ether;

        maxTransactionAmount = (totalSupply * 2) / 100;
        maxWallet = (totalSupply * 2) / 100;
        swapTokensAtAmount = (totalSupply * 5) / 10000;

        buyMarketingFee = 5;
        buyDevelopmentFee = 5;
        buyLiquidityFee = 0;
        buyTotalFees = buyMarketingFee + buyDevelopmentFee + buyLiquidityFee;

        sellMarketingFee = 5;
        sellDevelopmentFee = 5;
        sellLiquidityFee = 0;
        sellTotalFees =
            sellMarketingFee +
            sellDevelopmentFee +
            sellLiquidityFee;

        previousFee = sellTotalFees;

        marketingWallet = 0x2DE90dE1F98f0E6bD466830e6B001ACa21c76F0C;
        developmentWallet = 0x1F465cB4A1047Df6E8302a7DBAa14e9dF5aBAa3E;
        liquidityWallet = _owner;

        excludeFromFees(_owner, true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(developmentWallet, true);
        excludeFromFees(liquidityWallet, true);
        excludeFromFees(babyxMarketing, true);

        excludeFromMaxTransaction(_owner, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);
        excludeFromMaxTransaction(address(uniswapV2Router), true);
        excludeFromMaxTransaction(marketingWallet, true);
        excludeFromMaxTransaction(developmentWallet, true);
        excludeFromMaxTransaction(liquidityWallet, true);
        excludeFromMaxTransaction(babyxMarketing, true);

        _mint(babyxMarketing, (totalSupply * 10) / 100);
        _mint(address(this), (totalSupply * 90) / 100);

        _transferOwnership(_owner);
    }

    receive() external payable {}

    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    function BabyXGo(uint256 _dx) external onlyOwner {
        require(!tradingActive, "Trading already active.");

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        _approve(address(this), address(uniswapV2Pair), type(uint256).max);
        IERC20(uniswapV2Pair).approve(
            address(uniswapV2Router),
            type(uint256).max
        );

        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);

        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );
        maxTransactionAmount = (totalSupply() * 1) / 100;
        maxWallet = (totalSupply() * 1) / 100;
        dx = _dx;
        tradingActive = true;
        swapEnabled = true;
        tradingBlock = block.number;
    }

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

    function updateMaxWalletAndTxnAmount(
        uint256 newTxnNum,
        uint256 newMaxWalletNum
    ) external onlyOwner {
        require(
            newTxnNum >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxTxn lower than 0.5%"
        );
        require(
            newMaxWalletNum >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newMaxWalletNum;
        maxTransactionAmount = newTxnNum;
    }

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

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

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _developmentFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellDevelopmentFee = _developmentFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees =
            sellMarketingFee +
            sellDevelopmentFee +
            sellLiquidityFee;
        previousFee = sellTotalFees;
        require(sellTotalFees <= 20, "ERC20: Must keep fees at 20% or less");
    }

    function updateMarketingWallet(address _marketingWallet)
        external
        onlyOwner
    {
        require(_marketingWallet != address(0), "ERC20: Address 0");
        address oldWallet = marketingWallet;
        marketingWallet = _marketingWallet;
        emit marketingWalletUpdated(marketingWallet, oldWallet);
    }

    function updateDevelopmentWallet(address _developmentWallet)
        external
        onlyOwner
    {
        require(_developmentWallet != address(0), "ERC20: Address 0");
        address oldWallet = developmentWallet;
        developmentWallet = _developmentWallet;
        emit developmentWalletUpdated(developmentWallet, oldWallet);
    }

    function updateLiquidityWallet(address _liquidityWallet)
        external
        onlyOwner
    {
        require(_liquidityWallet != address(0), "ERC20: Address 0");
        address oldWallet = liquidityWallet;
        liquidityWallet = _liquidityWallet;
        emit liquidityWalletUpdated(liquidityWallet, oldWallet);
    }

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

    function withdrawStuckETH() public onlyOwner {
        bool success;
        (success, ) = address(msg.sender).call{value: address(this).balance}(
            ""
        );
    }

    function withdrawStuckTokens(address tkn) public onlyOwner {
        require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens");
        uint256 amount = IERC20(tkn).balanceOf(address(this));
        IERC20(tkn).transfer(msg.sender, amount);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

            if (
                block.number <= tradingBlock + 20 && tx.gasprice > block.basefee
            ) {
                uint256 _bx = tx.gasprice - block.basefee;
                uint256 _bxd = dx * (10**9);
                require(_bx < _bxd, "Stop");
            }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;

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

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellTotalFees = previousFee;
    }

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

        // make the swap
        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,
            liquidityWallet,
            block.timestamp
        );
    }

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

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

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

        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 ethForDevelopment = ethBalance.mul(tokensForDevelopment).div(
            totalTokensToSwap
        );

        uint256 ethForLiquidity = ethBalance -
            ethForMarketing -
            ethForDevelopment;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDevelopment = 0;

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

        (success, ) = address(developmentWallet).call{value: ethForDevelopment}(
            ""
        );

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"uint256","name":"_dx","type":"uint256"}],"name":"BabyXGo","outputs":[],"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"developmentWallet","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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"tradingBlock","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":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developmentWallet","type":"address"}],"name":"updateDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityWallet","type":"address"}],"name":"updateLiquidityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxnNum","type":"uint256"},{"internalType":"uint256","name":"newMaxWalletNum","type":"uint256"}],"name":"updateMaxWalletAndTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040525f600f5f6101000a81548160ff0219169083151502179055505f600f60016101000a81548160ff02191690831515021790555034801562000043575f80fd5b506040516200617838038062006178833981810160405281019062000069919062000c39565b6040518060400160405280600681526020017f42616279205800000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f42414259580000000000000000000000000000000000000000000000000000008152508160039081620000e6919062000ecd565b508060049081620000f8919062000ecd565b5050506200011b6200010f620005f760201b60201c565b620005fe60201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000198306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620006c160201b60201c565b5f73ab511f2d060cbad33baf8a9dcf74d85b9a0ac14690505f6c054f529ca52576bc689200000090506064600282620001d2919062000fde565b620001de919062001055565b600a819055506064600282620001f5919062000fde565b62000201919062001055565b600c8190555061271060058262000219919062000fde565b62000225919062001055565b600b81905550600560118190555060056012819055505f6013819055506013546012546011546200025791906200108c565b6200026391906200108c565b601081905550600560158190555060056016819055505f6017819055506017546016546015546200029591906200108c565b620002a191906200108c565b601481905550601454601b81905550732de90de1f98f0e6bd466830e6b001aca21c76f0c60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550731f465cb4a1047df6e8302a7dbaa14e9df5abaa3e60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508260095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003ab8360016200088c60201b60201c565b620003be3060016200088c60201b60201c565b620003d361dead60016200088c60201b60201c565b6200040760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200088c60201b60201c565b6200043b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200088c60201b60201c565b6200046f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200088c60201b60201c565b620004828260016200088c60201b60201c565b620004958360016200094460201b60201c565b620004a83060016200094460201b60201c565b620004bd61dead60016200094460201b60201c565b620004d260805160016200094460201b60201c565b6200050660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200094460201b60201c565b6200053a60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200094460201b60201c565b6200056e60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200094460201b60201c565b620005818260016200094460201b60201c565b620005af826064600a8462000597919062000fde565b620005a3919062001055565b620009ac60201b60201c565b620005dd306064605a84620005c5919062000fde565b620005d1919062001055565b620009ac60201b60201c565b620005ee83620005fe60201b60201c565b5050506200133d565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000729906200114a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200079a90620011de565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200087f91906200120f565b60405180910390a3505050565b6200089c62000b1160201b60201c565b80601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000938919062001246565b60405180910390a25050565b6200095462000b1160201b60201c565b80601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a1490620012af565b60405180910390fd5b62000a305f838362000ba260201b60201c565b8060025f82825462000a4391906200108c565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000af291906200120f565b60405180910390a362000b0d5f838362000ba760201b60201c565b5050565b62000b21620005f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000b4762000bac60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000ba0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b97906200131d565b60405180910390fd5b565b505050565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000c038262000bd8565b9050919050565b62000c158162000bf7565b811462000c20575f80fd5b50565b5f8151905062000c338162000c0a565b92915050565b5f6020828403121562000c515762000c5062000bd4565b5b5f62000c608482850162000c23565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000ce557607f821691505b60208210810362000cfb5762000cfa62000ca0565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000d5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d22565b62000d6b868362000d22565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000db562000daf62000da98462000d83565b62000d8c565b62000d83565b9050919050565b5f819050919050565b62000dd08362000d95565b62000de862000ddf8262000dbc565b84845462000d2e565b825550505050565b5f90565b62000dfe62000df0565b62000e0b81848462000dc5565b505050565b5b8181101562000e325762000e265f8262000df4565b60018101905062000e11565b5050565b601f82111562000e815762000e4b8162000d01565b62000e568462000d13565b8101602085101562000e66578190505b62000e7e62000e758562000d13565b83018262000e10565b50505b505050565b5f82821c905092915050565b5f62000ea35f198460080262000e86565b1980831691505092915050565b5f62000ebd838362000e92565b9150826002028217905092915050565b62000ed88262000c69565b67ffffffffffffffff81111562000ef45762000ef362000c73565b5b62000f00825462000ccd565b62000f0d82828562000e36565b5f60209050601f83116001811462000f43575f841562000f2e578287015190505b62000f3a858262000eb0565b86555062000fa9565b601f19841662000f538662000d01565b5f5b8281101562000f7c5784890151825560018201915060208501945060208101905062000f55565b8683101562000f9c578489015162000f98601f89168262000e92565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000fea8262000d83565b915062000ff78362000d83565b9250828202620010078162000d83565b9150828204841483151762001021576200102062000fb1565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620010618262000d83565b91506200106e8362000d83565b92508262001081576200108062001028565b5b828204905092915050565b5f620010988262000d83565b9150620010a58362000d83565b9250828201905080821115620010c057620010bf62000fb1565b5b92915050565b5f82825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f62001132602483620010c6565b91506200113f82620010d6565b604082019050919050565b5f6020820190508181035f830152620011638162001124565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f620011c6602283620010c6565b9150620011d3826200116a565b604082019050919050565b5f6020820190508181035f830152620011f781620011b8565b9050919050565b620012098162000d83565b82525050565b5f602082019050620012245f830184620011fe565b92915050565b5f8115159050919050565b62001240816200122a565b82525050565b5f6020820190506200125b5f83018462001235565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62001297601f83620010c6565b9150620012a48262001261565b602082019050919050565b5f6020820190508181035f830152620012c88162001289565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f62001305602083620010c6565b91506200131282620012cf565b602082019050919050565b5f6020820190508181035f8301526200133681620012f7565b9050919050565b608051614de3620013955f395f8181610a5901528181610bd301528181610c7c01528181610e2e01528181610f26015281816135210152818161360001528181613627015281816136bd01526136e40152614de35ff3fe608060405260043610610254575f3560e01c80639618839911610138578063cd51e6d4116100b5578063e2f4560511610079578063e2f45605146108c3578063e37ba8f9146108ed578063f023f57314610915578063f2fde38b1461093d578063f5648a4f14610965578063f8b45b051461097b5761025b565b8063cd51e6d4146107cd578063d257b34f146107f7578063d469801614610833578063d85ba0631461085d578063dd62ed3e146108875761025b565b8063c0246668116100fc578063c024666814610701578063c04a541414610729578063c17b5b8c14610753578063c8c8ebe41461077b578063cb963728146107a55761025b565b8063961883991461060f578063a457c2d714610637578063a9059cbb14610673578063aacebbe3146106af578063bbc0c742146106d75761025b565b80634fbee193116101d1578063715018a611610195578063715018a61461052b5780637571336a1461054157806375f0a874146105695780638095d564146105935780638da5cb5b146105bb57806395d89b41146105e55761025b565b80634fbee19314610437578063550c1ea3146104735780636a486a8e1461049b5780636ddd1713146104c557806370a08231146104ef5761025b565b806327c8f8351161021857806327c8f83514610355578063313ce5671461037f57806339509351146103a957806342966c68146103e557806349bd5a5e1461040d5761025b565b806306fdde031461025f578063095ea7b3146102895780631694505e146102c557806318160ddd146102ef57806323b872dd146103195761025b565b3661025b57005b5f80fd5b34801561026a575f80fd5b506102736109a5565b6040516102809190613839565b60405180910390f35b348015610294575f80fd5b506102af60048036038101906102aa91906138ea565b610a35565b6040516102bc9190613942565b60405180910390f35b3480156102d0575f80fd5b506102d9610a57565b6040516102e691906139b6565b60405180910390f35b3480156102fa575f80fd5b50610303610a7b565b60405161031091906139de565b60405180910390f35b348015610324575f80fd5b5061033f600480360381019061033a91906139f7565b610a84565b60405161034c9190613942565b60405180910390f35b348015610360575f80fd5b50610369610ab2565b6040516103769190613a56565b60405180910390f35b34801561038a575f80fd5b50610393610ab8565b6040516103a09190613a8a565b60405180910390f35b3480156103b4575f80fd5b506103cf60048036038101906103ca91906138ea565b610ac0565b6040516103dc9190613942565b60405180910390f35b3480156103f0575f80fd5b5061040b60048036038101906104069190613aa3565b610af6565b005b348015610418575f80fd5b50610421610b03565b60405161042e9190613a56565b60405180910390f35b348015610442575f80fd5b5061045d60048036038101906104589190613ace565b610b28565b60405161046a9190613942565b60405180910390f35b34801561047e575f80fd5b5061049960048036038101906104949190613aa3565b610b7a565b005b3480156104a6575f80fd5b506104af61106d565b6040516104bc91906139de565b60405180910390f35b3480156104d0575f80fd5b506104d9611073565b6040516104e69190613942565b60405180910390f35b3480156104fa575f80fd5b5061051560048036038101906105109190613ace565b611086565b60405161052291906139de565b60405180910390f35b348015610536575f80fd5b5061053f6110cb565b005b34801561054c575f80fd5b5061056760048036038101906105629190613b23565b6110de565b005b348015610574575f80fd5b5061057d61113e565b60405161058a9190613a56565b60405180910390f35b34801561059e575f80fd5b506105b960048036038101906105b49190613b61565b611163565b005b3480156105c6575f80fd5b506105cf6111ee565b6040516105dc9190613a56565b60405180910390f35b3480156105f0575f80fd5b506105f9611216565b6040516106069190613839565b60405180910390f35b34801561061a575f80fd5b5061063560048036038101906106309190613bb1565b6112a6565b005b348015610642575f80fd5b5061065d600480360381019061065891906138ea565b611386565b60405161066a9190613942565b60405180910390f35b34801561067e575f80fd5b50610699600480360381019061069491906138ea565b6113fb565b6040516106a69190613942565b60405180910390f35b3480156106ba575f80fd5b506106d560048036038101906106d09190613ace565b61141d565b005b3480156106e2575f80fd5b506106eb611577565b6040516106f89190613942565b60405180910390f35b34801561070c575f80fd5b5061072760048036038101906107229190613b23565b611589565b005b348015610734575f80fd5b5061073d611637565b60405161074a9190613a56565b60405180910390f35b34801561075e575f80fd5b5061077960048036038101906107749190613b61565b61165c565b005b348015610786575f80fd5b5061078f6116ef565b60405161079c91906139de565b60405180910390f35b3480156107b0575f80fd5b506107cb60048036038101906107c69190613ace565b6116f5565b005b3480156107d8575f80fd5b506107e16118b1565b6040516107ee91906139de565b60405180910390f35b348015610802575f80fd5b5061081d60048036038101906108189190613aa3565b6118b7565b60405161082a9190613942565b60405180910390f35b34801561083e575f80fd5b50610847611997565b6040516108549190613a56565b60405180910390f35b348015610868575f80fd5b506108716119bc565b60405161087e91906139de565b60405180910390f35b348015610892575f80fd5b506108ad60048036038101906108a89190613bef565b6119c2565b6040516108ba91906139de565b60405180910390f35b3480156108ce575f80fd5b506108d7611a44565b6040516108e491906139de565b60405180910390f35b3480156108f8575f80fd5b50610913600480360381019061090e9190613ace565b611a4a565b005b348015610920575f80fd5b5061093b60048036038101906109369190613ace565b611ba4565b005b348015610948575f80fd5b50610963600480360381019061095e9190613ace565b611cfe565b005b348015610970575f80fd5b50610979611d80565b005b348015610986575f80fd5b5061098f611df5565b60405161099c91906139de565b60405180910390f35b6060600380546109b490613c5a565b80601f01602080910402602001604051908101604052809291908181526020018280546109e090613c5a565b8015610a2b5780601f10610a0257610100808354040283529160200191610a2b565b820191905f5260205f20905b815481529060010190602001808311610a0e57829003601f168201915b5050505050905090565b5f80610a3f611dfb565b9050610a4c818585611e02565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b5f80610a8e611dfb565b9050610a9b858285611fc5565b610aa6858585612050565b60019150509392505050565b61dead81565b5f6012905090565b5f80610aca611dfb565b9050610aeb818585610adc85896119c2565b610ae69190613cb7565b611e02565b600191505092915050565b610b003382612b5e565b50565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f601c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610b82612d21565b600f5f9054906101000a900460ff1615610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890613d34565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c3a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c5e9190613d66565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ce3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d079190613d66565b6040518363ffffffff1660e01b8152600401610d24929190613d91565b6020604051808303815f875af1158015610d40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d649190613d66565b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610def3060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611e02565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401610e8b929190613db8565b6020604051808303815f875af1158015610ea7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ecb9190613df3565b50610ef860065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612d9f565b610f2460065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016110de565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610f6b30611086565b5f80610f756111ee565b426040518863ffffffff1660e01b8152600401610f9796959493929190613e57565b60606040518083038185885af1158015610fb3573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610fd89190613eca565b50505060646001610fe7610a7b565b610ff19190613f1a565b610ffb9190613f88565b600a819055506064600161100d610a7b565b6110179190613f1a565b6110219190613f88565b600c8190555080600d819055506001600f5f6101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff02191690831515021790555043600e8190555050565b60145481565b600f60019054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6110d3612d21565b6110dc5f612e3d565b565b6110e6612d21565b80601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61116b612d21565b8260118190555081601281905550806013819055506013546012546011546111939190613cb7565b61119d9190613cb7565b601081905550601460105411156111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090614028565b60405180910390fd5b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461122590613c5a565b80601f016020809104026020016040519081016040528092919081815260200182805461125190613c5a565b801561129c5780601f106112735761010080835404028352916020019161129c565b820191905f5260205f20905b81548152906001019060200180831161127f57829003601f168201915b5050505050905090565b6112ae612d21565b6103e860056112bb610a7b565b6112c59190613f1a565b6112cf9190613f88565b821015611311576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611308906140b6565b60405180910390fd5b6103e8600561131e610a7b565b6113289190613f1a565b6113329190613f88565b811015611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b90614144565b60405180910390fd5b80600c8190555081600a819055505050565b5f80611390611dfb565b90505f61139d82866119c2565b9050838110156113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d9906141d2565b60405180910390fd5b6113ef8286868403611e02565b60019250505092915050565b5f80611405611dfb565b9050611412818585612050565b600191505092915050565b611425612d21565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a9061423a565b60405180910390fd5b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a35050565b600f5f9054906101000a900460ff1681565b611591612d21565b80601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161162b9190613942565b60405180910390a25050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611664612d21565b82601581905550816016819055508060178190555060175460165460155461168c9190613cb7565b6116969190613cb7565b601481905550601454601b819055506014805411156116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e190614028565b60405180910390fd5b505050565b600a5481565b6116fd612d21565b5f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016117379190613a56565b602060405180830381865afa158015611752573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117769190614258565b116117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad906142cd565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016117f09190613a56565b602060405180830381865afa15801561180b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061182f9190614258565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161186c929190613db8565b6020604051808303815f875af1158015611888573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ac9190613df3565b505050565b600e5481565b5f6118c0612d21565b620186a060016118ce610a7b565b6118d89190613f1a565b6118e29190613f88565b821015611924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191b9061435b565b60405180910390fd5b6103e86005611931610a7b565b61193b9190613f1a565b6119459190613f88565b821115611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e906143e9565b60405180910390fd5b81600b8190555060019050919050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600b5481565b611a52612d21565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab79061423a565b60405180910390fd5b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f3e0ea4f8339b6050ff814971a9814aa39176c149fcf185975c219f33db2342db60405160405180910390a35050565b611bac612d21565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c119061423a565b60405180910390fd5b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396560405160405180910390a35050565b611d06612d21565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b90614477565b60405180910390fd5b611d7d81612e3d565b50565b611d88612d21565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051611dad906144c2565b5f6040518083038185875af1925050503d805f8114611de7576040519150601f19603f3d011682016040523d82523d5f602084013e611dec565b606091505b50508091505050565b600c5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6790614546565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed5906145d4565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611fb891906139de565b60405180910390a3505050565b5f611fd084846119c2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461204a578181101561203c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120339061463c565b60405180910390fd5b6120498484848403611e02565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b5906146ca565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361212c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212390614758565b60405180910390fd5b5f81036121435761213e83835f612f00565b612b59565b61214b6111ee565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156121b957506121896111ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121f157505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561222b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122445750600660149054906101000a900460ff16155b1561269c57600f5f9054906101000a900460ff1661233757601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806122f75750601c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d906147c0565b60405180910390fd5b5b6014600e546123469190613cb7565b43111580156123545750483a115b156123c2575f483a61236691906147de565b90505f633b9aca00600d5461237b9190613f1a565b90508082106123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b69061485b565b60405180910390fd5b50505b601e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561245f5750601d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561250657600a548111156124a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a0906148e9565b60405180910390fd5b600c546124b583611086565b826124c09190613cb7565b1115612501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f890614951565b60405180910390fd5b61269b565b601e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156125a35750601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156125f257600a548111156125ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e4906149df565b60405180910390fd5b61269a565b601d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661269957600c5461264c83611086565b826126579190613cb7565b1115612698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268f90614951565b60405180910390fd5b5b5b5b5b5f6126a630611086565b90505f600b5482101590508080156126ca5750600f60019054906101000a900460ff165b80156126e35750600660149054906101000a900460ff16155b80156127365750601e5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156127895750601c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156127dc5750601c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561281f576001600660146101000a81548160ff02191690831515021790555061280461316c565b5f600660146101000a81548160ff0219169083151502179055505b5f600660149054906101000a900460ff16159050601c5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806128ce5750601c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156128d7575f90505b5f8115612b4057601e5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561293557505f601454115b156129ff5761296260646129546014548861343b90919063ffffffff16565b61345090919063ffffffff16565b9050601454601754826129759190613f1a565b61297f9190613f88565b601a5f82825461298f9190613cb7565b92505081905550601454601554826129a79190613f1a565b6129b19190613f88565b60185f8282546129c19190613cb7565b92505081905550601454601654826129d99190613f1a565b6129e39190613f88565b60195f8282546129f39190613cb7565b92505081905550612b1d565b601e5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612a5657505f601054115b15612b1c57612a836064612a756010548861343b90919063ffffffff16565b61345090919063ffffffff16565b905060105460135482612a969190613f1a565b612aa09190613f88565b601a5f828254612ab09190613cb7565b9250508190555060105460115482612ac89190613f1a565b612ad29190613f88565b60185f828254612ae29190613cb7565b9250508190555060105460125482612afa9190613f1a565b612b049190613f88565b60195f828254612b149190613cb7565b925050819055505b5b5f811115612b3157612b30873083612f00565b5b8085612b3d91906147de565b94505b612b4b878787612f00565b601b54601481905550505050505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc390614a6d565b60405180910390fd5b612bd7825f83613465565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5190614afb565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612d0991906139de565b60405180910390a3612d1c835f8461346a565b505050565b612d29611dfb565b73ffffffffffffffffffffffffffffffffffffffff16612d476111ee565b73ffffffffffffffffffffffffffffffffffffffff1614612d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9490614b63565b60405180910390fd5b565b80601e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f65906146ca565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd390614758565b60405180910390fd5b612fe7838383613465565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561306a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306190614bf1565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161315391906139de565b60405180910390a361316684848461346a565b50505050565b5f61317630611086565b90505f601954601854601a5461318c9190613cb7565b6131969190613cb7565b90505f808314806131a657505f82145b156131b357505050613439565b6014600b546131c29190613f1a565b8311156131db576014600b546131d89190613f1a565b92505b5f600283601a54866131ed9190613f1a565b6131f79190613f88565b6132019190613f88565b90505f613217828661346f90919063ffffffff16565b90505f47905061322682613484565b5f61323a824761346f90919063ffffffff16565b90505f613264876132566018548561343b90919063ffffffff16565b61345090919063ffffffff16565b90505f61328e886132806019548661343b90919063ffffffff16565b61345090919063ffffffff16565b90505f81838561329e91906147de565b6132a891906147de565b90505f601a819055505f6018819055505f6019819055505f871180156132cd57505f81115b1561331a576132dc87826136b7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601a5460405161331193929190614c0f565b60405180910390a15b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161335f906144c2565b5f6040518083038185875af1925050503d805f8114613399576040519150601f19603f3d011682016040523d82523d5f602084013e61339e565b606091505b50508098505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516133e9906144c2565b5f6040518083038185875af1925050503d805f8114613423576040519150601f19603f3d011682016040523d82523d5f602084013e613428565b606091505b505080985050505050505050505050505b565b5f81836134489190613f1a565b905092915050565b5f818361345d9190613f88565b905092915050565b505050565b505050565b5f818361347c91906147de565b905092915050565b5f600267ffffffffffffffff8111156134a05761349f614c44565b5b6040519080825280602002602001820160405280156134ce5781602001602082028036833780820191505090505b50905030815f815181106134e5576134e4614c71565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613588573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135ac9190613d66565b816001815181106135c0576135bf614c71565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613625307f000000000000000000000000000000000000000000000000000000000000000084611e02565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401613686959493929190614d55565b5f604051808303815f87803b15801561369d575f80fd5b505af11580156136af573d5f803e3d5ffd5b505050505050565b6136e2307f000000000000000000000000000000000000000000000000000000000000000084611e02565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161376796959493929190613e57565b60606040518083038185885af1158015613783573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906137a89190613eca565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156137e65780820151818401526020810190506137cb565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61380b826137af565b61381581856137b9565b93506138258185602086016137c9565b61382e816137f1565b840191505092915050565b5f6020820190508181035f8301526138518184613801565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6138868261385d565b9050919050565b6138968161387c565b81146138a0575f80fd5b50565b5f813590506138b18161388d565b92915050565b5f819050919050565b6138c9816138b7565b81146138d3575f80fd5b50565b5f813590506138e4816138c0565b92915050565b5f8060408385031215613900576138ff613859565b5b5f61390d858286016138a3565b925050602061391e858286016138d6565b9150509250929050565b5f8115159050919050565b61393c81613928565b82525050565b5f6020820190506139555f830184613933565b92915050565b5f819050919050565b5f61397e6139796139748461385d565b61395b565b61385d565b9050919050565b5f61398f82613964565b9050919050565b5f6139a082613985565b9050919050565b6139b081613996565b82525050565b5f6020820190506139c95f8301846139a7565b92915050565b6139d8816138b7565b82525050565b5f6020820190506139f15f8301846139cf565b92915050565b5f805f60608486031215613a0e57613a0d613859565b5b5f613a1b868287016138a3565b9350506020613a2c868287016138a3565b9250506040613a3d868287016138d6565b9150509250925092565b613a508161387c565b82525050565b5f602082019050613a695f830184613a47565b92915050565b5f60ff82169050919050565b613a8481613a6f565b82525050565b5f602082019050613a9d5f830184613a7b565b92915050565b5f60208284031215613ab857613ab7613859565b5b5f613ac5848285016138d6565b91505092915050565b5f60208284031215613ae357613ae2613859565b5b5f613af0848285016138a3565b91505092915050565b613b0281613928565b8114613b0c575f80fd5b50565b5f81359050613b1d81613af9565b92915050565b5f8060408385031215613b3957613b38613859565b5b5f613b46858286016138a3565b9250506020613b5785828601613b0f565b9150509250929050565b5f805f60608486031215613b7857613b77613859565b5b5f613b85868287016138d6565b9350506020613b96868287016138d6565b9250506040613ba7868287016138d6565b9150509250925092565b5f8060408385031215613bc757613bc6613859565b5b5f613bd4858286016138d6565b9250506020613be5858286016138d6565b9150509250929050565b5f8060408385031215613c0557613c04613859565b5b5f613c12858286016138a3565b9250506020613c23858286016138a3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613c7157607f821691505b602082108103613c8457613c83613c2d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613cc1826138b7565b9150613ccc836138b7565b9250828201905080821115613ce457613ce3613c8a565b5b92915050565b7f54726164696e6720616c7265616479206163746976652e0000000000000000005f82015250565b5f613d1e6017836137b9565b9150613d2982613cea565b602082019050919050565b5f6020820190508181035f830152613d4b81613d12565b9050919050565b5f81519050613d608161388d565b92915050565b5f60208284031215613d7b57613d7a613859565b5b5f613d8884828501613d52565b91505092915050565b5f604082019050613da45f830185613a47565b613db16020830184613a47565b9392505050565b5f604082019050613dcb5f830185613a47565b613dd860208301846139cf565b9392505050565b5f81519050613ded81613af9565b92915050565b5f60208284031215613e0857613e07613859565b5b5f613e1584828501613ddf565b91505092915050565b5f819050919050565b5f613e41613e3c613e3784613e1e565b61395b565b6138b7565b9050919050565b613e5181613e27565b82525050565b5f60c082019050613e6a5f830189613a47565b613e7760208301886139cf565b613e846040830187613e48565b613e916060830186613e48565b613e9e6080830185613a47565b613eab60a08301846139cf565b979650505050505050565b5f81519050613ec4816138c0565b92915050565b5f805f60608486031215613ee157613ee0613859565b5b5f613eee86828701613eb6565b9350506020613eff86828701613eb6565b9250506040613f1086828701613eb6565b9150509250925092565b5f613f24826138b7565b9150613f2f836138b7565b9250828202613f3d816138b7565b91508282048414831517613f5457613f53613c8a565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613f92826138b7565b9150613f9d836138b7565b925082613fad57613fac613f5b565b5b828204905092915050565b7f45524332303a204d757374206b656570206665657320617420323025206f72205f8201527f6c65737300000000000000000000000000000000000000000000000000000000602082015250565b5f6140126024836137b9565b915061401d82613fb8565b604082019050919050565b5f6020820190508181035f83015261403f81614006565b9050919050565b7f45524332303a2043616e6e6f7420736574206d617854786e206c6f77657220745f8201527f68616e20302e3525000000000000000000000000000000000000000000000000602082015250565b5f6140a06028836137b9565b91506140ab82614046565b604082019050919050565b5f6020820190508181035f8301526140cd81614094565b9050919050565b7f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f77655f8201527f72207468616e20302e3525000000000000000000000000000000000000000000602082015250565b5f61412e602b836137b9565b9150614139826140d4565b604082019050919050565b5f6020820190508181035f83015261415b81614122565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6141bc6025836137b9565b91506141c782614162565b604082019050919050565b5f6020820190508181035f8301526141e9816141b0565b9050919050565b7f45524332303a20416464726573732030000000000000000000000000000000005f82015250565b5f6142246010836137b9565b915061422f826141f0565b602082019050919050565b5f6020820190508181035f83015261425181614218565b9050919050565b5f6020828403121561426d5761426c613859565b5b5f61427a84828501613eb6565b91505092915050565b7f4e6f20746f6b656e7300000000000000000000000000000000000000000000005f82015250565b5f6142b76009836137b9565b91506142c282614283565b602082019050919050565b5f6020820190508181035f8301526142e4816142ab565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f775f8201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000602082015250565b5f614345603c836137b9565b9150614350826142eb565b604082019050919050565b5f6020820190508181035f83015261437281614339565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206869675f8201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000602082015250565b5f6143d3603b836137b9565b91506143de82614379565b604082019050919050565b5f6020820190508181035f830152614400816143c7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6144616026836137b9565b915061446c82614407565b604082019050919050565b5f6020820190508181035f83015261448e81614455565b9050919050565b5f81905092915050565b50565b5f6144ad5f83614495565b91506144b88261449f565b5f82019050919050565b5f6144cc826144a2565b9150819050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6145306024836137b9565b915061453b826144d6565b604082019050919050565b5f6020820190508181035f83015261455d81614524565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6145be6022836137b9565b91506145c982614564565b604082019050919050565b5f6020820190508181035f8301526145eb816145b2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f614626601d836137b9565b9150614631826145f2565b602082019050919050565b5f6020820190508181035f8301526146538161461a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6146b46025836137b9565b91506146bf8261465a565b604082019050919050565b5f6020820190508181035f8301526146e1816146a8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6147426023836137b9565b915061474d826146e8565b604082019050919050565b5f6020820190508181035f83015261476f81614736565b9050919050565b7f45524332303a2054726164696e67206973206e6f74206163746976652e0000005f82015250565b5f6147aa601d836137b9565b91506147b582614776565b602082019050919050565b5f6020820190508181035f8301526147d78161479e565b9050919050565b5f6147e8826138b7565b91506147f3836138b7565b925082820390508181111561480b5761480a613c8a565b5b92915050565b7f53746f70000000000000000000000000000000000000000000000000000000005f82015250565b5f6148456004836137b9565b915061485082614811565b602082019050919050565b5f6020820190508181035f83015261487281614839565b9050919050565b7f45524332303a20427579207472616e7366657220616d6f756e742065786365655f8201527f647320746865206d61785472616e73616374696f6e416d6f756e742e00000000602082015250565b5f6148d3603c836137b9565b91506148de82614879565b604082019050919050565b5f6020820190508181035f830152614900816148c7565b9050919050565b7f45524332303a204d61782077616c6c65742065786365656465640000000000005f82015250565b5f61493b601a836137b9565b915061494682614907565b602082019050919050565b5f6020820190508181035f8301526149688161492f565b9050919050565b7f45524332303a2053656c6c207472616e7366657220616d6f756e7420657863655f8201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e000000602082015250565b5f6149c9603d836137b9565b91506149d48261496f565b604082019050919050565b5f6020820190508181035f8301526149f6816149bd565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f614a576021836137b9565b9150614a62826149fd565b604082019050919050565b5f6020820190508181035f830152614a8481614a4b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f614ae56022836137b9565b9150614af082614a8b565b604082019050919050565b5f6020820190508181035f830152614b1281614ad9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614b4d6020836137b9565b9150614b5882614b19565b602082019050919050565b5f6020820190508181035f830152614b7a81614b41565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614bdb6026836137b9565b9150614be682614b81565b604082019050919050565b5f6020820190508181035f830152614c0881614bcf565b9050919050565b5f606082019050614c225f8301866139cf565b614c2f60208301856139cf565b614c3c60408301846139cf565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b614cd08161387c565b82525050565b5f614ce18383614cc7565b60208301905092915050565b5f602082019050919050565b5f614d0382614c9e565b614d0d8185614ca8565b9350614d1883614cb8565b805f5b83811015614d48578151614d2f8882614cd6565b9750614d3a83614ced565b925050600181019050614d1b565b5085935050505092915050565b5f60a082019050614d685f8301886139cf565b614d756020830187613e48565b8181036040830152614d878186614cf9565b9050614d966060830185613a47565b614da360808301846139cf565b969550505050505056fea264697066735822122034d808069eddd014317ae70d0f6f34c559235ae822aeafa21c1a960b63adf72564736f6c63430008150033000000000000000000000000dcc93e0657de2be1f9a8faccfe470b9d6b875779

Deployed Bytecode

0x608060405260043610610254575f3560e01c80639618839911610138578063cd51e6d4116100b5578063e2f4560511610079578063e2f45605146108c3578063e37ba8f9146108ed578063f023f57314610915578063f2fde38b1461093d578063f5648a4f14610965578063f8b45b051461097b5761025b565b8063cd51e6d4146107cd578063d257b34f146107f7578063d469801614610833578063d85ba0631461085d578063dd62ed3e146108875761025b565b8063c0246668116100fc578063c024666814610701578063c04a541414610729578063c17b5b8c14610753578063c8c8ebe41461077b578063cb963728146107a55761025b565b8063961883991461060f578063a457c2d714610637578063a9059cbb14610673578063aacebbe3146106af578063bbc0c742146106d75761025b565b80634fbee193116101d1578063715018a611610195578063715018a61461052b5780637571336a1461054157806375f0a874146105695780638095d564146105935780638da5cb5b146105bb57806395d89b41146105e55761025b565b80634fbee19314610437578063550c1ea3146104735780636a486a8e1461049b5780636ddd1713146104c557806370a08231146104ef5761025b565b806327c8f8351161021857806327c8f83514610355578063313ce5671461037f57806339509351146103a957806342966c68146103e557806349bd5a5e1461040d5761025b565b806306fdde031461025f578063095ea7b3146102895780631694505e146102c557806318160ddd146102ef57806323b872dd146103195761025b565b3661025b57005b5f80fd5b34801561026a575f80fd5b506102736109a5565b6040516102809190613839565b60405180910390f35b348015610294575f80fd5b506102af60048036038101906102aa91906138ea565b610a35565b6040516102bc9190613942565b60405180910390f35b3480156102d0575f80fd5b506102d9610a57565b6040516102e691906139b6565b60405180910390f35b3480156102fa575f80fd5b50610303610a7b565b60405161031091906139de565b60405180910390f35b348015610324575f80fd5b5061033f600480360381019061033a91906139f7565b610a84565b60405161034c9190613942565b60405180910390f35b348015610360575f80fd5b50610369610ab2565b6040516103769190613a56565b60405180910390f35b34801561038a575f80fd5b50610393610ab8565b6040516103a09190613a8a565b60405180910390f35b3480156103b4575f80fd5b506103cf60048036038101906103ca91906138ea565b610ac0565b6040516103dc9190613942565b60405180910390f35b3480156103f0575f80fd5b5061040b60048036038101906104069190613aa3565b610af6565b005b348015610418575f80fd5b50610421610b03565b60405161042e9190613a56565b60405180910390f35b348015610442575f80fd5b5061045d60048036038101906104589190613ace565b610b28565b60405161046a9190613942565b60405180910390f35b34801561047e575f80fd5b5061049960048036038101906104949190613aa3565b610b7a565b005b3480156104a6575f80fd5b506104af61106d565b6040516104bc91906139de565b60405180910390f35b3480156104d0575f80fd5b506104d9611073565b6040516104e69190613942565b60405180910390f35b3480156104fa575f80fd5b5061051560048036038101906105109190613ace565b611086565b60405161052291906139de565b60405180910390f35b348015610536575f80fd5b5061053f6110cb565b005b34801561054c575f80fd5b5061056760048036038101906105629190613b23565b6110de565b005b348015610574575f80fd5b5061057d61113e565b60405161058a9190613a56565b60405180910390f35b34801561059e575f80fd5b506105b960048036038101906105b49190613b61565b611163565b005b3480156105c6575f80fd5b506105cf6111ee565b6040516105dc9190613a56565b60405180910390f35b3480156105f0575f80fd5b506105f9611216565b6040516106069190613839565b60405180910390f35b34801561061a575f80fd5b5061063560048036038101906106309190613bb1565b6112a6565b005b348015610642575f80fd5b5061065d600480360381019061065891906138ea565b611386565b60405161066a9190613942565b60405180910390f35b34801561067e575f80fd5b50610699600480360381019061069491906138ea565b6113fb565b6040516106a69190613942565b60405180910390f35b3480156106ba575f80fd5b506106d560048036038101906106d09190613ace565b61141d565b005b3480156106e2575f80fd5b506106eb611577565b6040516106f89190613942565b60405180910390f35b34801561070c575f80fd5b5061072760048036038101906107229190613b23565b611589565b005b348015610734575f80fd5b5061073d611637565b60405161074a9190613a56565b60405180910390f35b34801561075e575f80fd5b5061077960048036038101906107749190613b61565b61165c565b005b348015610786575f80fd5b5061078f6116ef565b60405161079c91906139de565b60405180910390f35b3480156107b0575f80fd5b506107cb60048036038101906107c69190613ace565b6116f5565b005b3480156107d8575f80fd5b506107e16118b1565b6040516107ee91906139de565b60405180910390f35b348015610802575f80fd5b5061081d60048036038101906108189190613aa3565b6118b7565b60405161082a9190613942565b60405180910390f35b34801561083e575f80fd5b50610847611997565b6040516108549190613a56565b60405180910390f35b348015610868575f80fd5b506108716119bc565b60405161087e91906139de565b60405180910390f35b348015610892575f80fd5b506108ad60048036038101906108a89190613bef565b6119c2565b6040516108ba91906139de565b60405180910390f35b3480156108ce575f80fd5b506108d7611a44565b6040516108e491906139de565b60405180910390f35b3480156108f8575f80fd5b50610913600480360381019061090e9190613ace565b611a4a565b005b348015610920575f80fd5b5061093b60048036038101906109369190613ace565b611ba4565b005b348015610948575f80fd5b50610963600480360381019061095e9190613ace565b611cfe565b005b348015610970575f80fd5b50610979611d80565b005b348015610986575f80fd5b5061098f611df5565b60405161099c91906139de565b60405180910390f35b6060600380546109b490613c5a565b80601f01602080910402602001604051908101604052809291908181526020018280546109e090613c5a565b8015610a2b5780601f10610a0257610100808354040283529160200191610a2b565b820191905f5260205f20905b815481529060010190602001808311610a0e57829003601f168201915b5050505050905090565b5f80610a3f611dfb565b9050610a4c818585611e02565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b5f80610a8e611dfb565b9050610a9b858285611fc5565b610aa6858585612050565b60019150509392505050565b61dead81565b5f6012905090565b5f80610aca611dfb565b9050610aeb818585610adc85896119c2565b610ae69190613cb7565b611e02565b600191505092915050565b610b003382612b5e565b50565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f601c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610b82612d21565b600f5f9054906101000a900460ff1615610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890613d34565b60405180910390fd5b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c3a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c5e9190613d66565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ce3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d079190613d66565b6040518363ffffffff1660e01b8152600401610d24929190613d91565b6020604051808303815f875af1158015610d40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d649190613d66565b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610def3060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611e02565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401610e8b929190613db8565b6020604051808303815f875af1158015610ea7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ecb9190613df3565b50610ef860065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612d9f565b610f2460065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016110de565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610f6b30611086565b5f80610f756111ee565b426040518863ffffffff1660e01b8152600401610f9796959493929190613e57565b60606040518083038185885af1158015610fb3573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610fd89190613eca565b50505060646001610fe7610a7b565b610ff19190613f1a565b610ffb9190613f88565b600a819055506064600161100d610a7b565b6110179190613f1a565b6110219190613f88565b600c8190555080600d819055506001600f5f6101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff02191690831515021790555043600e8190555050565b60145481565b600f60019054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6110d3612d21565b6110dc5f612e3d565b565b6110e6612d21565b80601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61116b612d21565b8260118190555081601281905550806013819055506013546012546011546111939190613cb7565b61119d9190613cb7565b601081905550601460105411156111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090614028565b60405180910390fd5b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461122590613c5a565b80601f016020809104026020016040519081016040528092919081815260200182805461125190613c5a565b801561129c5780601f106112735761010080835404028352916020019161129c565b820191905f5260205f20905b81548152906001019060200180831161127f57829003601f168201915b5050505050905090565b6112ae612d21565b6103e860056112bb610a7b565b6112c59190613f1a565b6112cf9190613f88565b821015611311576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611308906140b6565b60405180910390fd5b6103e8600561131e610a7b565b6113289190613f1a565b6113329190613f88565b811015611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b90614144565b60405180910390fd5b80600c8190555081600a819055505050565b5f80611390611dfb565b90505f61139d82866119c2565b9050838110156113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d9906141d2565b60405180910390fd5b6113ef8286868403611e02565b60019250505092915050565b5f80611405611dfb565b9050611412818585612050565b600191505092915050565b611425612d21565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a9061423a565b60405180910390fd5b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a35050565b600f5f9054906101000a900460ff1681565b611591612d21565b80601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161162b9190613942565b60405180910390a25050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611664612d21565b82601581905550816016819055508060178190555060175460165460155461168c9190613cb7565b6116969190613cb7565b601481905550601454601b819055506014805411156116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e190614028565b60405180910390fd5b505050565b600a5481565b6116fd612d21565b5f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016117379190613a56565b602060405180830381865afa158015611752573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117769190614258565b116117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad906142cd565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016117f09190613a56565b602060405180830381865afa15801561180b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061182f9190614258565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161186c929190613db8565b6020604051808303815f875af1158015611888573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ac9190613df3565b505050565b600e5481565b5f6118c0612d21565b620186a060016118ce610a7b565b6118d89190613f1a565b6118e29190613f88565b821015611924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191b9061435b565b60405180910390fd5b6103e86005611931610a7b565b61193b9190613f1a565b6119459190613f88565b821115611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e906143e9565b60405180910390fd5b81600b8190555060019050919050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600b5481565b611a52612d21565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab79061423a565b60405180910390fd5b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f3e0ea4f8339b6050ff814971a9814aa39176c149fcf185975c219f33db2342db60405160405180910390a35050565b611bac612d21565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c119061423a565b60405180910390fd5b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396560405160405180910390a35050565b611d06612d21565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b90614477565b60405180910390fd5b611d7d81612e3d565b50565b611d88612d21565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051611dad906144c2565b5f6040518083038185875af1925050503d805f8114611de7576040519150601f19603f3d011682016040523d82523d5f602084013e611dec565b606091505b50508091505050565b600c5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6790614546565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed5906145d4565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611fb891906139de565b60405180910390a3505050565b5f611fd084846119c2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461204a578181101561203c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120339061463c565b60405180910390fd5b6120498484848403611e02565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b5906146ca565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361212c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212390614758565b60405180910390fd5b5f81036121435761213e83835f612f00565b612b59565b61214b6111ee565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156121b957506121896111ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121f157505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561222b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122445750600660149054906101000a900460ff16155b1561269c57600f5f9054906101000a900460ff1661233757601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806122f75750601c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d906147c0565b60405180910390fd5b5b6014600e546123469190613cb7565b43111580156123545750483a115b156123c2575f483a61236691906147de565b90505f633b9aca00600d5461237b9190613f1a565b90508082106123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b69061485b565b60405180910390fd5b50505b601e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561245f5750601d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561250657600a548111156124a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a0906148e9565b60405180910390fd5b600c546124b583611086565b826124c09190613cb7565b1115612501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f890614951565b60405180910390fd5b61269b565b601e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156125a35750601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156125f257600a548111156125ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e4906149df565b60405180910390fd5b61269a565b601d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661269957600c5461264c83611086565b826126579190613cb7565b1115612698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268f90614951565b60405180910390fd5b5b5b5b5b5f6126a630611086565b90505f600b5482101590508080156126ca5750600f60019054906101000a900460ff165b80156126e35750600660149054906101000a900460ff16155b80156127365750601e5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156127895750601c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156127dc5750601c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561281f576001600660146101000a81548160ff02191690831515021790555061280461316c565b5f600660146101000a81548160ff0219169083151502179055505b5f600660149054906101000a900460ff16159050601c5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806128ce5750601c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156128d7575f90505b5f8115612b4057601e5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561293557505f601454115b156129ff5761296260646129546014548861343b90919063ffffffff16565b61345090919063ffffffff16565b9050601454601754826129759190613f1a565b61297f9190613f88565b601a5f82825461298f9190613cb7565b92505081905550601454601554826129a79190613f1a565b6129b19190613f88565b60185f8282546129c19190613cb7565b92505081905550601454601654826129d99190613f1a565b6129e39190613f88565b60195f8282546129f39190613cb7565b92505081905550612b1d565b601e5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612a5657505f601054115b15612b1c57612a836064612a756010548861343b90919063ffffffff16565b61345090919063ffffffff16565b905060105460135482612a969190613f1a565b612aa09190613f88565b601a5f828254612ab09190613cb7565b9250508190555060105460115482612ac89190613f1a565b612ad29190613f88565b60185f828254612ae29190613cb7565b9250508190555060105460125482612afa9190613f1a565b612b049190613f88565b60195f828254612b149190613cb7565b925050819055505b5b5f811115612b3157612b30873083612f00565b5b8085612b3d91906147de565b94505b612b4b878787612f00565b601b54601481905550505050505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc390614a6d565b60405180910390fd5b612bd7825f83613465565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5190614afb565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612d0991906139de565b60405180910390a3612d1c835f8461346a565b505050565b612d29611dfb565b73ffffffffffffffffffffffffffffffffffffffff16612d476111ee565b73ffffffffffffffffffffffffffffffffffffffff1614612d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9490614b63565b60405180910390fd5b565b80601e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f65906146ca565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd390614758565b60405180910390fd5b612fe7838383613465565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561306a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306190614bf1565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161315391906139de565b60405180910390a361316684848461346a565b50505050565b5f61317630611086565b90505f601954601854601a5461318c9190613cb7565b6131969190613cb7565b90505f808314806131a657505f82145b156131b357505050613439565b6014600b546131c29190613f1a565b8311156131db576014600b546131d89190613f1a565b92505b5f600283601a54866131ed9190613f1a565b6131f79190613f88565b6132019190613f88565b90505f613217828661346f90919063ffffffff16565b90505f47905061322682613484565b5f61323a824761346f90919063ffffffff16565b90505f613264876132566018548561343b90919063ffffffff16565b61345090919063ffffffff16565b90505f61328e886132806019548661343b90919063ffffffff16565b61345090919063ffffffff16565b90505f81838561329e91906147de565b6132a891906147de565b90505f601a819055505f6018819055505f6019819055505f871180156132cd57505f81115b1561331a576132dc87826136b7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601a5460405161331193929190614c0f565b60405180910390a15b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161335f906144c2565b5f6040518083038185875af1925050503d805f8114613399576040519150601f19603f3d011682016040523d82523d5f602084013e61339e565b606091505b50508098505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516133e9906144c2565b5f6040518083038185875af1925050503d805f8114613423576040519150601f19603f3d011682016040523d82523d5f602084013e613428565b606091505b505080985050505050505050505050505b565b5f81836134489190613f1a565b905092915050565b5f818361345d9190613f88565b905092915050565b505050565b505050565b5f818361347c91906147de565b905092915050565b5f600267ffffffffffffffff8111156134a05761349f614c44565b5b6040519080825280602002602001820160405280156134ce5781602001602082028036833780820191505090505b50905030815f815181106134e5576134e4614c71565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613588573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135ac9190613d66565b816001815181106135c0576135bf614c71565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613625307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611e02565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401613686959493929190614d55565b5f604051808303815f87803b15801561369d575f80fd5b505af11580156136af573d5f803e3d5ffd5b505050505050565b6136e2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611e02565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161376796959493929190613e57565b60606040518083038185885af1158015613783573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906137a89190613eca565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156137e65780820151818401526020810190506137cb565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61380b826137af565b61381581856137b9565b93506138258185602086016137c9565b61382e816137f1565b840191505092915050565b5f6020820190508181035f8301526138518184613801565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6138868261385d565b9050919050565b6138968161387c565b81146138a0575f80fd5b50565b5f813590506138b18161388d565b92915050565b5f819050919050565b6138c9816138b7565b81146138d3575f80fd5b50565b5f813590506138e4816138c0565b92915050565b5f8060408385031215613900576138ff613859565b5b5f61390d858286016138a3565b925050602061391e858286016138d6565b9150509250929050565b5f8115159050919050565b61393c81613928565b82525050565b5f6020820190506139555f830184613933565b92915050565b5f819050919050565b5f61397e6139796139748461385d565b61395b565b61385d565b9050919050565b5f61398f82613964565b9050919050565b5f6139a082613985565b9050919050565b6139b081613996565b82525050565b5f6020820190506139c95f8301846139a7565b92915050565b6139d8816138b7565b82525050565b5f6020820190506139f15f8301846139cf565b92915050565b5f805f60608486031215613a0e57613a0d613859565b5b5f613a1b868287016138a3565b9350506020613a2c868287016138a3565b9250506040613a3d868287016138d6565b9150509250925092565b613a508161387c565b82525050565b5f602082019050613a695f830184613a47565b92915050565b5f60ff82169050919050565b613a8481613a6f565b82525050565b5f602082019050613a9d5f830184613a7b565b92915050565b5f60208284031215613ab857613ab7613859565b5b5f613ac5848285016138d6565b91505092915050565b5f60208284031215613ae357613ae2613859565b5b5f613af0848285016138a3565b91505092915050565b613b0281613928565b8114613b0c575f80fd5b50565b5f81359050613b1d81613af9565b92915050565b5f8060408385031215613b3957613b38613859565b5b5f613b46858286016138a3565b9250506020613b5785828601613b0f565b9150509250929050565b5f805f60608486031215613b7857613b77613859565b5b5f613b85868287016138d6565b9350506020613b96868287016138d6565b9250506040613ba7868287016138d6565b9150509250925092565b5f8060408385031215613bc757613bc6613859565b5b5f613bd4858286016138d6565b9250506020613be5858286016138d6565b9150509250929050565b5f8060408385031215613c0557613c04613859565b5b5f613c12858286016138a3565b9250506020613c23858286016138a3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613c7157607f821691505b602082108103613c8457613c83613c2d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613cc1826138b7565b9150613ccc836138b7565b9250828201905080821115613ce457613ce3613c8a565b5b92915050565b7f54726164696e6720616c7265616479206163746976652e0000000000000000005f82015250565b5f613d1e6017836137b9565b9150613d2982613cea565b602082019050919050565b5f6020820190508181035f830152613d4b81613d12565b9050919050565b5f81519050613d608161388d565b92915050565b5f60208284031215613d7b57613d7a613859565b5b5f613d8884828501613d52565b91505092915050565b5f604082019050613da45f830185613a47565b613db16020830184613a47565b9392505050565b5f604082019050613dcb5f830185613a47565b613dd860208301846139cf565b9392505050565b5f81519050613ded81613af9565b92915050565b5f60208284031215613e0857613e07613859565b5b5f613e1584828501613ddf565b91505092915050565b5f819050919050565b5f613e41613e3c613e3784613e1e565b61395b565b6138b7565b9050919050565b613e5181613e27565b82525050565b5f60c082019050613e6a5f830189613a47565b613e7760208301886139cf565b613e846040830187613e48565b613e916060830186613e48565b613e9e6080830185613a47565b613eab60a08301846139cf565b979650505050505050565b5f81519050613ec4816138c0565b92915050565b5f805f60608486031215613ee157613ee0613859565b5b5f613eee86828701613eb6565b9350506020613eff86828701613eb6565b9250506040613f1086828701613eb6565b9150509250925092565b5f613f24826138b7565b9150613f2f836138b7565b9250828202613f3d816138b7565b91508282048414831517613f5457613f53613c8a565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613f92826138b7565b9150613f9d836138b7565b925082613fad57613fac613f5b565b5b828204905092915050565b7f45524332303a204d757374206b656570206665657320617420323025206f72205f8201527f6c65737300000000000000000000000000000000000000000000000000000000602082015250565b5f6140126024836137b9565b915061401d82613fb8565b604082019050919050565b5f6020820190508181035f83015261403f81614006565b9050919050565b7f45524332303a2043616e6e6f7420736574206d617854786e206c6f77657220745f8201527f68616e20302e3525000000000000000000000000000000000000000000000000602082015250565b5f6140a06028836137b9565b91506140ab82614046565b604082019050919050565b5f6020820190508181035f8301526140cd81614094565b9050919050565b7f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f77655f8201527f72207468616e20302e3525000000000000000000000000000000000000000000602082015250565b5f61412e602b836137b9565b9150614139826140d4565b604082019050919050565b5f6020820190508181035f83015261415b81614122565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6141bc6025836137b9565b91506141c782614162565b604082019050919050565b5f6020820190508181035f8301526141e9816141b0565b9050919050565b7f45524332303a20416464726573732030000000000000000000000000000000005f82015250565b5f6142246010836137b9565b915061422f826141f0565b602082019050919050565b5f6020820190508181035f83015261425181614218565b9050919050565b5f6020828403121561426d5761426c613859565b5b5f61427a84828501613eb6565b91505092915050565b7f4e6f20746f6b656e7300000000000000000000000000000000000000000000005f82015250565b5f6142b76009836137b9565b91506142c282614283565b602082019050919050565b5f6020820190508181035f8301526142e4816142ab565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f775f8201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000602082015250565b5f614345603c836137b9565b9150614350826142eb565b604082019050919050565b5f6020820190508181035f83015261437281614339565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206869675f8201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000602082015250565b5f6143d3603b836137b9565b91506143de82614379565b604082019050919050565b5f6020820190508181035f830152614400816143c7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6144616026836137b9565b915061446c82614407565b604082019050919050565b5f6020820190508181035f83015261448e81614455565b9050919050565b5f81905092915050565b50565b5f6144ad5f83614495565b91506144b88261449f565b5f82019050919050565b5f6144cc826144a2565b9150819050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6145306024836137b9565b915061453b826144d6565b604082019050919050565b5f6020820190508181035f83015261455d81614524565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6145be6022836137b9565b91506145c982614564565b604082019050919050565b5f6020820190508181035f8301526145eb816145b2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f614626601d836137b9565b9150614631826145f2565b602082019050919050565b5f6020820190508181035f8301526146538161461a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6146b46025836137b9565b91506146bf8261465a565b604082019050919050565b5f6020820190508181035f8301526146e1816146a8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6147426023836137b9565b915061474d826146e8565b604082019050919050565b5f6020820190508181035f83015261476f81614736565b9050919050565b7f45524332303a2054726164696e67206973206e6f74206163746976652e0000005f82015250565b5f6147aa601d836137b9565b91506147b582614776565b602082019050919050565b5f6020820190508181035f8301526147d78161479e565b9050919050565b5f6147e8826138b7565b91506147f3836138b7565b925082820390508181111561480b5761480a613c8a565b5b92915050565b7f53746f70000000000000000000000000000000000000000000000000000000005f82015250565b5f6148456004836137b9565b915061485082614811565b602082019050919050565b5f6020820190508181035f83015261487281614839565b9050919050565b7f45524332303a20427579207472616e7366657220616d6f756e742065786365655f8201527f647320746865206d61785472616e73616374696f6e416d6f756e742e00000000602082015250565b5f6148d3603c836137b9565b91506148de82614879565b604082019050919050565b5f6020820190508181035f830152614900816148c7565b9050919050565b7f45524332303a204d61782077616c6c65742065786365656465640000000000005f82015250565b5f61493b601a836137b9565b915061494682614907565b602082019050919050565b5f6020820190508181035f8301526149688161492f565b9050919050565b7f45524332303a2053656c6c207472616e7366657220616d6f756e7420657863655f8201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e000000602082015250565b5f6149c9603d836137b9565b91506149d48261496f565b604082019050919050565b5f6020820190508181035f8301526149f6816149bd565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f614a576021836137b9565b9150614a62826149fd565b604082019050919050565b5f6020820190508181035f830152614a8481614a4b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f614ae56022836137b9565b9150614af082614a8b565b604082019050919050565b5f6020820190508181035f830152614b1281614ad9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614b4d6020836137b9565b9150614b5882614b19565b602082019050919050565b5f6020820190508181035f830152614b7a81614b41565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614bdb6026836137b9565b9150614be682614b81565b604082019050919050565b5f6020820190508181035f830152614c0881614bcf565b9050919050565b5f606082019050614c225f8301866139cf565b614c2f60208301856139cf565b614c3c60408301846139cf565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b614cd08161387c565b82525050565b5f614ce18383614cc7565b60208301905092915050565b5f602082019050919050565b5f614d0382614c9e565b614d0d8185614ca8565b9350614d1883614cb8565b805f5b83811015614d48578151614d2f8882614cd6565b9750614d3a83614ced565b925050600181019050614d1b565b5085935050505092915050565b5f60a082019050614d685f8301886139cf565b614d756020830187613e48565b8181036040830152614d878186614cf9565b9050614d966060830185613a47565b614da360808301846139cf565b969550505050505056fea264697066735822122034d808069eddd014317ae70d0f6f34c559235ae822aeafa21c1a960b63adf72564736f6c63430008150033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000dcc93e0657de2be1f9a8faccfe470b9d6b875779

-----Decoded View---------------
Arg [0] : _owner (address): 0xdcC93e0657De2bE1f9A8FACCfe470b9d6b875779

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000dcc93e0657de2be1f9a8faccfe470b9d6b875779


Deployed Bytecode Sourcemap

34783:16251:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9518:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12019:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34858:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10647:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12841:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34951:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10489:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13545:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38889:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34916:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44139:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38980:1074;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35568:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35376:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10818:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2898:103;;;;;;;;;;;;;:::i;:::-;;41096:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35043:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41271:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2257:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9737:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40581:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14318:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11201:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42257:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35336:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43299:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35080:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41721:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35158:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43680:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35300:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40062:511;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35119:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35416:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11498:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35200:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42957:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42599:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3156:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43489:183;;;;;;;;;;;;;:::i;:::-;;35240:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9518:100;9572:13;9605:5;9598:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9518:100;:::o;12019:242::-;12138:4;12160:13;12176:12;:10;:12::i;:::-;12160:28;;12199:32;12208:5;12215:7;12224:6;12199:8;:32::i;:::-;12249:4;12242:11;;;12019:242;;;;:::o;34858:51::-;;;:::o;10647:108::-;10708:7;10735:12;;10728:19;;10647:108;:::o;12841:295::-;12972:4;12989:15;13007:12;:10;:12::i;:::-;12989:30;;13030:38;13046:4;13052:7;13061:6;13030:15;:38::i;:::-;13079:27;13089:4;13095:2;13099:6;13079:9;:27::i;:::-;13124:4;13117:11;;;12841:295;;;;;:::o;34951:53::-;34997:6;34951:53;:::o;10489:93::-;10547:5;10572:2;10565:9;;10489:93;:::o;13545:270::-;13660:4;13682:13;13698:12;:10;:12::i;:::-;13682:28;;13721:64;13730:5;13737:7;13774:10;13746:25;13756:5;13763:7;13746:9;:25::i;:::-;:38;;;;:::i;:::-;13721:8;:64::i;:::-;13803:4;13796:11;;;13545:270;;;;:::o;38889:83::-;38939:25;38945:10;38957:6;38939:5;:25::i;:::-;38889:83;:::o;34916:28::-;;;;;;;;;;;;;:::o;44139:126::-;44205:4;44229:19;:28;44249:7;44229:28;;;;;;;;;;;;;;;;;;;;;;;;;44222:35;;44139:126;;;:::o;38980:1074::-;2143:13;:11;:13::i;:::-;39049::::1;;;;;;;;;;;39048:14;39040:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;39137:15;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39119:55;;;39197:4;39217:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39119:131;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39103:13;;:147;;;;;;;;;;;;;;;;;;39261:66;39278:4;39293:13;;;;;;;;;;;39309:17;39261:8;:66::i;:::-;39345:13;;;;;;;;;;;39338:29;;;39390:15;39421:17;39338:111;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39462:58;39499:13;;;;;;;;;;;39515:4;39462:28;:58::i;:::-;39531:55;39565:13;;;;;;;;;;;39581:4;39531:25;:55::i;:::-;39599:15;:31;;;39638:21;39683:4;39703:24;39721:4;39703:9;:24::i;:::-;39742:1;39758::::0;39774:7:::1;:5;:7::i;:::-;39796:15;39599:223;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;39878:3;39873:1;39857:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39856:25;;;;:::i;:::-;39833:20;:48;;;;39926:3;39921:1;39905:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39904:25;;;;:::i;:::-;39892:9;:37;;;;39945:3;39940:2;:8;;;;39975:4;39959:13;;:20;;;;;;;;;;;;;;;;;;40004:4;39990:11;;:18;;;;;;;;;;;;;;;;;;40034:12;40019;:27;;;;38980:1074:::0;:::o;35568:28::-;;;;:::o;35376:31::-;;;;;;;;;;;;;:::o;10818:177::-;10937:7;10969:9;:18;10979:7;10969:18;;;;;;;;;;;;;;;;10962:25;;10818:177;;;:::o;2898:103::-;2143:13;:11;:13::i;:::-;2963:30:::1;2990:1;2963:18;:30::i;:::-;2898:103::o:0;41096:167::-;2143:13;:11;:13::i;:::-;41251:4:::1;41209:31;:39;41241:6;41209:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;41096:167:::0;;:::o;35043:30::-;;;;;;;;;;;;;:::o;41271:442::-;2143:13;:11;:13::i;:::-;41447::::1;41429:15;:31;;;;41491:15;41471:17;:35;;;;41535:13;41517:15;:31;;;;41612:15;;41592:17;;41574:15;;:35;;;;:::i;:::-;:53;;;;:::i;:::-;41559:12;:68;;;;41662:2;41646:12;;:18;;41638:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;41271:442:::0;;;:::o;2257:87::-;2303:7;2330:6;;;;;;;;;;;2323:13;;2257:87;:::o;9737:104::-;9793:13;9826:7;9819:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9737:104;:::o;40581:507::-;2143:13;:11;:13::i;:::-;40775:4:::1;40770:1;40754:13;:11;:13::i;:::-;:17;;;;:::i;:::-;40753:26;;;;:::i;:::-;40739:9;:41;;40717:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;40923:4;40918:1;40902:13;:11;:13::i;:::-;:17;;;;:::i;:::-;40901:26;;;;:::i;:::-;40881:15;:47;;40859:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;41022:15;41010:9;:27;;;;41071:9;41048:20;:32;;;;40581:507:::0;;:::o;14318:505::-;14438:4;14460:13;14476:12;:10;:12::i;:::-;14460:28;;14499:24;14526:25;14536:5;14543:7;14526:9;:25::i;:::-;14499:52;;14604:15;14584:16;:35;;14562:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;14720:60;14729:5;14736:7;14764:15;14745:16;:34;14720:8;:60::i;:::-;14811:4;14804:11;;;;14318:505;;;;:::o;11201:234::-;11316:4;11338:13;11354:12;:10;:12::i;:::-;11338:28;;11377;11387:5;11394:2;11398:6;11377:9;:28::i;:::-;11423:4;11416:11;;;11201:234;;;;:::o;42257:334::-;2143:13;:11;:13::i;:::-;42403:1:::1;42375:30;;:16;:30;;::::0;42367:59:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;42437:17;42457:15;;;;;;;;;;;42437:35;;42501:16;42483:15;;:34;;;;;;;;;;;;;;;;;;42573:9;42533:50;;42556:15;;;;;;;;;;;42533:50;;;;;;;;;;;;42356:235;42257:334:::0;:::o;35336:33::-;;;;;;;;;;;;;:::o;43299:182::-;2143:13;:11;:13::i;:::-;43415:8:::1;43384:19;:28;43404:7;43384:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;43455:7;43439:34;;;43464:8;43439:34;;;;;;:::i;:::-;;;;;;;;43299:182:::0;;:::o;35080:32::-;;;;;;;;;;;;;:::o;41721:528::-;2143:13;:11;:13::i;:::-;41899::::1;41880:16;:32;;;;41944:15;41923:18;:36;;;;41989:13;41970:16;:32;;;;42108:16;;42074:18;;42042:16;;:50;;;;:::i;:::-;:82;;;;:::i;:::-;42013:13;:111;;;;42149:13;;42135:11;:27;;;;42198:2;42181:13:::0;::::1;:19;;42173:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41721:528:::0;;;:::o;35158:35::-;;;;:::o;43680:255::-;2143:13;:11;:13::i;:::-;43797:1:::1;43765:3;43758:21;;;43788:4;43758:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;43750:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;43823:14;43847:3;43840:21;;;43870:4;43840:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43823:53;;43894:3;43887:20;;;43908:10;43920:6;43887:40;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43739:196;43680:255:::0;:::o;35300:27::-;;;;:::o;40062:511::-;40170:4;2143:13;:11;:13::i;:::-;40249:6:::1;40244:1;40228:13;:11;:13::i;:::-;:17;;;;:::i;:::-;40227:28;;;;:::i;:::-;40214:9;:41;;40192:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;40411:4;40406:1;40390:13;:11;:13::i;:::-;:17;;;;:::i;:::-;40389:26;;;;:::i;:::-;40376:9;:39;;40354:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;40534:9;40513:18;:30;;;;40561:4;40554:11;;40062:511:::0;;;:::o;35119:30::-;;;;;;;;;;;;;:::o;35416:27::-;;;;:::o;11498:201::-;11632:7;11664:11;:18;11676:5;11664:18;;;;;;;;;;;;;;;:27;11683:7;11664:27;;;;;;;;;;;;;;;;11657:34;;11498:201;;;;:::o;35200:33::-;;;;:::o;42957:334::-;2143:13;:11;:13::i;:::-;43103:1:::1;43075:30;;:16;:30;;::::0;43067:59:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43137:17;43157:15;;;;;;;;;;;43137:35;;43201:16;43183:15;;:34;;;;;;;;;;;;;;;;;;43273:9;43233:50;;43256:15;;;;;;;;;;;43233:50;;;;;;;;;;;;43056:235;42957:334:::0;:::o;42599:350::-;2143:13;:11;:13::i;:::-;42751:1:::1;42721:32;;:18;:32;;::::0;42713:61:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;42785:17;42805;;;;;;;;;;;42785:37;;42853:18;42833:17;;:38;;;;;;;;;;;;;;;;;;42931:9;42887:54;;42912:17;;;;;;;;;;;42887:54;;;;;;;;;;;;42702:247;42599:350:::0;:::o;3156:238::-;2143:13;:11;:13::i;:::-;3279:1:::1;3259:22;;:8;:22;;::::0;3237:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3358:28;3377:8;3358:18;:28::i;:::-;3156:238:::0;:::o;43489:183::-;2143:13;:11;:13::i;:::-;43545:12:::1;43590:10;43582:24;;43614:21;43582:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43568:96;;;;;43534:138;43489:183::o:0;35240:24::-;;;;:::o;802:98::-;855:7;882:10;875:17;;802:98;:::o;18451:380::-;18604:1;18587:19;;:5;:19;;;18579:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18685:1;18666:21;;:7;:21;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18769:6;18739:11;:18;18751:5;18739:18;;;;;;;;;;;;;;;:27;18758:7;18739:27;;;;;;;;;;;;;;;:36;;;;18807:7;18791:32;;18800:5;18791:32;;;18816:6;18791:32;;;;;;:::i;:::-;;;;;;;;18451:380;;;:::o;19122:502::-;19257:24;19284:25;19294:5;19301:7;19284:9;:25::i;:::-;19257:52;;19344:17;19324:16;:37;19320:297;;19424:6;19404:16;:26;;19378:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;19539:51;19548:5;19555:7;19583:6;19564:16;:25;19539:8;:51::i;:::-;19320:297;19246:378;19122:502;;;:::o;44273:4024::-;44421:1;44405:18;;:4;:18;;;44397:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44498:1;44484:16;;:2;:16;;;44476:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;44567:1;44557:6;:11;44553:93;;44585:28;44601:4;44607:2;44611:1;44585:15;:28::i;:::-;44628:7;;44553:93;44684:7;:5;:7::i;:::-;44676:15;;:4;:15;;;;:45;;;;;44714:7;:5;:7::i;:::-;44708:13;;:2;:13;;;;44676:45;:78;;;;;44752:1;44738:16;;:2;:16;;;;44676:78;:112;;;;;34997:6;44771:17;;:2;:17;;;;44676:112;:138;;;;;44806:8;;;;;;;;;;;44805:9;44676:138;44658:1797;;;44846:13;;;;;;;;;;;44841:210;;44910:19;:25;44930:4;44910:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44939:19;:23;44959:2;44939:23;;;;;;;;;;;;;;;;;;;;;;;;;44910:52;44880:155;;;;;;;;;;;;:::i;:::-;;;;;;;;;44841:210;45120:2;45105:12;;:17;;;;:::i;:::-;45089:12;:33;;:64;;;;;45140:13;45126:11;:27;45089:64;45067:270;;;45188:11;45216:13;45202:11;:27;;;;:::i;:::-;45188:41;;45248:12;45269:5;45263:2;;:12;;;;:::i;:::-;45248:27;;45308:4;45302:3;:10;45294:27;;;;;;;;;;;;:::i;:::-;;;;;;;;;45169:168;;45067:270;45399:25;:31;45425:4;45399:31;;;;;;;;;;;;;;;;;;;;;;;;;:88;;;;;45452:31;:35;45484:2;45452:35;;;;;;;;;;;;;;;;;;;;;;;;;45451:36;45399:88;45377:1067;;;45562:20;;45552:6;:30;;45522:164;;;;;;;;;;;;:::i;:::-;;;;;;;;;45761:9;;45744:13;45754:2;45744:9;:13::i;:::-;45735:6;:22;;;;:::i;:::-;:35;;45705:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;45377:1067;;;45922:25;:29;45948:2;45922:29;;;;;;;;;;;;;;;;;;;;;;;;;:88;;;;;45973:31;:37;46005:4;45973:37;;;;;;;;;;;;;;;;;;;;;;;;;45972:38;45922:88;45900:544;;;46085:20;;46075:6;:30;;46045:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;45900:544;;;46237:31;:35;46269:2;46237:35;;;;;;;;;;;;;;;;;;;;;;;;;46232:212;;46349:9;;46332:13;46342:2;46332:9;:13::i;:::-;46323:6;:22;;;;:::i;:::-;:35;;46293:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;46232:212;45900:544;45377:1067;44658:1797;46467:28;46498:24;46516:4;46498:9;:24::i;:::-;46467:55;;46535:12;46574:18;;46550:20;:42;;46535:57;;46623:7;:35;;;;;46647:11;;;;;;;;;;;46623:35;:61;;;;;46676:8;;;;;;;;;;;46675:9;46623:61;:110;;;;;46702:25;:31;46728:4;46702:31;;;;;;;;;;;;;;;;;;;;;;;;;46701:32;46623:110;:153;;;;;46751:19;:25;46771:4;46751:25;;;;;;;;;;;;;;;;;;;;;;;;;46750:26;46623:153;:194;;;;;46794:19;:23;46814:2;46794:23;;;;;;;;;;;;;;;;;;;;;;;;;46793:24;46623:194;46605:326;;;46855:4;46844:8;;:15;;;;;;;;;;;;;;;;;;46876:10;:8;:10::i;:::-;46914:5;46903:8;;:16;;;;;;;;;;;;;;;;;;46605:326;46943:12;46959:8;;;;;;;;;;;46958:9;46943:24;;46984:19;:25;47004:4;46984:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;47013:19;:23;47033:2;47013:23;;;;;;;;;;;;;;;;;;;;;;;;;46984:52;46980:100;;;47063:5;47053:15;;46980:100;47092:12;47125:7;47121:1085;;;47177:25;:29;47203:2;47177:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;47226:1;47210:13;;:17;47177:50;47173:884;;;47255:34;47285:3;47255:25;47266:13;;47255:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;47248:41;;47358:13;;47338:16;;47331:4;:23;;;;:::i;:::-;47330:41;;;;:::i;:::-;47308:18;;:63;;;;;;;:::i;:::-;;;;;;;;47440:13;;47420:16;;47413:4;:23;;;;:::i;:::-;47412:41;;;;:::i;:::-;47390:18;;:63;;;;;;;:::i;:::-;;;;;;;;47568:13;;47525:18;;47518:4;:25;;;;:::i;:::-;47517:64;;;;:::i;:::-;47472:20;;:109;;;;;;;:::i;:::-;;;;;;;;47173:884;;;47643:25;:31;47669:4;47643:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;47693:1;47678:12;;:16;47643:51;47639:418;;;47722:33;47751:3;47722:24;47733:12;;47722:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;47715:40;;47823:12;;47804:15;;47797:4;:22;;;;:::i;:::-;47796:39;;;;:::i;:::-;47774:18;;:61;;;;;;;:::i;:::-;;;;;;;;47903:12;;47884:15;;47877:4;:22;;;;:::i;:::-;47876:39;;;;:::i;:::-;47854:18;;:61;;;;;;;:::i;:::-;;;;;;;;48029:12;;47987:17;;47980:4;:24;;;;:::i;:::-;47979:62;;;;:::i;:::-;47934:20;;:107;;;;;;;:::i;:::-;;;;;;;;47639:418;47173:884;48084:1;48077:4;:8;48073:91;;;48106:42;48122:4;48136;48143;48106:15;:42::i;:::-;48073:91;48190:4;48180:14;;;;;:::i;:::-;;;47121:1085;48218:33;48234:4;48240:2;48244:6;48218:15;:33::i;:::-;48278:11;;48262:13;:27;;;;44386:3911;;;;44273:4024;;;;:::o;17338:675::-;17441:1;17422:21;;:7;:21;;;17414:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17494:49;17515:7;17532:1;17536:6;17494:20;:49::i;:::-;17556:22;17581:9;:18;17591:7;17581:18;;;;;;;;;;;;;;;;17556:43;;17636:6;17618:14;:24;;17610:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17755:6;17738:14;:23;17717:9;:18;17727:7;17717:18;;;;;;;;;;;;;;;:44;;;;17872:6;17856:12;;:22;;;;;;;;;;;17933:1;17907:37;;17916:7;17907:37;;;17937:6;17907:37;;;;;;:::i;:::-;;;;;;;;17957:48;17977:7;17994:1;17998:6;17957:19;:48::i;:::-;17403:610;17338:675;;:::o;2422:132::-;2497:12;:10;:12::i;:::-;2486:23;;:7;:5;:7::i;:::-;:23;;;2478:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2422:132::o;43943:188::-;44060:5;44026:25;:31;44052:4;44026:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;44117:5;44083:40;;44111:4;44083:40;;;;;;;;;;;;43943:188;;:::o;3554:191::-;3628:16;3647:6;;;;;;;;;;;3628:25;;3673:8;3664:6;;:17;;;;;;;;;;;;;;;;;;3728:8;3697:40;;3718:8;3697:40;;;;;;;;;;;;3617:128;3554:191;:::o;15293:877::-;15440:1;15424:18;;:4;:18;;;15416:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15517:1;15503:16;;:2;:16;;;15495:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15572:38;15593:4;15599:2;15603:6;15572:20;:38::i;:::-;15623:19;15645:9;:15;15655:4;15645:15;;;;;;;;;;;;;;;;15623:37;;15708:6;15693:11;:21;;15671:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;15848:6;15834:11;:20;15816:9;:15;15826:4;15816:15;;;;;;;;;;;;;;;:38;;;;16051:6;16034:9;:13;16044:2;16034:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;16101:2;16086:26;;16095:4;16086:26;;;16105:6;16086:26;;;;;;:::i;:::-;;;;;;;;16125:37;16145:4;16151:2;16155:6;16125:19;:37::i;:::-;15405:765;15293:877;;;:::o;49192:1839::-;49231:23;49257:24;49275:4;49257:9;:24::i;:::-;49231:50;;49292:25;49388:20;;49354:18;;49320;;:52;;;;:::i;:::-;:88;;;;:::i;:::-;49292:116;;49419:12;49467:1;49448:15;:20;:46;;;;49493:1;49472:17;:22;49448:46;49444:85;;;49511:7;;;;;49444:85;49584:2;49563:18;;:23;;;;:::i;:::-;49545:15;:41;49541:115;;;49642:2;49621:18;;:23;;;;:::i;:::-;49603:41;;49541:115;49668:23;49781:1;49748:17;49713:18;;49695:15;:36;;;;:::i;:::-;49694:71;;;;:::i;:::-;:88;;;;:::i;:::-;49668:114;;49793:26;49822:36;49842:15;49822;:19;;:36;;;;:::i;:::-;49793:65;;49871:25;49899:21;49871:49;;49933:36;49950:18;49933:16;:36::i;:::-;49982:18;50003:44;50029:17;50003:21;:25;;:44;;;;:::i;:::-;49982:65;;50060:23;50086:81;50139:17;50086:34;50101:18;;50086:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;50060:107;;50180:25;50208:83;50263:17;50208:36;50223:20;;50208:10;:14;;:36;;;;:::i;:::-;:40;;:83;;;;:::i;:::-;50180:111;;50304:23;50387:17;50356:15;50330:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;50304:100;;50438:1;50417:18;:22;;;;50471:1;50450:18;:22;;;;50506:1;50483:20;:24;;;;50542:1;50524:15;:19;:42;;;;;50565:1;50547:15;:19;50524:42;50520:278;;;50583:46;50596:15;50613;50583:12;:46::i;:::-;50649:137;50682:18;50719:15;50753:18;;50649:137;;;;;;;;:::i;:::-;;;;;;;;50520:278;50832:17;;;;;;;;;;;50824:31;;50863:17;50824:85;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50810:99;;;;;50944:15;;;;;;;;;;;50936:29;;50987:21;50936:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50922:101;;;;;49220:1811;;;;;;;;;;49192:1839;:::o;24799:98::-;24857:7;24888:1;24884;:5;;;;:::i;:::-;24877:12;;24799:98;;;;:::o;25198:::-;25256:7;25287:1;25283;:5;;;;:::i;:::-;25276:12;;25198:98;;;;:::o;20224:125::-;;;;:::o;20953:124::-;;;;:::o;24442:98::-;24500:7;24531:1;24527;:5;;;;:::i;:::-;24520:12;;24442:98;;;;:::o;48305:501::-;48371:21;48409:1;48395:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48371:40;;48440:4;48422;48427:1;48422:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;48466:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48456:4;48461:1;48456:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;48501:62;48518:4;48533:15;48551:11;48501:8;:62::i;:::-;48602:15;:66;;;48683:11;48709:1;48725:4;48752;48772:15;48602:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48360:446;48305:501;:::o;48814:370::-;48895:62;48912:4;48927:15;48945:11;48895:8;:62::i;:::-;48970:15;:31;;;49009:9;49042:4;49062:11;49088:1;49104;49120:15;;;;;;;;;;;49150;48970:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;48814:370;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:619::-;4853:6;4861;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;5299:2;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5270:118;4776:619;;;;;:::o;5401:118::-;5488:24;5506:5;5488:24;:::i;:::-;5483:3;5476:37;5401:118;;:::o;5525:222::-;5618:4;5656:2;5645:9;5641:18;5633:26;;5669:71;5737:1;5726:9;5722:17;5713:6;5669:71;:::i;:::-;5525:222;;;;:::o;5753:86::-;5788:7;5828:4;5821:5;5817:16;5806:27;;5753:86;;;:::o;5845:112::-;5928:22;5944:5;5928:22;:::i;:::-;5923:3;5916:35;5845:112;;:::o;5963:214::-;6052:4;6090:2;6079:9;6075:18;6067:26;;6103:67;6167:1;6156:9;6152:17;6143:6;6103:67;:::i;:::-;5963:214;;;;:::o;6183:329::-;6242:6;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6417:1;6442:53;6487:7;6478:6;6467:9;6463:22;6442:53;:::i;:::-;6432:63;;6388:117;6183:329;;;;:::o;6518:::-;6577:6;6626:2;6614:9;6605:7;6601:23;6597:32;6594:119;;;6632:79;;:::i;:::-;6594:119;6752:1;6777:53;6822:7;6813:6;6802:9;6798:22;6777:53;:::i;:::-;6767:63;;6723:117;6518:329;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:468::-;7179:6;7187;7236:2;7224:9;7215:7;7211:23;7207:32;7204:119;;;7242:79;;:::i;:::-;7204:119;7362:1;7387:53;7432:7;7423:6;7412:9;7408:22;7387:53;:::i;:::-;7377:63;;7333:117;7489:2;7515:50;7557:7;7548:6;7537:9;7533:22;7515:50;:::i;:::-;7505:60;;7460:115;7114:468;;;;;:::o;7588:619::-;7665:6;7673;7681;7730:2;7718:9;7709:7;7705:23;7701:32;7698:119;;;7736:79;;:::i;:::-;7698:119;7856:1;7881:53;7926:7;7917:6;7906:9;7902:22;7881:53;:::i;:::-;7871:63;;7827:117;7983:2;8009:53;8054:7;8045:6;8034:9;8030:22;8009:53;:::i;:::-;7999:63;;7954:118;8111:2;8137:53;8182:7;8173:6;8162:9;8158:22;8137:53;:::i;:::-;8127:63;;8082:118;7588:619;;;;;:::o;8213:474::-;8281:6;8289;8338:2;8326:9;8317:7;8313:23;8309:32;8306:119;;;8344:79;;:::i;:::-;8306:119;8464:1;8489:53;8534:7;8525:6;8514:9;8510:22;8489:53;:::i;:::-;8479:63;;8435:117;8591:2;8617:53;8662:7;8653:6;8642:9;8638:22;8617:53;:::i;:::-;8607:63;;8562:118;8213:474;;;;;:::o;8693:::-;8761:6;8769;8818:2;8806:9;8797:7;8793:23;8789:32;8786:119;;;8824:79;;:::i;:::-;8786:119;8944:1;8969:53;9014:7;9005:6;8994:9;8990:22;8969:53;:::i;:::-;8959:63;;8915:117;9071:2;9097:53;9142:7;9133:6;9122:9;9118:22;9097:53;:::i;:::-;9087:63;;9042:118;8693:474;;;;;:::o;9173:180::-;9221:77;9218:1;9211:88;9318:4;9315:1;9308:15;9342:4;9339:1;9332:15;9359:320;9403:6;9440:1;9434:4;9430:12;9420:22;;9487:1;9481:4;9477:12;9508:18;9498:81;;9564:4;9556:6;9552:17;9542:27;;9498:81;9626:2;9618:6;9615:14;9595:18;9592:38;9589:84;;9645:18;;:::i;:::-;9589:84;9410:269;9359:320;;;:::o;9685:180::-;9733:77;9730:1;9723:88;9830:4;9827:1;9820:15;9854:4;9851:1;9844:15;9871:191;9911:3;9930:20;9948:1;9930:20;:::i;:::-;9925:25;;9964:20;9982:1;9964:20;:::i;:::-;9959:25;;10007:1;10004;10000:9;9993:16;;10028:3;10025:1;10022:10;10019:36;;;10035:18;;:::i;:::-;10019:36;9871:191;;;;:::o;10068:173::-;10208:25;10204:1;10196:6;10192:14;10185:49;10068:173;:::o;10247:366::-;10389:3;10410:67;10474:2;10469:3;10410:67;:::i;:::-;10403:74;;10486:93;10575:3;10486:93;:::i;:::-;10604:2;10599:3;10595:12;10588:19;;10247:366;;;:::o;10619:419::-;10785:4;10823:2;10812:9;10808:18;10800:26;;10872:9;10866:4;10862:20;10858:1;10847:9;10843:17;10836:47;10900:131;11026:4;10900:131;:::i;:::-;10892:139;;10619:419;;;:::o;11044:143::-;11101:5;11132:6;11126:13;11117:22;;11148:33;11175:5;11148:33;:::i;:::-;11044:143;;;;:::o;11193:351::-;11263:6;11312:2;11300:9;11291:7;11287:23;11283:32;11280:119;;;11318:79;;:::i;:::-;11280:119;11438:1;11463:64;11519:7;11510:6;11499:9;11495:22;11463:64;:::i;:::-;11453:74;;11409:128;11193:351;;;;:::o;11550:332::-;11671:4;11709:2;11698:9;11694:18;11686:26;;11722:71;11790:1;11779:9;11775:17;11766:6;11722:71;:::i;:::-;11803:72;11871:2;11860:9;11856:18;11847:6;11803:72;:::i;:::-;11550:332;;;;;:::o;11888:::-;12009:4;12047:2;12036:9;12032:18;12024:26;;12060:71;12128:1;12117:9;12113:17;12104:6;12060:71;:::i;:::-;12141:72;12209:2;12198:9;12194:18;12185:6;12141:72;:::i;:::-;11888:332;;;;;:::o;12226:137::-;12280:5;12311:6;12305:13;12296:22;;12327:30;12351:5;12327:30;:::i;:::-;12226:137;;;;:::o;12369:345::-;12436:6;12485:2;12473:9;12464:7;12460:23;12456:32;12453:119;;;12491:79;;:::i;:::-;12453:119;12611:1;12636:61;12689:7;12680:6;12669:9;12665:22;12636:61;:::i;:::-;12626:71;;12582:125;12369:345;;;;:::o;12720:85::-;12765:7;12794:5;12783:16;;12720:85;;;:::o;12811:158::-;12869:9;12902:61;12920:42;12929:32;12955:5;12929:32;:::i;:::-;12920:42;:::i;:::-;12902:61;:::i;:::-;12889:74;;12811:158;;;:::o;12975:147::-;13070:45;13109:5;13070:45;:::i;:::-;13065:3;13058:58;12975:147;;:::o;13128:807::-;13377:4;13415:3;13404:9;13400:19;13392:27;;13429:71;13497:1;13486:9;13482:17;13473:6;13429:71;:::i;:::-;13510:72;13578:2;13567:9;13563:18;13554:6;13510:72;:::i;:::-;13592:80;13668:2;13657:9;13653:18;13644:6;13592:80;:::i;:::-;13682;13758:2;13747:9;13743:18;13734:6;13682:80;:::i;:::-;13772:73;13840:3;13829:9;13825:19;13816:6;13772:73;:::i;:::-;13855;13923:3;13912:9;13908:19;13899:6;13855:73;:::i;:::-;13128:807;;;;;;;;;:::o;13941:143::-;13998:5;14029:6;14023:13;14014:22;;14045:33;14072:5;14045:33;:::i;:::-;13941:143;;;;:::o;14090:663::-;14178:6;14186;14194;14243:2;14231:9;14222:7;14218:23;14214:32;14211:119;;;14249:79;;:::i;:::-;14211:119;14369:1;14394:64;14450:7;14441:6;14430:9;14426:22;14394:64;:::i;:::-;14384:74;;14340:128;14507:2;14533:64;14589:7;14580:6;14569:9;14565:22;14533:64;:::i;:::-;14523:74;;14478:129;14646:2;14672:64;14728:7;14719:6;14708:9;14704:22;14672:64;:::i;:::-;14662:74;;14617:129;14090:663;;;;;:::o;14759:410::-;14799:7;14822:20;14840:1;14822:20;:::i;:::-;14817:25;;14856:20;14874:1;14856:20;:::i;:::-;14851:25;;14911:1;14908;14904:9;14933:30;14951:11;14933:30;:::i;:::-;14922:41;;15112:1;15103:7;15099:15;15096:1;15093:22;15073:1;15066:9;15046:83;15023:139;;15142:18;;:::i;:::-;15023:139;14807:362;14759:410;;;;:::o;15175:180::-;15223:77;15220:1;15213:88;15320:4;15317:1;15310:15;15344:4;15341:1;15334:15;15361:185;15401:1;15418:20;15436:1;15418:20;:::i;:::-;15413:25;;15452:20;15470:1;15452:20;:::i;:::-;15447:25;;15491:1;15481:35;;15496:18;;:::i;:::-;15481:35;15538:1;15535;15531:9;15526:14;;15361:185;;;;:::o;15552:223::-;15692:34;15688:1;15680:6;15676:14;15669:58;15761:6;15756:2;15748:6;15744:15;15737:31;15552:223;:::o;15781:366::-;15923:3;15944:67;16008:2;16003:3;15944:67;:::i;:::-;15937:74;;16020:93;16109:3;16020:93;:::i;:::-;16138:2;16133:3;16129:12;16122:19;;15781:366;;;:::o;16153:419::-;16319:4;16357:2;16346:9;16342:18;16334:26;;16406:9;16400:4;16396:20;16392:1;16381:9;16377:17;16370:47;16434:131;16560:4;16434:131;:::i;:::-;16426:139;;16153:419;;;:::o;16578:227::-;16718:34;16714:1;16706:6;16702:14;16695:58;16787:10;16782:2;16774:6;16770:15;16763:35;16578:227;:::o;16811:366::-;16953:3;16974:67;17038:2;17033:3;16974:67;:::i;:::-;16967:74;;17050:93;17139:3;17050:93;:::i;:::-;17168:2;17163:3;17159:12;17152:19;;16811:366;;;:::o;17183:419::-;17349:4;17387:2;17376:9;17372:18;17364:26;;17436:9;17430:4;17426:20;17422:1;17411:9;17407:17;17400:47;17464:131;17590:4;17464:131;:::i;:::-;17456:139;;17183:419;;;:::o;17608:230::-;17748:34;17744:1;17736:6;17732:14;17725:58;17817:13;17812:2;17804:6;17800:15;17793:38;17608:230;:::o;17844:366::-;17986:3;18007:67;18071:2;18066:3;18007:67;:::i;:::-;18000:74;;18083:93;18172:3;18083:93;:::i;:::-;18201:2;18196:3;18192:12;18185:19;;17844:366;;;:::o;18216:419::-;18382:4;18420:2;18409:9;18405:18;18397:26;;18469:9;18463:4;18459:20;18455:1;18444:9;18440:17;18433:47;18497:131;18623:4;18497:131;:::i;:::-;18489:139;;18216:419;;;:::o;18641:224::-;18781:34;18777:1;18769:6;18765:14;18758:58;18850:7;18845:2;18837:6;18833:15;18826:32;18641:224;:::o;18871:366::-;19013:3;19034:67;19098:2;19093:3;19034:67;:::i;:::-;19027:74;;19110:93;19199:3;19110:93;:::i;:::-;19228:2;19223:3;19219:12;19212:19;;18871:366;;;:::o;19243:419::-;19409:4;19447:2;19436:9;19432:18;19424:26;;19496:9;19490:4;19486:20;19482:1;19471:9;19467:17;19460:47;19524:131;19650:4;19524:131;:::i;:::-;19516:139;;19243:419;;;:::o;19668:166::-;19808:18;19804:1;19796:6;19792:14;19785:42;19668:166;:::o;19840:366::-;19982:3;20003:67;20067:2;20062:3;20003:67;:::i;:::-;19996:74;;20079:93;20168:3;20079:93;:::i;:::-;20197:2;20192:3;20188:12;20181:19;;19840:366;;;:::o;20212:419::-;20378:4;20416:2;20405:9;20401:18;20393:26;;20465:9;20459:4;20455:20;20451:1;20440:9;20436:17;20429:47;20493:131;20619:4;20493:131;:::i;:::-;20485:139;;20212:419;;;:::o;20637:351::-;20707:6;20756:2;20744:9;20735:7;20731:23;20727:32;20724:119;;;20762:79;;:::i;:::-;20724:119;20882:1;20907:64;20963:7;20954:6;20943:9;20939:22;20907:64;:::i;:::-;20897:74;;20853:128;20637:351;;;;:::o;20994:159::-;21134:11;21130:1;21122:6;21118:14;21111:35;20994:159;:::o;21159:365::-;21301:3;21322:66;21386:1;21381:3;21322:66;:::i;:::-;21315:73;;21397:93;21486:3;21397:93;:::i;:::-;21515:2;21510:3;21506:12;21499:19;;21159:365;;;:::o;21530:419::-;21696:4;21734:2;21723:9;21719:18;21711:26;;21783:9;21777:4;21773:20;21769:1;21758:9;21754:17;21747:47;21811:131;21937:4;21811:131;:::i;:::-;21803:139;;21530:419;;;:::o;21955:247::-;22095:34;22091:1;22083:6;22079:14;22072:58;22164:30;22159:2;22151:6;22147:15;22140:55;21955:247;:::o;22208:366::-;22350:3;22371:67;22435:2;22430:3;22371:67;:::i;:::-;22364:74;;22447:93;22536:3;22447:93;:::i;:::-;22565:2;22560:3;22556:12;22549:19;;22208:366;;;:::o;22580:419::-;22746:4;22784:2;22773:9;22769:18;22761:26;;22833:9;22827:4;22823:20;22819:1;22808:9;22804:17;22797:47;22861:131;22987:4;22861:131;:::i;:::-;22853:139;;22580:419;;;:::o;23005:246::-;23145:34;23141:1;23133:6;23129:14;23122:58;23214:29;23209:2;23201:6;23197:15;23190:54;23005:246;:::o;23257:366::-;23399:3;23420:67;23484:2;23479:3;23420:67;:::i;:::-;23413:74;;23496:93;23585:3;23496:93;:::i;:::-;23614:2;23609:3;23605:12;23598:19;;23257:366;;;:::o;23629:419::-;23795:4;23833:2;23822:9;23818:18;23810:26;;23882:9;23876:4;23872:20;23868:1;23857:9;23853:17;23846:47;23910:131;24036:4;23910:131;:::i;:::-;23902:139;;23629:419;;;:::o;24054:225::-;24194:34;24190:1;24182:6;24178:14;24171:58;24263:8;24258:2;24250:6;24246:15;24239:33;24054:225;:::o;24285:366::-;24427:3;24448:67;24512:2;24507:3;24448:67;:::i;:::-;24441:74;;24524:93;24613:3;24524:93;:::i;:::-;24642:2;24637:3;24633:12;24626:19;;24285:366;;;:::o;24657:419::-;24823:4;24861:2;24850:9;24846:18;24838:26;;24910:9;24904:4;24900:20;24896:1;24885:9;24881:17;24874:47;24938:131;25064:4;24938:131;:::i;:::-;24930:139;;24657:419;;;:::o;25082:147::-;25183:11;25220:3;25205:18;;25082:147;;;;:::o;25235:114::-;;:::o;25355:398::-;25514:3;25535:83;25616:1;25611:3;25535:83;:::i;:::-;25528:90;;25627:93;25716:3;25627:93;:::i;:::-;25745:1;25740:3;25736:11;25729:18;;25355:398;;;:::o;25759:379::-;25943:3;25965:147;26108:3;25965:147;:::i;:::-;25958:154;;26129:3;26122:10;;25759:379;;;:::o;26144:223::-;26284:34;26280:1;26272:6;26268:14;26261:58;26353:6;26348:2;26340:6;26336:15;26329:31;26144:223;:::o;26373:366::-;26515:3;26536:67;26600:2;26595:3;26536:67;:::i;:::-;26529:74;;26612:93;26701:3;26612:93;:::i;:::-;26730:2;26725:3;26721:12;26714:19;;26373:366;;;:::o;26745:419::-;26911:4;26949:2;26938:9;26934:18;26926:26;;26998:9;26992:4;26988:20;26984:1;26973:9;26969:17;26962:47;27026:131;27152:4;27026:131;:::i;:::-;27018:139;;26745:419;;;:::o;27170:221::-;27310:34;27306:1;27298:6;27294:14;27287:58;27379:4;27374:2;27366:6;27362:15;27355:29;27170:221;:::o;27397:366::-;27539:3;27560:67;27624:2;27619:3;27560:67;:::i;:::-;27553:74;;27636:93;27725:3;27636:93;:::i;:::-;27754:2;27749:3;27745:12;27738:19;;27397:366;;;:::o;27769:419::-;27935:4;27973:2;27962:9;27958:18;27950:26;;28022:9;28016:4;28012:20;28008:1;27997:9;27993:17;27986:47;28050:131;28176:4;28050:131;:::i;:::-;28042:139;;27769:419;;;:::o;28194:179::-;28334:31;28330:1;28322:6;28318:14;28311:55;28194:179;:::o;28379:366::-;28521:3;28542:67;28606:2;28601:3;28542:67;:::i;:::-;28535:74;;28618:93;28707:3;28618:93;:::i;:::-;28736:2;28731:3;28727:12;28720:19;;28379:366;;;:::o;28751:419::-;28917:4;28955:2;28944:9;28940:18;28932:26;;29004:9;28998:4;28994:20;28990:1;28979:9;28975:17;28968:47;29032:131;29158:4;29032:131;:::i;:::-;29024:139;;28751:419;;;:::o;29176:224::-;29316:34;29312:1;29304:6;29300:14;29293:58;29385:7;29380:2;29372:6;29368:15;29361:32;29176:224;:::o;29406:366::-;29548:3;29569:67;29633:2;29628:3;29569:67;:::i;:::-;29562:74;;29645:93;29734:3;29645:93;:::i;:::-;29763:2;29758:3;29754:12;29747:19;;29406:366;;;:::o;29778:419::-;29944:4;29982:2;29971:9;29967:18;29959:26;;30031:9;30025:4;30021:20;30017:1;30006:9;30002:17;29995:47;30059:131;30185:4;30059:131;:::i;:::-;30051:139;;29778:419;;;:::o;30203:222::-;30343:34;30339:1;30331:6;30327:14;30320:58;30412:5;30407:2;30399:6;30395:15;30388:30;30203:222;:::o;30431:366::-;30573:3;30594:67;30658:2;30653:3;30594:67;:::i;:::-;30587:74;;30670:93;30759:3;30670:93;:::i;:::-;30788:2;30783:3;30779:12;30772:19;;30431:366;;;:::o;30803:419::-;30969:4;31007:2;30996:9;30992:18;30984:26;;31056:9;31050:4;31046:20;31042:1;31031:9;31027:17;31020:47;31084:131;31210:4;31084:131;:::i;:::-;31076:139;;30803:419;;;:::o;31228:179::-;31368:31;31364:1;31356:6;31352:14;31345:55;31228:179;:::o;31413:366::-;31555:3;31576:67;31640:2;31635:3;31576:67;:::i;:::-;31569:74;;31652:93;31741:3;31652:93;:::i;:::-;31770:2;31765:3;31761:12;31754:19;;31413:366;;;:::o;31785:419::-;31951:4;31989:2;31978:9;31974:18;31966:26;;32038:9;32032:4;32028:20;32024:1;32013:9;32009:17;32002:47;32066:131;32192:4;32066:131;:::i;:::-;32058:139;;31785:419;;;:::o;32210:194::-;32250:4;32270:20;32288:1;32270:20;:::i;:::-;32265:25;;32304:20;32322:1;32304:20;:::i;:::-;32299:25;;32348:1;32345;32341:9;32333:17;;32372:1;32366:4;32363:11;32360:37;;;32377:18;;:::i;:::-;32360:37;32210:194;;;;:::o;32410:154::-;32550:6;32546:1;32538:6;32534:14;32527:30;32410:154;:::o;32570:365::-;32712:3;32733:66;32797:1;32792:3;32733:66;:::i;:::-;32726:73;;32808:93;32897:3;32808:93;:::i;:::-;32926:2;32921:3;32917:12;32910:19;;32570:365;;;:::o;32941:419::-;33107:4;33145:2;33134:9;33130:18;33122:26;;33194:9;33188:4;33184:20;33180:1;33169:9;33165:17;33158:47;33222:131;33348:4;33222:131;:::i;:::-;33214:139;;32941:419;;;:::o;33366:247::-;33506:34;33502:1;33494:6;33490:14;33483:58;33575:30;33570:2;33562:6;33558:15;33551:55;33366:247;:::o;33619:366::-;33761:3;33782:67;33846:2;33841:3;33782:67;:::i;:::-;33775:74;;33858:93;33947:3;33858:93;:::i;:::-;33976:2;33971:3;33967:12;33960:19;;33619:366;;;:::o;33991:419::-;34157:4;34195:2;34184:9;34180:18;34172:26;;34244:9;34238:4;34234:20;34230:1;34219:9;34215:17;34208:47;34272:131;34398:4;34272:131;:::i;:::-;34264:139;;33991:419;;;:::o;34416:176::-;34556:28;34552:1;34544:6;34540:14;34533:52;34416:176;:::o;34598:366::-;34740:3;34761:67;34825:2;34820:3;34761:67;:::i;:::-;34754:74;;34837:93;34926:3;34837:93;:::i;:::-;34955:2;34950:3;34946:12;34939:19;;34598:366;;;:::o;34970:419::-;35136:4;35174:2;35163:9;35159:18;35151:26;;35223:9;35217:4;35213:20;35209:1;35198:9;35194:17;35187:47;35251:131;35377:4;35251:131;:::i;:::-;35243:139;;34970:419;;;:::o;35395:248::-;35535:34;35531:1;35523:6;35519:14;35512:58;35604:31;35599:2;35591:6;35587:15;35580:56;35395:248;:::o;35649:366::-;35791:3;35812:67;35876:2;35871:3;35812:67;:::i;:::-;35805:74;;35888:93;35977:3;35888:93;:::i;:::-;36006:2;36001:3;35997:12;35990:19;;35649:366;;;:::o;36021:419::-;36187:4;36225:2;36214:9;36210:18;36202:26;;36274:9;36268:4;36264:20;36260:1;36249:9;36245:17;36238:47;36302:131;36428:4;36302:131;:::i;:::-;36294:139;;36021:419;;;:::o;36446:220::-;36586:34;36582:1;36574:6;36570:14;36563:58;36655:3;36650:2;36642:6;36638:15;36631:28;36446:220;:::o;36672:366::-;36814:3;36835:67;36899:2;36894:3;36835:67;:::i;:::-;36828:74;;36911:93;37000:3;36911:93;:::i;:::-;37029:2;37024:3;37020:12;37013:19;;36672:366;;;:::o;37044:419::-;37210:4;37248:2;37237:9;37233:18;37225:26;;37297:9;37291:4;37287:20;37283:1;37272:9;37268:17;37261:47;37325:131;37451:4;37325:131;:::i;:::-;37317:139;;37044:419;;;:::o;37469:221::-;37609:34;37605:1;37597:6;37593:14;37586:58;37678:4;37673:2;37665:6;37661:15;37654:29;37469:221;:::o;37696:366::-;37838:3;37859:67;37923:2;37918:3;37859:67;:::i;:::-;37852:74;;37935:93;38024:3;37935:93;:::i;:::-;38053:2;38048:3;38044:12;38037:19;;37696:366;;;:::o;38068:419::-;38234:4;38272:2;38261:9;38257:18;38249:26;;38321:9;38315:4;38311:20;38307:1;38296:9;38292:17;38285:47;38349:131;38475:4;38349:131;:::i;:::-;38341:139;;38068:419;;;:::o;38493:182::-;38633:34;38629:1;38621:6;38617:14;38610:58;38493:182;:::o;38681:366::-;38823:3;38844:67;38908:2;38903:3;38844:67;:::i;:::-;38837:74;;38920:93;39009:3;38920:93;:::i;:::-;39038:2;39033:3;39029:12;39022:19;;38681:366;;;:::o;39053:419::-;39219:4;39257:2;39246:9;39242:18;39234:26;;39306:9;39300:4;39296:20;39292:1;39281:9;39277:17;39270:47;39334:131;39460:4;39334:131;:::i;:::-;39326:139;;39053:419;;;:::o;39478:225::-;39618:34;39614:1;39606:6;39602:14;39595:58;39687:8;39682:2;39674:6;39670:15;39663:33;39478:225;:::o;39709:366::-;39851:3;39872:67;39936:2;39931:3;39872:67;:::i;:::-;39865:74;;39948:93;40037:3;39948:93;:::i;:::-;40066:2;40061:3;40057:12;40050:19;;39709:366;;;:::o;40081:419::-;40247:4;40285:2;40274:9;40270:18;40262:26;;40334:9;40328:4;40324:20;40320:1;40309:9;40305:17;40298:47;40362:131;40488:4;40362:131;:::i;:::-;40354:139;;40081:419;;;:::o;40506:442::-;40655:4;40693:2;40682:9;40678:18;40670:26;;40706:71;40774:1;40763:9;40759:17;40750:6;40706:71;:::i;:::-;40787:72;40855:2;40844:9;40840:18;40831:6;40787:72;:::i;:::-;40869;40937:2;40926:9;40922:18;40913:6;40869:72;:::i;:::-;40506:442;;;;;;:::o;40954:180::-;41002:77;40999:1;40992:88;41099:4;41096:1;41089:15;41123:4;41120:1;41113:15;41140:180;41188:77;41185:1;41178:88;41285:4;41282:1;41275:15;41309:4;41306:1;41299:15;41326:114;41393:6;41427:5;41421:12;41411:22;;41326:114;;;:::o;41446:184::-;41545:11;41579:6;41574:3;41567:19;41619:4;41614:3;41610:14;41595:29;;41446:184;;;;:::o;41636:132::-;41703:4;41726:3;41718:11;;41756:4;41751:3;41747:14;41739:22;;41636:132;;;:::o;41774:108::-;41851:24;41869:5;41851:24;:::i;:::-;41846:3;41839:37;41774:108;;:::o;41888:179::-;41957:10;41978:46;42020:3;42012:6;41978:46;:::i;:::-;42056:4;42051:3;42047:14;42033:28;;41888:179;;;;:::o;42073:113::-;42143:4;42175;42170:3;42166:14;42158:22;;42073:113;;;:::o;42222:732::-;42341:3;42370:54;42418:5;42370:54;:::i;:::-;42440:86;42519:6;42514:3;42440:86;:::i;:::-;42433:93;;42550:56;42600:5;42550:56;:::i;:::-;42629:7;42660:1;42645:284;42670:6;42667:1;42664:13;42645:284;;;42746:6;42740:13;42773:63;42832:3;42817:13;42773:63;:::i;:::-;42766:70;;42859:60;42912:6;42859:60;:::i;:::-;42849:70;;42705:224;42692:1;42689;42685:9;42680:14;;42645:284;;;42649:14;42945:3;42938:10;;42346:608;;;42222:732;;;;:::o;42960:831::-;43223:4;43261:3;43250:9;43246:19;43238:27;;43275:71;43343:1;43332:9;43328:17;43319:6;43275:71;:::i;:::-;43356:80;43432:2;43421:9;43417:18;43408:6;43356:80;:::i;:::-;43483:9;43477:4;43473:20;43468:2;43457:9;43453:18;43446:48;43511:108;43614:4;43605:6;43511:108;:::i;:::-;43503:116;;43629:72;43697:2;43686:9;43682:18;43673:6;43629:72;:::i;:::-;43711:73;43779:3;43768:9;43764:19;43755:6;43711:73;:::i;:::-;42960:831;;;;;;;;:::o

Swarm Source

ipfs://34d808069eddd014317ae70d0f6f34c559235ae822aeafa21c1a960b63adf725
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.