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

Token

AlphaIndex (AI)
 

Overview

Max Total Supply

1,920,000,000 AI

Holders

193

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,200,507.385471528949256984 AI

Value
$0.00
0xcb31c8b2ce9d229b1968ceb2516b2eb650151227
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:
AlphaIndex

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-24
*/

/**

    https://www.alphaindex.tech/
    https://t.me/AlphaIndexERC


*/

// 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 AlphaIndex is ERC20, Ownable {
    using SafeMath for uint256;

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

    bool private swapping;

	address public charityWallet;
    address public marketingWallet;
    address public 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("AlphaIndex", "AI") {
        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 = 6;
        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyDevFee = 6;

		uint256 _sellCharityFee = 6;
        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellDevFee = 6;

        uint256 totalSupply = 1920000000 * 1e18;

        maxTransactionAmount = 19200000 * 1e18; // 1% from total supply maxTransactionAmountTxn
        maxWallet = 19200000 * 1e18; // 1% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 40) / 10000; // 0.4% 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(0xfd2004F3CB994abf2B08432F3b903F60BcCC8573); // set as charity wallet
        marketingWallet = address(0xfd2004F3CB994abf2B08432F3b903F60BcCC8573); // set as marketing wallet
        devWallet = address(0x533A82Df9bdf6557e87A1E92f358a192661E2Ac5); // 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() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

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

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

    function updateBuyFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 8, "Max BuyFee 8%");
		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":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]

