ETH Price: $3,704.47 (-5.79%)

Token

ERC-20: Bat-Eared Fox (KAL)
 

Overview

Max Total Supply

1,000,000,000 KAL

Holders

192

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000165408109 KAL

Value
$0.00
0x2554ee81da56e490c04574ddbd96b6f296571a47
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:
kal

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-09-26
*/

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

/** 

*/

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (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;
    }
}

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.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 substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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.8.10; */
/* pragma experimental ABIEncoderV2; */

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

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

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

    bool private swapping;

    address private charityWallet;
    address private marketingWallet;
    address private devWallet;

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

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

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

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

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

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

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    constructor() ERC20("Bat-Eared Fox", "KAL") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyCharityFee = 0;
        uint256 _buyMarketingFee = 16;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 9;

        uint256 _sellCharityFee = 0;
        uint256 _sellMarketingFee = 15;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 10;

        uint256 totalSupply = 1000000000 * 1e18;

        maxTransactionAmount = 15000000 * 1e18; // 1.5% from total supply maxTransactionAmountTxn
        maxWallet = 15000000 * 1e18; // 1.5% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

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

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

        charityWallet = address(0xC95474f8F7b7E587ebf9e65FEEC890D2265d8bc4); // set as charity wallet
        marketingWallet = address(0x382640f60e798f1ac4e5AA206e2ADF33499dB9Aa); // set as marketing wallet
        devWallet = address(0xC95474f8F7b7E587ebf9e65FEEC890D2265d8bc4); // set as dev wallet

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

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

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

    receive() external payable {}

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

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

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

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

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

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

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

    function updateBuyFees(
        uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 10, "Max BuyFee 10%");
        buyCharityFee = _charityFee;
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee;
     }

    function updateSellFees(
        uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 10, "Max SellFee 10%");
        sellCharityFee = _charityFee;
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee;
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForCharity - ethForMarketing - ethForDev;

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

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


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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600d81526020017f4261742d456172656420466f78000000000000000000000000000000000000008152506040518060400160405280600381526020017f4b414c000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000b6e565b5080600490805190602001906200011b92919062000b6e565b5050506200013e620001326200062e60201b60201c565b6200063660201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a816001620006fc60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000210919062000c88565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000278573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029e919062000c88565b6040518363ffffffff1660e01b8152600401620002bd92919062000ccb565b6020604051808303816000875af1158015620002dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000303919062000c88565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034b60a0516001620006fc60201b60201c565b6200036060a0516001620007e660201b60201c565b6000806010905060008060099050600080600f9050600080600a905060006b033b2e3c9fd0803ce800000090506a0c685fa11e01ec6f0000006009819055506a0c685fa11e01ec6f000000600b81905550612710600a82620003c3919062000d31565b620003cf919062000dc1565b600a819055508860108190555087601181905550866012819055508560138190555060135460125460115460105462000409919062000df9565b62000415919062000df9565b62000421919062000df9565b600f81905550846015819055508360168190555082601781905550816018819055506018546017546016546015546200045b919062000df9565b62000467919062000df9565b62000473919062000df9565b60148190555073c95474f8f7b7e587ebf9e65feec890d2265d8bc4600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073382640f60e798f1ac4e5aa206e2adf33499db9aa600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c95474f8f7b7e587ebf9e65feec890d2265d8bc4600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200059a6200058c6200088760201b60201c565b6001620008b160201b60201c565b620005ad306001620008b160201b60201c565b620005c261dead6001620008b160201b60201c565b620005e4620005d66200088760201b60201c565b6001620006fc60201b60201c565b620005f7306001620006fc60201b60201c565b6200060c61dead6001620006fc60201b60201c565b6200061e3382620009eb60201b60201c565b5050505050505050505062001018565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200070c6200062e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007326200088760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200078b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007829062000eb7565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008c16200062e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008e76200088760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000940576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009379062000eb7565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009df919062000ef6565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a559062000f63565b60405180910390fd5b62000a726000838362000b6460201b60201c565b806002600082825462000a86919062000df9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000add919062000df9565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b44919062000f96565b60405180910390a362000b606000838362000b6960201b60201c565b5050565b505050565b505050565b82805462000b7c9062000fe2565b90600052602060002090601f01602090048101928262000ba0576000855562000bec565b82601f1062000bbb57805160ff191683800117855562000bec565b8280016001018555821562000bec579182015b8281111562000beb57825182559160200191906001019062000bce565b5b50905062000bfb919062000bff565b5090565b5b8082111562000c1a57600081600090555060010162000c00565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c508262000c23565b9050919050565b62000c628162000c43565b811462000c6e57600080fd5b50565b60008151905062000c828162000c57565b92915050565b60006020828403121562000ca15762000ca062000c1e565b5b600062000cb18482850162000c71565b91505092915050565b62000cc58162000c43565b82525050565b600060408201905062000ce2600083018562000cba565b62000cf1602083018462000cba565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d3e8262000cf8565b915062000d4b8362000cf8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d875762000d8662000d02565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000dce8262000cf8565b915062000ddb8362000cf8565b92508262000dee5762000ded62000d92565b5b828204905092915050565b600062000e068262000cf8565b915062000e138362000cf8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e4b5762000e4a62000d02565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e9f60208362000e56565b915062000eac8262000e67565b602082019050919050565b6000602082019050818103600083015262000ed28162000e90565b9050919050565b60008115159050919050565b62000ef08162000ed9565b82525050565b600060208201905062000f0d600083018462000ee5565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f4b601f8362000e56565b915062000f588262000f13565b602082019050919050565b6000602082019050818103600083015262000f7e8162000f3c565b9050919050565b62000f908162000cf8565b82525050565b600060208201905062000fad600083018462000f85565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ffb57607f821691505b6020821081141562001012576200101162000fb3565b5b50919050565b60805160a051614f8b62001076600039600081816111aa0152818161172801526125b4015260008181610d750152818161255c01528181613790015281816138710152818161389801528181613934015261395b0152614f8b6000f3fe60806040526004361061031e5760003560e01c80638da5cb5b116101ab578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610bf3578063f2fde38b14610c1e578063f637434214610c47578063f8b45b0514610c7257610325565b8063e2f4560514610b74578063e7ad9fcd14610b9f578063e884f26014610bc857610325565b8063c8c8ebe4116100d1578063c8c8ebe414610aa4578063d257b34f14610acf578063d85ba06314610b0c578063dd62ed3e14610b3757610325565b8063c024666814610a27578063c18bc19514610a50578063c876d0b914610a7957610325565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610945578063a9059cbb14610982578063b62496f5146109bf578063bbc0c742146109fc57610325565b80639fccce32146108c4578063a0d82dc5146108ef578063a1dc92bc1461091a57610325565b80638da5cb5b146107c657806392136913146107f1578063924de9b71461081c57806395d89b41146108455780639a7a23d6146108705780639c3b4fdc1461089957610325565b8063395093511161026a5780636ddd171311610223578063751039fc116101fd578063751039fc146107305780637571336a1461075b5780637bce5a04146107845780638a8c523c146107af57610325565b80636ddd1713146106b157806370a08231146106dc578063715018a61461071957610325565b8063395093511461058b57806344249f04146105c857806349bd5a5e146105f35780634a62bb651461061e5780634fbee193146106495780636a486a8e1461068657610325565b80631a8145bb116102d757806323b872dd116102b157806323b872dd146104cf57806327c8f8351461050c5780632e6ed7ef14610537578063313ce5671461056057610325565b80631a8145bb146104505780631f3fed8f1461047b578063203e727e146104a657610325565b806306fdde031461032a578063095ea7b3146103555780630d7f14411461039257806310d5de53146103bd5780631694505e146103fa57806318160ddd1461042557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610c9d565b60405161034c9190613ac3565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190613b7e565b610d2f565b6040516103899190613bd9565b60405180910390f35b34801561039e57600080fd5b506103a7610d4d565b6040516103b49190613c03565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190613c1e565b610d53565b6040516103f19190613bd9565b60405180910390f35b34801561040657600080fd5b5061040f610d73565b60405161041c9190613caa565b60405180910390f35b34801561043157600080fd5b5061043a610d97565b6040516104479190613c03565b60405180910390f35b34801561045c57600080fd5b50610465610da1565b6040516104729190613c03565b60405180910390f35b34801561048757600080fd5b50610490610da7565b60405161049d9190613c03565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190613cc5565b610dad565b005b3480156104db57600080fd5b506104f660048036038101906104f19190613cf2565b610ebc565b6040516105039190613bd9565b60405180910390f35b34801561051857600080fd5b50610521610fb4565b60405161052e9190613d54565b60405180910390f35b34801561054357600080fd5b5061055e60048036038101906105599190613d6f565b610fba565b005b34801561056c57600080fd5b506105756110ed565b6040516105829190613df2565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190613b7e565b6110f6565b6040516105bf9190613bd9565b60405180910390f35b3480156105d457600080fd5b506105dd6111a2565b6040516105ea9190613c03565b60405180910390f35b3480156105ff57600080fd5b506106086111a8565b6040516106159190613d54565b60405180910390f35b34801561062a57600080fd5b506106336111cc565b6040516106409190613bd9565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b9190613c1e565b6111df565b60405161067d9190613bd9565b60405180910390f35b34801561069257600080fd5b5061069b611235565b6040516106a89190613c03565b60405180910390f35b3480156106bd57600080fd5b506106c661123b565b6040516106d39190613bd9565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190613c1e565b61124e565b6040516107109190613c03565b60405180910390f35b34801561072557600080fd5b5061072e611296565b005b34801561073c57600080fd5b5061074561131e565b6040516107529190613bd9565b60405180910390f35b34801561076757600080fd5b50610782600480360381019061077d9190613e39565b6113be565b005b34801561079057600080fd5b50610799611495565b6040516107a69190613c03565b60405180910390f35b3480156107bb57600080fd5b506107c461149b565b005b3480156107d257600080fd5b506107db61154f565b6040516107e89190613d54565b60405180910390f35b3480156107fd57600080fd5b50610806611579565b6040516108139190613c03565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e9190613e79565b61157f565b005b34801561085157600080fd5b5061085a611618565b6040516108679190613ac3565b60405180910390f35b34801561087c57600080fd5b5061089760048036038101906108929190613e39565b6116aa565b005b3480156108a557600080fd5b506108ae6117c3565b6040516108bb9190613c03565b60405180910390f35b3480156108d057600080fd5b506108d96117c9565b6040516108e69190613c03565b60405180910390f35b3480156108fb57600080fd5b506109046117cf565b6040516109119190613c03565b60405180910390f35b34801561092657600080fd5b5061092f6117d5565b60405161093c9190613c03565b60405180910390f35b34801561095157600080fd5b5061096c60048036038101906109679190613b7e565b6117db565b6040516109799190613bd9565b60405180910390f35b34801561098e57600080fd5b506109a960048036038101906109a49190613b7e565b6118c6565b6040516109b69190613bd9565b60405180910390f35b3480156109cb57600080fd5b506109e660048036038101906109e19190613c1e565b6118e4565b6040516109f39190613bd9565b60405180910390f35b348015610a0857600080fd5b50610a11611904565b604051610a1e9190613bd9565b60405180910390f35b348015610a3357600080fd5b50610a4e6004803603810190610a499190613e39565b611917565b005b348015610a5c57600080fd5b50610a776004803603810190610a729190613cc5565b611a3c565b005b348015610a8557600080fd5b50610a8e611b4b565b604051610a9b9190613bd9565b60405180910390f35b348015610ab057600080fd5b50610ab9611b5e565b604051610ac69190613c03565b60405180910390f35b348015610adb57600080fd5b50610af66004803603810190610af19190613cc5565b611b64565b604051610b039190613bd9565b60405180910390f35b348015610b1857600080fd5b50610b21611cb9565b604051610b2e9190613c03565b60405180910390f35b348015610b4357600080fd5b50610b5e6004803603810190610b599190613ea6565b611cbf565b604051610b6b9190613c03565b60405180910390f35b348015610b8057600080fd5b50610b89611d46565b604051610b969190613c03565b60405180910390f35b348015610bab57600080fd5b50610bc66004803603810190610bc19190613d6f565b611d4c565b005b348015610bd457600080fd5b50610bdd611e7f565b604051610bea9190613bd9565b60405180910390f35b348015610bff57600080fd5b50610c08611f1f565b604051610c159190613c03565b60405180910390f35b348015610c2a57600080fd5b50610c456004803603810190610c409190613c1e565b611f25565b005b348015610c5357600080fd5b50610c5c61201d565b604051610c699190613c03565b60405180910390f35b348015610c7e57600080fd5b50610c87612023565b604051610c949190613c03565b60405180910390f35b606060038054610cac90613f15565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd890613f15565b8015610d255780601f10610cfa57610100808354040283529160200191610d25565b820191906000526020600020905b815481529060010190602001808311610d0857829003601f168201915b5050505050905090565b6000610d43610d3c612029565b8484612031565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b601b5481565b601a5481565b610db5612029565b73ffffffffffffffffffffffffffffffffffffffff16610dd361154f565b73ffffffffffffffffffffffffffffffffffffffff1614610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090613f93565b60405180910390fd5b670de0b6b3a76400006103e86005610e3f610d97565b610e499190613fe2565b610e53919061406b565b610e5d919061406b565b811015610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e969061410e565b60405180910390fd5b670de0b6b3a764000081610eb39190613fe2565b60098190555050565b6000610ec98484846121fc565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f14612029565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b906141a0565b60405180910390fd5b610fa885610fa0612029565b858403612031565b60019150509392505050565b61dead81565b610fc2612029565b73ffffffffffffffffffffffffffffffffffffffff16610fe061154f565b73ffffffffffffffffffffffffffffffffffffffff1614611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d90613f93565b60405180910390fd5b600a8183858761104691906141c0565b61105091906141c0565b61105a91906141c0565b111561109b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109290614262565b60405180910390fd5b836010819055508260118190555081601281905550806013819055506013546012546011546010546110cd91906141c0565b6110d791906141c0565b6110e191906141c0565b600f8190555050505050565b60006012905090565b6000611198611103612029565b848460016000611111612029565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461119391906141c0565b612031565b6001905092915050565b60195481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61129e612029565b73ffffffffffffffffffffffffffffffffffffffff166112bc61154f565b73ffffffffffffffffffffffffffffffffffffffff1614611312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130990613f93565b60405180910390fd5b61131c6000612efc565b565b6000611328612029565b73ffffffffffffffffffffffffffffffffffffffff1661134661154f565b73ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390613f93565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6113c6612029565b73ffffffffffffffffffffffffffffffffffffffff166113e461154f565b73ffffffffffffffffffffffffffffffffffffffff161461143a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143190613f93565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b6114a3612029565b73ffffffffffffffffffffffffffffffffffffffff166114c161154f565b73ffffffffffffffffffffffffffffffffffffffff1614611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e90613f93565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60165481565b611587612029565b73ffffffffffffffffffffffffffffffffffffffff166115a561154f565b73ffffffffffffffffffffffffffffffffffffffff16146115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f290613f93565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461162790613f15565b80601f016020809104026020016040519081016040528092919081815260200182805461165390613f15565b80156116a05780601f10611675576101008083540402835291602001916116a0565b820191906000526020600020905b81548152906001019060200180831161168357829003601f168201915b5050505050905090565b6116b2612029565b73ffffffffffffffffffffffffffffffffffffffff166116d061154f565b73ffffffffffffffffffffffffffffffffffffffff1614611726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171d90613f93565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac906142f4565b60405180910390fd5b6117bf8282612fc2565b5050565b60135481565b601c5481565b60185481565b60105481565b600080600160006117ea612029565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90614386565b60405180910390fd5b6118bb6118b2612029565b85858403612031565b600191505092915050565b60006118da6118d3612029565b84846121fc565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b61191f612029565b73ffffffffffffffffffffffffffffffffffffffff1661193d61154f565b73ffffffffffffffffffffffffffffffffffffffff1614611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198a90613f93565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611a309190613bd9565b60405180910390a25050565b611a44612029565b73ffffffffffffffffffffffffffffffffffffffff16611a6261154f565b73ffffffffffffffffffffffffffffffffffffffff1614611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90613f93565b60405180910390fd5b670de0b6b3a76400006103e86005611ace610d97565b611ad89190613fe2565b611ae2919061406b565b611aec919061406b565b811015611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2590614418565b60405180910390fd5b670de0b6b3a764000081611b429190613fe2565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611b6e612029565b73ffffffffffffffffffffffffffffffffffffffff16611b8c61154f565b73ffffffffffffffffffffffffffffffffffffffff1614611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd990613f93565b60405180910390fd5b620186a06001611bf0610d97565b611bfa9190613fe2565b611c04919061406b565b821015611c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3d906144aa565b60405180910390fd5b6103e86005611c53610d97565b611c5d9190613fe2565b611c67919061406b565b821115611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca09061453c565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611d54612029565b73ffffffffffffffffffffffffffffffffffffffff16611d7261154f565b73ffffffffffffffffffffffffffffffffffffffff1614611dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbf90613f93565b60405180910390fd5b600a81838587611dd891906141c0565b611de291906141c0565b611dec91906141c0565b1115611e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e24906145a8565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611e5f91906141c0565b611e6991906141c0565b611e7391906141c0565b60148190555050505050565b6000611e89612029565b73ffffffffffffffffffffffffffffffffffffffff16611ea761154f565b73ffffffffffffffffffffffffffffffffffffffff1614611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef490613f93565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b611f2d612029565b73ffffffffffffffffffffffffffffffffffffffff16611f4b61154f565b73ffffffffffffffffffffffffffffffffffffffff1614611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9890613f93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612011576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120089061463a565b60405180910390fd5b61201a81612efc565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612098906146cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612111576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121089061475e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516121ef9190613c03565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561226c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612263906147f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d390614882565b60405180910390fd5b60008114156122f6576122f183836000613063565b612ef7565b600c60009054906101000a900460ff16156129b95761231361154f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612381575061235161154f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123ba5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123f4575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561240d5750600560149054906101000a900460ff16155b156129b857600c60019054906101000a900460ff1661250757601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124c75750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fd906148ee565b60405180910390fd5b5b600e60009054906101000a900460ff16156126cf5761252461154f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156125ab57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561260357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126ce5743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612689576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612680906149a6565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127725750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612819576009548111156127bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b390614a38565b60405180910390fd5b600b546127c88361124e565b826127d391906141c0565b1115612814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280b90614aa4565b60405180910390fd5b6129b7565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128bc5750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561290b57600954811115612906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fd90614b36565b60405180910390fd5b6129b6565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129b557600b546129688361124e565b8261297391906141c0565b11156129b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ab90614aa4565b60405180910390fd5b5b5b5b5b5b60006129c43061124e565b90506000600a5482101590508080156129e95750600c60029054906101000a900460ff165b8015612a025750600560149054906101000a900460ff16155b8015612a585750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612aae5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b045750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b48576001600560146101000a81548160ff021916908315150217905550612b2c6132e4565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612bfe5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612c0857600090505b60008115612ee757601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c6b57506000601454115b15612d6b57612c986064612c8a601454886136a590919063ffffffff16565b6136bb90919063ffffffff16565b905060145460155482612cab9190613fe2565b612cb5919061406b565b60196000828254612cc691906141c0565b9250508190555060145460175482612cde9190613fe2565b612ce8919061406b565b601b6000828254612cf991906141c0565b9250508190555060145460185482612d119190613fe2565b612d1b919061406b565b601c6000828254612d2c91906141c0565b9250508190555060145460165482612d449190613fe2565b612d4e919061406b565b601a6000828254612d5f91906141c0565b92505081905550612ec3565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612dc657506000600f54115b15612ec257612df36064612de5600f54886136a590919063ffffffff16565b6136bb90919063ffffffff16565b9050600f5460105482612e069190613fe2565b612e10919061406b565b60196000828254612e2191906141c0565b92505081905550600f5460125482612e399190613fe2565b612e43919061406b565b601b6000828254612e5491906141c0565b92505081905550600f5460135482612e6c9190613fe2565b612e76919061406b565b601c6000828254612e8791906141c0565b92505081905550600f5460115482612e9f9190613fe2565b612ea9919061406b565b601a6000828254612eba91906141c0565b925050819055505b5b6000811115612ed857612ed7873083613063565b5b8085612ee49190614b56565b94505b612ef2878787613063565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ca906147f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313a90614882565b60405180910390fd5b61314e8383836136d1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156131d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131cb90614bfc565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461326791906141c0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516132cb9190613c03565b60405180910390a36132de8484846136d6565b50505050565b60006132ef3061124e565b90506000601c54601a54601b5460195461330991906141c0565b61331391906141c0565b61331d91906141c0565b905060008083148061332f5750600082145b1561333c575050506136a3565b6014600a5461334b9190613fe2565b831115613364576014600a546133619190613fe2565b92505b6000600283601b54866133779190613fe2565b613381919061406b565b61338b919061406b565b905060006133a282866136db90919063ffffffff16565b905060004790506133b2826136f1565b60006133c782476136db90919063ffffffff16565b905060006133f2876133e4601954856136a590919063ffffffff16565b6136bb90919063ffffffff16565b9050600061341d8861340f601a54866136a590919063ffffffff16565b6136bb90919063ffffffff16565b905060006134488961343a601c54876136a590919063ffffffff16565b6136bb90919063ffffffff16565b905060008183858761345a9190614b56565b6134649190614b56565b61346e9190614b56565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516134d690614c4d565b60006040518083038185875af1925050503d8060008114613513576040519150601f19603f3d011682016040523d82523d6000602084013e613518565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161356490614c4d565b60006040518083038185875af1925050503d80600081146135a1576040519150601f19603f3d011682016040523d82523d6000602084013e6135a6565b606091505b5050809950506000881180156135bc5750600081115b15613609576135cb888261392e565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161360093929190614c62565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161364f90614c4d565b60006040518083038185875af1925050503d806000811461368c576040519150601f19603f3d011682016040523d82523d6000602084013e613691565b606091505b50508099505050505050505050505050505b565b600081836136b39190613fe2565b905092915050565b600081836136c9919061406b565b905092915050565b505050565b505050565b600081836136e99190614b56565b905092915050565b6000600267ffffffffffffffff81111561370e5761370d614c99565b5b60405190808252806020026020018201604052801561373c5781602001602082028036833780820191505090505b509050308160008151811061375457613753614cc8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156137f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061381d9190614d0c565b8160018151811061383157613830614cc8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613896307f000000000000000000000000000000000000000000000000000000000000000084612031565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016138f8959493929190614e32565b600060405180830381600087803b15801561391257600080fd5b505af1158015613926573d6000803e3d6000fd5b505050505050565b613959307f000000000000000000000000000000000000000000000000000000000000000084612031565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016139e096959493929190614e8c565b60606040518083038185885af11580156139fe573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613a239190614f02565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a64578082015181840152602081019050613a49565b83811115613a73576000848401525b50505050565b6000601f19601f8301169050919050565b6000613a9582613a2a565b613a9f8185613a35565b9350613aaf818560208601613a46565b613ab881613a79565b840191505092915050565b60006020820190508181036000830152613add8184613a8a565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b1582613aea565b9050919050565b613b2581613b0a565b8114613b3057600080fd5b50565b600081359050613b4281613b1c565b92915050565b6000819050919050565b613b5b81613b48565b8114613b6657600080fd5b50565b600081359050613b7881613b52565b92915050565b60008060408385031215613b9557613b94613ae5565b5b6000613ba385828601613b33565b9250506020613bb485828601613b69565b9150509250929050565b60008115159050919050565b613bd381613bbe565b82525050565b6000602082019050613bee6000830184613bca565b92915050565b613bfd81613b48565b82525050565b6000602082019050613c186000830184613bf4565b92915050565b600060208284031215613c3457613c33613ae5565b5b6000613c4284828501613b33565b91505092915050565b6000819050919050565b6000613c70613c6b613c6684613aea565b613c4b565b613aea565b9050919050565b6000613c8282613c55565b9050919050565b6000613c9482613c77565b9050919050565b613ca481613c89565b82525050565b6000602082019050613cbf6000830184613c9b565b92915050565b600060208284031215613cdb57613cda613ae5565b5b6000613ce984828501613b69565b91505092915050565b600080600060608486031215613d0b57613d0a613ae5565b5b6000613d1986828701613b33565b9350506020613d2a86828701613b33565b9250506040613d3b86828701613b69565b9150509250925092565b613d4e81613b0a565b82525050565b6000602082019050613d696000830184613d45565b92915050565b60008060008060808587031215613d8957613d88613ae5565b5b6000613d9787828801613b69565b9450506020613da887828801613b69565b9350506040613db987828801613b69565b9250506060613dca87828801613b69565b91505092959194509250565b600060ff82169050919050565b613dec81613dd6565b82525050565b6000602082019050613e076000830184613de3565b92915050565b613e1681613bbe565b8114613e2157600080fd5b50565b600081359050613e3381613e0d565b92915050565b60008060408385031215613e5057613e4f613ae5565b5b6000613e5e85828601613b33565b9250506020613e6f85828601613e24565b9150509250929050565b600060208284031215613e8f57613e8e613ae5565b5b6000613e9d84828501613e24565b91505092915050565b60008060408385031215613ebd57613ebc613ae5565b5b6000613ecb85828601613b33565b9250506020613edc85828601613b33565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f2d57607f821691505b60208210811415613f4157613f40613ee6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f7d602083613a35565b9150613f8882613f47565b602082019050919050565b60006020820190508181036000830152613fac81613f70565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fed82613b48565b9150613ff883613b48565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561403157614030613fb3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061407682613b48565b915061408183613b48565b9250826140915761409061403c565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b60006140f8602f83613a35565b91506141038261409c565b604082019050919050565b60006020820190508181036000830152614127816140eb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061418a602883613a35565b91506141958261412e565b604082019050919050565b600060208201905081810360008301526141b98161417d565b9050919050565b60006141cb82613b48565b91506141d683613b48565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561420b5761420a613fb3565b5b828201905092915050565b7f4d61782042757946656520313025000000000000000000000000000000000000600082015250565b600061424c600e83613a35565b915061425782614216565b602082019050919050565b6000602082019050818103600083015261427b8161423f565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006142de603983613a35565b91506142e982614282565b604082019050919050565b6000602082019050818103600083015261430d816142d1565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614370602583613a35565b915061437b82614314565b604082019050919050565b6000602082019050818103600083015261439f81614363565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614402602483613a35565b915061440d826143a6565b604082019050919050565b60006020820190508181036000830152614431816143f5565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614494603583613a35565b915061449f82614438565b604082019050919050565b600060208201905081810360008301526144c381614487565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614526603483613a35565b9150614531826144ca565b604082019050919050565b6000602082019050818103600083015261455581614519565b9050919050565b7f4d61782053656c6c466565203130250000000000000000000000000000000000600082015250565b6000614592600f83613a35565b915061459d8261455c565b602082019050919050565b600060208201905081810360008301526145c181614585565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614624602683613a35565b915061462f826145c8565b604082019050919050565b6000602082019050818103600083015261465381614617565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006146b6602483613a35565b91506146c18261465a565b604082019050919050565b600060208201905081810360008301526146e5816146a9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614748602283613a35565b9150614753826146ec565b604082019050919050565b600060208201905081810360008301526147778161473b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006147da602583613a35565b91506147e58261477e565b604082019050919050565b60006020820190508181036000830152614809816147cd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061486c602383613a35565b915061487782614810565b604082019050919050565b6000602082019050818103600083015261489b8161485f565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006148d8601683613a35565b91506148e3826148a2565b602082019050919050565b60006020820190508181036000830152614907816148cb565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614990604983613a35565b915061499b8261490e565b606082019050919050565b600060208201905081810360008301526149bf81614983565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614a22603583613a35565b9150614a2d826149c6565b604082019050919050565b60006020820190508181036000830152614a5181614a15565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614a8e601383613a35565b9150614a9982614a58565b602082019050919050565b60006020820190508181036000830152614abd81614a81565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614b20603683613a35565b9150614b2b82614ac4565b604082019050919050565b60006020820190508181036000830152614b4f81614b13565b9050919050565b6000614b6182613b48565b9150614b6c83613b48565b925082821015614b7f57614b7e613fb3565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614be6602683613a35565b9150614bf182614b8a565b604082019050919050565b60006020820190508181036000830152614c1581614bd9565b9050919050565b600081905092915050565b50565b6000614c37600083614c1c565b9150614c4282614c27565b600082019050919050565b6000614c5882614c2a565b9150819050919050565b6000606082019050614c776000830186613bf4565b614c846020830185613bf4565b614c916040830184613bf4565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614d0681613b1c565b92915050565b600060208284031215614d2257614d21613ae5565b5b6000614d3084828501614cf7565b91505092915050565b6000819050919050565b6000614d5e614d59614d5484614d39565b613c4b565b613b48565b9050919050565b614d6e81614d43565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614da981613b0a565b82525050565b6000614dbb8383614da0565b60208301905092915050565b6000602082019050919050565b6000614ddf82614d74565b614de98185614d7f565b9350614df483614d90565b8060005b83811015614e25578151614e0c8882614daf565b9750614e1783614dc7565b925050600181019050614df8565b5085935050505092915050565b600060a082019050614e476000830188613bf4565b614e546020830187614d65565b8181036040830152614e668186614dd4565b9050614e756060830185613d45565b614e826080830184613bf4565b9695505050505050565b600060c082019050614ea16000830189613d45565b614eae6020830188613bf4565b614ebb6040830187614d65565b614ec86060830186614d65565b614ed56080830185613d45565b614ee260a0830184613bf4565b979650505050505050565b600081519050614efc81613b52565b92915050565b600080600060608486031215614f1b57614f1a613ae5565b5b6000614f2986828701614eed565b9350506020614f3a86828701614eed565b9250506040614f4b86828701614eed565b915050925092509256fea2646970667358221220bebda36852cfd507ea4f224862bd458ad130b7cd87d3ea40f9ed0f14d7973d4f64736f6c634300080a0033