60c06040526001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600a81526020017f416c706861496e646578000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f414900000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000b78565b5080600490805190602001906200011b92919062000b78565b5050506200013e620001326200063860201b60201c565b6200064060201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a8160016200070660201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000210919062000c92565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000278573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029e919062000c92565b6040518363ffffffff1660e01b8152600401620002bd92919062000cd5565b6020604051808303816000875af1158015620002dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000303919062000c92565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034b60a05160016200070660201b60201c565b6200036060a0516001620007f060201b60201c565b600060069050600080600190506000600690506000600690506000806001905060006006905060006b06342fd08f00f6378000000090506a0fe1c215e8f838e00000006009819055506a0fe1c215e8f838e0000000600b81905550612710602882620003cd919062000d3b565b620003d9919062000dcb565b600a819055508860108190555087601181905550866012819055508560138190555060135460125460115460105462000413919062000e03565b6200041f919062000e03565b6200042b919062000e03565b600f819055508460158190555083601681905550826017819055508160188190555060185460175460165460155462000465919062000e03565b62000471919062000e03565b6200047d919062000e03565b60148190555073fd2004f3cb994abf2b08432f3b903f60bccc8573600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073fd2004f3cb994abf2b08432f3b903f60bccc8573600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073533a82df9bdf6557e87a1e92f358a192661e2ac5600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005a4620005966200089160201b60201c565b6001620008bb60201b60201c565b620005b7306001620008bb60201b60201c565b620005cc61dead6001620008bb60201b60201c565b620005ee620005e06200089160201b60201c565b60016200070660201b60201c565b620006013060016200070660201b60201c565b6200061661dead60016200070660201b60201c565b620006283382620009f560201b60201c565b5050505050505050505062001022565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007166200063860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200073c6200089160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000795576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200078c9062000ec1565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008cb6200063860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008f16200089160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200094a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009419062000ec1565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009e9919062000f00565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a68576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a5f9062000f6d565b60405180910390fd5b62000a7c6000838362000b6e60201b60201c565b806002600082825462000a90919062000e03565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ae7919062000e03565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b4e919062000fa0565b60405180910390a362000b6a6000838362000b7360201b60201c565b5050565b505050565b505050565b82805462000b869062000fec565b90600052602060002090601f01602090048101928262000baa576000855562000bf6565b82601f1062000bc557805160ff191683800117855562000bf6565b8280016001018555821562000bf6579182015b8281111562000bf557825182559160200191906001019062000bd8565b5b50905062000c05919062000c09565b5090565b5b8082111562000c2457600081600090555060010162000c0a565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c5a8262000c2d565b9050919050565b62000c6c8162000c4d565b811462000c7857600080fd5b50565b60008151905062000c8c8162000c61565b92915050565b60006020828403121562000cab5762000caa62000c28565b5b600062000cbb8482850162000c7b565b91505092915050565b62000ccf8162000c4d565b82525050565b600060408201905062000cec600083018562000cc4565b62000cfb602083018462000cc4565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d488262000d02565b915062000d558362000d02565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d915762000d9062000d0c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000dd88262000d02565b915062000de58362000d02565b92508262000df85762000df762000d9c565b5b828204905092915050565b600062000e108262000d02565b915062000e1d8362000d02565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e555762000e5462000d0c565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000ea960208362000e60565b915062000eb68262000e71565b602082019050919050565b6000602082019050818103600083015262000edc8162000e9a565b9050919050565b60008115159050919050565b62000efa8162000ee3565b82525050565b600060208201905062000f17600083018462000eef565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f55601f8362000e60565b915062000f628262000f1d565b602082019050919050565b6000602082019050818103600083015262000f888162000f46565b9050919050565b62000f9a8162000d02565b82525050565b600060208201905062000fb7600083018462000f8f565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200100557607f821691505b602082108114156200101c576200101b62000fbd565b5b50919050565b60805160a0516150cf620010806000396000818161127c0152818161186c01526126f8015260008181610e47015281816126a0015281816138d4015281816139b5015281816139dc01528181613a780152613a9f01526150cf6000f3fe60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610cc5578063f2fde38b14610cf0578063f637434214610d19578063f8b45b0514610d4457610376565b8063e2f4560514610c46578063e7ad9fcd14610c71578063e884f26014610c9a57610376565b8063c8c8ebe4116100d1578063c8c8ebe414610b76578063d257b34f14610ba1578063d85ba06314610bde578063dd62ed3e14610c0957610376565b8063c024666814610af9578063c18bc19514610b22578063c876d0b914610b4b57610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a17578063a9059cbb14610a54578063b62496f514610a91578063bbc0c74214610ace57610376565b80639fccce3214610996578063a0d82dc5146109c1578063a1dc92bc146109ec57610376565b8063924de9b7116101a0578063924de9b7146108ee57806395d89b41146109175780639a7a23d6146109425780639c3b4fdc1461096b57610376565b80638da5cb5b1461086d5780638ea5220f1461089857806392136913146108c357610376565b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146107d55780637b208769146108005780637bce5a041461082b5780638a8c523c1461085657610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d5780632e6ed7ef14610588578063313ce567146105b157806339509351146105dc57610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d6f565b60405161039d9190613c07565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613cc2565b610e01565b6040516103da9190613d1d565b60405180910390f35b3480156103ef57600080fd5b506103f8610e1f565b6040516104059190613d47565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613d62565b610e25565b6040516104429190613d1d565b60405180910390f35b34801561045757600080fd5b50610460610e45565b60405161046d9190613dee565b60405180910390f35b34801561048257600080fd5b5061048b610e69565b6040516104989190613d47565b60405180910390f35b3480156104ad57600080fd5b506104b6610e73565b6040516104c39190613d47565b60405180910390f35b3480156104d857600080fd5b506104e1610e79565b6040516104ee9190613d47565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613e09565b610e7f565b005b34801561052c57600080fd5b5061054760048036038101906105429190613e36565b610f8e565b6040516105549190613d1d565b60405180910390f35b34801561056957600080fd5b50610572611086565b60405161057f9190613e98565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613eb3565b61108c565b005b3480156105bd57600080fd5b506105c66111bf565b6040516105d39190613f36565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613cc2565b6111c8565b6040516106109190613d1d565b60405180910390f35b34801561062557600080fd5b5061062e611274565b60405161063b9190613d47565b60405180910390f35b34801561065057600080fd5b5061065961127a565b6040516106669190613e98565b60405180910390f35b34801561067b57600080fd5b5061068461129e565b6040516106919190613d1d565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613d62565b6112b1565b6040516106ce9190613d1d565b60405180910390f35b3480156106e357600080fd5b506106ec611307565b6040516106f99190613d47565b60405180910390f35b34801561070e57600080fd5b5061071761130d565b6040516107249190613d1d565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613d62565b611320565b6040516107619190613d47565b60405180910390f35b34801561077657600080fd5b5061077f611368565b005b34801561078d57600080fd5b506107966113f0565b6040516107a39190613d1d565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613f7d565b611490565b005b3480156107e157600080fd5b506107ea611567565b6040516107f79190613e98565b60405180910390f35b34801561080c57600080fd5b5061081561158d565b6040516108229190613e98565b60405180910390f35b34801561083757600080fd5b506108406115b3565b60405161084d9190613d47565b60405180910390f35b34801561086257600080fd5b5061086b6115b9565b005b34801561087957600080fd5b5061088261166d565b60405161088f9190613e98565b60405180910390f35b3480156108a457600080fd5b506108ad611697565b6040516108ba9190613e98565b60405180910390f35b3480156108cf57600080fd5b506108d86116bd565b6040516108e59190613d47565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613fbd565b6116c3565b005b34801561092357600080fd5b5061092c61175c565b6040516109399190613c07565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613f7d565b6117ee565b005b34801561097757600080fd5b50610980611907565b60405161098d9190613d47565b60405180910390f35b3480156109a257600080fd5b506109ab61190d565b6040516109b89190613d47565b60405180910390f35b3480156109cd57600080fd5b506109d6611913565b6040516109e39190613d47565b60405180910390f35b3480156109f857600080fd5b50610a01611919565b604051610a0e9190613d47565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a399190613cc2565b61191f565b604051610a4b9190613d1d565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613cc2565b611a0a565b604051610a889190613d1d565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613d62565b611a28565b604051610ac59190613d1d565b60405180910390f35b348015610ada57600080fd5b50610ae3611a48565b604051610af09190613d1d565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190613f7d565b611a5b565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190613e09565b611b80565b005b348015610b5757600080fd5b50610b60611c8f565b604051610b6d9190613d1d565b60405180910390f35b348015610b8257600080fd5b50610b8b611ca2565b604051610b989190613d47565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc39190613e09565b611ca8565b604051610bd59190613d1d565b60405180910390f35b348015610bea57600080fd5b50610bf3611dfd565b604051610c009190613d47565b60405180910390f35b348015610c1557600080fd5b50610c306004803603810190610c2b9190613fea565b611e03565b604051610c3d9190613d47565b60405180910390f35b348015610c5257600080fd5b50610c5b611e8a565b604051610c689190613d47565b60405180910390f35b348015610c7d57600080fd5b50610c986004803603810190610c939190613eb3565b611e90565b005b348015610ca657600080fd5b50610caf611fc3565b604051610cbc9190613d1d565b60405180910390f35b348015610cd157600080fd5b50610cda612063565b604051610ce79190613d47565b60405180910390f35b348015610cfc57600080fd5b50610d176004803603810190610d129190613d62565b612069565b005b348015610d2557600080fd5b50610d2e612161565b604051610d3b9190613d47565b60405180910390f35b348015610d5057600080fd5b50610d59612167565b604051610d669190613d47565b60405180910390f35b606060038054610d7e90614059565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa90614059565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b5050505050905090565b6000610e15610e0e61216d565b8484612175565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b601b5481565b601a5481565b610e8761216d565b73ffffffffffffffffffffffffffffffffffffffff16610ea561166d565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef2906140d7565b60405180910390fd5b670de0b6b3a76400006103e86001610f11610e69565b610f1b9190614126565b610f2591906141af565b610f2f91906141af565b811015610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890614252565b60405180910390fd5b670de0b6b3a764000081610f859190614126565b60098190555050565b6000610f9b848484612340565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fe661216d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d906142e4565b60405180910390fd5b61107a8561107261216d565b858403612175565b60019150509392505050565b61dead81565b61109461216d565b73ffffffffffffffffffffffffffffffffffffffff166110b261166d565b73ffffffffffffffffffffffffffffffffffffffff1614611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff906140d7565b60405180910390fd5b6008818385876111189190614304565b6111229190614304565b61112c9190614304565b111561116d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611164906143a6565b60405180910390fd5b8360108190555082601181905550816012819055508060138190555060135460125460115460105461119f9190614304565b6111a99190614304565b6111b39190614304565b600f8190555050505050565b60006012905090565b600061126a6111d561216d565b8484600160006111e361216d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112659190614304565b612175565b6001905092915050565b60195481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61137061216d565b73ffffffffffffffffffffffffffffffffffffffff1661138e61166d565b73ffffffffffffffffffffffffffffffffffffffff16146113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db906140d7565b60405180910390fd5b6113ee6000613040565b565b60006113fa61216d565b73ffffffffffffffffffffffffffffffffffffffff1661141861166d565b73ffffffffffffffffffffffffffffffffffffffff161461146e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611465906140d7565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b61149861216d565b73ffffffffffffffffffffffffffffffffffffffff166114b661166d565b73ffffffffffffffffffffffffffffffffffffffff161461150c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611503906140d7565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115c161216d565b73ffffffffffffffffffffffffffffffffffffffff166115df61166d565b73ffffffffffffffffffffffffffffffffffffffff1614611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c906140d7565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116cb61216d565b73ffffffffffffffffffffffffffffffffffffffff166116e961166d565b73ffffffffffffffffffffffffffffffffffffffff161461173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906140d7565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461176b90614059565b80601f016020809104026020016040519081016040528092919081815260200182805461179790614059565b80156117e45780601f106117b9576101008083540402835291602001916117e4565b820191906000526020600020905b8154815290600101906020018083116117c757829003601f168201915b5050505050905090565b6117f661216d565b73ffffffffffffffffffffffffffffffffffffffff1661181461166d565b73ffffffffffffffffffffffffffffffffffffffff161461186a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611861906140d7565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f090614438565b60405180910390fd5b6119038282613106565b5050565b60135481565b601c5481565b60185481565b60105481565b6000806001600061192e61216d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e2906144ca565b60405180910390fd5b6119ff6119f661216d565b85858403612175565b600191505092915050565b6000611a1e611a1761216d565b8484612340565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611a6361216d565b73ffffffffffffffffffffffffffffffffffffffff16611a8161166d565b73ffffffffffffffffffffffffffffffffffffffff1614611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace906140d7565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b749190613d1d565b60405180910390a25050565b611b8861216d565b73ffffffffffffffffffffffffffffffffffffffff16611ba661166d565b73ffffffffffffffffffffffffffffffffffffffff1614611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf3906140d7565b60405180910390fd5b670de0b6b3a76400006103e86005611c12610e69565b611c1c9190614126565b611c2691906141af565b611c3091906141af565b811015611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c699061455c565b60405180910390fd5b670de0b6b3a764000081611c869190614126565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611cb261216d565b73ffffffffffffffffffffffffffffffffffffffff16611cd061166d565b73ffffffffffffffffffffffffffffffffffffffff1614611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d906140d7565b60405180910390fd5b620186a06001611d34610e69565b611d3e9190614126565b611d4891906141af565b821015611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d81906145ee565b60405180910390fd5b6103e86005611d97610e69565b611da19190614126565b611dab91906141af565b821115611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de490614680565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611e9861216d565b73ffffffffffffffffffffffffffffffffffffffff16611eb661166d565b73ffffffffffffffffffffffffffffffffffffffff1614611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f03906140d7565b60405180910390fd5b600a81838587611f1c9190614304565b611f269190614304565b611f309190614304565b1115611f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f68906146ec565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611fa39190614304565b611fad9190614304565b611fb79190614304565b60148190555050505050565b6000611fcd61216d565b73ffffffffffffffffffffffffffffffffffffffff16611feb61166d565b73ffffffffffffffffffffffffffffffffffffffff1614612041576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612038906140d7565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61207161216d565b73ffffffffffffffffffffffffffffffffffffffff1661208f61166d565b73ffffffffffffffffffffffffffffffffffffffff16146120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc906140d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c9061477e565b60405180910390fd5b61215e81613040565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc90614810565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224c906148a2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123339190613d47565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a790614934565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612420576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612417906149c6565b60405180910390fd5b600081141561243a57612435838360006131a7565b61303b565b600c60009054906101000a900460ff1615612afd5761245761166d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124c5575061249561166d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124fe5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612538575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125515750600560149054906101000a900460ff16155b15612afc57600c60019054906101000a900460ff1661264b57601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061260b5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61264a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264190614a32565b60405180910390fd5b5b600e60009054906101000a900460ff16156128135761266861166d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126ef57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561274757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156128125743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106127cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c490614aea565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128b65750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561295d57600954811115612900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f790614b7c565b60405180910390fd5b600b5461290c83611320565b826129179190614304565b1115612958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294f90614be8565b60405180910390fd5b612afb565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a005750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a4f57600954811115612a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4190614c7a565b60405180910390fd5b612afa565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612af957600b54612aac83611320565b82612ab79190614304565b1115612af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aef90614be8565b60405180910390fd5b5b5b5b5b5b6000612b0830611320565b90506000600a548210159050808015612b2d5750600c60029054906101000a900460ff165b8015612b465750600560149054906101000a900460ff16155b8015612b9c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bf25750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c485750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c8c576001600560146101000a81548160ff021916908315150217905550612c70613428565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d425750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d4c57600090505b6000811561302b57601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612daf57506000601454115b15612eaf57612ddc6064612dce601454886137e990919063ffffffff16565b6137ff90919063ffffffff16565b905060145460155482612def9190614126565b612df991906141af565b60196000828254612e0a9190614304565b9250508190555060145460175482612e229190614126565b612e2c91906141af565b601b6000828254612e3d9190614304565b9250508190555060145460185482612e559190614126565b612e5f91906141af565b601c6000828254612e709190614304565b9250508190555060145460165482612e889190614126565b612e9291906141af565b601a6000828254612ea39190614304565b92505081905550613007565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f0a57506000600f54115b1561300657612f376064612f29600f54886137e990919063ffffffff16565b6137ff90919063ffffffff16565b9050600f5460105482612f4a9190614126565b612f5491906141af565b60196000828254612f659190614304565b92505081905550600f5460125482612f7d9190614126565b612f8791906141af565b601b6000828254612f989190614304565b92505081905550600f5460135482612fb09190614126565b612fba91906141af565b601c6000828254612fcb9190614304565b92505081905550600f5460115482612fe39190614126565b612fed91906141af565b601a6000828254612ffe9190614304565b925050819055505b5b600081111561301c5761301b8730836131a7565b5b80856130289190614c9a565b94505b6130368787876131a7565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320e90614934565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327e906149c6565b60405180910390fd5b613292838383613815565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330f90614d40565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133ab9190614304565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161340f9190613d47565b60405180910390a361342284848461381a565b50505050565b600061343330611320565b90506000601c54601a54601b5460195461344d9190614304565b6134579190614304565b6134619190614304565b90506000808314806134735750600082145b15613480575050506137e7565b6014600a5461348f9190614126565b8311156134a8576014600a546134a59190614126565b92505b6000600283601b54866134bb9190614126565b6134c591906141af565b6134cf91906141af565b905060006134e6828661381f90919063ffffffff16565b905060004790506134f682613835565b600061350b824761381f90919063ffffffff16565b9050600061353687613528601954856137e990919063ffffffff16565b6137ff90919063ffffffff16565b9050600061356188613553601a54866137e990919063ffffffff16565b6137ff90919063ffffffff16565b9050600061358c8961357e601c54876137e990919063ffffffff16565b6137ff90919063ffffffff16565b905060008183858761359e9190614c9a565b6135a89190614c9a565b6135b29190614c9a565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161361a90614d91565b60006040518083038185875af1925050503d8060008114613657576040519150601f19603f3d011682016040523d82523d6000602084013e61365c565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516136a890614d91565b60006040518083038185875af1925050503d80600081146136e5576040519150601f19603f3d011682016040523d82523d6000602084013e6136ea565b606091505b5050809950506000881180156137005750600081115b1561374d5761370f8882613a72565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161374493929190614da6565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161379390614d91565b60006040518083038185875af1925050503d80600081146137d0576040519150601f19603f3d011682016040523d82523d6000602084013e6137d5565b606091505b50508099505050505050505050505050505b565b600081836137f79190614126565b905092915050565b6000818361380d91906141af565b905092915050565b505050565b505050565b6000818361382d9190614c9a565b905092915050565b6000600267ffffffffffffffff81111561385257613851614ddd565b5b6040519080825280602002602001820160405280156138805781602001602082028036833780820191505090505b509050308160008151811061389857613897614e0c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561393d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139619190614e50565b8160018151811061397557613974614e0c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139da307f000000000000000000000000000000000000000000000000000000000000000084612175565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a3c959493929190614f76565b600060405180830381600087803b158015613a5657600080fd5b505af1158015613a6a573d6000803e3d6000fd5b505050505050565b613a9d307f000000000000000000000000000000000000000000000000000000000000000084612175565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613b2496959493929190614fd0565b60606040518083038185885af1158015613b42573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b679190615046565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ba8578082015181840152602081019050613b8d565b83811115613bb7576000848401525b50505050565b6000601f19601f8301169050919050565b6000613bd982613b6e565b613be38185613b79565b9350613bf3818560208601613b8a565b613bfc81613bbd565b840191505092915050565b60006020820190508181036000830152613c218184613bce565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c5982613c2e565b9050919050565b613c6981613c4e565b8114613c7457600080fd5b50565b600081359050613c8681613c60565b92915050565b6000819050919050565b613c9f81613c8c565b8114613caa57600080fd5b50565b600081359050613cbc81613c96565b92915050565b60008060408385031215613cd957613cd8613c29565b5b6000613ce785828601613c77565b9250506020613cf885828601613cad565b9150509250929050565b60008115159050919050565b613d1781613d02565b82525050565b6000602082019050613d326000830184613d0e565b92915050565b613d4181613c8c565b82525050565b6000602082019050613d5c6000830184613d38565b92915050565b600060208284031215613d7857613d77613c29565b5b6000613d8684828501613c77565b91505092915050565b6000819050919050565b6000613db4613daf613daa84613c2e565b613d8f565b613c2e565b9050919050565b6000613dc682613d99565b9050919050565b6000613dd882613dbb565b9050919050565b613de881613dcd565b82525050565b6000602082019050613e036000830184613ddf565b92915050565b600060208284031215613e1f57613e1e613c29565b5b6000613e2d84828501613cad565b91505092915050565b600080600060608486031215613e4f57613e4e613c29565b5b6000613e5d86828701613c77565b9350506020613e6e86828701613c77565b9250506040613e7f86828701613cad565b9150509250925092565b613e9281613c4e565b82525050565b6000602082019050613ead6000830184613e89565b92915050565b60008060008060808587031215613ecd57613ecc613c29565b5b6000613edb87828801613cad565b9450506020613eec87828801613cad565b9350506040613efd87828801613cad565b9250506060613f0e87828801613cad565b91505092959194509250565b600060ff82169050919050565b613f3081613f1a565b82525050565b6000602082019050613f4b6000830184613f27565b92915050565b613f5a81613d02565b8114613f6557600080fd5b50565b600081359050613f7781613f51565b92915050565b60008060408385031215613f9457613f93613c29565b5b6000613fa285828601613c77565b9250506020613fb385828601613f68565b9150509250929050565b600060208284031215613fd357613fd2613c29565b5b6000613fe184828501613f68565b91505092915050565b6000806040838503121561400157614000613c29565b5b600061400f85828601613c77565b925050602061402085828601613c77565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061407157607f821691505b602082108114156140855761408461402a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140c1602083613b79565b91506140cc8261408b565b602082019050919050565b600060208201905081810360008301526140f0816140b4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061413182613c8c565b915061413c83613c8c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614175576141746140f7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141ba82613c8c565b91506141c583613c8c565b9250826141d5576141d4614180565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061423c602f83613b79565b9150614247826141e0565b604082019050919050565b6000602082019050818103600083015261426b8161422f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006142ce602883613b79565b91506142d982614272565b604082019050919050565b600060208201905081810360008301526142fd816142c1565b9050919050565b600061430f82613c8c565b915061431a83613c8c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561434f5761434e6140f7565b5b828201905092915050565b7f4d61782042757946656520382500000000000000000000000000000000000000600082015250565b6000614390600d83613b79565b915061439b8261435a565b602082019050919050565b600060208201905081810360008301526143bf81614383565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614422603983613b79565b915061442d826143c6565b604082019050919050565b6000602082019050818103600083015261445181614415565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006144b4602583613b79565b91506144bf82614458565b604082019050919050565b600060208201905081810360008301526144e3816144a7565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614546602483613b79565b9150614551826144ea565b604082019050919050565b6000602082019050818103600083015261457581614539565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006145d8603583613b79565b91506145e38261457c565b604082019050919050565b60006020820190508181036000830152614607816145cb565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061466a603483613b79565b91506146758261460e565b604082019050919050565b600060208201905081810360008301526146998161465d565b9050919050565b7f4d61782053656c6c466565203130250000000000000000000000000000000000600082015250565b60006146d6600f83613b79565b91506146e1826146a0565b602082019050919050565b60006020820190508181036000830152614705816146c9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614768602683613b79565b91506147738261470c565b604082019050919050565b600060208201905081810360008301526147978161475b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147fa602483613b79565b91506148058261479e565b604082019050919050565b60006020820190508181036000830152614829816147ed565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061488c602283613b79565b915061489782614830565b604082019050919050565b600060208201905081810360008301526148bb8161487f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061491e602583613b79565b9150614929826148c2565b604082019050919050565b6000602082019050818103600083015261494d81614911565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006149b0602383613b79565b91506149bb82614954565b604082019050919050565b600060208201905081810360008301526149df816149a3565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614a1c601683613b79565b9150614a27826149e6565b602082019050919050565b60006020820190508181036000830152614a4b81614a0f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614ad4604983613b79565b9150614adf82614a52565b606082019050919050565b60006020820190508181036000830152614b0381614ac7565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b66603583613b79565b9150614b7182614b0a565b604082019050919050565b60006020820190508181036000830152614b9581614b59565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614bd2601383613b79565b9150614bdd82614b9c565b602082019050919050565b60006020820190508181036000830152614c0181614bc5565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c64603683613b79565b9150614c6f82614c08565b604082019050919050565b60006020820190508181036000830152614c9381614c57565b9050919050565b6000614ca582613c8c565b9150614cb083613c8c565b925082821015614cc357614cc26140f7565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d2a602683613b79565b9150614d3582614cce565b604082019050919050565b60006020820190508181036000830152614d5981614d1d565b9050919050565b600081905092915050565b50565b6000614d7b600083614d60565b9150614d8682614d6b565b600082019050919050565b6000614d9c82614d6e565b9150819050919050565b6000606082019050614dbb6000830186613d38565b614dc86020830185613d38565b614dd56040830184613d38565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614e4a81613c60565b92915050565b600060208284031215614e6657614e65613c29565b5b6000614e7484828501614e3b565b91505092915050565b6000819050919050565b6000614ea2614e9d614e9884614e7d565b613d8f565b613c8c565b9050919050565b614eb281614e87565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614eed81613c4e565b82525050565b6000614eff8383614ee4565b60208301905092915050565b6000602082019050919050565b6000614f2382614eb8565b614f2d8185614ec3565b9350614f3883614ed4565b8060005b83811015614f69578151614f508882614ef3565b9750614f5b83614f0b565b925050600181019050614f3c565b5085935050505092915050565b600060a082019050614f8b6000830188613d38565b614f986020830187614ea9565b8181036040830152614faa8186614f18565b9050614fb96060830185613e89565b614fc66080830184613d38565b9695505050505050565b600060c082019050614fe56000830189613e89565b614ff26020830188613d38565b614fff6040830187614ea9565b61500c6060830186614ea9565b6150196080830185613e89565b61502660a0830184613d38565b979650505050505050565b60008151905061504081613c96565b92915050565b60008060006060848603121561505f5761505e613c29565b5b600061506d86828701615031565b935050602061507e86828701615031565b925050604061508f86828701615031565b915050925092509256fea26469706673582212200823fcaa1a4be7692a6c370835d8105026606cb20df6eb4de6e919168c80c47464736f6c634300080a0033

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610cc5578063f2fde38b14610cf0578063f637434214610d19578063f8b45b0514610d4457610376565b8063e2f4560514610c46578063e7ad9fcd14610c71578063e884f26014610c9a57610376565b8063c8c8ebe4116100d1578063c8c8ebe414610b76578063d257b34f14610ba1578063d85ba06314610bde578063dd62ed3e14610c0957610376565b8063c024666814610af9578063c18bc19514610b22578063c876d0b914610b4b57610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a17578063a9059cbb14610a54578063b62496f514610a91578063bbc0c74214610ace57610376565b80639fccce3214610996578063a0d82dc5146109c1578063a1dc92bc146109ec57610376565b8063924de9b7116101a0578063924de9b7146108ee57806395d89b41146109175780639a7a23d6146109425780639c3b4fdc1461096b57610376565b80638da5cb5b1461086d5780638ea5220f1461089857806392136913146108c357610376565b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146107d55780637b208769146108005780637bce5a041461082b5780638a8c523c1461085657610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d5780632e6ed7ef14610588578063313ce567146105b157806339509351146105dc57610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d6f565b60405161039d9190613c07565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613cc2565b610e01565b6040516103da9190613d1d565b60405180910390f35b3480156103ef57600080fd5b506103f8610e1f565b6040516104059190613d47565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613d62565b610e25565b6040516104429190613d1d565b60405180910390f35b34801561045757600080fd5b50610460610e45565b60405161046d9190613dee565b60405180910390f35b34801561048257600080fd5b5061048b610e69565b6040516104989190613d47565b60405180910390f35b3480156104ad57600080fd5b506104b6610e73565b6040516104c39190613d47565b60405180910390f35b3480156104d857600080fd5b506104e1610e79565b6040516104ee9190613d47565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613e09565b610e7f565b005b34801561052c57600080fd5b5061054760048036038101906105429190613e36565b610f8e565b6040516105549190613d1d565b60405180910390f35b34801561056957600080fd5b50610572611086565b60405161057f9190613e98565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613eb3565b61108c565b005b3480156105bd57600080fd5b506105c66111bf565b6040516105d39190613f36565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613cc2565b6111c8565b6040516106109190613d1d565b60405180910390f35b34801561062557600080fd5b5061062e611274565b60405161063b9190613d47565b60405180910390f35b34801561065057600080fd5b5061065961127a565b6040516106669190613e98565b60405180910390f35b34801561067b57600080fd5b5061068461129e565b6040516106919190613d1d565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613d62565b6112b1565b6040516106ce9190613d1d565b60405180910390f35b3480156106e357600080fd5b506106ec611307565b6040516106f99190613d47565b60405180910390f35b34801561070e57600080fd5b5061071761130d565b6040516107249190613d1d565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613d62565b611320565b6040516107619190613d47565b60405180910390f35b34801561077657600080fd5b5061077f611368565b005b34801561078d57600080fd5b506107966113f0565b6040516107a39190613d1d565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613f7d565b611490565b005b3480156107e157600080fd5b506107ea611567565b6040516107f79190613e98565b60405180910390f35b34801561080c57600080fd5b5061081561158d565b6040516108229190613e98565b60405180910390f35b34801561083757600080fd5b506108406115b3565b60405161084d9190613d47565b60405180910390f35b34801561086257600080fd5b5061086b6115b9565b005b34801561087957600080fd5b5061088261166d565b60405161088f9190613e98565b60405180910390f35b3480156108a457600080fd5b506108ad611697565b6040516108ba9190613e98565b60405180910390f35b3480156108cf57600080fd5b506108d86116bd565b6040516108e59190613d47565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613fbd565b6116c3565b005b34801561092357600080fd5b5061092c61175c565b6040516109399190613c07565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613f7d565b6117ee565b005b34801561097757600080fd5b50610980611907565b60405161098d9190613d47565b60405180910390f35b3480156109a257600080fd5b506109ab61190d565b6040516109b89190613d47565b60405180910390f35b3480156109cd57600080fd5b506109d6611913565b6040516109e39190613d47565b60405180910390f35b3480156109f857600080fd5b50610a01611919565b604051610a0e9190613d47565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a399190613cc2565b61191f565b604051610a4b9190613d1d565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613cc2565b611a0a565b604051610a889190613d1d565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613d62565b611a28565b604051610ac59190613d1d565b60405180910390f35b348015610ada57600080fd5b50610ae3611a48565b604051610af09190613d1d565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190613f7d565b611a5b565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190613e09565b611b80565b005b348015610b5757600080fd5b50610b60611c8f565b604051610b6d9190613d1d565b60405180910390f35b348015610b8257600080fd5b50610b8b611ca2565b604051610b989190613d47565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc39190613e09565b611ca8565b604051610bd59190613d1d565b60405180910390f35b348015610bea57600080fd5b50610bf3611dfd565b604051610c009190613d47565b60405180910390f35b348015610c1557600080fd5b50610c306004803603810190610c2b9190613fea565b611e03565b604051610c3d9190613d47565b60405180910390f35b348015610c5257600080fd5b50610c5b611e8a565b604051610c689190613d47565b60405180910390f35b348015610c7d57600080fd5b50610c986004803603810190610c939190613eb3565b611e90565b005b348015610ca657600080fd5b50610caf611fc3565b604051610cbc9190613d1d565b60405180910390f35b348015610cd157600080fd5b50610cda612063565b604051610ce79190613d47565b60405180910390f35b348015610cfc57600080fd5b50610d176004803603810190610d129190613d62565b612069565b005b348015610d2557600080fd5b50610d2e612161565b604051610d3b9190613d47565b60405180910390f35b348015610d5057600080fd5b50610d59612167565b604051610d669190613d47565b60405180910390f35b606060038054610d7e90614059565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa90614059565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b5050505050905090565b6000610e15610e0e61216d565b8484612175565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b601b5481565b601a5481565b610e8761216d565b73ffffffffffffffffffffffffffffffffffffffff16610ea561166d565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef2906140d7565b60405180910390fd5b670de0b6b3a76400006103e86001610f11610e69565b610f1b9190614126565b610f2591906141af565b610f2f91906141af565b811015610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890614252565b60405180910390fd5b670de0b6b3a764000081610f859190614126565b60098190555050565b6000610f9b848484612340565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fe661216d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d906142e4565b60405180910390fd5b61107a8561107261216d565b858403612175565b60019150509392505050565b61dead81565b61109461216d565b73ffffffffffffffffffffffffffffffffffffffff166110b261166d565b73ffffffffffffffffffffffffffffffffffffffff1614611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff906140d7565b60405180910390fd5b6008818385876111189190614304565b6111229190614304565b61112c9190614304565b111561116d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611164906143a6565b60405180910390fd5b8360108190555082601181905550816012819055508060138190555060135460125460115460105461119f9190614304565b6111a99190614304565b6111b39190614304565b600f8190555050505050565b60006012905090565b600061126a6111d561216d565b8484600160006111e361216d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112659190614304565b612175565b6001905092915050565b60195481565b7f00000000000000000000000073af46afd18850c84379db63fe1c1b1952d42f1581565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61137061216d565b73ffffffffffffffffffffffffffffffffffffffff1661138e61166d565b73ffffffffffffffffffffffffffffffffffffffff16146113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db906140d7565b60405180910390fd5b6113ee6000613040565b565b60006113fa61216d565b73ffffffffffffffffffffffffffffffffffffffff1661141861166d565b73ffffffffffffffffffffffffffffffffffffffff161461146e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611465906140d7565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b61149861216d565b73ffffffffffffffffffffffffffffffffffffffff166114b661166d565b73ffffffffffffffffffffffffffffffffffffffff161461150c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611503906140d7565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115c161216d565b73ffffffffffffffffffffffffffffffffffffffff166115df61166d565b73ffffffffffffffffffffffffffffffffffffffff1614611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c906140d7565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116cb61216d565b73ffffffffffffffffffffffffffffffffffffffff166116e961166d565b73ffffffffffffffffffffffffffffffffffffffff161461173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906140d7565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461176b90614059565b80601f016020809104026020016040519081016040528092919081815260200182805461179790614059565b80156117e45780601f106117b9576101008083540402835291602001916117e4565b820191906000526020600020905b8154815290600101906020018083116117c757829003601f168201915b5050505050905090565b6117f661216d565b73ffffffffffffffffffffffffffffffffffffffff1661181461166d565b73ffffffffffffffffffffffffffffffffffffffff161461186a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611861906140d7565b60405180910390fd5b7f00000000000000000000000073af46afd18850c84379db63fe1c1b1952d42f1573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f090614438565b60405180910390fd5b6119038282613106565b5050565b60135481565b601c5481565b60185481565b60105481565b6000806001600061192e61216d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e2906144ca565b60405180910390fd5b6119ff6119f661216d565b85858403612175565b600191505092915050565b6000611a1e611a1761216d565b8484612340565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611a6361216d565b73ffffffffffffffffffffffffffffffffffffffff16611a8161166d565b73ffffffffffffffffffffffffffffffffffffffff1614611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace906140d7565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b749190613d1d565b60405180910390a25050565b611b8861216d565b73ffffffffffffffffffffffffffffffffffffffff16611ba661166d565b73ffffffffffffffffffffffffffffffffffffffff1614611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf3906140d7565b60405180910390fd5b670de0b6b3a76400006103e86005611c12610e69565b611c1c9190614126565b611c2691906141af565b611c3091906141af565b811015611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c699061455c565b60405180910390fd5b670de0b6b3a764000081611c869190614126565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611cb261216d565b73ffffffffffffffffffffffffffffffffffffffff16611cd061166d565b73ffffffffffffffffffffffffffffffffffffffff1614611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d906140d7565b60405180910390fd5b620186a06001611d34610e69565b611d3e9190614126565b611d4891906141af565b821015611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d81906145ee565b60405180910390fd5b6103e86005611d97610e69565b611da19190614126565b611dab91906141af565b821115611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de490614680565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611e9861216d565b73ffffffffffffffffffffffffffffffffffffffff16611eb661166d565b73ffffffffffffffffffffffffffffffffffffffff1614611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f03906140d7565b60405180910390fd5b600a81838587611f1c9190614304565b611f269190614304565b611f309190614304565b1115611f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f68906146ec565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611fa39190614304565b611fad9190614304565b611fb79190614304565b60148190555050505050565b6000611fcd61216d565b73ffffffffffffffffffffffffffffffffffffffff16611feb61166d565b73ffffffffffffffffffffffffffffffffffffffff1614612041576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612038906140d7565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61207161216d565b73ffffffffffffffffffffffffffffffffffffffff1661208f61166d565b73ffffffffffffffffffffffffffffffffffffffff16146120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc906140d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c9061477e565b60405180910390fd5b61215e81613040565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc90614810565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224c906148a2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123339190613d47565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a790614934565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612420576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612417906149c6565b60405180910390fd5b600081141561243a57612435838360006131a7565b61303b565b600c60009054906101000a900460ff1615612afd5761245761166d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124c5575061249561166d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124fe5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612538575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125515750600560149054906101000a900460ff16155b15612afc57600c60019054906101000a900460ff1661264b57601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061260b5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61264a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264190614a32565b60405180910390fd5b5b600e60009054906101000a900460ff16156128135761266861166d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126ef57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561274757507f00000000000000000000000073af46afd18850c84379db63fe1c1b1952d42f1573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156128125743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106127cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c490614aea565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128b65750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561295d57600954811115612900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f790614b7c565b60405180910390fd5b600b5461290c83611320565b826129179190614304565b1115612958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294f90614be8565b60405180910390fd5b612afb565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a005750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a4f57600954811115612a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4190614c7a565b60405180910390fd5b612afa565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612af957600b54612aac83611320565b82612ab79190614304565b1115612af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aef90614be8565b60405180910390fd5b5b5b5b5b5b6000612b0830611320565b90506000600a548210159050808015612b2d5750600c60029054906101000a900460ff165b8015612b465750600560149054906101000a900460ff16155b8015612b9c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bf25750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c485750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c8c576001600560146101000a81548160ff021916908315150217905550612c70613428565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d425750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d4c57600090505b6000811561302b57601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612daf57506000601454115b15612eaf57612ddc6064612dce601454886137e990919063ffffffff16565b6137ff90919063ffffffff16565b905060145460155482612def9190614126565b612df991906141af565b60196000828254612e0a9190614304565b9250508190555060145460175482612e229190614126565b612e2c91906141af565b601b6000828254612e3d9190614304565b9250508190555060145460185482612e559190614126565b612e5f91906141af565b601c6000828254612e709190614304565b9250508190555060145460165482612e889190614126565b612e9291906141af565b601a6000828254612ea39190614304565b92505081905550613007565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f0a57506000600f54115b1561300657612f376064612f29600f54886137e990919063ffffffff16565b6137ff90919063ffffffff16565b9050600f5460105482612f4a9190614126565b612f5491906141af565b60196000828254612f659190614304565b92505081905550600f5460125482612f7d9190614126565b612f8791906141af565b601b6000828254612f989190614304565b92505081905550600f5460135482612fb09190614126565b612fba91906141af565b601c6000828254612fcb9190614304565b92505081905550600f5460115482612fe39190614126565b612fed91906141af565b601a6000828254612ffe9190614304565b925050819055505b5b600081111561301c5761301b8730836131a7565b5b80856130289190614c9a565b94505b6130368787876131a7565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320e90614934565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327e906149c6565b60405180910390fd5b613292838383613815565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330f90614d40565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133ab9190614304565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161340f9190613d47565b60405180910390a361342284848461381a565b50505050565b600061343330611320565b90506000601c54601a54601b5460195461344d9190614304565b6134579190614304565b6134619190614304565b90506000808314806134735750600082145b15613480575050506137e7565b6014600a5461348f9190614126565b8311156134a8576014600a546134a59190614126565b92505b6000600283601b54866134bb9190614126565b6134c591906141af565b6134cf91906141af565b905060006134e6828661381f90919063ffffffff16565b905060004790506134f682613835565b600061350b824761381f90919063ffffffff16565b9050600061353687613528601954856137e990919063ffffffff16565b6137ff90919063ffffffff16565b9050600061356188613553601a54866137e990919063ffffffff16565b6137ff90919063ffffffff16565b9050600061358c8961357e601c54876137e990919063ffffffff16565b6137ff90919063ffffffff16565b905060008183858761359e9190614c9a565b6135a89190614c9a565b6135b29190614c9a565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161361a90614d91565b60006040518083038185875af1925050503d8060008114613657576040519150601f19603f3d011682016040523d82523d6000602084013e61365c565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516136a890614d91565b60006040518083038185875af1925050503d80600081146136e5576040519150601f19603f3d011682016040523d82523d6000602084013e6136ea565b606091505b5050809950506000881180156137005750600081115b1561374d5761370f8882613a72565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161374493929190614da6565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161379390614d91565b60006040518083038185875af1925050503d80600081146137d0576040519150601f19603f3d011682016040523d82523d6000602084013e6137d5565b606091505b50508099505050505050505050505050505b565b600081836137f79190614126565b905092915050565b6000818361380d91906141af565b905092915050565b505050565b505050565b6000818361382d9190614c9a565b905092915050565b6000600267ffffffffffffffff81111561385257613851614ddd565b5b6040519080825280602002602001820160405280156138805781602001602082028036833780820191505090505b509050308160008151811061389857613897614e0c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561393d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139619190614e50565b8160018151811061397557613974614e0c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139da307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612175565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a3c959493929190614f76565b600060405180830381600087803b158015613a5657600080fd5b505af1158015613a6a573d6000803e3d6000fd5b505050505050565b613a9d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612175565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613b2496959493929190614fd0565b60606040518083038185885af1158015613b42573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b679190615046565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ba8578082015181840152602081019050613b8d565b83811115613bb7576000848401525b50505050565b6000601f19601f8301169050919050565b6000613bd982613b6e565b613be38185613b79565b9350613bf3818560208601613b8a565b613bfc81613bbd565b840191505092915050565b60006020820190508181036000830152613c218184613bce565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c5982613c2e565b9050919050565b613c6981613c4e565b8114613c7457600080fd5b50565b600081359050613c8681613c60565b92915050565b6000819050919050565b613c9f81613c8c565b8114613caa57600080fd5b50565b600081359050613cbc81613c96565b92915050565b60008060408385031215613cd957613cd8613c29565b5b6000613ce785828601613c77565b9250506020613cf885828601613cad565b9150509250929050565b60008115159050919050565b613d1781613d02565b82525050565b6000602082019050613d326000830184613d0e565b92915050565b613d4181613c8c565b82525050565b6000602082019050613d5c6000830184613d38565b92915050565b600060208284031215613d7857613d77613c29565b5b6000613d8684828501613c77565b91505092915050565b6000819050919050565b6000613db4613daf613daa84613c2e565b613d8f565b613c2e565b9050919050565b6000613dc682613d99565b9050919050565b6000613dd882613dbb565b9050919050565b613de881613dcd565b82525050565b6000602082019050613e036000830184613ddf565b92915050565b600060208284031215613e1f57613e1e613c29565b5b6000613e2d84828501613cad565b91505092915050565b600080600060608486031215613e4f57613e4e613c29565b5b6000613e5d86828701613c77565b9350506020613e6e86828701613c77565b9250506040613e7f86828701613cad565b9150509250925092565b613e9281613c4e565b82525050565b6000602082019050613ead6000830184613e89565b92915050565b60008060008060808587031215613ecd57613ecc613c29565b5b6000613edb87828801613cad565b9450506020613eec87828801613cad565b9350506040613efd87828801613cad565b9250506060613f0e87828801613cad565b91505092959194509250565b600060ff82169050919050565b613f3081613f1a565b82525050565b6000602082019050613f4b6000830184613f27565b92915050565b613f5a81613d02565b8114613f6557600080fd5b50565b600081359050613f7781613f51565b92915050565b60008060408385031215613f9457613f93613c29565b5b6000613fa285828601613c77565b9250506020613fb385828601613f68565b9150509250929050565b600060208284031215613fd357613fd2613c29565b5b6000613fe184828501613f68565b91505092915050565b6000806040838503121561400157614000613c29565b5b600061400f85828601613c77565b925050602061402085828601613c77565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061407157607f821691505b602082108114156140855761408461402a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140c1602083613b79565b91506140cc8261408b565b602082019050919050565b600060208201905081810360008301526140f0816140b4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061413182613c8c565b915061413c83613c8c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614175576141746140f7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141ba82613c8c565b91506141c583613c8c565b9250826141d5576141d4614180565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061423c602f83613b79565b9150614247826141e0565b604082019050919050565b6000602082019050818103600083015261426b8161422f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006142ce602883613b79565b91506142d982614272565b604082019050919050565b600060208201905081810360008301526142fd816142c1565b9050919050565b600061430f82613c8c565b915061431a83613c8c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561434f5761434e6140f7565b5b828201905092915050565b7f4d61782042757946656520382500000000000000000000000000000000000000600082015250565b6000614390600d83613b79565b915061439b8261435a565b602082019050919050565b600060208201905081810360008301526143bf81614383565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614422603983613b79565b915061442d826143c6565b604082019050919050565b6000602082019050818103600083015261445181614415565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006144b4602583613b79565b91506144bf82614458565b604082019050919050565b600060208201905081810360008301526144e3816144a7565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614546602483613b79565b9150614551826144ea565b604082019050919050565b6000602082019050818103600083015261457581614539565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006145d8603583613b79565b91506145e38261457c565b604082019050919050565b60006020820190508181036000830152614607816145cb565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061466a603483613b79565b91506146758261460e565b604082019050919050565b600060208201905081810360008301526146998161465d565b9050919050565b7f4d61782053656c6c466565203130250000000000000000000000000000000000600082015250565b60006146d6600f83613b79565b91506146e1826146a0565b602082019050919050565b60006020820190508181036000830152614705816146c9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614768602683613b79565b91506147738261470c565b604082019050919050565b600060208201905081810360008301526147978161475b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147fa602483613b79565b91506148058261479e565b604082019050919050565b60006020820190508181036000830152614829816147ed565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061488c602283613b79565b915061489782614830565b604082019050919050565b600060208201905081810360008301526148bb8161487f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061491e602583613b79565b9150614929826148c2565b604082019050919050565b6000602082019050818103600083015261494d81614911565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006149b0602383613b79565b91506149bb82614954565b604082019050919050565b600060208201905081810360008301526149df816149a3565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614a1c601683613b79565b9150614a27826149e6565b602082019050919050565b60006020820190508181036000830152614a4b81614a0f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614ad4604983613b79565b9150614adf82614a52565b606082019050919050565b60006020820190508181036000830152614b0381614ac7565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b66603583613b79565b9150614b7182614b0a565b604082019050919050565b60006020820190508181036000830152614b9581614b59565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614bd2601383613b79565b9150614bdd82614b9c565b602082019050919050565b60006020820190508181036000830152614c0181614bc5565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c64603683613b79565b9150614c6f82614c08565b604082019050919050565b60006020820190508181036000830152614c9381614c57565b9050919050565b6000614ca582613c8c565b9150614cb083613c8c565b925082821015614cc357614cc26140f7565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d2a602683613b79565b9150614d3582614cce565b604082019050919050565b60006020820190508181036000830152614d5981614d1d565b9050919050565b600081905092915050565b50565b6000614d7b600083614d60565b9150614d8682614d6b565b600082019050919050565b6000614d9c82614d6e565b9150819050919050565b6000606082019050614dbb6000830186613d38565b614dc86020830185613d38565b614dd56040830184613d38565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614e4a81613c60565b92915050565b600060208284031215614e6657614e65613c29565b5b6000614e7484828501614e3b565b91505092915050565b6000819050919050565b6000614ea2614e9d614e9884614e7d565b613d8f565b613c8c565b9050919050565b614eb281614e87565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614eed81613c4e565b82525050565b6000614eff8383614ee4565b60208301905092915050565b6000602082019050919050565b6000614f2382614eb8565b614f2d8185614ec3565b9350614f3883614ed4565b8060005b83811015614f69578151614f508882614ef3565b9750614f5b83614f0b565b925050600181019050614f3c565b5085935050505092915050565b600060a082019050614f8b6000830188613d38565b614f986020830187614ea9565b8181036040830152614faa8186614f18565b9050614fb96060830185613e89565b614fc66080830184613d38565b9695505050505050565b600060c082019050614fe56000830189613e89565b614ff26020830188613d38565b614fff6040830187614ea9565b61500c6060830186614ea9565b6150196080830185613e89565b61502660a0830184613d38565b979650505050505050565b60008151905061504081613c96565b92915050565b60008060006060848603121561505f5761505e613c29565b5b600061506d86828701615031565b935050602061507e86828701615031565b925050604061508f86828701615031565b915050925092509256fea26469706673582212200823fcaa1a4be7692a6c370835d8105026606cb20df6eb4de6e919168c80c47464736f6c634300080a0033

Deployed Bytecode Sourcemap

32710:16502:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9638:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11805:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33753:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34190:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32790:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10758:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33974:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33934;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38579:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12456:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32893:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39498:496;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10600:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13357:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33896:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32848:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33202:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41216:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33721:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33282:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10929:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2873:103;;;;;;;;;;;;;:::i;:::-;;37687:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39127:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33017:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32982:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33614:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37523:112;;;;;;;;;;;;;:::i;:::-;;2222:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33054:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33789:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39390:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9857:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40708:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33688:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34014:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33865:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33579:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14075:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11269:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34411:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33242:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40518:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38862:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33500:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33087:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38074:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33548:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11507:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33129:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40002:508;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37869:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33651:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3131:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33827:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33169:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9638:100;9692:13;9725:5;9718:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9638:100;:::o;11805:169::-;11888:4;11905:39;11914:12;:10;:12::i;:::-;11928:7;11937:6;11905:8;:39::i;:::-;11962:4;11955:11;;11805:169;;;;:::o;33753:29::-;;;;:::o;34190:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32790:51::-;;;:::o;10758:108::-;10819:7;10846:12;;10839:19;;10758:108;:::o;33974:33::-;;;;:::o;33934:::-;;;;:::o;38579:275::-;2453:12;:10;:12::i;:::-;2442:23;;:7;:5;:7::i;:::-;:23;;;2434:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38716:4:::1;38708;38703:1;38687:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38686:26;;;;:::i;:::-;38685:35;;;;:::i;:::-;38675:6;:45;;38653:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38839:6;38829;:17;;;;:::i;:::-;38806:20;:40;;;;38579:275:::0;:::o;12456:492::-;12596:4;12613:36;12623:6;12631:9;12642:6;12613:9;:36::i;:::-;12662:24;12689:11;:19;12701:6;12689:19;;;;;;;;;;;;;;;:33;12709:12;:10;:12::i;:::-;12689:33;;;;;;;;;;;;;;;;12662:60;;12761:6;12741:16;:26;;12733:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12848:57;12857:6;12865:12;:10;:12::i;:::-;12898:6;12879:16;:25;12848:8;:57::i;:::-;12936:4;12929:11;;;12456:492;;;;;:::o;32893:53::-;32939:6;32893:53;:::o;39498:496::-;2453:12;:10;:12::i;:::-;2442:23;;:7;:5;:7::i;:::-;:23;;;2434:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39733:1:::1;39721:7;39705:13;39689;39675:11;:27;;;;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;39674:60;;39666:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;39773:11;39757:13;:27;;;;39813:13;39795:15;:31;;;;39855:13;39837:15;:31;;;;39891:7;39879:9;:19;;;;39976:9;;39958:15;;39940;;39924:13;;:31;;;;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;39909:12;:76;;;;39498:496:::0;;;;:::o;10600:93::-;10658:5;10683:2;10676:9;;10600:93;:::o;13357:215::-;13445:4;13462:80;13471:12;:10;:12::i;:::-;13485:7;13531:10;13494:11;:25;13506:12;:10;:12::i;:::-;13494:25;;;;;;;;;;;;;;;:34;13520:7;13494:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13462:8;:80::i;:::-;13560:4;13553:11;;13357:215;;;;:::o;33896:31::-;;;;:::o;32848:38::-;;;:::o;33202:33::-;;;;;;;;;;;;;:::o;41216:126::-;41282:4;41306:19;:28;41326:7;41306:28;;;;;;;;;;;;;;;;;;;;;;;;;41299:35;;41216:126;;;:::o;33721:28::-;;;;:::o;33282:31::-;;;;;;;;;;;;;:::o;10929:127::-;11003:7;11030:9;:18;11040:7;11030:18;;;;;;;;;;;;;;;;11023:25;;10929:127;;;:::o;2873:103::-;2453:12;:10;:12::i;:::-;2442:23;;:7;:5;:7::i;:::-;:23;;;2434:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2938:30:::1;2965:1;2938:18;:30::i;:::-;2873:103::o:0;37687:121::-;37739:4;2453:12;:10;:12::i;:::-;2442:23;;:7;:5;:7::i;:::-;:23;;;2434:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37773:5:::1;37756:14;;:22;;;;;;;;;;;;;;;;;;37796:4;37789:11;;37687:121:::0;:::o;39127:167::-;2453:12;:10;:12::i;:::-;2442:23;;:7;:5;:7::i;:::-;:23;;;2434:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39282:4:::1;39240:31;:39;39272:6;39240:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39127:167:::0;;:::o;33017:30::-;;;;;;;;;;;;;:::o;32982:28::-;;;;;;;;;;;;;:::o;33614:30::-;;;;:::o;37523:112::-;2453:12;:10;:12::i;:::-;2442:23;;:7;:5;:7::i;:::-;:23;;;2434:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37594:4:::1;37578:13;;:20;;;;;;;;;;;;;;;;;;37623:4;37609:11;;:18;;;;;;;;;;;;;;;;;;37523:112::o:0;2222:87::-;2268:7;2295:6;;;;;;;;;;;2288:13;;2222:87;:::o;33054:24::-;;;;;;;;;;;;;:::o;33789:31::-;;;;:::o;39390:100::-;2453:12;:10;:12::i;:::-;2442:23;;:7;:5;:7::i;:::-;:23;;;2434:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39475:7:::1;39461:11;;:21;;;;;;;;;;;;;;;;;;39390:100:::0;:::o;9857:104::-;9913:13;9946:7;9939:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9857:104;:::o;40708:304::-;2453:12;:10;:12::i;:::-;2442:23;;:7;:5;:7::i;:::-;:23;;;2434:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40852:13:::1;40844:21;;:4;:21;;;;40822:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40963:41;40992:4;40998:5;40963:28;:41::i;:::-;40708:304:::0;;:::o;33688:24::-;;;;:::o;34014:27::-;;;;:::o;33865:25::-;;;;:::o;33579:28::-;;;;:::o;14075:413::-;14168:4;14185:24;14212:11;:25;14224:12;:10;:12::i;:::-;14212:25;;;;;;;;;;;;;;;:34;14238:7;14212:34;;;;;;;;;;;;;;;;14185:61;;14285:15;14265:16;:35;;14257:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14378:67;14387:12;:10;:12::i;:::-;14401:7;14429:15;14410:16;:34;14378:8;:67::i;:::-;14476:4;14469:11;;;14075:413;;;;:::o;11269:175::-;11355:4;11372:42;11382:12;:10;:12::i;:::-;11396:9;11407:6;11372:9;:42::i;:::-;11432:4;11425:11;;11269:175;;;;:::o;34411:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33242:33::-;;;;;;;;;;;;;:::o;40518:182::-;2453:12;:10;:12::i;:::-;2442:23;;:7;:5;:7::i;:::-;:23;;;2434:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40634:8:::1;40603:19;:28;40623:7;40603:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40674:7;40658:34;;;40683:8;40658:34;;;;;;:::i;:::-;;;;;;;;40518:182:::0;;:::o;38862:256::-;2453:12;:10;:12::i;:::-;2442:23;;:7;:5;:7::i;:::-;:23;;;2434:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39002:4:::1;38994;38989:1;38973:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38972:26;;;;:::i;:::-;38971:35;;;;:::i;:::-;38961:6;:45;;38939:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39103:6;39093;:17;;;;:::i;:::-;39081:9;:29;;;;38862:256:::0;:::o;33500:39::-;;;;;;;;;;;;;:::o;33087:35::-;;;;:::o;38074:497::-;38182:4;2453:12;:10;:12::i;:::-;2442:23;;:7;:5;:7::i;:::-;:23;;;2434:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38261:6:::1;38256:1;38240:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38239:28;;;;:::i;:::-;38226:9;:41;;38204:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38416:4;38411:1;38395:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38394:26;;;;:::i;:::-;38381:9;:39;;38359:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38532:9;38511:18;:30;;;;38559:4;38552:11;;38074:497:::0;;;:::o;33548:27::-;;;;:::o;11507:151::-;11596:7;11623:11;:18;11635:5;11623:18;;;;;;;;;;;;;;;:27;11642:7;11623:27;;;;;;;;;;;;;;;;11616:34;;11507:151;;;;:::o;33129:33::-;;;;:::o;40002:508::-;2453:12;:10;:12::i;:::-;2442:23;;:7;:5;:7::i;:::-;:23;;;2434:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40238:2:::1;40226:7;40210:13;40194;40180:11;:27;;;;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;40179:61;;40171:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;40282:11;40265:14;:28;;;;40323:13;40304:16;:32;;;;40366:13;40347:16;:32;;;;40403:7;40390:10;:20;;;;40492:10;;40473:16;;40454;;40437:14;;:33;;;;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;40421:13;:81;;;;40002:508:::0;;;;:::o;37869:135::-;37929:4;2453:12;:10;:12::i;:::-;2442:23;;:7;:5;:7::i;:::-;:23;;;2434:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37969:5:::1;37946:20;;:28;;;;;;;;;;;;;;;;;;37992:4;37985:11;;37869:135:::0;:::o;33651:30::-;;;;:::o;3131:201::-;2453:12;:10;:12::i;:::-;2442:23;;:7;:5;:7::i;:::-;:23;;;2434:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3240:1:::1;3220:22;;:8;:22;;;;3212:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3296:28;3315:8;3296:18;:28::i;:::-;3131:201:::0;:::o;33827:31::-;;;;:::o;33169:24::-;;;;:::o;895:98::-;948:7;975:10;968:17;;895:98;:::o;17759:380::-;17912:1;17895:19;;:5;:19;;;;17887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17993:1;17974:21;;:7;:21;;;;17966:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18077:6;18047:11;:18;18059:5;18047:18;;;;;;;;;;;;;;;:27;18066:7;18047:27;;;;;;;;;;;;;;;:36;;;;18115:7;18099:32;;18108:5;18099:32;;;18124:6;18099:32;;;;;;:::i;:::-;;;;;;;;17759:380;;;:::o;41350:4847::-;41498:1;41482:18;;:4;:18;;;;41474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41575:1;41561:16;;:2;:16;;;;41553:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41644:1;41634:6;:11;41630:93;;;41662:28;41678:4;41684:2;41688:1;41662:15;:28::i;:::-;41705:7;;41630:93;41739:14;;;;;;;;;;;41735:2487;;;41800:7;:5;:7::i;:::-;41792:15;;:4;:15;;;;:49;;;;;41834:7;:5;:7::i;:::-;41828:13;;:2;:13;;;;41792:49;:86;;;;;41876:1;41862:16;;:2;:16;;;;41792:86;:128;;;;;41913:6;41899:21;;:2;:21;;;;41792:128;:158;;;;;41942:8;;;;;;;;;;;41941:9;41792:158;41770:2441;;;41990:13;;;;;;;;;;;41985:223;;42062:19;:25;42082:4;42062:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42091:19;:23;42111:2;42091:23;;;;;;;;;;;;;;;;;;;;;;;;;42062:52;42028:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;41985:223;42364:20;;;;;;;;;;;42360:641;;;42445:7;:5;:7::i;:::-;42439:13;;:2;:13;;;;:72;;;;;42495:15;42481:30;;:2;:30;;;;42439:72;:129;;;;;42554:13;42540:28;;:2;:28;;;;42439:129;42409:573;;;42732:12;42657:28;:39;42686:9;42657:39;;;;;;;;;;;;;;;;:87;42619:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;42946:12;42904:28;:39;42933:9;42904:39;;;;;;;;;;;;;;;:54;;;;42409:573;42360:641;43075:25;:31;43101:4;43075:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43132:31;:35;43164:2;43132:35;;;;;;;;;;;;;;;;;;;;;;;;;43131:36;43075:92;43049:1147;;;43254:20;;43244:6;:30;;43210:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43462:9;;43445:13;43455:2;43445:9;:13::i;:::-;43436:6;:22;;;;:::i;:::-;:35;;43402:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43049:1147;;;43640:25;:29;43666:2;43640:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43695:31;:37;43727:4;43695:37;;;;;;;;;;;;;;;;;;;;;;;;;43694:38;43640:92;43614:582;;;43819:20;;43809:6;:30;;43775:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43614:582;;;43976:31;:35;44008:2;43976:35;;;;;;;;;;;;;;;;;;;;;;;;;43971:225;;44096:9;;44079:13;44089:2;44079:9;:13::i;:::-;44070:6;:22;;;;:::i;:::-;:35;;44036:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43971:225;43614:582;43049:1147;41770:2441;41735:2487;44234:28;44265:24;44283:4;44265:9;:24::i;:::-;44234:55;;44302:12;44341:18;;44317:20;:42;;44302:57;;44390:7;:35;;;;;44414:11;;;;;;;;;;;44390:35;:61;;;;;44443:8;;;;;;;;;;;44442:9;44390:61;:110;;;;;44469:25;:31;44495:4;44469:31;;;;;;;;;;;;;;;;;;;;;;;;;44468:32;44390:110;:153;;;;;44518:19;:25;44538:4;44518:25;;;;;;;;;;;;;;;;;;;;;;;;;44517:26;44390:153;:194;;;;;44561:19;:23;44581:2;44561:23;;;;;;;;;;;;;;;;;;;;;;;;;44560:24;44390:194;44372:326;;;44622:4;44611:8;;:15;;;;;;;;;;;;;;;;;;44643:10;:8;:10::i;:::-;44681:5;44670:8;;:16;;;;;;;;;;;;;;;;;;44372:326;44710:12;44726:8;;;;;;;;;;;44725:9;44710:24;;44836:19;:25;44856:4;44836:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44865:19;:23;44885:2;44865:23;;;;;;;;;;;;;;;;;;;;;;;;;44836:52;44832:100;;;44915:5;44905:15;;44832:100;44944:12;45049:7;45045:1099;;;45101:25;:29;45127:2;45101:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45150:1;45134:13;;:17;45101:50;45097:898;;;45179:34;45209:3;45179:25;45190:13;;45179:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45172:41;;45266:13;;45248:14;;45241:4;:21;;;;:::i;:::-;45240:39;;;;:::i;:::-;45220:16;;:59;;;;;;;:::i;:::-;;;;;;;;45348:13;;45328:16;;45321:4;:23;;;;:::i;:::-;45320:41;;;;:::i;:::-;45298:18;;:63;;;;;;;:::i;:::-;;;;;;;;45418:13;;45404:10;;45397:4;:17;;;;:::i;:::-;45396:35;;;;:::i;:::-;45380:12;;:51;;;;;;;:::i;:::-;;;;;;;;45500:13;;45480:16;;45473:4;:23;;;;:::i;:::-;45472:41;;;;:::i;:::-;45450:18;;:63;;;;;;;:::i;:::-;;;;;;;;45097:898;;;45575:25;:31;45601:4;45575:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45625:1;45610:12;;:16;45575:51;45571:424;;;45654:33;45683:3;45654:24;45665:12;;45654:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45647:40;;45739:12;;45722:13;;45715:4;:20;;;;:::i;:::-;45714:37;;;;:::i;:::-;45694:16;;:57;;;;;;;:::i;:::-;;;;;;;;45819:12;;45800:15;;45793:4;:22;;;;:::i;:::-;45792:39;;;;:::i;:::-;45770:18;;:61;;;;;;;:::i;:::-;;;;;;;;45887:12;;45874:9;;45867:4;:16;;;;:::i;:::-;45866:33;;;;:::i;:::-;45850:12;;:49;;;;;;;:::i;:::-;;;;;;;;45967:12;;45948:15;;45941:4;:22;;;;:::i;:::-;45940:39;;;;:::i;:::-;45918:18;;:61;;;;;;;:::i;:::-;;;;;;;;45571:424;45097:898;46022:1;46015:4;:8;46011:91;;;46044:42;46060:4;46074;46081;46044:15;:42::i;:::-;46011:91;46128:4;46118:14;;;;;:::i;:::-;;;45045:1099;46156:33;46172:4;46178:2;46182:6;46156:15;:33::i;:::-;41463:4734;;;;41350:4847;;;;:::o;3492:191::-;3566:16;3585:6;;;;;;;;;;;3566:25;;3611:8;3602:6;;:17;;;;;;;;;;;;;;;;;;3666:8;3635:40;;3656:8;3635:40;;;;;;;;;;;;3555:128;3492:191;:::o;41020:188::-;41137:5;41103:25;:31;41129:4;41103:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41194:5;41160:40;;41188:4;41160:40;;;;;;;;;;;;41020:188;;:::o;14978:733::-;15136:1;15118:20;;:6;:20;;;;15110:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15220:1;15199:23;;:9;:23;;;;15191:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15275:47;15296:6;15304:9;15315:6;15275:20;:47::i;:::-;15335:21;15359:9;:17;15369:6;15359:17;;;;;;;;;;;;;;;;15335:41;;15412:6;15395:13;:23;;15387:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15533:6;15517:13;:22;15497:9;:17;15507:6;15497:17;;;;;;;;;;;;;;;:42;;;;15585:6;15561:9;:20;15571:9;15561:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15626:9;15609:35;;15618:6;15609:35;;;15637:6;15609:35;;;;;;:::i;:::-;;;;;;;;15657:46;15677:6;15685:9;15696:6;15657:19;:46::i;:::-;15099:612;14978:733;;;:::o;47325:1882::-;47364:23;47390:24;47408:4;47390:9;:24::i;:::-;47364:50;;47425:25;47514:12;;47493:18;;47472;;47453:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;47425:101;;47537:12;47585:1;47566:15;:20;:46;;;;47611:1;47590:17;:22;47566:46;47562:85;;;47629:7;;;;;47562:85;47702:2;47681:18;;:23;;;;:::i;:::-;47663:15;:41;47659:115;;;47760:2;47739:18;;:23;;;;:::i;:::-;47721:41;;47659:115;47835:23;47922:1;47902:17;47880:18;;47862:15;:36;;;;:::i;:::-;47861:58;;;;:::i;:::-;:62;;;;:::i;:::-;47835:88;;47934:26;47963:36;47983:15;47963;:19;;:36;;;;:::i;:::-;47934:65;;48012:25;48040:21;48012:49;;48074:36;48091:18;48074:16;:36::i;:::-;48123:18;48144:44;48170:17;48144:21;:25;;:44;;;;:::i;:::-;48123:65;;48195:21;48219:55;48256:17;48219:32;48234:16;;48219:10;:14;;:32;;;;:::i;:::-;:36;;:55;;;;:::i;:::-;48195:79;;48285:23;48311:57;48350:17;48311:34;48326:18;;48311:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;48285:83;;48379:17;48399:51;48432:17;48399:28;48414:12;;48399:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48379:71;;48463:23;48536:9;48518:15;48502:13;48489:10;:26;;;;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;48463:82;;48579:1;48558:18;:22;;;;48604:1;48585:16;:20;;;;48637:1;48616:18;:22;;;;48664:1;48649:12;:16;;;;48700:9;;;;;;;;;;;48692:23;;48723:9;48692:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48678:59;;;;;48770:15;;;;;;;;;;;48762:29;;48799:15;48762:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48748:71;;;;;48856:1;48838:15;:19;:42;;;;;48879:1;48861:15;:19;48838:42;48834:278;;;48897:46;48910:15;48927;48897:12;:46::i;:::-;48963:137;48996:18;49033:15;49067:18;;48963:137;;;;;;;;:::i;:::-;;;;;;;;48834:278;49146:13;;;;;;;;;;;49138:27;;49173:21;49138:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49124:75;;;;;47353:1854;;;;;;;;;;;47325:1882;:::o;23212:98::-;23270:7;23301:1;23297;:5;;;;:::i;:::-;23290:12;;23212:98;;;;:::o;23611:::-;23669:7;23700:1;23696;:5;;;;:::i;:::-;23689:12;;23611:98;;;;:::o;18739:125::-;;;;:::o;19468:124::-;;;;:::o;22855:98::-;22913:7;22944:1;22940;:5;;;;:::i;:::-;22933:12;;22855:98;;;;:::o;46205:589::-;46331:21;46369:1;46355:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46331:40;;46400:4;46382;46387:1;46382:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46426:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46416:4;46421:1;46416:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46461:62;46478:4;46493:15;46511:11;46461:8;:62::i;:::-;46562:15;:66;;;46643:11;46669:1;46713:4;46740;46760:15;46562:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46260:534;46205:589;:::o;46802:515::-;46950:62;46967:4;46982:15;47000:11;46950:8;:62::i;:::-;47055:15;:31;;;47094:9;47127:4;47147:11;47173:1;47216;47259:9;;;;;;;;;;;47283:15;47055:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46802: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:163::-;14148:15;14144:1;14136:6;14132:14;14125:39;14008:163;:::o;14177:366::-;14319:3;14340:67;14404:2;14399:3;14340:67;:::i;:::-;14333:74;;14416:93;14505:3;14416:93;:::i;:::-;14534:2;14529:3;14525:12;14518:19;;14177:366;;;:::o;14549:419::-;14715:4;14753:2;14742:9;14738:18;14730:26;;14802:9;14796:4;14792:20;14788:1;14777:9;14773:17;14766:47;14830:131;14956:4;14830:131;:::i;:::-;14822:139;;14549:419;;;:::o;14974:244::-;15114:34;15110:1;15102:6;15098:14;15091:58;15183:27;15178:2;15170:6;15166:15;15159:52;14974:244;:::o;15224:366::-;15366:3;15387:67;15451:2;15446:3;15387:67;:::i;:::-;15380:74;;15463:93;15552:3;15463:93;:::i;:::-;15581:2;15576:3;15572:12;15565:19;;15224:366;;;:::o;15596:419::-;15762:4;15800:2;15789:9;15785:18;15777:26;;15849:9;15843:4;15839:20;15835:1;15824:9;15820:17;15813:47;15877:131;16003:4;15877:131;:::i;:::-;15869:139;;15596:419;;;:::o;16021:224::-;16161:34;16157:1;16149:6;16145:14;16138:58;16230:7;16225:2;16217:6;16213:15;16206:32;16021:224;:::o;16251:366::-;16393:3;16414:67;16478:2;16473:3;16414:67;:::i;:::-;16407:74;;16490:93;16579:3;16490:93;:::i;:::-;16608:2;16603:3;16599:12;16592:19;;16251:366;;;:::o;16623:419::-;16789:4;16827:2;16816:9;16812:18;16804:26;;16876:9;16870:4;16866:20;16862:1;16851:9;16847:17;16840:47;16904:131;17030:4;16904:131;:::i;:::-;16896:139;;16623:419;;;:::o;17048:223::-;17188:34;17184:1;17176:6;17172:14;17165:58;17257:6;17252:2;17244:6;17240:15;17233:31;17048:223;:::o;17277:366::-;17419:3;17440:67;17504:2;17499:3;17440:67;:::i;:::-;17433:74;;17516:93;17605:3;17516:93;:::i;:::-;17634:2;17629:3;17625:12;17618:19;;17277:366;;;:::o;17649:419::-;17815:4;17853:2;17842:9;17838:18;17830:26;;17902:9;17896:4;17892:20;17888:1;17877:9;17873:17;17866:47;17930:131;18056:4;17930:131;:::i;:::-;17922:139;;17649:419;;;:::o;18074:240::-;18214:34;18210:1;18202:6;18198:14;18191:58;18283:23;18278:2;18270:6;18266:15;18259:48;18074:240;:::o;18320:366::-;18462:3;18483:67;18547:2;18542:3;18483:67;:::i;:::-;18476:74;;18559:93;18648:3;18559:93;:::i;:::-;18677:2;18672:3;18668:12;18661:19;;18320:366;;;:::o;18692:419::-;18858:4;18896:2;18885:9;18881:18;18873:26;;18945:9;18939:4;18935:20;18931:1;18920:9;18916:17;18909:47;18973:131;19099:4;18973:131;:::i;:::-;18965:139;;18692:419;;;:::o;19117:239::-;19257:34;19253:1;19245:6;19241:14;19234:58;19326:22;19321:2;19313:6;19309:15;19302:47;19117:239;:::o;19362:366::-;19504:3;19525:67;19589:2;19584:3;19525:67;:::i;:::-;19518:74;;19601:93;19690:3;19601:93;:::i;:::-;19719:2;19714:3;19710:12;19703:19;;19362:366;;;:::o;19734:419::-;19900:4;19938:2;19927:9;19923:18;19915:26;;19987:9;19981:4;19977:20;19973:1;19962:9;19958:17;19951:47;20015:131;20141:4;20015:131;:::i;:::-;20007:139;;19734:419;;;:::o;20159:165::-;20299:17;20295:1;20287:6;20283:14;20276:41;20159:165;:::o;20330:366::-;20472:3;20493:67;20557:2;20552:3;20493:67;:::i;:::-;20486:74;;20569:93;20658:3;20569:93;:::i;:::-;20687:2;20682:3;20678:12;20671:19;;20330:366;;;:::o;20702:419::-;20868:4;20906:2;20895:9;20891:18;20883:26;;20955:9;20949:4;20945:20;20941:1;20930:9;20926:17;20919:47;20983:131;21109:4;20983:131;:::i;:::-;20975:139;;20702:419;;;:::o;21127:225::-;21267:34;21263:1;21255:6;21251:14;21244:58;21336:8;21331:2;21323:6;21319:15;21312:33;21127:225;:::o;21358:366::-;21500:3;21521:67;21585:2;21580:3;21521:67;:::i;:::-;21514:74;;21597:93;21686:3;21597:93;:::i;:::-;21715:2;21710:3;21706:12;21699:19;;21358:366;;;:::o;21730:419::-;21896:4;21934:2;21923:9;21919:18;21911:26;;21983:9;21977:4;21973:20;21969:1;21958:9;21954:17;21947:47;22011:131;22137:4;22011:131;:::i;:::-;22003:139;;21730:419;;;:::o;22155:223::-;22295:34;22291:1;22283:6;22279:14;22272:58;22364:6;22359:2;22351:6;22347:15;22340:31;22155:223;:::o;22384:366::-;22526:3;22547:67;22611:2;22606:3;22547:67;:::i;:::-;22540:74;;22623:93;22712:3;22623:93;:::i;:::-;22741:2;22736:3;22732:12;22725:19;;22384:366;;;:::o;22756:419::-;22922:4;22960:2;22949:9;22945:18;22937:26;;23009:9;23003:4;22999:20;22995:1;22984:9;22980:17;22973:47;23037:131;23163:4;23037:131;:::i;:::-;23029:139;;22756:419;;;:::o;23181:221::-;23321:34;23317:1;23309:6;23305:14;23298:58;23390:4;23385:2;23377:6;23373:15;23366:29;23181:221;:::o;23408:366::-;23550:3;23571:67;23635:2;23630:3;23571:67;:::i;:::-;23564:74;;23647:93;23736:3;23647:93;:::i;:::-;23765:2;23760:3;23756:12;23749:19;;23408:366;;;:::o;23780:419::-;23946:4;23984:2;23973:9;23969:18;23961:26;;24033:9;24027:4;24023:20;24019:1;24008:9;24004:17;23997:47;24061:131;24187:4;24061:131;:::i;:::-;24053:139;;23780:419;;;:::o;24205:224::-;24345:34;24341:1;24333:6;24329:14;24322:58;24414:7;24409:2;24401:6;24397:15;24390:32;24205:224;:::o;24435:366::-;24577:3;24598:67;24662:2;24657:3;24598:67;:::i;:::-;24591:74;;24674:93;24763:3;24674:93;:::i;:::-;24792:2;24787:3;24783:12;24776:19;;24435:366;;;:::o;24807:419::-;24973:4;25011:2;25000:9;24996:18;24988:26;;25060:9;25054:4;25050:20;25046:1;25035:9;25031:17;25024:47;25088:131;25214:4;25088:131;:::i;:::-;25080:139;;24807:419;;;:::o;25232:222::-;25372:34;25368:1;25360:6;25356:14;25349:58;25441:5;25436:2;25428:6;25424:15;25417:30;25232:222;:::o;25460:366::-;25602:3;25623:67;25687:2;25682:3;25623:67;:::i;:::-;25616:74;;25699:93;25788:3;25699:93;:::i;:::-;25817:2;25812:3;25808:12;25801:19;;25460:366;;;:::o;25832:419::-;25998:4;26036:2;26025:9;26021:18;26013:26;;26085:9;26079:4;26075:20;26071:1;26060:9;26056:17;26049:47;26113:131;26239:4;26113:131;:::i;:::-;26105:139;;25832:419;;;:::o;26257:172::-;26397:24;26393:1;26385:6;26381:14;26374:48;26257:172;:::o;26435:366::-;26577:3;26598:67;26662:2;26657:3;26598:67;:::i;:::-;26591:74;;26674:93;26763:3;26674:93;:::i;:::-;26792:2;26787:3;26783:12;26776:19;;26435:366;;;:::o;26807:419::-;26973:4;27011:2;27000:9;26996:18;26988:26;;27060:9;27054:4;27050:20;27046:1;27035:9;27031:17;27024:47;27088:131;27214:4;27088:131;:::i;:::-;27080:139;;26807:419;;;:::o;27232:297::-;27372:34;27368:1;27360:6;27356:14;27349:58;27441:34;27436:2;27428:6;27424:15;27417:59;27510:11;27505:2;27497:6;27493:15;27486:36;27232:297;:::o;27535:366::-;27677:3;27698:67;27762:2;27757:3;27698:67;:::i;:::-;27691:74;;27774:93;27863:3;27774:93;:::i;:::-;27892:2;27887:3;27883:12;27876:19;;27535:366;;;:::o;27907:419::-;28073:4;28111:2;28100:9;28096:18;28088:26;;28160:9;28154:4;28150:20;28146:1;28135:9;28131:17;28124:47;28188:131;28314:4;28188:131;:::i;:::-;28180:139;;27907:419;;;:::o;28332:240::-;28472:34;28468:1;28460:6;28456:14;28449:58;28541:23;28536:2;28528:6;28524:15;28517:48;28332:240;:::o;28578:366::-;28720:3;28741:67;28805:2;28800:3;28741:67;:::i;:::-;28734:74;;28817:93;28906:3;28817:93;:::i;:::-;28935:2;28930:3;28926:12;28919:19;;28578:366;;;:::o;28950:419::-;29116:4;29154:2;29143:9;29139:18;29131:26;;29203:9;29197:4;29193:20;29189:1;29178:9;29174:17;29167:47;29231:131;29357:4;29231:131;:::i;:::-;29223:139;;28950:419;;;:::o;29375:169::-;29515:21;29511:1;29503:6;29499:14;29492:45;29375:169;:::o;29550:366::-;29692:3;29713:67;29777:2;29772:3;29713:67;:::i;:::-;29706:74;;29789:93;29878:3;29789:93;:::i;:::-;29907:2;29902:3;29898:12;29891:19;;29550:366;;;:::o;29922:419::-;30088:4;30126:2;30115:9;30111:18;30103:26;;30175:9;30169:4;30165:20;30161:1;30150:9;30146:17;30139:47;30203:131;30329:4;30203:131;:::i;:::-;30195:139;;29922:419;;;:::o;30347:241::-;30487:34;30483:1;30475:6;30471:14;30464:58;30556:24;30551:2;30543:6;30539:15;30532:49;30347:241;:::o;30594:366::-;30736:3;30757:67;30821:2;30816:3;30757:67;:::i;:::-;30750:74;;30833:93;30922:3;30833:93;:::i;:::-;30951:2;30946:3;30942:12;30935:19;;30594:366;;;:::o;30966:419::-;31132:4;31170:2;31159:9;31155:18;31147:26;;31219:9;31213:4;31209:20;31205:1;31194:9;31190:17;31183:47;31247:131;31373:4;31247:131;:::i;:::-;31239:139;;30966:419;;;:::o;31391:191::-;31431:4;31451:20;31469:1;31451:20;:::i;:::-;31446:25;;31485:20;31503:1;31485:20;:::i;:::-;31480:25;;31524:1;31521;31518:8;31515:34;;;31529:18;;:::i;:::-;31515:34;31574:1;31571;31567:9;31559:17;;31391:191;;;;:::o;31588:225::-;31728:34;31724:1;31716:6;31712:14;31705:58;31797:8;31792:2;31784:6;31780:15;31773:33;31588:225;:::o;31819:366::-;31961:3;31982:67;32046:2;32041:3;31982:67;:::i;:::-;31975:74;;32058:93;32147:3;32058:93;:::i;:::-;32176:2;32171:3;32167:12;32160:19;;31819:366;;;:::o;32191:419::-;32357:4;32395:2;32384:9;32380:18;32372:26;;32444:9;32438:4;32434:20;32430:1;32419:9;32415:17;32408:47;32472:131;32598:4;32472:131;:::i;:::-;32464:139;;32191:419;;;:::o;32616:147::-;32717:11;32754:3;32739:18;;32616:147;;;;:::o;32769:114::-;;:::o;32889:398::-;33048:3;33069:83;33150:1;33145:3;33069:83;:::i;:::-;33062:90;;33161:93;33250:3;33161:93;:::i;:::-;33279:1;33274:3;33270:11;33263:18;;32889:398;;;:::o;33293:379::-;33477:3;33499:147;33642:3;33499:147;:::i;:::-;33492:154;;33663:3;33656:10;;33293:379;;;:::o;33678:442::-;33827:4;33865:2;33854:9;33850:18;33842:26;;33878:71;33946:1;33935:9;33931:17;33922:6;33878:71;:::i;:::-;33959:72;34027:2;34016:9;34012:18;34003:6;33959:72;:::i;:::-;34041;34109:2;34098:9;34094:18;34085:6;34041:72;:::i;:::-;33678:442;;;;;;:::o;34126:180::-;34174:77;34171:1;34164:88;34271:4;34268:1;34261:15;34295:4;34292:1;34285:15;34312:180;34360:77;34357:1;34350:88;34457:4;34454:1;34447:15;34481:4;34478:1;34471:15;34498:143;34555:5;34586:6;34580:13;34571:22;;34602:33;34629:5;34602:33;:::i;:::-;34498:143;;;;:::o;34647:351::-;34717:6;34766:2;34754:9;34745:7;34741:23;34737:32;34734:119;;;34772:79;;:::i;:::-;34734:119;34892:1;34917:64;34973:7;34964:6;34953:9;34949:22;34917:64;:::i;:::-;34907:74;;34863:128;34647:351;;;;:::o;35004:85::-;35049:7;35078:5;35067:16;;35004:85;;;:::o;35095:158::-;35153:9;35186:61;35204:42;35213:32;35239:5;35213:32;:::i;:::-;35204:42;:::i;:::-;35186:61;:::i;:::-;35173:74;;35095:158;;;:::o;35259:147::-;35354:45;35393:5;35354:45;:::i;:::-;35349:3;35342:58;35259:147;;:::o;35412:114::-;35479:6;35513:5;35507:12;35497:22;;35412:114;;;:::o;35532:184::-;35631:11;35665:6;35660:3;35653:19;35705:4;35700:3;35696:14;35681:29;;35532:184;;;;:::o;35722:132::-;35789:4;35812:3;35804:11;;35842:4;35837:3;35833:14;35825:22;;35722:132;;;:::o;35860:108::-;35937:24;35955:5;35937:24;:::i;:::-;35932:3;35925:37;35860:108;;:::o;35974:179::-;36043:10;36064:46;36106:3;36098:6;36064:46;:::i;:::-;36142:4;36137:3;36133:14;36119:28;;35974:179;;;;:::o;36159:113::-;36229:4;36261;36256:3;36252:14;36244:22;;36159:113;;;:::o;36308:732::-;36427:3;36456:54;36504:5;36456:54;:::i;:::-;36526:86;36605:6;36600:3;36526:86;:::i;:::-;36519:93;;36636:56;36686:5;36636:56;:::i;:::-;36715:7;36746:1;36731:284;36756:6;36753:1;36750:13;36731:284;;;36832:6;36826:13;36859:63;36918:3;36903:13;36859:63;:::i;:::-;36852:70;;36945:60;36998:6;36945:60;:::i;:::-;36935:70;;36791:224;36778:1;36775;36771:9;36766:14;;36731:284;;;36735:14;37031:3;37024:10;;36432:608;;;36308:732;;;;:::o;37046:831::-;37309:4;37347:3;37336:9;37332:19;37324:27;;37361:71;37429:1;37418:9;37414:17;37405:6;37361:71;:::i;:::-;37442:80;37518:2;37507:9;37503:18;37494:6;37442:80;:::i;:::-;37569:9;37563:4;37559:20;37554:2;37543:9;37539:18;37532:48;37597:108;37700:4;37691:6;37597:108;:::i;:::-;37589:116;;37715:72;37783:2;37772:9;37768:18;37759:6;37715:72;:::i;:::-;37797:73;37865:3;37854:9;37850:19;37841:6;37797:73;:::i;:::-;37046:831;;;;;;;;:::o;37883:807::-;38132:4;38170:3;38159:9;38155:19;38147:27;;38184:71;38252:1;38241:9;38237:17;38228:6;38184:71;:::i;:::-;38265:72;38333:2;38322:9;38318:18;38309:6;38265:72;:::i;:::-;38347:80;38423:2;38412:9;38408:18;38399:6;38347:80;:::i;:::-;38437;38513:2;38502:9;38498:18;38489:6;38437:80;:::i;:::-;38527:73;38595:3;38584:9;38580:19;38571:6;38527:73;:::i;:::-;38610;38678:3;38667:9;38663:19;38654:6;38610:73;:::i;:::-;37883:807;;;;;;;;;:::o;38696:143::-;38753:5;38784:6;38778:13;38769:22;;38800:33;38827:5;38800:33;:::i;:::-;38696:143;;;;:::o;38845:663::-;38933:6;38941;38949;38998:2;38986:9;38977:7;38973:23;38969:32;38966:119;;;39004:79;;:::i;:::-;38966:119;39124:1;39149:64;39205:7;39196:6;39185:9;39181:22;39149:64;:::i;:::-;39139:74;;39095:128;39262:2;39288:64;39344:7;39335:6;39324:9;39320:22;39288:64;:::i;:::-;39278:74;;39233:129;39401:2;39427:64;39483:7;39474:6;39463:9;39459:22;39427:64;:::i;:::-;39417:74;;39372:129;38845:663;;;;;:::o

Swarm Source

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