Deployed Bytecode

0x60806040526004361061031e5760003560e01c80638da5cb5b116101ab578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610bf3578063f2fde38b14610c1e578063f637434214610c47578063f8b45b0514610c7257610325565b8063e2f4560514610b74578063e7ad9fcd14610b9f578063e884f26014610bc857610325565b8063c8c8ebe4116100d1578063c8c8ebe414610aa4578063d257b34f14610acf578063d85ba06314610b0c578063dd62ed3e14610b3757610325565b8063c024666814610a27578063c18bc19514610a50578063c876d0b914610a7957610325565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610945578063a9059cbb14610982578063b62496f5146109bf578063bbc0c742146109fc57610325565b80639fccce32146108c4578063a0d82dc5146108ef578063a1dc92bc1461091a57610325565b80638da5cb5b146107c657806392136913146107f1578063924de9b71461081c57806395d89b41146108455780639a7a23d6146108705780639c3b4fdc1461089957610325565b8063395093511161026a5780636ddd171311610223578063751039fc116101fd578063751039fc146107305780637571336a1461075b5780637bce5a04146107845780638a8c523c146107af57610325565b80636ddd1713146106b157806370a08231146106dc578063715018a61461071957610325565b8063395093511461058b57806344249f04146105c857806349bd5a5e146105f35780634a62bb651461061e5780634fbee193146106495780636a486a8e1461068657610325565b80631a8145bb116102d757806323b872dd116102b157806323b872dd146104cf57806327c8f8351461050c5780632e6ed7ef14610537578063313ce5671461056057610325565b80631a8145bb146104505780631f3fed8f1461047b578063203e727e146104a657610325565b806306fdde031461032a578063095ea7b3146103555780630d7f14411461039257806310d5de53146103bd5780631694505e146103fa57806318160ddd1461042557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610c9d565b60405161034c9190613ac3565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190613b7e565b610d2f565b6040516103899190613bd9565b60405180910390f35b34801561039e57600080fd5b506103a7610d4d565b6040516103b49190613c03565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190613c1e565b610d53565b6040516103f19190613bd9565b60405180910390f35b34801561040657600080fd5b5061040f610d73565b60405161041c9190613caa565b60405180910390f35b34801561043157600080fd5b5061043a610d97565b6040516104479190613c03565b60405180910390f35b34801561045c57600080fd5b50610465610da1565b6040516104729190613c03565b60405180910390f35b34801561048757600080fd5b50610490610da7565b60405161049d9190613c03565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190613cc5565b610dad565b005b3480156104db57600080fd5b506104f660048036038101906104f19190613cf2565b610ebc565b6040516105039190613bd9565b60405180910390f35b34801561051857600080fd5b50610521610fb4565b60405161052e9190613d54565b60405180910390f35b34801561054357600080fd5b5061055e60048036038101906105599190613d6f565b610fba565b005b34801561056c57600080fd5b506105756110ed565b6040516105829190613df2565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190613b7e565b6110f6565b6040516105bf9190613bd9565b60405180910390f35b3480156105d457600080fd5b506105dd6111a2565b6040516105ea9190613c03565b60405180910390f35b3480156105ff57600080fd5b506106086111a8565b6040516106159190613d54565b60405180910390f35b34801561062a57600080fd5b506106336111cc565b6040516106409190613bd9565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b9190613c1e565b6111df565b60405161067d9190613bd9565b60405180910390f35b34801561069257600080fd5b5061069b611235565b6040516106a89190613c03565b60405180910390f35b3480156106bd57600080fd5b506106c661123b565b6040516106d39190613bd9565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190613c1e565b61124e565b6040516107109190613c03565b60405180910390f35b34801561072557600080fd5b5061072e611296565b005b34801561073c57600080fd5b5061074561131e565b6040516107529190613bd9565b60405180910390f35b34801561076757600080fd5b50610782600480360381019061077d9190613e39565b6113be565b005b34801561079057600080fd5b50610799611495565b6040516107a69190613c03565b60405180910390f35b3480156107bb57600080fd5b506107c461149b565b005b3480156107d257600080fd5b506107db61154f565b6040516107e89190613d54565b60405180910390f35b3480156107fd57600080fd5b50610806611579565b6040516108139190613c03565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e9190613e79565b61157f565b005b34801561085157600080fd5b5061085a611618565b6040516108679190613ac3565b60405180910390f35b34801561087c57600080fd5b5061089760048036038101906108929190613e39565b6116aa565b005b3480156108a557600080fd5b506108ae6117c3565b6040516108bb9190613c03565b60405180910390f35b3480156108d057600080fd5b506108d96117c9565b6040516108e69190613c03565b60405180910390f35b3480156108fb57600080fd5b506109046117cf565b6040516109119190613c03565b60405180910390f35b34801561092657600080fd5b5061092f6117d5565b60405161093c9190613c03565b60405180910390f35b34801561095157600080fd5b5061096c60048036038101906109679190613b7e565b6117db565b6040516109799190613bd9565b60405180910390f35b34801561098e57600080fd5b506109a960048036038101906109a49190613b7e565b6118c6565b6040516109b69190613bd9565b60405180910390f35b3480156109cb57600080fd5b506109e660048036038101906109e19190613c1e565b6118e4565b6040516109f39190613bd9565b60405180910390f35b348015610a0857600080fd5b50610a11611904565b604051610a1e9190613bd9565b60405180910390f35b348015610a3357600080fd5b50610a4e6004803603810190610a499190613e39565b611917565b005b348015610a5c57600080fd5b50610a776004803603810190610a729190613cc5565b611a3c565b005b348015610a8557600080fd5b50610a8e611b4b565b604051610a9b9190613bd9565b60405180910390f35b348015610ab057600080fd5b50610ab9611b5e565b604051610ac69190613c03565b60405180910390f35b348015610adb57600080fd5b50610af66004803603810190610af19190613cc5565b611b64565b604051610b039190613bd9565b60405180910390f35b348015610b1857600080fd5b50610b21611cb9565b604051610b2e9190613c03565b60405180910390f35b348015610b4357600080fd5b50610b5e6004803603810190610b599190613ea6565b611cbf565b604051610b6b9190613c03565b60405180910390f35b348015610b8057600080fd5b50610b89611d46565b604051610b969190613c03565b60405180910390f35b348015610bab57600080fd5b50610bc66004803603810190610bc19190613d6f565b611d4c565b005b348015610bd457600080fd5b50610bdd611e7f565b604051610bea9190613bd9565b60405180910390f35b348015610bff57600080fd5b50610c08611f1f565b604051610c159190613c03565b60405180910390f35b348015610c2a57600080fd5b50610c456004803603810190610c409190613c1e565b611f25565b005b348015610c5357600080fd5b50610c5c61201d565b604051610c699190613c03565b60405180910390f35b348015610c7e57600080fd5b50610c87612023565b604051610c949190613c03565b60405180910390f35b606060038054610cac90613f15565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd890613f15565b8015610d255780601f10610cfa57610100808354040283529160200191610d25565b820191906000526020600020905b815481529060010190602001808311610d0857829003601f168201915b5050505050905090565b6000610d43610d3c612029565b8484612031565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b601b5481565b601a5481565b610db5612029565b73ffffffffffffffffffffffffffffffffffffffff16610dd361154f565b73ffffffffffffffffffffffffffffffffffffffff1614610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090613f93565b60405180910390fd5b670de0b6b3a76400006103e86005610e3f610d97565b610e499190613fe2565b610e53919061406b565b610e5d919061406b565b811015610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e969061410e565b60405180910390fd5b670de0b6b3a764000081610eb39190613fe2565b60098190555050565b6000610ec98484846121fc565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f14612029565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b906141a0565b60405180910390fd5b610fa885610fa0612029565b858403612031565b60019150509392505050565b61dead81565b610fc2612029565b73ffffffffffffffffffffffffffffffffffffffff16610fe061154f565b73ffffffffffffffffffffffffffffffffffffffff1614611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d90613f93565b60405180910390fd5b600a8183858761104691906141c0565b61105091906141c0565b61105a91906141c0565b111561109b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109290614262565b60405180910390fd5b836010819055508260118190555081601281905550806013819055506013546012546011546010546110cd91906141c0565b6110d791906141c0565b6110e191906141c0565b600f8190555050505050565b60006012905090565b6000611198611103612029565b848460016000611111612029565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461119391906141c0565b612031565b6001905092915050565b60195481565b7f000000000000000000000000c70d029c78b5cad040b85e58b84c09695901572c81565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61129e612029565b73ffffffffffffffffffffffffffffffffffffffff166112bc61154f565b73ffffffffffffffffffffffffffffffffffffffff1614611312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130990613f93565b60405180910390fd5b61131c6000612efc565b565b6000611328612029565b73ffffffffffffffffffffffffffffffffffffffff1661134661154f565b73ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390613f93565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6113c6612029565b73ffffffffffffffffffffffffffffffffffffffff166113e461154f565b73ffffffffffffffffffffffffffffffffffffffff161461143a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143190613f93565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b6114a3612029565b73ffffffffffffffffffffffffffffffffffffffff166114c161154f565b73ffffffffffffffffffffffffffffffffffffffff1614611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e90613f93565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60165481565b611587612029565b73ffffffffffffffffffffffffffffffffffffffff166115a561154f565b73ffffffffffffffffffffffffffffffffffffffff16146115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f290613f93565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461162790613f15565b80601f016020809104026020016040519081016040528092919081815260200182805461165390613f15565b80156116a05780601f10611675576101008083540402835291602001916116a0565b820191906000526020600020905b81548152906001019060200180831161168357829003601f168201915b5050505050905090565b6116b2612029565b73ffffffffffffffffffffffffffffffffffffffff166116d061154f565b73ffffffffffffffffffffffffffffffffffffffff1614611726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171d90613f93565b60405180910390fd5b7f000000000000000000000000c70d029c78b5cad040b85e58b84c09695901572c73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac906142f4565b60405180910390fd5b6117bf8282612fc2565b5050565b60135481565b601c5481565b60185481565b60105481565b600080600160006117ea612029565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90614386565b60405180910390fd5b6118bb6118b2612029565b85858403612031565b600191505092915050565b60006118da6118d3612029565b84846121fc565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b61191f612029565b73ffffffffffffffffffffffffffffffffffffffff1661193d61154f565b73ffffffffffffffffffffffffffffffffffffffff1614611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198a90613f93565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611a309190613bd9565b60405180910390a25050565b611a44612029565b73ffffffffffffffffffffffffffffffffffffffff16611a6261154f565b73ffffffffffffffffffffffffffffffffffffffff1614611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90613f93565b60405180910390fd5b670de0b6b3a76400006103e86005611ace610d97565b611ad89190613fe2565b611ae2919061406b565b611aec919061406b565b811015611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2590614418565b60405180910390fd5b670de0b6b3a764000081611b429190613fe2565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611b6e612029565b73ffffffffffffffffffffffffffffffffffffffff16611b8c61154f565b73ffffffffffffffffffffffffffffffffffffffff1614611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd990613f93565b60405180910390fd5b620186a06001611bf0610d97565b611bfa9190613fe2565b611c04919061406b565b821015611c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3d906144aa565b60405180910390fd5b6103e86005611c53610d97565b611c5d9190613fe2565b611c67919061406b565b821115611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca09061453c565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611d54612029565b73ffffffffffffffffffffffffffffffffffffffff16611d7261154f565b73ffffffffffffffffffffffffffffffffffffffff1614611dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbf90613f93565b60405180910390fd5b600a81838587611dd891906141c0565b611de291906141c0565b611dec91906141c0565b1115611e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e24906145a8565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611e5f91906141c0565b611e6991906141c0565b611e7391906141c0565b60148190555050505050565b6000611e89612029565b73ffffffffffffffffffffffffffffffffffffffff16611ea761154f565b73ffffffffffffffffffffffffffffffffffffffff1614611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef490613f93565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b611f2d612029565b73ffffffffffffffffffffffffffffffffffffffff16611f4b61154f565b73ffffffffffffffffffffffffffffffffffffffff1614611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9890613f93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612011576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120089061463a565b60405180910390fd5b61201a81612efc565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612098906146cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612111576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121089061475e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516121ef9190613c03565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561226c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612263906147f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d390614882565b60405180910390fd5b60008114156122f6576122f183836000613063565b612ef7565b600c60009054906101000a900460ff16156129b95761231361154f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612381575061235161154f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123ba5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123f4575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561240d5750600560149054906101000a900460ff16155b156129b857600c60019054906101000a900460ff1661250757601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124c75750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fd906148ee565b60405180910390fd5b5b600e60009054906101000a900460ff16156126cf5761252461154f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156125ab57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561260357507f000000000000000000000000c70d029c78b5cad040b85e58b84c09695901572c73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126ce5743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612689576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612680906149a6565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127725750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612819576009548111156127bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b390614a38565b60405180910390fd5b600b546127c88361124e565b826127d391906141c0565b1115612814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280b90614aa4565b60405180910390fd5b6129b7565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128bc5750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561290b57600954811115612906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fd90614b36565b60405180910390fd5b6129b6565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129b557600b546129688361124e565b8261297391906141c0565b11156129b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ab90614aa4565b60405180910390fd5b5b5b5b5b5b60006129c43061124e565b90506000600a5482101590508080156129e95750600c60029054906101000a900460ff165b8015612a025750600560149054906101000a900460ff16155b8015612a585750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612aae5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b045750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b48576001600560146101000a81548160ff021916908315150217905550612b2c6132e4565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612bfe5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612c0857600090505b60008115612ee757601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c6b57506000601454115b15612d6b57612c986064612c8a601454886136a590919063ffffffff16565b6136bb90919063ffffffff16565b905060145460155482612cab9190613fe2565b612cb5919061406b565b60196000828254612cc691906141c0565b9250508190555060145460175482612cde9190613fe2565b612ce8919061406b565b601b6000828254612cf991906141c0565b9250508190555060145460185482612d119190613fe2565b612d1b919061406b565b601c6000828254612d2c91906141c0565b9250508190555060145460165482612d449190613fe2565b612d4e919061406b565b601a6000828254612d5f91906141c0565b92505081905550612ec3565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612dc657506000600f54115b15612ec257612df36064612de5600f54886136a590919063ffffffff16565b6136bb90919063ffffffff16565b9050600f5460105482612e069190613fe2565b612e10919061406b565b60196000828254612e2191906141c0565b92505081905550600f5460125482612e399190613fe2565b612e43919061406b565b601b6000828254612e5491906141c0565b92505081905550600f5460135482612e6c9190613fe2565b612e76919061406b565b601c6000828254612e8791906141c0565b92505081905550600f5460115482612e9f9190613fe2565b612ea9919061406b565b601a6000828254612eba91906141c0565b925050819055505b5b6000811115612ed857612ed7873083613063565b5b8085612ee49190614b56565b94505b612ef2878787613063565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ca906147f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313a90614882565b60405180910390fd5b61314e8383836136d1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156131d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131cb90614bfc565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461326791906141c0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516132cb9190613c03565b60405180910390a36132de8484846136d6565b50505050565b60006132ef3061124e565b90506000601c54601a54601b5460195461330991906141c0565b61331391906141c0565b61331d91906141c0565b905060008083148061332f5750600082145b1561333c575050506136a3565b6014600a5461334b9190613fe2565b831115613364576014600a546133619190613fe2565b92505b6000600283601b54866133779190613fe2565b613381919061406b565b61338b919061406b565b905060006133a282866136db90919063ffffffff16565b905060004790506133b2826136f1565b60006133c782476136db90919063ffffffff16565b905060006133f2876133e4601954856136a590919063ffffffff16565b6136bb90919063ffffffff16565b9050600061341d8861340f601a54866136a590919063ffffffff16565b6136bb90919063ffffffff16565b905060006134488961343a601c54876136a590919063ffffffff16565b6136bb90919063ffffffff16565b905060008183858761345a9190614b56565b6134649190614b56565b61346e9190614b56565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516134d690614c4d565b60006040518083038185875af1925050503d8060008114613513576040519150601f19603f3d011682016040523d82523d6000602084013e613518565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161356490614c4d565b60006040518083038185875af1925050503d80600081146135a1576040519150601f19603f3d011682016040523d82523d6000602084013e6135a6565b606091505b5050809950506000881180156135bc5750600081115b15613609576135cb888261392e565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161360093929190614c62565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161364f90614c4d565b60006040518083038185875af1925050503d806000811461368c576040519150601f19603f3d011682016040523d82523d6000602084013e613691565b606091505b50508099505050505050505050505050505b565b600081836136b39190613fe2565b905092915050565b600081836136c9919061406b565b905092915050565b505050565b505050565b600081836136e99190614b56565b905092915050565b6000600267ffffffffffffffff81111561370e5761370d614c99565b5b60405190808252806020026020018201604052801561373c5781602001602082028036833780820191505090505b509050308160008151811061375457613753614cc8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156137f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061381d9190614d0c565b8160018151811061383157613830614cc8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613896307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612031565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016138f8959493929190614e32565b600060405180830381600087803b15801561391257600080fd5b505af1158015613926573d6000803e3d6000fd5b505050505050565b613959307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612031565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016139e096959493929190614e8c565b60606040518083038185885af11580156139fe573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613a239190614f02565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a64578082015181840152602081019050613a49565b83811115613a73576000848401525b50505050565b6000601f19601f8301169050919050565b6000613a9582613a2a565b613a9f8185613a35565b9350613aaf818560208601613a46565b613ab881613a79565b840191505092915050565b60006020820190508181036000830152613add8184613a8a565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b1582613aea565b9050919050565b613b2581613b0a565b8114613b3057600080fd5b50565b600081359050613b4281613b1c565b92915050565b6000819050919050565b613b5b81613b48565b8114613b6657600080fd5b50565b600081359050613b7881613b52565b92915050565b60008060408385031215613b9557613b94613ae5565b5b6000613ba385828601613b33565b9250506020613bb485828601613b69565b9150509250929050565b60008115159050919050565b613bd381613bbe565b82525050565b6000602082019050613bee6000830184613bca565b92915050565b613bfd81613b48565b82525050565b6000602082019050613c186000830184613bf4565b92915050565b600060208284031215613c3457613c33613ae5565b5b6000613c4284828501613b33565b91505092915050565b6000819050919050565b6000613c70613c6b613c6684613aea565b613c4b565b613aea565b9050919050565b6000613c8282613c55565b9050919050565b6000613c9482613c77565b9050919050565b613ca481613c89565b82525050565b6000602082019050613cbf6000830184613c9b565b92915050565b600060208284031215613cdb57613cda613ae5565b5b6000613ce984828501613b69565b91505092915050565b600080600060608486031215613d0b57613d0a613ae5565b5b6000613d1986828701613b33565b9350506020613d2a86828701613b33565b9250506040613d3b86828701613b69565b9150509250925092565b613d4e81613b0a565b82525050565b6000602082019050613d696000830184613d45565b92915050565b60008060008060808587031215613d8957613d88613ae5565b5b6000613d9787828801613b69565b9450506020613da887828801613b69565b9350506040613db987828801613b69565b9250506060613dca87828801613b69565b91505092959194509250565b600060ff82169050919050565b613dec81613dd6565b82525050565b6000602082019050613e076000830184613de3565b92915050565b613e1681613bbe565b8114613e2157600080fd5b50565b600081359050613e3381613e0d565b92915050565b60008060408385031215613e5057613e4f613ae5565b5b6000613e5e85828601613b33565b9250506020613e6f85828601613e24565b9150509250929050565b600060208284031215613e8f57613e8e613ae5565b5b6000613e9d84828501613e24565b91505092915050565b60008060408385031215613ebd57613ebc613ae5565b5b6000613ecb85828601613b33565b9250506020613edc85828601613b33565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f2d57607f821691505b60208210811415613f4157613f40613ee6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f7d602083613a35565b9150613f8882613f47565b602082019050919050565b60006020820190508181036000830152613fac81613f70565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fed82613b48565b9150613ff883613b48565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561403157614030613fb3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061407682613b48565b915061408183613b48565b9250826140915761409061403c565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b60006140f8602f83613a35565b91506141038261409c565b604082019050919050565b60006020820190508181036000830152614127816140eb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061418a602883613a35565b91506141958261412e565b604082019050919050565b600060208201905081810360008301526141b98161417d565b9050919050565b60006141cb82613b48565b91506141d683613b48565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561420b5761420a613fb3565b5b828201905092915050565b7f4d61782042757946656520313025000000000000000000000000000000000000600082015250565b600061424c600e83613a35565b915061425782614216565b602082019050919050565b6000602082019050818103600083015261427b8161423f565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006142de603983613a35565b91506142e982614282565b604082019050919050565b6000602082019050818103600083015261430d816142d1565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614370602583613a35565b915061437b82614314565b604082019050919050565b6000602082019050818103600083015261439f81614363565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614402602483613a35565b915061440d826143a6565b604082019050919050565b60006020820190508181036000830152614431816143f5565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614494603583613a35565b915061449f82614438565b604082019050919050565b600060208201905081810360008301526144c381614487565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614526603483613a35565b9150614531826144ca565b604082019050919050565b6000602082019050818103600083015261455581614519565b9050919050565b7f4d61782053656c6c466565203130250000000000000000000000000000000000600082015250565b6000614592600f83613a35565b915061459d8261455c565b602082019050919050565b600060208201905081810360008301526145c181614585565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614624602683613a35565b915061462f826145c8565b604082019050919050565b6000602082019050818103600083015261465381614617565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006146b6602483613a35565b91506146c18261465a565b604082019050919050565b600060208201905081810360008301526146e5816146a9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614748602283613a35565b9150614753826146ec565b604082019050919050565b600060208201905081810360008301526147778161473b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006147da602583613a35565b91506147e58261477e565b604082019050919050565b60006020820190508181036000830152614809816147cd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061486c602383613a35565b915061487782614810565b604082019050919050565b6000602082019050818103600083015261489b8161485f565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006148d8601683613a35565b91506148e3826148a2565b602082019050919050565b60006020820190508181036000830152614907816148cb565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614990604983613a35565b915061499b8261490e565b606082019050919050565b600060208201905081810360008301526149bf81614983565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614a22603583613a35565b9150614a2d826149c6565b604082019050919050565b60006020820190508181036000830152614a5181614a15565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614a8e601383613a35565b9150614a9982614a58565b602082019050919050565b60006020820190508181036000830152614abd81614a81565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614b20603683613a35565b9150614b2b82614ac4565b604082019050919050565b60006020820190508181036000830152614b4f81614b13565b9050919050565b6000614b6182613b48565b9150614b6c83613b48565b925082821015614b7f57614b7e613fb3565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614be6602683613a35565b9150614bf182614b8a565b604082019050919050565b60006020820190508181036000830152614c1581614bd9565b9050919050565b600081905092915050565b50565b6000614c37600083614c1c565b9150614c4282614c27565b600082019050919050565b6000614c5882614c2a565b9150819050919050565b6000606082019050614c776000830186613bf4565b614c846020830185613bf4565b614c916040830184613bf4565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614d0681613b1c565b92915050565b600060208284031215614d2257614d21613ae5565b5b6000614d3084828501614cf7565b91505092915050565b6000819050919050565b6000614d5e614d59614d5484614d39565b613c4b565b613b48565b9050919050565b614d6e81614d43565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614da981613b0a565b82525050565b6000614dbb8383614da0565b60208301905092915050565b6000602082019050919050565b6000614ddf82614d74565b614de98185614d7f565b9350614df483614d90565b8060005b83811015614e25578151614e0c8882614daf565b9750614e1783614dc7565b925050600181019050614df8565b5085935050505092915050565b600060a082019050614e476000830188613bf4565b614e546020830187614d65565b8181036040830152614e668186614dd4565b9050614e756060830185613d45565b614e826080830184613bf4565b9695505050505050565b600060c082019050614ea16000830189613d45565b614eae6020830188613bf4565b614ebb6040830187614d65565b614ec86060830186614d65565b614ed56080830185613d45565b614ee260a0830184613bf4565b979650505050505050565b600081519050614efc81613b52565b92915050565b600080600060608486031215614f1b57614f1a613ae5565b5b6000614f2986828701614eed565b9350506020614f3a86828701614eed565b9250506040614f4b86828701614eed565b915050925092509256fea2646970667358221220bebda36852cfd507ea4f224862bd458ad130b7cd87d3ea40f9ed0f14d7973d4f64736f6c634300080a0033

Deployed Bytecode Sourcemap

32641:16628:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9569:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11736:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33689:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34129:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32714:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10689:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33913:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33873;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38559:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12387:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32817:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39481:516;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10531:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13288:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33835:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32772:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33132:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41237:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33654:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33212:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10860:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2804:103;;;;;;;;;;;;;:::i;:::-;;37667:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39110:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33547:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37503:112;;;;;;;;;;;;;:::i;:::-;;2153:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33725:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39373:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9788:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40729:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33621:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33953:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33801:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33512:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14006:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11200:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34350:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33172:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40539:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38842:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33430:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33017:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38054:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33478:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11438:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33059:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40005:526;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37849:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33584:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3062:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33763:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33099:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9569:100;9623:13;9656:5;9649:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9569:100;:::o;11736:169::-;11819:4;11836:39;11845:12;:10;:12::i;:::-;11859:7;11868:6;11836:8;:39::i;:::-;11893:4;11886:11;;11736:169;;;;:::o;33689:29::-;;;;:::o;34129:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32714:51::-;;;:::o;10689:108::-;10750:7;10777:12;;10770:19;;10689:108;:::o;33913:33::-;;;;:::o;33873:::-;;;;:::o;38559:275::-;2384:12;:10;:12::i;:::-;2373:23;;:7;:5;:7::i;:::-;:23;;;2365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38696:4:::1;38688;38683:1;38667:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38666:26;;;;:::i;:::-;38665:35;;;;:::i;:::-;38655:6;:45;;38633:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38819:6;38809;:17;;;;:::i;:::-;38786:20;:40;;;;38559:275:::0;:::o;12387:492::-;12527:4;12544:36;12554:6;12562:9;12573:6;12544:9;:36::i;:::-;12593:24;12620:11;:19;12632:6;12620:19;;;;;;;;;;;;;;;:33;12640:12;:10;:12::i;:::-;12620:33;;;;;;;;;;;;;;;;12593:60;;12692:6;12672:16;:26;;12664:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12779:57;12788:6;12796:12;:10;:12::i;:::-;12829:6;12810:16;:25;12779:8;:57::i;:::-;12867:4;12860:11;;;12387:492;;;;;:::o;32817:53::-;32863:6;32817:53;:::o;39481:516::-;2384:12;:10;:12::i;:::-;2373:23;;:7;:5;:7::i;:::-;:23;;;2365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39728:2:::1;39716:7;39700:13;39684;39670:11;:27;;;;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;39669:61;;39661:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;39776:11;39760:13;:27;;;;39816:13;39798:15;:31;;;;39858:13;39840:15;:31;;;;39894:7;39882:9;:19;;;;39979:9;;39961:15;;39943;;39927:13;;:31;;;;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;39912:12;:76;;;;39481:516:::0;;;;:::o;10531:93::-;10589:5;10614:2;10607:9;;10531:93;:::o;13288:215::-;13376:4;13393:80;13402:12;:10;:12::i;:::-;13416:7;13462:10;13425:11;:25;13437:12;:10;:12::i;:::-;13425:25;;;;;;;;;;;;;;;:34;13451:7;13425:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13393:8;:80::i;:::-;13491:4;13484:11;;13288:215;;;;:::o;33835:31::-;;;;:::o;32772:38::-;;;:::o;33132:33::-;;;;;;;;;;;;;:::o;41237:126::-;41303:4;41327:19;:28;41347:7;41327:28;;;;;;;;;;;;;;;;;;;;;;;;;41320:35;;41237:126;;;:::o;33654:28::-;;;;:::o;33212:31::-;;;;;;;;;;;;;:::o;10860:127::-;10934:7;10961:9;:18;10971:7;10961:18;;;;;;;;;;;;;;;;10954:25;;10860:127;;;:::o;2804:103::-;2384:12;:10;:12::i;:::-;2373:23;;:7;:5;:7::i;:::-;:23;;;2365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2869:30:::1;2896:1;2869:18;:30::i;:::-;2804:103::o:0;37667:121::-;37719:4;2384:12;:10;:12::i;:::-;2373:23;;:7;:5;:7::i;:::-;:23;;;2365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37753:5:::1;37736:14;;:22;;;;;;;;;;;;;;;;;;37776:4;37769:11;;37667:121:::0;:::o;39110:167::-;2384:12;:10;:12::i;:::-;2373:23;;:7;:5;:7::i;:::-;:23;;;2365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39265:4:::1;39223:31;:39;39255:6;39223:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39110:167:::0;;:::o;33547:30::-;;;;:::o;37503:112::-;2384:12;:10;:12::i;:::-;2373:23;;:7;:5;:7::i;:::-;:23;;;2365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37574:4:::1;37558:13;;:20;;;;;;;;;;;;;;;;;;37603:4;37589:11;;:18;;;;;;;;;;;;;;;;;;37503:112::o:0;2153:87::-;2199:7;2226:6;;;;;;;;;;;2219:13;;2153:87;:::o;33725:31::-;;;;:::o;39373:100::-;2384:12;:10;:12::i;:::-;2373:23;;:7;:5;:7::i;:::-;:23;;;2365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39458:7:::1;39444:11;;:21;;;;;;;;;;;;;;;;;;39373:100:::0;:::o;9788:104::-;9844:13;9877:7;9870:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9788:104;:::o;40729:304::-;2384:12;:10;:12::i;:::-;2373:23;;:7;:5;:7::i;:::-;:23;;;2365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40873:13:::1;40865:21;;:4;:21;;;;40843:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40984:41;41013:4;41019:5;40984:28;:41::i;:::-;40729:304:::0;;:::o;33621:24::-;;;;:::o;33953:27::-;;;;:::o;33801:25::-;;;;:::o;33512:28::-;;;;:::o;14006:413::-;14099:4;14116:24;14143:11;:25;14155:12;:10;:12::i;:::-;14143:25;;;;;;;;;;;;;;;:34;14169:7;14143:34;;;;;;;;;;;;;;;;14116:61;;14216:15;14196:16;:35;;14188:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14309:67;14318:12;:10;:12::i;:::-;14332:7;14360:15;14341:16;:34;14309:8;:67::i;:::-;14407:4;14400:11;;;14006:413;;;;:::o;11200:175::-;11286:4;11303:42;11313:12;:10;:12::i;:::-;11327:9;11338:6;11303:9;:42::i;:::-;11363:4;11356:11;;11200:175;;;;:::o;34350:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33172:33::-;;;;;;;;;;;;;:::o;40539:182::-;2384:12;:10;:12::i;:::-;2373:23;;:7;:5;:7::i;:::-;:23;;;2365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40655:8:::1;40624:19;:28;40644:7;40624:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40695:7;40679:34;;;40704:8;40679:34;;;;;;:::i;:::-;;;;;;;;40539:182:::0;;:::o;38842:256::-;2384:12;:10;:12::i;:::-;2373:23;;:7;:5;:7::i;:::-;:23;;;2365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38982:4:::1;38974;38969:1;38953:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38952:26;;;;:::i;:::-;38951:35;;;;:::i;:::-;38941:6;:45;;38919:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39083:6;39073;:17;;;;:::i;:::-;39061:9;:29;;;;38842:256:::0;:::o;33430:39::-;;;;;;;;;;;;;:::o;33017:35::-;;;;:::o;38054:497::-;38162:4;2384:12;:10;:12::i;:::-;2373:23;;:7;:5;:7::i;:::-;:23;;;2365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38241:6:::1;38236:1;38220:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38219:28;;;;:::i;:::-;38206:9;:41;;38184:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38396:4;38391:1;38375:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38374:26;;;;:::i;:::-;38361:9;:39;;38339:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38512:9;38491:18;:30;;;;38539:4;38532:11;;38054:497:::0;;;:::o;33478:27::-;;;;:::o;11438:151::-;11527:7;11554:11;:18;11566:5;11554:18;;;;;;;;;;;;;;;:27;11573:7;11554:27;;;;;;;;;;;;;;;;11547:34;;11438:151;;;;:::o;33059:33::-;;;;:::o;40005:526::-;2384:12;:10;:12::i;:::-;2373:23;;:7;:5;:7::i;:::-;:23;;;2365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40253:2:::1;40241:7;40225:13;40209;40195:11;:27;;;;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;40194:61;;40186:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;40303:11;40286:14;:28;;;;40344:13;40325:16;:32;;;;40387:13;40368:16;:32;;;;40424:7;40411:10;:20;;;;40513:10;;40494:16;;40475;;40458:14;;:33;;;;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;40442:13;:81;;;;40005:526:::0;;;;:::o;37849:135::-;37909:4;2384:12;:10;:12::i;:::-;2373:23;;:7;:5;:7::i;:::-;:23;;;2365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37949:5:::1;37926:20;;:28;;;;;;;;;;;;;;;;;;37972:4;37965:11;;37849:135:::0;:::o;33584:30::-;;;;:::o;3062:201::-;2384:12;:10;:12::i;:::-;2373:23;;:7;:5;:7::i;:::-;:23;;;2365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3171:1:::1;3151:22;;:8;:22;;;;3143:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3227:28;3246:8;3227:18;:28::i;:::-;3062:201:::0;:::o;33763:31::-;;;;:::o;33099:24::-;;;;:::o;826:98::-;879:7;906:10;899:17;;826:98;:::o;17690:380::-;17843:1;17826:19;;:5;:19;;;;17818:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17924:1;17905:21;;:7;:21;;;;17897:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18008:6;17978:11;:18;17990:5;17978:18;;;;;;;;;;;;;;;:27;17997:7;17978:27;;;;;;;;;;;;;;;:36;;;;18046:7;18030:32;;18039:5;18030:32;;;18055:6;18030:32;;;;;;:::i;:::-;;;;;;;;17690:380;;;:::o;41371:4871::-;41519:1;41503:18;;:4;:18;;;;41495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41596:1;41582:16;;:2;:16;;;;41574:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41665:1;41655:6;:11;41651:93;;;41683:28;41699:4;41705:2;41709:1;41683:15;:28::i;:::-;41726:7;;41651:93;41760:14;;;;;;;;;;;41756:2487;;;41821:7;:5;:7::i;:::-;41813:15;;:4;:15;;;;:49;;;;;41855:7;:5;:7::i;:::-;41849:13;;:2;:13;;;;41813:49;:86;;;;;41897:1;41883:16;;:2;:16;;;;41813:86;:128;;;;;41934:6;41920:21;;:2;:21;;;;41813:128;:158;;;;;41963:8;;;;;;;;;;;41962:9;41813:158;41791:2441;;;42011:13;;;;;;;;;;;42006:223;;42083:19;:25;42103:4;42083:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42112:19;:23;42132:2;42112:23;;;;;;;;;;;;;;;;;;;;;;;;;42083:52;42049:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42006:223;42385:20;;;;;;;;;;;42381:641;;;42466:7;:5;:7::i;:::-;42460:13;;:2;:13;;;;:72;;;;;42516:15;42502:30;;:2;:30;;;;42460:72;:129;;;;;42575:13;42561:28;;:2;:28;;;;42460:129;42430:573;;;42753:12;42678:28;:39;42707:9;42678:39;;;;;;;;;;;;;;;;:87;42640:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;42967:12;42925:28;:39;42954:9;42925:39;;;;;;;;;;;;;;;:54;;;;42430:573;42381:641;43096:25;:31;43122:4;43096:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43153:31;:35;43185:2;43153:35;;;;;;;;;;;;;;;;;;;;;;;;;43152:36;43096:92;43070:1147;;;43275:20;;43265:6;:30;;43231:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43483:9;;43466:13;43476:2;43466:9;:13::i;:::-;43457:6;:22;;;;:::i;:::-;:35;;43423:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43070:1147;;;43661:25;:29;43687:2;43661:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43716:31;:37;43748:4;43716:37;;;;;;;;;;;;;;;;;;;;;;;;;43715:38;43661:92;43635:582;;;43840:20;;43830:6;:30;;43796:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43635:582;;;43997:31;:35;44029:2;43997:35;;;;;;;;;;;;;;;;;;;;;;;;;43992:225;;44117:9;;44100:13;44110:2;44100:9;:13::i;:::-;44091:6;:22;;;;:::i;:::-;:35;;44057:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43992:225;43635:582;43070:1147;41791:2441;41756:2487;44255:28;44286:24;44304:4;44286:9;:24::i;:::-;44255:55;;44323:12;44362:18;;44338:20;:42;;44323:57;;44411:7;:35;;;;;44435:11;;;;;;;;;;;44411:35;:61;;;;;44464:8;;;;;;;;;;;44463:9;44411:61;:110;;;;;44490:25;:31;44516:4;44490:31;;;;;;;;;;;;;;;;;;;;;;;;;44489:32;44411:110;:153;;;;;44539:19;:25;44559:4;44539:25;;;;;;;;;;;;;;;;;;;;;;;;;44538:26;44411:153;:194;;;;;44582:19;:23;44602:2;44582:23;;;;;;;;;;;;;;;;;;;;;;;;;44581:24;44411:194;44393:326;;;44643:4;44632:8;;:15;;;;;;;;;;;;;;;;;;44664:10;:8;:10::i;:::-;44702:5;44691:8;;:16;;;;;;;;;;;;;;;;;;44393:326;44731:12;44747:8;;;;;;;;;;;44746:9;44731:24;;44857:19;:25;44877:4;44857:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44886:19;:23;44906:2;44886:23;;;;;;;;;;;;;;;;;;;;;;;;;44857:52;44853:100;;;44936:5;44926:15;;44853:100;44965:12;45070:7;45066:1123;;;45122:25;:29;45148:2;45122:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45171:1;45155:13;;:17;45122:50;45118:922;;;45200:34;45230:3;45200:25;45211:13;;45200:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45193:41;;45299:13;;45281:14;;45274:4;:21;;;;:::i;:::-;45273:39;;;;:::i;:::-;45253:16;;:59;;;;;;;:::i;:::-;;;;;;;;45381:13;;45361:16;;45354:4;:23;;;;:::i;:::-;45353:41;;;;:::i;:::-;45331:18;;:63;;;;;;;:::i;:::-;;;;;;;;45451:13;;45437:10;;45430:4;:17;;;;:::i;:::-;45429:35;;;;:::i;:::-;45413:12;;:51;;;;;;;:::i;:::-;;;;;;;;45533:13;;45513:16;;45506:4;:23;;;;:::i;:::-;45505:41;;;;:::i;:::-;45483:18;;:63;;;;;;;:::i;:::-;;;;;;;;45118:922;;;45608:25;:31;45634:4;45608:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45658:1;45643:12;;:16;45608:51;45604:436;;;45687:33;45716:3;45687:24;45698:12;;45687:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45680:40;;45784:12;;45767:13;;45760:4;:20;;;;:::i;:::-;45759:37;;;;:::i;:::-;45739:16;;:57;;;;;;;:::i;:::-;;;;;;;;45864:12;;45845:15;;45838:4;:22;;;;:::i;:::-;45837:39;;;;:::i;:::-;45815:18;;:61;;;;;;;:::i;:::-;;;;;;;;45932:12;;45919:9;;45912:4;:16;;;;:::i;:::-;45911:33;;;;:::i;:::-;45895:12;;:49;;;;;;;:::i;:::-;;;;;;;;46012:12;;45993:15;;45986:4;:22;;;;:::i;:::-;45985:39;;;;:::i;:::-;45963:18;;:61;;;;;;;:::i;:::-;;;;;;;;45604:436;45118:922;46067:1;46060:4;:8;46056:91;;;46089:42;46105:4;46119;46126;46089:15;:42::i;:::-;46056:91;46173:4;46163:14;;;;;:::i;:::-;;;45066:1123;46201:33;46217:4;46223:2;46227:6;46201:15;:33::i;:::-;41484:4758;;;;41371:4871;;;;:::o;3423:191::-;3497:16;3516:6;;;;;;;;;;;3497:25;;3542:8;3533:6;;:17;;;;;;;;;;;;;;;;;;3597:8;3566:40;;3587:8;3566:40;;;;;;;;;;;;3486:128;3423:191;:::o;41041:188::-;41158:5;41124:25;:31;41150:4;41124:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41215:5;41181:40;;41209:4;41181:40;;;;;;;;;;;;41041:188;;:::o;14909:733::-;15067:1;15049:20;;:6;:20;;;;15041:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15151:1;15130:23;;:9;:23;;;;15122:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15206:47;15227:6;15235:9;15246:6;15206:20;:47::i;:::-;15266:21;15290:9;:17;15300:6;15290:17;;;;;;;;;;;;;;;;15266:41;;15343:6;15326:13;:23;;15318:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15464:6;15448:13;:22;15428:9;:17;15438:6;15428:17;;;;;;;;;;;;;;;:42;;;;15516:6;15492:9;:20;15502:9;15492:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15557:9;15540:35;;15549:6;15540:35;;;15568:6;15540:35;;;;;;:::i;:::-;;;;;;;;15588:46;15608:6;15616:9;15627:6;15588:19;:46::i;:::-;15030:612;14909:733;;;:::o;47370:1894::-;47409:23;47435:24;47453:4;47435:9;:24::i;:::-;47409:50;;47470:25;47559:12;;47538:18;;47517;;47498:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;47470:101;;47582:12;47630:1;47611:15;:20;:46;;;;47656:1;47635:17;:22;47611:46;47607:85;;;47674:7;;;;;47607:85;47747:2;47726:18;;:23;;;;:::i;:::-;47708:15;:41;47704:115;;;47805:2;47784:18;;:23;;;;:::i;:::-;47766:41;;47704:115;47880:23;47967:1;47947:17;47925:18;;47907:15;:36;;;;:::i;:::-;47906:58;;;;:::i;:::-;:62;;;;:::i;:::-;47880:88;;47979:26;48008:36;48028:15;48008;:19;;:36;;;;:::i;:::-;47979:65;;48057:25;48085:21;48057:49;;48119:36;48136:18;48119:16;:36::i;:::-;48168:18;48189:44;48215:17;48189:21;:25;;:44;;;;:::i;:::-;48168:65;;48246:21;48270:55;48307:17;48270:32;48285:16;;48270:10;:14;;:32;;;;:::i;:::-;:36;;:55;;;;:::i;:::-;48246:79;;48336:23;48362:57;48401:17;48362:34;48377:18;;48362:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;48336:83;;48430:17;48450:51;48483:17;48450:28;48465:12;;48450:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48430:71;;48514:23;48587:9;48569:15;48553:13;48540:10;:26;;;;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;48514:82;;48630:1;48609:18;:22;;;;48661:1;48642:16;:20;;;;48694:1;48673:18;:22;;;;48721:1;48706:12;:16;;;;48757:9;;;;;;;;;;;48749:23;;48780:9;48749:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48735:59;;;;;48827:15;;;;;;;;;;;48819:29;;48856:15;48819:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48805:71;;;;;48913:1;48895:15;:19;:42;;;;;48936:1;48918:15;:19;48895:42;48891:278;;;48954:46;48967:15;48984;48954:12;:46::i;:::-;49020:137;49053:18;49090:15;49124:18;;49020:137;;;;;;;;:::i;:::-;;;;;;;;48891:278;49203:13;;;;;;;;;;;49195:27;;49230:21;49195:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49181:75;;;;;47398:1866;;;;;;;;;;;47370:1894;:::o;23143:98::-;23201:7;23232:1;23228;:5;;;;:::i;:::-;23221:12;;23143:98;;;;:::o;23542:::-;23600:7;23631:1;23627;:5;;;;:::i;:::-;23620:12;;23542:98;;;;:::o;18670:125::-;;;;:::o;19399:124::-;;;;:::o;22786:98::-;22844:7;22875:1;22871;:5;;;;:::i;:::-;22864:12;;22786:98;;;;:::o;46250:589::-;46376:21;46414:1;46400:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46376:40;;46445:4;46427;46432:1;46427:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46471:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46461:4;46466:1;46461:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46506:62;46523:4;46538:15;46556:11;46506:8;:62::i;:::-;46607:15;:66;;;46688:11;46714:1;46758:4;46785;46805:15;46607:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46305:534;46250:589;:::o;46847:515::-;46995:62;47012:4;47027:15;47045:11;46995:8;:62::i;:::-;47100:15;:31;;;47139:9;47172:4;47192:11;47218:1;47261;47304:9;;;;;;;;;;;47328:15;47100:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46847:515;;:::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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:329::-;3905:6;3954:2;3942:9;3933:7;3929:23;3925:32;3922:119;;;3960:79;;:::i;:::-;3922:119;4080:1;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4051:117;3846:329;;;;:::o;4181:60::-;4209:3;4230:5;4223:12;;4181:60;;;:::o;4247:142::-;4297:9;4330:53;4348:34;4357:24;4375:5;4357:24;:::i;:::-;4348:34;:::i;:::-;4330:53;:::i;:::-;4317:66;;4247:142;;;:::o;4395:126::-;4445:9;4478:37;4509:5;4478:37;:::i;:::-;4465:50;;4395:126;;;:::o;4527:153::-;4604:9;4637:37;4668:5;4637:37;:::i;:::-;4624:50;;4527:153;;;:::o;4686:185::-;4800:64;4858:5;4800:64;:::i;:::-;4795:3;4788:77;4686:185;;:::o;4877:276::-;4997:4;5035:2;5024:9;5020:18;5012:26;;5048:98;5143:1;5132:9;5128:17;5119:6;5048:98;:::i;:::-;4877:276;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:765::-;6557:6;6565;6573;6581;6630:3;6618:9;6609:7;6605:23;6601:33;6598:120;;;6637:79;;:::i;:::-;6598:120;6757:1;6782:53;6827:7;6818:6;6807:9;6803:22;6782:53;:::i;:::-;6772:63;;6728:117;6884:2;6910:53;6955:7;6946:6;6935:9;6931:22;6910:53;:::i;:::-;6900:63;;6855:118;7012:2;7038:53;7083:7;7074:6;7063:9;7059:22;7038:53;:::i;:::-;7028:63;;6983:118;7140:2;7166:53;7211:7;7202:6;7191:9;7187:22;7166:53;:::i;:::-;7156:63;;7111:118;6471:765;;;;;;;:::o;7242:86::-;7277:7;7317:4;7310:5;7306:16;7295:27;;7242:86;;;:::o;7334:112::-;7417:22;7433:5;7417:22;:::i;:::-;7412:3;7405:35;7334:112;;:::o;7452:214::-;7541:4;7579:2;7568:9;7564:18;7556:26;;7592:67;7656:1;7645:9;7641:17;7632:6;7592:67;:::i;:::-;7452:214;;;;:::o;7672:116::-;7742:21;7757:5;7742:21;:::i;:::-;7735:5;7732:32;7722:60;;7778:1;7775;7768:12;7722:60;7672:116;:::o;7794:133::-;7837:5;7875:6;7862:20;7853:29;;7891:30;7915:5;7891:30;:::i;:::-;7794:133;;;;:::o;7933:468::-;7998:6;8006;8055:2;8043:9;8034:7;8030:23;8026:32;8023:119;;;8061:79;;:::i;:::-;8023:119;8181:1;8206:53;8251:7;8242:6;8231:9;8227:22;8206:53;:::i;:::-;8196:63;;8152:117;8308:2;8334:50;8376:7;8367:6;8356:9;8352:22;8334:50;:::i;:::-;8324:60;;8279:115;7933:468;;;;;:::o;8407:323::-;8463:6;8512:2;8500:9;8491:7;8487:23;8483:32;8480:119;;;8518:79;;:::i;:::-;8480:119;8638:1;8663:50;8705:7;8696:6;8685:9;8681:22;8663:50;:::i;:::-;8653:60;;8609:114;8407:323;;;;:::o;8736:474::-;8804:6;8812;8861:2;8849:9;8840:7;8836:23;8832:32;8829:119;;;8867:79;;:::i;:::-;8829:119;8987:1;9012:53;9057:7;9048:6;9037:9;9033:22;9012:53;:::i;:::-;9002:63;;8958:117;9114:2;9140:53;9185:7;9176:6;9165:9;9161:22;9140:53;:::i;:::-;9130:63;;9085:118;8736:474;;;;;:::o;9216:180::-;9264:77;9261:1;9254:88;9361:4;9358:1;9351:15;9385:4;9382:1;9375:15;9402:320;9446:6;9483:1;9477:4;9473:12;9463:22;;9530:1;9524:4;9520:12;9551:18;9541:81;;9607:4;9599:6;9595:17;9585:27;;9541:81;9669:2;9661:6;9658:14;9638:18;9635:38;9632:84;;;9688:18;;:::i;:::-;9632:84;9453:269;9402:320;;;:::o;9728:182::-;9868:34;9864:1;9856:6;9852:14;9845:58;9728:182;:::o;9916:366::-;10058:3;10079:67;10143:2;10138:3;10079:67;:::i;:::-;10072:74;;10155:93;10244:3;10155:93;:::i;:::-;10273:2;10268:3;10264:12;10257:19;;9916:366;;;:::o;10288:419::-;10454:4;10492:2;10481:9;10477:18;10469:26;;10541:9;10535:4;10531:20;10527:1;10516:9;10512:17;10505:47;10569:131;10695:4;10569:131;:::i;:::-;10561:139;;10288:419;;;:::o;10713:180::-;10761:77;10758:1;10751:88;10858:4;10855:1;10848:15;10882:4;10879:1;10872:15;10899:348;10939:7;10962:20;10980:1;10962:20;:::i;:::-;10957:25;;10996:20;11014:1;10996:20;:::i;:::-;10991:25;;11184:1;11116:66;11112:74;11109:1;11106:81;11101:1;11094:9;11087:17;11083:105;11080:131;;;11191:18;;:::i;:::-;11080:131;11239:1;11236;11232:9;11221:20;;10899:348;;;;:::o;11253:180::-;11301:77;11298:1;11291:88;11398:4;11395:1;11388:15;11422:4;11419:1;11412:15;11439:185;11479:1;11496:20;11514:1;11496:20;:::i;:::-;11491:25;;11530:20;11548:1;11530:20;:::i;:::-;11525:25;;11569:1;11559:35;;11574:18;;:::i;:::-;11559:35;11616:1;11613;11609:9;11604:14;;11439:185;;;;:::o;11630:234::-;11770:34;11766:1;11758:6;11754:14;11747:58;11839:17;11834:2;11826:6;11822:15;11815:42;11630:234;:::o;11870:366::-;12012:3;12033:67;12097:2;12092:3;12033:67;:::i;:::-;12026:74;;12109:93;12198:3;12109:93;:::i;:::-;12227:2;12222:3;12218:12;12211:19;;11870:366;;;:::o;12242:419::-;12408:4;12446:2;12435:9;12431:18;12423:26;;12495:9;12489:4;12485:20;12481:1;12470:9;12466:17;12459:47;12523:131;12649:4;12523:131;:::i;:::-;12515:139;;12242:419;;;:::o;12667:227::-;12807:34;12803:1;12795:6;12791:14;12784:58;12876:10;12871:2;12863:6;12859:15;12852:35;12667:227;:::o;12900:366::-;13042:3;13063:67;13127:2;13122:3;13063:67;:::i;:::-;13056:74;;13139:93;13228:3;13139:93;:::i;:::-;13257:2;13252:3;13248:12;13241:19;;12900:366;;;:::o;13272:419::-;13438:4;13476:2;13465:9;13461:18;13453:26;;13525:9;13519:4;13515:20;13511:1;13500:9;13496:17;13489:47;13553:131;13679:4;13553:131;:::i;:::-;13545:139;;13272:419;;;:::o;13697:305::-;13737:3;13756:20;13774:1;13756:20;:::i;:::-;13751:25;;13790:20;13808:1;13790:20;:::i;:::-;13785:25;;13944:1;13876:66;13872:74;13869:1;13866:81;13863:107;;;13950:18;;:::i;:::-;13863:107;13994:1;13991;13987:9;13980:16;;13697:305;;;;:::o;14008:164::-;14148:16;14144:1;14136:6;14132:14;14125:40;14008:164;:::o;14178:366::-;14320:3;14341:67;14405:2;14400:3;14341:67;:::i;:::-;14334:74;;14417:93;14506:3;14417:93;:::i;:::-;14535:2;14530:3;14526:12;14519:19;;14178:366;;;:::o;14550:419::-;14716:4;14754:2;14743:9;14739:18;14731:26;;14803:9;14797:4;14793:20;14789:1;14778:9;14774:17;14767:47;14831:131;14957:4;14831:131;:::i;:::-;14823:139;;14550:419;;;:::o;14975:244::-;15115:34;15111:1;15103:6;15099:14;15092:58;15184:27;15179:2;15171:6;15167:15;15160:52;14975:244;:::o;15225:366::-;15367:3;15388:67;15452:2;15447:3;15388:67;:::i;:::-;15381:74;;15464:93;15553:3;15464:93;:::i;:::-;15582:2;15577:3;15573:12;15566:19;;15225:366;;;:::o;15597:419::-;15763:4;15801:2;15790:9;15786:18;15778:26;;15850:9;15844:4;15840:20;15836:1;15825:9;15821:17;15814:47;15878:131;16004:4;15878:131;:::i;:::-;15870:139;;15597:419;;;:::o;16022:224::-;16162:34;16158:1;16150:6;16146:14;16139:58;16231:7;16226:2;16218:6;16214:15;16207:32;16022:224;:::o;16252:366::-;16394:3;16415:67;16479:2;16474:3;16415:67;:::i;:::-;16408:74;;16491:93;16580:3;16491:93;:::i;:::-;16609:2;16604:3;16600:12;16593:19;;16252:366;;;:::o;16624:419::-;16790:4;16828:2;16817:9;16813:18;16805:26;;16877:9;16871:4;16867:20;16863:1;16852:9;16848:17;16841:47;16905:131;17031:4;16905:131;:::i;:::-;16897:139;;16624:419;;;:::o;17049:223::-;17189:34;17185:1;17177:6;17173:14;17166:58;17258:6;17253:2;17245:6;17241:15;17234:31;17049:223;:::o;17278:366::-;17420:3;17441:67;17505:2;17500:3;17441:67;:::i;:::-;17434:74;;17517:93;17606:3;17517:93;:::i;:::-;17635:2;17630:3;17626:12;17619:19;;17278:366;;;:::o;17650:419::-;17816:4;17854:2;17843:9;17839:18;17831:26;;17903:9;17897:4;17893:20;17889:1;17878:9;17874:17;17867:47;17931:131;18057:4;17931:131;:::i;:::-;17923:139;;17650:419;;;:::o;18075:240::-;18215:34;18211:1;18203:6;18199:14;18192:58;18284:23;18279:2;18271:6;18267:15;18260:48;18075:240;:::o;18321:366::-;18463:3;18484:67;18548:2;18543:3;18484:67;:::i;:::-;18477:74;;18560:93;18649:3;18560:93;:::i;:::-;18678:2;18673:3;18669:12;18662:19;;18321:366;;;:::o;18693:419::-;18859:4;18897:2;18886:9;18882:18;18874:26;;18946:9;18940:4;18936:20;18932:1;18921:9;18917:17;18910:47;18974:131;19100:4;18974:131;:::i;:::-;18966:139;;18693:419;;;:::o;19118:239::-;19258:34;19254:1;19246:6;19242:14;19235:58;19327:22;19322:2;19314:6;19310:15;19303:47;19118:239;:::o;19363:366::-;19505:3;19526:67;19590:2;19585:3;19526:67;:::i;:::-;19519:74;;19602:93;19691:3;19602:93;:::i;:::-;19720:2;19715:3;19711:12;19704:19;;19363:366;;;:::o;19735:419::-;19901:4;19939:2;19928:9;19924:18;19916:26;;19988:9;19982:4;19978:20;19974:1;19963:9;19959:17;19952:47;20016:131;20142:4;20016:131;:::i;:::-;20008:139;;19735:419;;;:::o;20160:165::-;20300:17;20296:1;20288:6;20284:14;20277:41;20160:165;:::o;20331:366::-;20473:3;20494:67;20558:2;20553:3;20494:67;:::i;:::-;20487:74;;20570:93;20659:3;20570:93;:::i;:::-;20688:2;20683:3;20679:12;20672:19;;20331:366;;;:::o;20703:419::-;20869:4;20907:2;20896:9;20892:18;20884:26;;20956:9;20950:4;20946:20;20942:1;20931:9;20927:17;20920:47;20984:131;21110:4;20984:131;:::i;:::-;20976:139;;20703:419;;;:::o;21128:225::-;21268:34;21264:1;21256:6;21252:14;21245:58;21337:8;21332:2;21324:6;21320:15;21313:33;21128:225;:::o;21359:366::-;21501:3;21522:67;21586:2;21581:3;21522:67;:::i;:::-;21515:74;;21598:93;21687:3;21598:93;:::i;:::-;21716:2;21711:3;21707:12;21700:19;;21359:366;;;:::o;21731:419::-;21897:4;21935:2;21924:9;21920:18;21912:26;;21984:9;21978:4;21974:20;21970:1;21959:9;21955:17;21948:47;22012:131;22138:4;22012:131;:::i;:::-;22004:139;;21731:419;;;:::o;22156:223::-;22296:34;22292:1;22284:6;22280:14;22273:58;22365:6;22360:2;22352:6;22348:15;22341:31;22156:223;:::o;22385:366::-;22527:3;22548:67;22612:2;22607:3;22548:67;:::i;:::-;22541:74;;22624:93;22713:3;22624:93;:::i;:::-;22742:2;22737:3;22733:12;22726:19;;22385:366;;;:::o;22757:419::-;22923:4;22961:2;22950:9;22946:18;22938:26;;23010:9;23004:4;23000:20;22996:1;22985:9;22981:17;22974:47;23038:131;23164:4;23038:131;:::i;:::-;23030:139;;22757:419;;;:::o;23182:221::-;23322:34;23318:1;23310:6;23306:14;23299:58;23391:4;23386:2;23378:6;23374:15;23367:29;23182:221;:::o;23409:366::-;23551:3;23572:67;23636:2;23631:3;23572:67;:::i;:::-;23565:74;;23648:93;23737:3;23648:93;:::i;:::-;23766:2;23761:3;23757:12;23750:19;;23409:366;;;:::o;23781:419::-;23947:4;23985:2;23974:9;23970:18;23962:26;;24034:9;24028:4;24024:20;24020:1;24009:9;24005:17;23998:47;24062:131;24188:4;24062:131;:::i;:::-;24054:139;;23781:419;;;:::o;24206:224::-;24346:34;24342:1;24334:6;24330:14;24323:58;24415:7;24410:2;24402:6;24398:15;24391:32;24206:224;:::o;24436:366::-;24578:3;24599:67;24663:2;24658:3;24599:67;:::i;:::-;24592:74;;24675:93;24764:3;24675:93;:::i;:::-;24793:2;24788:3;24784:12;24777:19;;24436:366;;;:::o;24808:419::-;24974:4;25012:2;25001:9;24997:18;24989:26;;25061:9;25055:4;25051:20;25047:1;25036:9;25032:17;25025:47;25089:131;25215:4;25089:131;:::i;:::-;25081:139;;24808:419;;;:::o;25233:222::-;25373:34;25369:1;25361:6;25357:14;25350:58;25442:5;25437:2;25429:6;25425:15;25418:30;25233:222;:::o;25461:366::-;25603:3;25624:67;25688:2;25683:3;25624:67;:::i;:::-;25617:74;;25700:93;25789:3;25700:93;:::i;:::-;25818:2;25813:3;25809:12;25802:19;;25461:366;;;:::o;25833:419::-;25999:4;26037:2;26026:9;26022:18;26014:26;;26086:9;26080:4;26076:20;26072:1;26061:9;26057:17;26050:47;26114:131;26240:4;26114:131;:::i;:::-;26106:139;;25833:419;;;:::o;26258:172::-;26398:24;26394:1;26386:6;26382:14;26375:48;26258:172;:::o;26436:366::-;26578:3;26599:67;26663:2;26658:3;26599:67;:::i;:::-;26592:74;;26675:93;26764:3;26675:93;:::i;:::-;26793:2;26788:3;26784:12;26777:19;;26436:366;;;:::o;26808:419::-;26974:4;27012:2;27001:9;26997:18;26989:26;;27061:9;27055:4;27051:20;27047:1;27036:9;27032:17;27025:47;27089:131;27215:4;27089:131;:::i;:::-;27081:139;;26808:419;;;:::o;27233:297::-;27373:34;27369:1;27361:6;27357:14;27350:58;27442:34;27437:2;27429:6;27425:15;27418:59;27511:11;27506:2;27498:6;27494:15;27487:36;27233:297;:::o;27536:366::-;27678:3;27699:67;27763:2;27758:3;27699:67;:::i;:::-;27692:74;;27775:93;27864:3;27775:93;:::i;:::-;27893:2;27888:3;27884:12;27877:19;;27536:366;;;:::o;27908:419::-;28074:4;28112:2;28101:9;28097:18;28089:26;;28161:9;28155:4;28151:20;28147:1;28136:9;28132:17;28125:47;28189:131;28315:4;28189:131;:::i;:::-;28181:139;;27908:419;;;:::o;28333:240::-;28473:34;28469:1;28461:6;28457:14;28450:58;28542:23;28537:2;28529:6;28525:15;28518:48;28333:240;:::o;28579:366::-;28721:3;28742:67;28806:2;28801:3;28742:67;:::i;:::-;28735:74;;28818:93;28907:3;28818:93;:::i;:::-;28936:2;28931:3;28927:12;28920:19;;28579:366;;;:::o;28951:419::-;29117:4;29155:2;29144:9;29140:18;29132:26;;29204:9;29198:4;29194:20;29190:1;29179:9;29175:17;29168:47;29232:131;29358:4;29232:131;:::i;:::-;29224:139;;28951:419;;;:::o;29376:169::-;29516:21;29512:1;29504:6;29500:14;29493:45;29376:169;:::o;29551:366::-;29693:3;29714:67;29778:2;29773:3;29714:67;:::i;:::-;29707:74;;29790:93;29879:3;29790:93;:::i;:::-;29908:2;29903:3;29899:12;29892:19;;29551:366;;;:::o;29923:419::-;30089:4;30127:2;30116:9;30112:18;30104:26;;30176:9;30170:4;30166:20;30162:1;30151:9;30147:17;30140:47;30204:131;30330:4;30204:131;:::i;:::-;30196:139;;29923:419;;;:::o;30348:241::-;30488:34;30484:1;30476:6;30472:14;30465:58;30557:24;30552:2;30544:6;30540:15;30533:49;30348:241;:::o;30595:366::-;30737:3;30758:67;30822:2;30817:3;30758:67;:::i;:::-;30751:74;;30834:93;30923:3;30834:93;:::i;:::-;30952:2;30947:3;30943:12;30936:19;;30595:366;;;:::o;30967:419::-;31133:4;31171:2;31160:9;31156:18;31148:26;;31220:9;31214:4;31210:20;31206:1;31195:9;31191:17;31184:47;31248:131;31374:4;31248:131;:::i;:::-;31240:139;;30967:419;;;:::o;31392:191::-;31432:4;31452:20;31470:1;31452:20;:::i;:::-;31447:25;;31486:20;31504:1;31486:20;:::i;:::-;31481:25;;31525:1;31522;31519:8;31516:34;;;31530:18;;:::i;:::-;31516:34;31575:1;31572;31568:9;31560:17;;31392:191;;;;:::o;31589:225::-;31729:34;31725:1;31717:6;31713:14;31706:58;31798:8;31793:2;31785:6;31781:15;31774:33;31589:225;:::o;31820:366::-;31962:3;31983:67;32047:2;32042:3;31983:67;:::i;:::-;31976:74;;32059:93;32148:3;32059:93;:::i;:::-;32177:2;32172:3;32168:12;32161:19;;31820:366;;;:::o;32192:419::-;32358:4;32396:2;32385:9;32381:18;32373:26;;32445:9;32439:4;32435:20;32431:1;32420:9;32416:17;32409:47;32473:131;32599:4;32473:131;:::i;:::-;32465:139;;32192:419;;;:::o;32617:147::-;32718:11;32755:3;32740:18;;32617:147;;;;:::o;32770:114::-;;:::o;32890:398::-;33049:3;33070:83;33151:1;33146:3;33070:83;:::i;:::-;33063:90;;33162:93;33251:3;33162:93;:::i;:::-;33280:1;33275:3;33271:11;33264:18;;32890:398;;;:::o;33294:379::-;33478:3;33500:147;33643:3;33500:147;:::i;:::-;33493:154;;33664:3;33657:10;;33294:379;;;:::o;33679:442::-;33828:4;33866:2;33855:9;33851:18;33843:26;;33879:71;33947:1;33936:9;33932:17;33923:6;33879:71;:::i;:::-;33960:72;34028:2;34017:9;34013:18;34004:6;33960:72;:::i;:::-;34042;34110:2;34099:9;34095:18;34086:6;34042:72;:::i;:::-;33679:442;;;;;;:::o;34127:180::-;34175:77;34172:1;34165:88;34272:4;34269:1;34262:15;34296:4;34293:1;34286:15;34313:180;34361:77;34358:1;34351:88;34458:4;34455:1;34448:15;34482:4;34479:1;34472:15;34499:143;34556:5;34587:6;34581:13;34572:22;;34603:33;34630:5;34603:33;:::i;:::-;34499:143;;;;:::o;34648:351::-;34718:6;34767:2;34755:9;34746:7;34742:23;34738:32;34735:119;;;34773:79;;:::i;:::-;34735:119;34893:1;34918:64;34974:7;34965:6;34954:9;34950:22;34918:64;:::i;:::-;34908:74;;34864:128;34648:351;;;;:::o;35005:85::-;35050:7;35079:5;35068:16;;35005:85;;;:::o;35096:158::-;35154:9;35187:61;35205:42;35214:32;35240:5;35214:32;:::i;:::-;35205:42;:::i;:::-;35187:61;:::i;:::-;35174:74;;35096:158;;;:::o;35260:147::-;35355:45;35394:5;35355:45;:::i;:::-;35350:3;35343:58;35260:147;;:::o;35413:114::-;35480:6;35514:5;35508:12;35498:22;;35413:114;;;:::o;35533:184::-;35632:11;35666:6;35661:3;35654:19;35706:4;35701:3;35697:14;35682:29;;35533:184;;;;:::o;35723:132::-;35790:4;35813:3;35805:11;;35843:4;35838:3;35834:14;35826:22;;35723:132;;;:::o;35861:108::-;35938:24;35956:5;35938:24;:::i;:::-;35933:3;35926:37;35861:108;;:::o;35975:179::-;36044:10;36065:46;36107:3;36099:6;36065:46;:::i;:::-;36143:4;36138:3;36134:14;36120:28;;35975:179;;;;:::o;36160:113::-;36230:4;36262;36257:3;36253:14;36245:22;;36160:113;;;:::o;36309:732::-;36428:3;36457:54;36505:5;36457:54;:::i;:::-;36527:86;36606:6;36601:3;36527:86;:::i;:::-;36520:93;;36637:56;36687:5;36637:56;:::i;:::-;36716:7;36747:1;36732:284;36757:6;36754:1;36751:13;36732:284;;;36833:6;36827:13;36860:63;36919:3;36904:13;36860:63;:::i;:::-;36853:70;;36946:60;36999:6;36946:60;:::i;:::-;36936:70;;36792:224;36779:1;36776;36772:9;36767:14;;36732:284;;;36736:14;37032:3;37025:10;;36433:608;;;36309:732;;;;:::o;37047:831::-;37310:4;37348:3;37337:9;37333:19;37325:27;;37362:71;37430:1;37419:9;37415:17;37406:6;37362:71;:::i;:::-;37443:80;37519:2;37508:9;37504:18;37495:6;37443:80;:::i;:::-;37570:9;37564:4;37560:20;37555:2;37544:9;37540:18;37533:48;37598:108;37701:4;37692:6;37598:108;:::i;:::-;37590:116;;37716:72;37784:2;37773:9;37769:18;37760:6;37716:72;:::i;:::-;37798:73;37866:3;37855:9;37851:19;37842:6;37798:73;:::i;:::-;37047:831;;;;;;;;:::o;37884:807::-;38133:4;38171:3;38160:9;38156:19;38148:27;;38185:71;38253:1;38242:9;38238:17;38229:6;38185:71;:::i;:::-;38266:72;38334:2;38323:9;38319:18;38310:6;38266:72;:::i;:::-;38348:80;38424:2;38413:9;38409:18;38400:6;38348:80;:::i;:::-;38438;38514:2;38503:9;38499:18;38490:6;38438:80;:::i;:::-;38528:73;38596:3;38585:9;38581:19;38572:6;38528:73;:::i;:::-;38611;38679:3;38668:9;38664:19;38655:6;38611:73;:::i;:::-;37884:807;;;;;;;;;:::o;38697:143::-;38754:5;38785:6;38779:13;38770:22;;38801:33;38828:5;38801:33;:::i;:::-;38697:143;;;;:::o;38846:663::-;38934:6;38942;38950;38999:2;38987:9;38978:7;38974:23;38970:32;38967:119;;;39005:79;;:::i;:::-;38967:119;39125:1;39150:64;39206:7;39197:6;39186:9;39182:22;39150:64;:::i;:::-;39140:74;;39096:128;39263:2;39289:64;39345:7;39336:6;39325:9;39321:22;39289:64;:::i;:::-;39279:74;;39234:129;39402:2;39428:64;39484:7;39475:6;39464:9;39460:22;39428:64;:::i;:::-;39418:74;;39373:129;38846:663;;;;;:::o

Swarm Source

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