ETH Price: $2,632.03 (+0.12%)
Gas: 2 Gwei

Token

AuraMind (AURA)
 

Overview

Max Total Supply

10,000,000 AURA

Holders

68

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
74,467.02134852495411292 AURA

Value
$0.00
0xb199ea67d5352674bb3a432b5e669b8cae21ffc8
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:
AURA

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: AURA.sol


/* 
   AuraMind: Where intelligence meets blockchain

   AuraMind is a revolutionary blockchain platform that utilizes advanced machine learning 
   and AI technologies to reach consensus in a more efficient and secure way. It uses a consensus 
   protocol called Proof of Mind, which selects the best nodes in the network based on their thermodynamic 
   properties, specifically entropy and enthalpy. 



    Website    https://auramind.tech/                             
    Telegram   https://t.me/AuraMind
    Medium     https://medium.com/@auramindchain 
    Twitter    https://twitter.com/AuraMindChain  
*/


pragma solidity =0.8.17 >=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.17; */

/**
 * @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.17; */

/* 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.17; */

/**
 * @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.17; */

/* 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.17; */

/* 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.17; */

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

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.17; */
/* 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;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.17; */
/* 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;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.17; */
/* 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;
}

contract AURA 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 marketingWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

    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 buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

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

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

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

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

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

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

        uint256 _buyMarketingFee = 3;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 2;

        uint256 _sellMarketingFee = 3;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 2;

        uint256 totalSupply = 10_000_000 * 1e18;

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

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

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

        marketingWallet = address(0x781a048033bb1cFddD1302ed2Dee1F59e75EE6bF); // set as marketing wallet
        devWallet = address(0x001296b7Ed2D6CB22b58dE9c24196940A84925d4); // 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;
        lastLpBurnTime = block.timestamp;
    }

    // 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 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 6, "Must keep fees at 6% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 6, "Must keep fees at 6% or less");
    }

    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 updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

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

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

    event BoughtEarly(address indexed sniper);

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

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

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

        if (contractBalance > 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 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","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":"_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"}]

60c06040526019600b556000600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600881526020017f417572614d696e640000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4155524100000000000000000000000000000000000000000000000000000000815250816003908162000127919062000d7c565b50806004908162000139919062000d7c565b5050506200015c62000150620005c360201b60201c565b620005cb60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001888160016200069160201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e919062000ecd565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000296573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc919062000ecd565b6040518363ffffffff1660e01b8152600401620002db92919062000f10565b6020604051808303816000875af1158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000ecd565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036960a05160016200069160201b60201c565b6200037e60a05160016200077b60201b60201c565b600060039050600080600290506000600390506000806002905060006a084595161401484a0000009050692a5a058fc295ed000000600881905550692a5a058fc295ed000000600a81905550612710600a82620003dc919062000f6c565b620003e8919062000fe6565b6009819055508660158190555085601681905550846017819055506017546016546015546200041891906200101e565b6200042491906200101e565b6014819055508360198190555082601a8190555081601b81905550601b54601a546019546200045491906200101e565b6200046091906200101e565b60188190555073781a048033bb1cfddd1302ed2dee1f59e75ee6bf600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550721296b7ed2d6cb22b58de9c24196940a84925d4600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000531620005236200081c60201b60201c565b60016200084660201b60201c565b620005443060016200084660201b60201c565b6200055961dead60016200084660201b60201c565b6200057b6200056d6200081c60201b60201c565b60016200069160201b60201c565b6200058e3060016200069160201b60201c565b620005a361dead60016200069160201b60201c565b620005b533826200098060201b60201c565b5050505050505050620011b6565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006a1620005c360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006c76200081c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000720576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071790620010ba565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000856620005c360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200087c6200081c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008d5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008cc90620010ba565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009749190620010f9565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009e99062001166565b60405180910390fd5b62000a066000838362000af860201b60201c565b806002600082825462000a1a91906200101e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a7191906200101e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ad8919062001199565b60405180910390a362000af46000838362000afd60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b8457607f821691505b60208210810362000b9a5762000b9962000b3c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bc5565b62000c10868362000bc5565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c5d62000c5762000c518462000c28565b62000c32565b62000c28565b9050919050565b6000819050919050565b62000c798362000c3c565b62000c9162000c888262000c64565b84845462000bd2565b825550505050565b600090565b62000ca862000c99565b62000cb581848462000c6e565b505050565b5b8181101562000cdd5762000cd160008262000c9e565b60018101905062000cbb565b5050565b601f82111562000d2c5762000cf68162000ba0565b62000d018462000bb5565b8101602085101562000d11578190505b62000d2962000d208562000bb5565b83018262000cba565b50505b505050565b600082821c905092915050565b600062000d516000198460080262000d31565b1980831691505092915050565b600062000d6c838362000d3e565b9150826002028217905092915050565b62000d878262000b02565b67ffffffffffffffff81111562000da35762000da262000b0d565b5b62000daf825462000b6b565b62000dbc82828562000ce1565b600060209050601f83116001811462000df4576000841562000ddf578287015190505b62000deb858262000d5e565b86555062000e5b565b601f19841662000e048662000ba0565b60005b8281101562000e2e5784890151825560018201915060208501945060208101905062000e07565b8683101562000e4e578489015162000e4a601f89168262000d3e565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e958262000e68565b9050919050565b62000ea78162000e88565b811462000eb357600080fd5b50565b60008151905062000ec78162000e9c565b92915050565b60006020828403121562000ee65762000ee562000e63565b5b600062000ef68482850162000eb6565b91505092915050565b62000f0a8162000e88565b82525050565b600060408201905062000f27600083018562000eff565b62000f36602083018462000eff565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f798262000c28565b915062000f868362000c28565b925082820262000f968162000c28565b9150828204841483151762000fb05762000faf62000f3d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000ff38262000c28565b9150620010008362000c28565b92508262001013576200101262000fb7565b5b828204905092915050565b60006200102b8262000c28565b9150620010388362000c28565b925082820190508082111562001053576200105262000f3d565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010a260208362001059565b9150620010af826200106a565b602082019050919050565b60006020820190508181036000830152620010d58162001093565b9050919050565b60008115159050919050565b620010f381620010dc565b82525050565b6000602082019050620011106000830184620010e8565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200114e601f8362001059565b91506200115b8262001116565b602082019050919050565b6000602082019050818103600083015262001181816200113f565b9050919050565b620011938162000c28565b82525050565b6000602082019050620011b0600083018462001188565b92915050565b60805160a051615275620012146000396000818161137101528181611a4101526129d4015260008181610f140152818161297c01528181613b5e01528181613c3f01528181613c6601528181613d020152613d2901526152756000f3fe60806040526004361061039b5760003560e01c80638da5cb5b116101dc578063bbc0c74211610102578063d85ba063116100a0578063f11a24d31161006f578063f11a24d314610d99578063f2fde38b14610dc4578063f637434214610ded578063f8b45b0514610e18576103a2565b8063d85ba06314610cdb578063dd62ed3e14610d06578063e2f4560514610d43578063e884f26014610d6e576103a2565b8063c18bc195116100dc578063c18bc19514610c1f578063c876d0b914610c48578063c8c8ebe414610c73578063d257b34f14610c9e576103a2565b8063bbc0c74214610ba2578063c024666814610bcd578063c17b5b8c14610bf6576103a2565b80639ec22c0e1161017a578063a4c82a0011610149578063a4c82a0014610ad4578063a9059cbb14610aff578063aacebbe314610b3c578063b62496f514610b65576103a2565b80639ec22c0e14610a165780639fccce3214610a41578063a0d82dc514610a6c578063a457c2d714610a97576103a2565b8063924de9b7116101b6578063924de9b71461096e57806395d89b41146109975780639a7a23d6146109c25780639c3b4fdc146109eb576103a2565b80638da5cb5b146108ed5780638ea5220f146109185780639213691314610943576103a2565b8063313ce567116102c157806370a082311161025f57806375f0a8741161022e57806375f0a874146108575780637bce5a04146108825780638095d564146108ad5780638a8c523c146108d6576103a2565b806370a08231146107af578063715018a6146107ec578063751039fc146108035780637571336a1461082e576103a2565b80634a62bb651161029b5780634a62bb65146106f15780634fbee1931461071c5780636a486a8e146107595780636ddd171314610784576103a2565b8063313ce5671461065e578063395093511461068957806349bd5a5e146106c6576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146105a057806327c8f835146105dd5780632c3e486c146106085780632e82f1a014610633576103a2565b8063199ffc72146104f65780631a8145bb146105215780631f3fed8f1461054c578063203e727e14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e43565b6040516103c99190613e68565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190613f23565b610ed5565b6040516104069190613f7e565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190613f99565b610ef3565b6040516104439190613f7e565b60405180910390f35b34801561045857600080fd5b50610461610f12565b60405161046e9190614025565b60405180910390f35b34801561048357600080fd5b5061048c610f36565b604051610499919061404f565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190613f99565b610f40565b005b3480156104d757600080fd5b506104e061107c565b6040516104ed919061404f565b60405180910390f35b34801561050257600080fd5b5061050b611082565b604051610518919061404f565b60405180910390f35b34801561052d57600080fd5b50610536611088565b604051610543919061404f565b60405180910390f35b34801561055857600080fd5b5061056161108e565b60405161056e919061404f565b60405180910390f35b34801561058357600080fd5b5061059e6004803603810190610599919061406a565b611094565b005b3480156105ac57600080fd5b506105c760048036038101906105c29190614097565b6111a3565b6040516105d49190613f7e565b60405180910390f35b3480156105e957600080fd5b506105f261129b565b6040516105ff91906140f9565b60405180910390f35b34801561061457600080fd5b5061061d6112a1565b60405161062a919061404f565b60405180910390f35b34801561063f57600080fd5b506106486112a7565b6040516106559190613f7e565b60405180910390f35b34801561066a57600080fd5b506106736112ba565b6040516106809190614130565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190613f23565b6112c3565b6040516106bd9190613f7e565b60405180910390f35b3480156106d257600080fd5b506106db61136f565b6040516106e891906140f9565b60405180910390f35b3480156106fd57600080fd5b50610706611393565b6040516107139190613f7e565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190613f99565b6113a6565b6040516107509190613f7e565b60405180910390f35b34801561076557600080fd5b5061076e6113fc565b60405161077b919061404f565b60405180910390f35b34801561079057600080fd5b50610799611402565b6040516107a69190613f7e565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d19190613f99565b611415565b6040516107e3919061404f565b60405180910390f35b3480156107f857600080fd5b5061080161145d565b005b34801561080f57600080fd5b506108186114e5565b6040516108259190613f7e565b60405180910390f35b34801561083a57600080fd5b5061085560048036038101906108509190614177565b611585565b005b34801561086357600080fd5b5061086c61165c565b60405161087991906140f9565b60405180910390f35b34801561088e57600080fd5b50610897611682565b6040516108a4919061404f565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf91906141b7565b611688565b005b3480156108e257600080fd5b506108eb611787565b005b3480156108f957600080fd5b50610902611842565b60405161090f91906140f9565b60405180910390f35b34801561092457600080fd5b5061092d61186c565b60405161093a91906140f9565b60405180910390f35b34801561094f57600080fd5b50610958611892565b604051610965919061404f565b60405180910390f35b34801561097a57600080fd5b506109956004803603810190610990919061420a565b611898565b005b3480156109a357600080fd5b506109ac611931565b6040516109b99190613e68565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e49190614177565b6119c3565b005b3480156109f757600080fd5b50610a00611adb565b604051610a0d919061404f565b60405180910390f35b348015610a2257600080fd5b50610a2b611ae1565b604051610a38919061404f565b60405180910390f35b348015610a4d57600080fd5b50610a56611ae7565b604051610a63919061404f565b60405180910390f35b348015610a7857600080fd5b50610a81611aed565b604051610a8e919061404f565b60405180910390f35b348015610aa357600080fd5b50610abe6004803603810190610ab99190613f23565b611af3565b604051610acb9190613f7e565b60405180910390f35b348015610ae057600080fd5b50610ae9611bde565b604051610af6919061404f565b60405180910390f35b348015610b0b57600080fd5b50610b266004803603810190610b219190613f23565b611be4565b604051610b339190613f7e565b60405180910390f35b348015610b4857600080fd5b50610b636004803603810190610b5e9190613f99565b611c02565b005b348015610b7157600080fd5b50610b8c6004803603810190610b879190613f99565b611d3e565b604051610b999190613f7e565b60405180910390f35b348015610bae57600080fd5b50610bb7611d5e565b604051610bc49190613f7e565b60405180910390f35b348015610bd957600080fd5b50610bf46004803603810190610bef9190614177565b611d71565b005b348015610c0257600080fd5b50610c1d6004803603810190610c1891906141b7565b611e96565b005b348015610c2b57600080fd5b50610c466004803603810190610c41919061406a565b611f95565b005b348015610c5457600080fd5b50610c5d6120a4565b604051610c6a9190613f7e565b60405180910390f35b348015610c7f57600080fd5b50610c886120b7565b604051610c95919061404f565b60405180910390f35b348015610caa57600080fd5b50610cc56004803603810190610cc0919061406a565b6120bd565b604051610cd29190613f7e565b60405180910390f35b348015610ce757600080fd5b50610cf0612212565b604051610cfd919061404f565b60405180910390f35b348015610d1257600080fd5b50610d2d6004803603810190610d289190614237565b612218565b604051610d3a919061404f565b60405180910390f35b348015610d4f57600080fd5b50610d5861229f565b604051610d65919061404f565b60405180910390f35b348015610d7a57600080fd5b50610d836122a5565b604051610d909190613f7e565b60405180910390f35b348015610da557600080fd5b50610dae612345565b604051610dbb919061404f565b60405180910390f35b348015610dd057600080fd5b50610deb6004803603810190610de69190613f99565b61234b565b005b348015610df957600080fd5b50610e02612442565b604051610e0f919061404f565b60405180910390f35b348015610e2457600080fd5b50610e2d612448565b604051610e3a919061404f565b60405180910390f35b606060038054610e52906142a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7e906142a6565b8015610ecb5780601f10610ea057610100808354040283529160200191610ecb565b820191906000526020600020905b815481529060010190602001808311610eae57829003601f168201915b5050505050905090565b6000610ee9610ee261244e565b8484612456565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610f4861244e565b73ffffffffffffffffffffffffffffffffffffffff16610f66611842565b73ffffffffffffffffffffffffffffffffffffffff1614610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb390614323565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61109c61244e565b73ffffffffffffffffffffffffffffffffffffffff166110ba611842565b73ffffffffffffffffffffffffffffffffffffffff1614611110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110790614323565b60405180910390fd5b670de0b6b3a76400006103e86001611126610f36565b6111309190614372565b61113a91906143e3565b61114491906143e3565b811015611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90614486565b60405180910390fd5b670de0b6b3a76400008161119a9190614372565b60088190555050565b60006111b084848461261f565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111fb61244e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127290614518565b60405180910390fd5b61128f8561128761244e565b858403612456565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113656112d061244e565b8484600160006112de61244e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113609190614538565b612456565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61146561244e565b73ffffffffffffffffffffffffffffffffffffffff16611483611842565b73ffffffffffffffffffffffffffffffffffffffff16146114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d090614323565b60405180910390fd5b6114e360006133a6565b565b60006114ef61244e565b73ffffffffffffffffffffffffffffffffffffffff1661150d611842565b73ffffffffffffffffffffffffffffffffffffffff1614611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a90614323565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61158d61244e565b73ffffffffffffffffffffffffffffffffffffffff166115ab611842565b73ffffffffffffffffffffffffffffffffffffffff1614611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f890614323565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61169061244e565b73ffffffffffffffffffffffffffffffffffffffff166116ae611842565b73ffffffffffffffffffffffffffffffffffffffff1614611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90614323565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461172c9190614538565b6117369190614538565b60148190555060066014541115611782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611779906145b8565b60405180910390fd5b505050565b61178f61244e565b73ffffffffffffffffffffffffffffffffffffffff166117ad611842565b73ffffffffffffffffffffffffffffffffffffffff1614611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa90614323565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6118a061244e565b73ffffffffffffffffffffffffffffffffffffffff166118be611842565b73ffffffffffffffffffffffffffffffffffffffff1614611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b90614323565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611940906142a6565b80601f016020809104026020016040519081016040528092919081815260200182805461196c906142a6565b80156119b95780601f1061198e576101008083540402835291602001916119b9565b820191906000526020600020905b81548152906001019060200180831161199c57829003601f168201915b5050505050905090565b6119cb61244e565b73ffffffffffffffffffffffffffffffffffffffff166119e9611842565b73ffffffffffffffffffffffffffffffffffffffff1614611a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3690614323565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac49061464a565b60405180910390fd5b611ad7828261346c565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611b0261244e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb6906146dc565b60405180910390fd5b611bd3611bca61244e565b85858403612456565b600191505092915050565b600e5481565b6000611bf8611bf161244e565b848461261f565b6001905092915050565b611c0a61244e565b73ffffffffffffffffffffffffffffffffffffffff16611c28611842565b73ffffffffffffffffffffffffffffffffffffffff1614611c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7590614323565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611d7961244e565b73ffffffffffffffffffffffffffffffffffffffff16611d97611842565b73ffffffffffffffffffffffffffffffffffffffff1614611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de490614323565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611e8a9190613f7e565b60405180910390a25050565b611e9e61244e565b73ffffffffffffffffffffffffffffffffffffffff16611ebc611842565b73ffffffffffffffffffffffffffffffffffffffff1614611f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0990614323565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611f3a9190614538565b611f449190614538565b60188190555060066018541115611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f87906145b8565b60405180910390fd5b505050565b611f9d61244e565b73ffffffffffffffffffffffffffffffffffffffff16611fbb611842565b73ffffffffffffffffffffffffffffffffffffffff1614612011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200890614323565b60405180910390fd5b670de0b6b3a76400006103e86005612027610f36565b6120319190614372565b61203b91906143e3565b61204591906143e3565b811015612087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207e9061476e565b60405180910390fd5b670de0b6b3a76400008161209b9190614372565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006120c761244e565b73ffffffffffffffffffffffffffffffffffffffff166120e5611842565b73ffffffffffffffffffffffffffffffffffffffff161461213b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213290614323565b60405180910390fd5b620186a06001612149610f36565b6121539190614372565b61215d91906143e3565b82101561219f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219690614800565b60405180910390fd5b6103e860056121ac610f36565b6121b69190614372565b6121c091906143e3565b821115612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990614892565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006122af61244e565b73ffffffffffffffffffffffffffffffffffffffff166122cd611842565b73ffffffffffffffffffffffffffffffffffffffff1614612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a90614323565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61235361244e565b73ffffffffffffffffffffffffffffffffffffffff16612371611842565b73ffffffffffffffffffffffffffffffffffffffff16146123c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123be90614323565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242d90614924565b60405180910390fd5b61243f816133a6565b50565b601a5481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bc906149b6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252b90614a48565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612612919061404f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361268e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268590614ada565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f490614b6c565b60405180910390fd5b60008103612716576127118383600061350d565b6133a1565b601160009054906101000a900460ff1615612dd957612733611842565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127a15750612771611842565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127da5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612814575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561282d5750600560149054906101000a900460ff16155b15612dd857601160019054906101000a900460ff1661292757601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128e75750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291d90614bd8565b60405180910390fd5b5b601360009054906101000a900460ff1615612aef57612944611842565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129cb57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a2357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612aee5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa090614c90565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b925750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3957600854811115612bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd390614d22565b60405180910390fd5b600a54612be883611415565b82612bf39190614538565b1115612c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2b90614d8e565b60405180910390fd5b612dd7565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cdc5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d2b57600854811115612d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1d90614e20565b60405180910390fd5b612dd6565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612dd557600a54612d8883611415565b82612d939190614538565b1115612dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcb90614d8e565b60405180910390fd5b5b5b5b5b5b6000612de430611415565b905060006009548210159050808015612e095750601160029054906101000a900460ff165b8015612e225750600560149054906101000a900460ff16155b8015612e785750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ece5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f245750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f68576001600560146101000a81548160ff021916908315150217905550612f4c61378c565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612fce5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612fe65750600c60009054906101000a900460ff165b80156130015750600d54600e54612ffd9190614538565b4210155b80156130575750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b506000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061310e5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561311857600090505b6000811561339157602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561317b57506000601854115b15613248576131a8606461319a60185488613a7390919063ffffffff16565b613a8990919063ffffffff16565b9050601854601a54826131bb9190614372565b6131c591906143e3565b601d60008282546131d69190614538565b92505081905550601854601b54826131ee9190614372565b6131f891906143e3565b601e60008282546132099190614538565b92505081905550601854601954826132219190614372565b61322b91906143e3565b601c600082825461323c9190614538565b9250508190555061336d565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132a357506000601454115b1561336c576132d060646132c260145488613a7390919063ffffffff16565b613a8990919063ffffffff16565b9050601454601654826132e39190614372565b6132ed91906143e3565b601d60008282546132fe9190614538565b92505081905550601454601754826133169190614372565b61332091906143e3565b601e60008282546133319190614538565b92505081905550601454601554826133499190614372565b61335391906143e3565b601c60008282546133649190614538565b925050819055505b5b60008111156133825761338187308361350d565b5b808561338e9190614e40565b94505b61339c87878761350d565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361357c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357390614ada565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036135eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e290614b6c565b60405180910390fd5b6135f6838383613a9f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561367c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367390614ee6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461370f9190614538565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613773919061404f565b60405180910390a3613786848484613aa4565b50505050565b600061379730611415565b90506000601e54601c54601d546137ae9190614538565b6137b89190614538565b90506000808314806137ca5750600082145b156137d757505050613a71565b60146009546137e69190614372565b8311156137ff5760146009546137fc9190614372565b92505b6000600283601d54866138129190614372565b61381c91906143e3565b61382691906143e3565b9050600061383d8286613aa990919063ffffffff16565b9050600047905061384d82613abf565b60006138628247613aa990919063ffffffff16565b9050600061388d8761387f601c5485613a7390919063ffffffff16565b613a8990919063ffffffff16565b905060006138b8886138aa601e5486613a7390919063ffffffff16565b613a8990919063ffffffff16565b905060008183856138c99190614e40565b6138d39190614e40565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161393390614f37565b60006040518083038185875af1925050503d8060008114613970576040519150601f19603f3d011682016040523d82523d6000602084013e613975565b606091505b50508098505060008711801561398b5750600081115b156139d85761399a8782613cfc565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d546040516139cf93929190614f4c565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a1e90614f37565b60006040518083038185875af1925050503d8060008114613a5b576040519150601f19603f3d011682016040523d82523d6000602084013e613a60565b606091505b505080985050505050505050505050505b565b60008183613a819190614372565b905092915050565b60008183613a9791906143e3565b905092915050565b505050565b505050565b60008183613ab79190614e40565b905092915050565b6000600267ffffffffffffffff811115613adc57613adb614f83565b5b604051908082528060200260200182016040528015613b0a5781602001602082028036833780820191505090505b5090503081600081518110613b2257613b21614fb2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613bc7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613beb9190614ff6565b81600181518110613bff57613bfe614fb2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c64307f000000000000000000000000000000000000000000000000000000000000000084612456565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613cc695949392919061511c565b600060405180830381600087803b158015613ce057600080fd5b505af1158015613cf4573d6000803e3d6000fd5b505050505050565b613d27307f000000000000000000000000000000000000000000000000000000000000000084612456565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613d8e96959493929190615176565b60606040518083038185885af1158015613dac573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613dd191906151ec565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e12578082015181840152602081019050613df7565b60008484015250505050565b6000601f19601f8301169050919050565b6000613e3a82613dd8565b613e448185613de3565b9350613e54818560208601613df4565b613e5d81613e1e565b840191505092915050565b60006020820190508181036000830152613e828184613e2f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613eba82613e8f565b9050919050565b613eca81613eaf565b8114613ed557600080fd5b50565b600081359050613ee781613ec1565b92915050565b6000819050919050565b613f0081613eed565b8114613f0b57600080fd5b50565b600081359050613f1d81613ef7565b92915050565b60008060408385031215613f3a57613f39613e8a565b5b6000613f4885828601613ed8565b9250506020613f5985828601613f0e565b9150509250929050565b60008115159050919050565b613f7881613f63565b82525050565b6000602082019050613f936000830184613f6f565b92915050565b600060208284031215613faf57613fae613e8a565b5b6000613fbd84828501613ed8565b91505092915050565b6000819050919050565b6000613feb613fe6613fe184613e8f565b613fc6565b613e8f565b9050919050565b6000613ffd82613fd0565b9050919050565b600061400f82613ff2565b9050919050565b61401f81614004565b82525050565b600060208201905061403a6000830184614016565b92915050565b61404981613eed565b82525050565b60006020820190506140646000830184614040565b92915050565b6000602082840312156140805761407f613e8a565b5b600061408e84828501613f0e565b91505092915050565b6000806000606084860312156140b0576140af613e8a565b5b60006140be86828701613ed8565b93505060206140cf86828701613ed8565b92505060406140e086828701613f0e565b9150509250925092565b6140f381613eaf565b82525050565b600060208201905061410e60008301846140ea565b92915050565b600060ff82169050919050565b61412a81614114565b82525050565b60006020820190506141456000830184614121565b92915050565b61415481613f63565b811461415f57600080fd5b50565b6000813590506141718161414b565b92915050565b6000806040838503121561418e5761418d613e8a565b5b600061419c85828601613ed8565b92505060206141ad85828601614162565b9150509250929050565b6000806000606084860312156141d0576141cf613e8a565b5b60006141de86828701613f0e565b93505060206141ef86828701613f0e565b925050604061420086828701613f0e565b9150509250925092565b6000602082840312156142205761421f613e8a565b5b600061422e84828501614162565b91505092915050565b6000806040838503121561424e5761424d613e8a565b5b600061425c85828601613ed8565b925050602061426d85828601613ed8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142be57607f821691505b6020821081036142d1576142d0614277565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061430d602083613de3565b9150614318826142d7565b602082019050919050565b6000602082019050818103600083015261433c81614300565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061437d82613eed565b915061438883613eed565b925082820261439681613eed565b915082820484148315176143ad576143ac614343565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143ee82613eed565b91506143f983613eed565b925082614409576144086143b4565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614470602f83613de3565b915061447b82614414565b604082019050919050565b6000602082019050818103600083015261449f81614463565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614502602883613de3565b915061450d826144a6565b604082019050919050565b60006020820190508181036000830152614531816144f5565b9050919050565b600061454382613eed565b915061454e83613eed565b925082820190508082111561456657614565614343565b5b92915050565b7f4d757374206b6565702066656573206174203625206f72206c65737300000000600082015250565b60006145a2601c83613de3565b91506145ad8261456c565b602082019050919050565b600060208201905081810360008301526145d181614595565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614634603983613de3565b915061463f826145d8565b604082019050919050565b6000602082019050818103600083015261466381614627565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006146c6602583613de3565b91506146d18261466a565b604082019050919050565b600060208201905081810360008301526146f5816146b9565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614758602483613de3565b9150614763826146fc565b604082019050919050565b600060208201905081810360008301526147878161474b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006147ea603583613de3565b91506147f58261478e565b604082019050919050565b60006020820190508181036000830152614819816147dd565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061487c603483613de3565b915061488782614820565b604082019050919050565b600060208201905081810360008301526148ab8161486f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061490e602683613de3565b9150614919826148b2565b604082019050919050565b6000602082019050818103600083015261493d81614901565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006149a0602483613de3565b91506149ab82614944565b604082019050919050565b600060208201905081810360008301526149cf81614993565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a32602283613de3565b9150614a3d826149d6565b604082019050919050565b60006020820190508181036000830152614a6181614a25565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614ac4602583613de3565b9150614acf82614a68565b604082019050919050565b60006020820190508181036000830152614af381614ab7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b56602383613de3565b9150614b6182614afa565b604082019050919050565b60006020820190508181036000830152614b8581614b49565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614bc2601683613de3565b9150614bcd82614b8c565b602082019050919050565b60006020820190508181036000830152614bf181614bb5565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614c7a604983613de3565b9150614c8582614bf8565b606082019050919050565b60006020820190508181036000830152614ca981614c6d565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614d0c603583613de3565b9150614d1782614cb0565b604082019050919050565b60006020820190508181036000830152614d3b81614cff565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614d78601383613de3565b9150614d8382614d42565b602082019050919050565b60006020820190508181036000830152614da781614d6b565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614e0a603683613de3565b9150614e1582614dae565b604082019050919050565b60006020820190508181036000830152614e3981614dfd565b9050919050565b6000614e4b82613eed565b9150614e5683613eed565b9250828203905081811115614e6e57614e6d614343565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614ed0602683613de3565b9150614edb82614e74565b604082019050919050565b60006020820190508181036000830152614eff81614ec3565b9050919050565b600081905092915050565b50565b6000614f21600083614f06565b9150614f2c82614f11565b600082019050919050565b6000614f4282614f14565b9150819050919050565b6000606082019050614f616000830186614040565b614f6e6020830185614040565b614f7b6040830184614040565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614ff081613ec1565b92915050565b60006020828403121561500c5761500b613e8a565b5b600061501a84828501614fe1565b91505092915050565b6000819050919050565b600061504861504361503e84615023565b613fc6565b613eed565b9050919050565b6150588161502d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61509381613eaf565b82525050565b60006150a5838361508a565b60208301905092915050565b6000602082019050919050565b60006150c98261505e565b6150d38185615069565b93506150de8361507a565b8060005b8381101561510f5781516150f68882615099565b9750615101836150b1565b9250506001810190506150e2565b5085935050505092915050565b600060a0820190506151316000830188614040565b61513e602083018761504f565b818103604083015261515081866150be565b905061515f60608301856140ea565b61516c6080830184614040565b9695505050505050565b600060c08201905061518b60008301896140ea565b6151986020830188614040565b6151a5604083018761504f565b6151b2606083018661504f565b6151bf60808301856140ea565b6151cc60a0830184614040565b979650505050505050565b6000815190506151e681613ef7565b92915050565b60008060006060848603121561520557615204613e8a565b5b6000615213868287016151d7565b9350506020615224868287016151d7565b9250506040615235868287016151d7565b915050925092509256fea264697066735822122044108c584603fbb53368fad7e1e0a0afdac124a7df627717bca8452e2b92535d64736f6c63430008110033

Deployed Bytecode

0x60806040526004361061039b5760003560e01c80638da5cb5b116101dc578063bbc0c74211610102578063d85ba063116100a0578063f11a24d31161006f578063f11a24d314610d99578063f2fde38b14610dc4578063f637434214610ded578063f8b45b0514610e18576103a2565b8063d85ba06314610cdb578063dd62ed3e14610d06578063e2f4560514610d43578063e884f26014610d6e576103a2565b8063c18bc195116100dc578063c18bc19514610c1f578063c876d0b914610c48578063c8c8ebe414610c73578063d257b34f14610c9e576103a2565b8063bbc0c74214610ba2578063c024666814610bcd578063c17b5b8c14610bf6576103a2565b80639ec22c0e1161017a578063a4c82a0011610149578063a4c82a0014610ad4578063a9059cbb14610aff578063aacebbe314610b3c578063b62496f514610b65576103a2565b80639ec22c0e14610a165780639fccce3214610a41578063a0d82dc514610a6c578063a457c2d714610a97576103a2565b8063924de9b7116101b6578063924de9b71461096e57806395d89b41146109975780639a7a23d6146109c25780639c3b4fdc146109eb576103a2565b80638da5cb5b146108ed5780638ea5220f146109185780639213691314610943576103a2565b8063313ce567116102c157806370a082311161025f57806375f0a8741161022e57806375f0a874146108575780637bce5a04146108825780638095d564146108ad5780638a8c523c146108d6576103a2565b806370a08231146107af578063715018a6146107ec578063751039fc146108035780637571336a1461082e576103a2565b80634a62bb651161029b5780634a62bb65146106f15780634fbee1931461071c5780636a486a8e146107595780636ddd171314610784576103a2565b8063313ce5671461065e578063395093511461068957806349bd5a5e146106c6576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146105a057806327c8f835146105dd5780632c3e486c146106085780632e82f1a014610633576103a2565b8063199ffc72146104f65780631a8145bb146105215780631f3fed8f1461054c578063203e727e14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e43565b6040516103c99190613e68565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190613f23565b610ed5565b6040516104069190613f7e565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190613f99565b610ef3565b6040516104439190613f7e565b60405180910390f35b34801561045857600080fd5b50610461610f12565b60405161046e9190614025565b60405180910390f35b34801561048357600080fd5b5061048c610f36565b604051610499919061404f565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190613f99565b610f40565b005b3480156104d757600080fd5b506104e061107c565b6040516104ed919061404f565b60405180910390f35b34801561050257600080fd5b5061050b611082565b604051610518919061404f565b60405180910390f35b34801561052d57600080fd5b50610536611088565b604051610543919061404f565b60405180910390f35b34801561055857600080fd5b5061056161108e565b60405161056e919061404f565b60405180910390f35b34801561058357600080fd5b5061059e6004803603810190610599919061406a565b611094565b005b3480156105ac57600080fd5b506105c760048036038101906105c29190614097565b6111a3565b6040516105d49190613f7e565b60405180910390f35b3480156105e957600080fd5b506105f261129b565b6040516105ff91906140f9565b60405180910390f35b34801561061457600080fd5b5061061d6112a1565b60405161062a919061404f565b60405180910390f35b34801561063f57600080fd5b506106486112a7565b6040516106559190613f7e565b60405180910390f35b34801561066a57600080fd5b506106736112ba565b6040516106809190614130565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190613f23565b6112c3565b6040516106bd9190613f7e565b60405180910390f35b3480156106d257600080fd5b506106db61136f565b6040516106e891906140f9565b60405180910390f35b3480156106fd57600080fd5b50610706611393565b6040516107139190613f7e565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190613f99565b6113a6565b6040516107509190613f7e565b60405180910390f35b34801561076557600080fd5b5061076e6113fc565b60405161077b919061404f565b60405180910390f35b34801561079057600080fd5b50610799611402565b6040516107a69190613f7e565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d19190613f99565b611415565b6040516107e3919061404f565b60405180910390f35b3480156107f857600080fd5b5061080161145d565b005b34801561080f57600080fd5b506108186114e5565b6040516108259190613f7e565b60405180910390f35b34801561083a57600080fd5b5061085560048036038101906108509190614177565b611585565b005b34801561086357600080fd5b5061086c61165c565b60405161087991906140f9565b60405180910390f35b34801561088e57600080fd5b50610897611682565b6040516108a4919061404f565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf91906141b7565b611688565b005b3480156108e257600080fd5b506108eb611787565b005b3480156108f957600080fd5b50610902611842565b60405161090f91906140f9565b60405180910390f35b34801561092457600080fd5b5061092d61186c565b60405161093a91906140f9565b60405180910390f35b34801561094f57600080fd5b50610958611892565b604051610965919061404f565b60405180910390f35b34801561097a57600080fd5b506109956004803603810190610990919061420a565b611898565b005b3480156109a357600080fd5b506109ac611931565b6040516109b99190613e68565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e49190614177565b6119c3565b005b3480156109f757600080fd5b50610a00611adb565b604051610a0d919061404f565b60405180910390f35b348015610a2257600080fd5b50610a2b611ae1565b604051610a38919061404f565b60405180910390f35b348015610a4d57600080fd5b50610a56611ae7565b604051610a63919061404f565b60405180910390f35b348015610a7857600080fd5b50610a81611aed565b604051610a8e919061404f565b60405180910390f35b348015610aa357600080fd5b50610abe6004803603810190610ab99190613f23565b611af3565b604051610acb9190613f7e565b60405180910390f35b348015610ae057600080fd5b50610ae9611bde565b604051610af6919061404f565b60405180910390f35b348015610b0b57600080fd5b50610b266004803603810190610b219190613f23565b611be4565b604051610b339190613f7e565b60405180910390f35b348015610b4857600080fd5b50610b636004803603810190610b5e9190613f99565b611c02565b005b348015610b7157600080fd5b50610b8c6004803603810190610b879190613f99565b611d3e565b604051610b999190613f7e565b60405180910390f35b348015610bae57600080fd5b50610bb7611d5e565b604051610bc49190613f7e565b60405180910390f35b348015610bd957600080fd5b50610bf46004803603810190610bef9190614177565b611d71565b005b348015610c0257600080fd5b50610c1d6004803603810190610c1891906141b7565b611e96565b005b348015610c2b57600080fd5b50610c466004803603810190610c41919061406a565b611f95565b005b348015610c5457600080fd5b50610c5d6120a4565b604051610c6a9190613f7e565b60405180910390f35b348015610c7f57600080fd5b50610c886120b7565b604051610c95919061404f565b60405180910390f35b348015610caa57600080fd5b50610cc56004803603810190610cc0919061406a565b6120bd565b604051610cd29190613f7e565b60405180910390f35b348015610ce757600080fd5b50610cf0612212565b604051610cfd919061404f565b60405180910390f35b348015610d1257600080fd5b50610d2d6004803603810190610d289190614237565b612218565b604051610d3a919061404f565b60405180910390f35b348015610d4f57600080fd5b50610d5861229f565b604051610d65919061404f565b60405180910390f35b348015610d7a57600080fd5b50610d836122a5565b604051610d909190613f7e565b60405180910390f35b348015610da557600080fd5b50610dae612345565b604051610dbb919061404f565b60405180910390f35b348015610dd057600080fd5b50610deb6004803603810190610de69190613f99565b61234b565b005b348015610df957600080fd5b50610e02612442565b604051610e0f919061404f565b60405180910390f35b348015610e2457600080fd5b50610e2d612448565b604051610e3a919061404f565b60405180910390f35b606060038054610e52906142a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7e906142a6565b8015610ecb5780601f10610ea057610100808354040283529160200191610ecb565b820191906000526020600020905b815481529060010190602001808311610eae57829003601f168201915b5050505050905090565b6000610ee9610ee261244e565b8484612456565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610f4861244e565b73ffffffffffffffffffffffffffffffffffffffff16610f66611842565b73ffffffffffffffffffffffffffffffffffffffff1614610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb390614323565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61109c61244e565b73ffffffffffffffffffffffffffffffffffffffff166110ba611842565b73ffffffffffffffffffffffffffffffffffffffff1614611110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110790614323565b60405180910390fd5b670de0b6b3a76400006103e86001611126610f36565b6111309190614372565b61113a91906143e3565b61114491906143e3565b811015611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90614486565b60405180910390fd5b670de0b6b3a76400008161119a9190614372565b60088190555050565b60006111b084848461261f565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111fb61244e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127290614518565b60405180910390fd5b61128f8561128761244e565b858403612456565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113656112d061244e565b8484600160006112de61244e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113609190614538565b612456565b6001905092915050565b7f0000000000000000000000000cc153b76cf66b087e805ba2db75fad6f56b4be681565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61146561244e565b73ffffffffffffffffffffffffffffffffffffffff16611483611842565b73ffffffffffffffffffffffffffffffffffffffff16146114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d090614323565b60405180910390fd5b6114e360006133a6565b565b60006114ef61244e565b73ffffffffffffffffffffffffffffffffffffffff1661150d611842565b73ffffffffffffffffffffffffffffffffffffffff1614611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a90614323565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61158d61244e565b73ffffffffffffffffffffffffffffffffffffffff166115ab611842565b73ffffffffffffffffffffffffffffffffffffffff1614611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f890614323565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61169061244e565b73ffffffffffffffffffffffffffffffffffffffff166116ae611842565b73ffffffffffffffffffffffffffffffffffffffff1614611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90614323565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461172c9190614538565b6117369190614538565b60148190555060066014541115611782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611779906145b8565b60405180910390fd5b505050565b61178f61244e565b73ffffffffffffffffffffffffffffffffffffffff166117ad611842565b73ffffffffffffffffffffffffffffffffffffffff1614611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa90614323565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6118a061244e565b73ffffffffffffffffffffffffffffffffffffffff166118be611842565b73ffffffffffffffffffffffffffffffffffffffff1614611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b90614323565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611940906142a6565b80601f016020809104026020016040519081016040528092919081815260200182805461196c906142a6565b80156119b95780601f1061198e576101008083540402835291602001916119b9565b820191906000526020600020905b81548152906001019060200180831161199c57829003601f168201915b5050505050905090565b6119cb61244e565b73ffffffffffffffffffffffffffffffffffffffff166119e9611842565b73ffffffffffffffffffffffffffffffffffffffff1614611a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3690614323565b60405180910390fd5b7f0000000000000000000000000cc153b76cf66b087e805ba2db75fad6f56b4be673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac49061464a565b60405180910390fd5b611ad7828261346c565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611b0261244e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb6906146dc565b60405180910390fd5b611bd3611bca61244e565b85858403612456565b600191505092915050565b600e5481565b6000611bf8611bf161244e565b848461261f565b6001905092915050565b611c0a61244e565b73ffffffffffffffffffffffffffffffffffffffff16611c28611842565b73ffffffffffffffffffffffffffffffffffffffff1614611c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7590614323565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611d7961244e565b73ffffffffffffffffffffffffffffffffffffffff16611d97611842565b73ffffffffffffffffffffffffffffffffffffffff1614611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de490614323565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611e8a9190613f7e565b60405180910390a25050565b611e9e61244e565b73ffffffffffffffffffffffffffffffffffffffff16611ebc611842565b73ffffffffffffffffffffffffffffffffffffffff1614611f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0990614323565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611f3a9190614538565b611f449190614538565b60188190555060066018541115611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f87906145b8565b60405180910390fd5b505050565b611f9d61244e565b73ffffffffffffffffffffffffffffffffffffffff16611fbb611842565b73ffffffffffffffffffffffffffffffffffffffff1614612011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200890614323565b60405180910390fd5b670de0b6b3a76400006103e86005612027610f36565b6120319190614372565b61203b91906143e3565b61204591906143e3565b811015612087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207e9061476e565b60405180910390fd5b670de0b6b3a76400008161209b9190614372565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006120c761244e565b73ffffffffffffffffffffffffffffffffffffffff166120e5611842565b73ffffffffffffffffffffffffffffffffffffffff161461213b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213290614323565b60405180910390fd5b620186a06001612149610f36565b6121539190614372565b61215d91906143e3565b82101561219f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219690614800565b60405180910390fd5b6103e860056121ac610f36565b6121b69190614372565b6121c091906143e3565b821115612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990614892565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006122af61244e565b73ffffffffffffffffffffffffffffffffffffffff166122cd611842565b73ffffffffffffffffffffffffffffffffffffffff1614612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a90614323565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61235361244e565b73ffffffffffffffffffffffffffffffffffffffff16612371611842565b73ffffffffffffffffffffffffffffffffffffffff16146123c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123be90614323565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242d90614924565b60405180910390fd5b61243f816133a6565b50565b601a5481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bc906149b6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252b90614a48565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612612919061404f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361268e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268590614ada565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f490614b6c565b60405180910390fd5b60008103612716576127118383600061350d565b6133a1565b601160009054906101000a900460ff1615612dd957612733611842565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127a15750612771611842565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127da5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612814575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561282d5750600560149054906101000a900460ff16155b15612dd857601160019054906101000a900460ff1661292757601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128e75750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291d90614bd8565b60405180910390fd5b5b601360009054906101000a900460ff1615612aef57612944611842565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129cb57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a2357507f0000000000000000000000000cc153b76cf66b087e805ba2db75fad6f56b4be673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612aee5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa090614c90565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b925750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3957600854811115612bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd390614d22565b60405180910390fd5b600a54612be883611415565b82612bf39190614538565b1115612c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2b90614d8e565b60405180910390fd5b612dd7565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cdc5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d2b57600854811115612d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1d90614e20565b60405180910390fd5b612dd6565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612dd557600a54612d8883611415565b82612d939190614538565b1115612dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcb90614d8e565b60405180910390fd5b5b5b5b5b5b6000612de430611415565b905060006009548210159050808015612e095750601160029054906101000a900460ff165b8015612e225750600560149054906101000a900460ff16155b8015612e785750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ece5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f245750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f68576001600560146101000a81548160ff021916908315150217905550612f4c61378c565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612fce5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612fe65750600c60009054906101000a900460ff165b80156130015750600d54600e54612ffd9190614538565b4210155b80156130575750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b506000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061310e5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561311857600090505b6000811561339157602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561317b57506000601854115b15613248576131a8606461319a60185488613a7390919063ffffffff16565b613a8990919063ffffffff16565b9050601854601a54826131bb9190614372565b6131c591906143e3565b601d60008282546131d69190614538565b92505081905550601854601b54826131ee9190614372565b6131f891906143e3565b601e60008282546132099190614538565b92505081905550601854601954826132219190614372565b61322b91906143e3565b601c600082825461323c9190614538565b9250508190555061336d565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132a357506000601454115b1561336c576132d060646132c260145488613a7390919063ffffffff16565b613a8990919063ffffffff16565b9050601454601654826132e39190614372565b6132ed91906143e3565b601d60008282546132fe9190614538565b92505081905550601454601754826133169190614372565b61332091906143e3565b601e60008282546133319190614538565b92505081905550601454601554826133499190614372565b61335391906143e3565b601c60008282546133649190614538565b925050819055505b5b60008111156133825761338187308361350d565b5b808561338e9190614e40565b94505b61339c87878761350d565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361357c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357390614ada565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036135eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e290614b6c565b60405180910390fd5b6135f6838383613a9f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561367c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367390614ee6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461370f9190614538565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613773919061404f565b60405180910390a3613786848484613aa4565b50505050565b600061379730611415565b90506000601e54601c54601d546137ae9190614538565b6137b89190614538565b90506000808314806137ca5750600082145b156137d757505050613a71565b60146009546137e69190614372565b8311156137ff5760146009546137fc9190614372565b92505b6000600283601d54866138129190614372565b61381c91906143e3565b61382691906143e3565b9050600061383d8286613aa990919063ffffffff16565b9050600047905061384d82613abf565b60006138628247613aa990919063ffffffff16565b9050600061388d8761387f601c5485613a7390919063ffffffff16565b613a8990919063ffffffff16565b905060006138b8886138aa601e5486613a7390919063ffffffff16565b613a8990919063ffffffff16565b905060008183856138c99190614e40565b6138d39190614e40565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161393390614f37565b60006040518083038185875af1925050503d8060008114613970576040519150601f19603f3d011682016040523d82523d6000602084013e613975565b606091505b50508098505060008711801561398b5750600081115b156139d85761399a8782613cfc565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d546040516139cf93929190614f4c565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a1e90614f37565b60006040518083038185875af1925050503d8060008114613a5b576040519150601f19603f3d011682016040523d82523d6000602084013e613a60565b606091505b505080985050505050505050505050505b565b60008183613a819190614372565b905092915050565b60008183613a9791906143e3565b905092915050565b505050565b505050565b60008183613ab79190614e40565b905092915050565b6000600267ffffffffffffffff811115613adc57613adb614f83565b5b604051908082528060200260200182016040528015613b0a5781602001602082028036833780820191505090505b5090503081600081518110613b2257613b21614fb2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613bc7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613beb9190614ff6565b81600181518110613bff57613bfe614fb2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c64307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612456565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613cc695949392919061511c565b600060405180830381600087803b158015613ce057600080fd5b505af1158015613cf4573d6000803e3d6000fd5b505050505050565b613d27307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612456565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613d8e96959493929190615176565b60606040518083038185885af1158015613dac573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613dd191906151ec565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e12578082015181840152602081019050613df7565b60008484015250505050565b6000601f19601f8301169050919050565b6000613e3a82613dd8565b613e448185613de3565b9350613e54818560208601613df4565b613e5d81613e1e565b840191505092915050565b60006020820190508181036000830152613e828184613e2f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613eba82613e8f565b9050919050565b613eca81613eaf565b8114613ed557600080fd5b50565b600081359050613ee781613ec1565b92915050565b6000819050919050565b613f0081613eed565b8114613f0b57600080fd5b50565b600081359050613f1d81613ef7565b92915050565b60008060408385031215613f3a57613f39613e8a565b5b6000613f4885828601613ed8565b9250506020613f5985828601613f0e565b9150509250929050565b60008115159050919050565b613f7881613f63565b82525050565b6000602082019050613f936000830184613f6f565b92915050565b600060208284031215613faf57613fae613e8a565b5b6000613fbd84828501613ed8565b91505092915050565b6000819050919050565b6000613feb613fe6613fe184613e8f565b613fc6565b613e8f565b9050919050565b6000613ffd82613fd0565b9050919050565b600061400f82613ff2565b9050919050565b61401f81614004565b82525050565b600060208201905061403a6000830184614016565b92915050565b61404981613eed565b82525050565b60006020820190506140646000830184614040565b92915050565b6000602082840312156140805761407f613e8a565b5b600061408e84828501613f0e565b91505092915050565b6000806000606084860312156140b0576140af613e8a565b5b60006140be86828701613ed8565b93505060206140cf86828701613ed8565b92505060406140e086828701613f0e565b9150509250925092565b6140f381613eaf565b82525050565b600060208201905061410e60008301846140ea565b92915050565b600060ff82169050919050565b61412a81614114565b82525050565b60006020820190506141456000830184614121565b92915050565b61415481613f63565b811461415f57600080fd5b50565b6000813590506141718161414b565b92915050565b6000806040838503121561418e5761418d613e8a565b5b600061419c85828601613ed8565b92505060206141ad85828601614162565b9150509250929050565b6000806000606084860312156141d0576141cf613e8a565b5b60006141de86828701613f0e565b93505060206141ef86828701613f0e565b925050604061420086828701613f0e565b9150509250925092565b6000602082840312156142205761421f613e8a565b5b600061422e84828501614162565b91505092915050565b6000806040838503121561424e5761424d613e8a565b5b600061425c85828601613ed8565b925050602061426d85828601613ed8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142be57607f821691505b6020821081036142d1576142d0614277565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061430d602083613de3565b9150614318826142d7565b602082019050919050565b6000602082019050818103600083015261433c81614300565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061437d82613eed565b915061438883613eed565b925082820261439681613eed565b915082820484148315176143ad576143ac614343565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143ee82613eed565b91506143f983613eed565b925082614409576144086143b4565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614470602f83613de3565b915061447b82614414565b604082019050919050565b6000602082019050818103600083015261449f81614463565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614502602883613de3565b915061450d826144a6565b604082019050919050565b60006020820190508181036000830152614531816144f5565b9050919050565b600061454382613eed565b915061454e83613eed565b925082820190508082111561456657614565614343565b5b92915050565b7f4d757374206b6565702066656573206174203625206f72206c65737300000000600082015250565b60006145a2601c83613de3565b91506145ad8261456c565b602082019050919050565b600060208201905081810360008301526145d181614595565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614634603983613de3565b915061463f826145d8565b604082019050919050565b6000602082019050818103600083015261466381614627565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006146c6602583613de3565b91506146d18261466a565b604082019050919050565b600060208201905081810360008301526146f5816146b9565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614758602483613de3565b9150614763826146fc565b604082019050919050565b600060208201905081810360008301526147878161474b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006147ea603583613de3565b91506147f58261478e565b604082019050919050565b60006020820190508181036000830152614819816147dd565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061487c603483613de3565b915061488782614820565b604082019050919050565b600060208201905081810360008301526148ab8161486f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061490e602683613de3565b9150614919826148b2565b604082019050919050565b6000602082019050818103600083015261493d81614901565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006149a0602483613de3565b91506149ab82614944565b604082019050919050565b600060208201905081810360008301526149cf81614993565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a32602283613de3565b9150614a3d826149d6565b604082019050919050565b60006020820190508181036000830152614a6181614a25565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614ac4602583613de3565b9150614acf82614a68565b604082019050919050565b60006020820190508181036000830152614af381614ab7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b56602383613de3565b9150614b6182614afa565b604082019050919050565b60006020820190508181036000830152614b8581614b49565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614bc2601683613de3565b9150614bcd82614b8c565b602082019050919050565b60006020820190508181036000830152614bf181614bb5565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614c7a604983613de3565b9150614c8582614bf8565b606082019050919050565b60006020820190508181036000830152614ca981614c6d565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614d0c603583613de3565b9150614d1782614cb0565b604082019050919050565b60006020820190508181036000830152614d3b81614cff565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614d78601383613de3565b9150614d8382614d42565b602082019050919050565b60006020820190508181036000830152614da781614d6b565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614e0a603683613de3565b9150614e1582614dae565b604082019050919050565b60006020820190508181036000830152614e3981614dfd565b9050919050565b6000614e4b82613eed565b9150614e5683613eed565b9250828203905081811115614e6e57614e6d614343565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614ed0602683613de3565b9150614edb82614e74565b604082019050919050565b60006020820190508181036000830152614eff81614ec3565b9050919050565b600081905092915050565b50565b6000614f21600083614f06565b9150614f2c82614f11565b600082019050919050565b6000614f4282614f14565b9150819050919050565b6000606082019050614f616000830186614040565b614f6e6020830185614040565b614f7b6040830184614040565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614ff081613ec1565b92915050565b60006020828403121561500c5761500b613e8a565b5b600061501a84828501614fe1565b91505092915050565b6000819050919050565b600061504861504361503e84615023565b613fc6565b613eed565b9050919050565b6150588161502d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61509381613eaf565b82525050565b60006150a5838361508a565b60208301905092915050565b6000602082019050919050565b60006150c98261505e565b6150d38185615069565b93506150de8361507a565b8060005b8381101561510f5781516150f68882615099565b9750615101836150b1565b9250506001810190506150e2565b5085935050505092915050565b600060a0820190506151316000830188614040565b61513e602083018761504f565b818103604083015261515081866150be565b905061515f60608301856140ea565b61516c6080830184614040565b9695505050505050565b600060c08201905061518b60008301896140ea565b6151986020830188614040565b6151a5604083018761504f565b6151b2606083018661504f565b6151bf60808301856140ea565b6151cc60a0830184614040565b979650505050505050565b6000815190506151e681613ef7565b92915050565b60008060006060848603121561520557615204613e8a565b5b6000615213868287016151d7565b9350506020615224868287016151d7565b9250506040615235868287016151d7565b915050925092509256fea264697066735822122044108c584603fbb53368fad7e1e0a0afdac124a7df627717bca8452e2b92535d64736f6c63430008110033

Deployed Bytecode Sourcemap

32797:16960:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10217:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12384:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34423:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32871:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11337:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41552:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33437:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33251:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34207:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34167;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38870:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13035:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32974:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33347:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33307:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11179:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13936:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32929:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33535:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41717:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34022:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33615:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11508:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3449:103;;;;;;;;;;;;;:::i;:::-;;37978:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39417:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33066:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33915;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39788:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37771:155;;;;;;;;;;;;;:::i;:::-;;2798:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33103:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34057:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39680:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10436:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40805:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33989:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33491:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34247:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34133:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14654:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33399:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11848:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41313:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34644:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33575:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40615:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40197:410;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39153:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33833:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33136:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38365:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33881:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12086:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33178:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38160:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33952:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3707:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34095:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33218:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10217:100;10271:13;10304:5;10297:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10217:100;:::o;12384:169::-;12467:4;12484:39;12493:12;:10;:12::i;:::-;12507:7;12516:6;12484:8;:39::i;:::-;12541:4;12534:11;;12384:169;;;;:::o;34423:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32871:51::-;;;:::o;11337:108::-;11398:7;11425:12;;11418:19;;11337:108;:::o;41552:157::-;3029:12;:10;:12::i;:::-;3018:23;;:7;:5;:7::i;:::-;:23;;;3010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41659:9:::1;;;;;;;;;;;41631:38;;41648:9;41631:38;;;;;;;;;;;;41692:9;41680;;:21;;;;;;;;;;;;;;;;;;41552:157:::0;:::o;33437:47::-;;;;:::o;33251:36::-;;;;:::o;34207:33::-;;;;:::o;34167:::-;;;;:::o;38870:275::-;3029:12;:10;:12::i;:::-;3018:23;;:7;:5;:7::i;:::-;:23;;;3010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39007:4:::1;38999;38994:1;38978:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38977:26;;;;:::i;:::-;38976:35;;;;:::i;:::-;38966:6;:45;;38944:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39130:6;39120;:17;;;;:::i;:::-;39097:20;:40;;;;38870:275:::0;:::o;13035:492::-;13175:4;13192:36;13202:6;13210:9;13221:6;13192:9;:36::i;:::-;13241:24;13268:11;:19;13280:6;13268:19;;;;;;;;;;;;;;;:33;13288:12;:10;:12::i;:::-;13268:33;;;;;;;;;;;;;;;;13241:60;;13340:6;13320:16;:26;;13312:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13427:57;13436:6;13444:12;:10;:12::i;:::-;13477:6;13458:16;:25;13427:8;:57::i;:::-;13515:4;13508:11;;;13035:492;;;;;:::o;32974:53::-;33020:6;32974:53;:::o;33347:45::-;;;;:::o;33307:33::-;;;;;;;;;;;;;:::o;11179:93::-;11237:5;11262:2;11255:9;;11179:93;:::o;13936:215::-;14024:4;14041:80;14050:12;:10;:12::i;:::-;14064:7;14110:10;14073:11;:25;14085:12;:10;:12::i;:::-;14073:25;;;;;;;;;;;;;;;:34;14099:7;14073:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;14041:8;:80::i;:::-;14139:4;14132:11;;13936:215;;;;:::o;32929:38::-;;;:::o;33535:33::-;;;;;;;;;;;;;:::o;41717:126::-;41783:4;41807:19;:28;41827:7;41807:28;;;;;;;;;;;;;;;;;;;;;;;;;41800:35;;41717:126;;;:::o;34022:28::-;;;;:::o;33615:31::-;;;;;;;;;;;;;:::o;11508:127::-;11582:7;11609:9;:18;11619:7;11609:18;;;;;;;;;;;;;;;;11602:25;;11508:127;;;:::o;3449:103::-;3029:12;:10;:12::i;:::-;3018:23;;:7;:5;:7::i;:::-;:23;;;3010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3514:30:::1;3541:1;3514:18;:30::i;:::-;3449:103::o:0;37978:121::-;38030:4;3029:12;:10;:12::i;:::-;3018:23;;:7;:5;:7::i;:::-;:23;;;3010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38064:5:::1;38047:14;;:22;;;;;;;;;;;;;;;;;;38087:4;38080:11;;37978:121:::0;:::o;39417:167::-;3029:12;:10;:12::i;:::-;3018:23;;:7;:5;:7::i;:::-;:23;;;3010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39572:4:::1;39530:31;:39;39562:6;39530:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39417:167:::0;;:::o;33066:30::-;;;;;;;;;;;;;:::o;33915:::-;;;;:::o;39788:401::-;3029:12;:10;:12::i;:::-;3018:23;;:7;:5;:7::i;:::-;:23;;;3010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39956:13:::1;39938:15;:31;;;;39998:13;39980:15;:31;;;;40034:7;40022:9;:19;;;;40103:9;;40085:15;;40067;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;40052:12;:60;;;;40147:1;40131:12;;:17;;40123:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;39788:401:::0;;;:::o;37771:155::-;3029:12;:10;:12::i;:::-;3018:23;;:7;:5;:7::i;:::-;:23;;;3010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37842:4:::1;37826:13;;:20;;;;;;;;;;;;;;;;;;37871:4;37857:11;;:18;;;;;;;;;;;;;;;;;;37903:15;37886:14;:32;;;;37771:155::o:0;2798:87::-;2844:7;2871:6;;;;;;;;;;;2864:13;;2798:87;:::o;33103:24::-;;;;;;;;;;;;;:::o;34057:31::-;;;;:::o;39680:100::-;3029:12;:10;:12::i;:::-;3018:23;;:7;:5;:7::i;:::-;:23;;;3010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39765:7:::1;39751:11;;:21;;;;;;;;;;;;;;;;;;39680:100:::0;:::o;10436:104::-;10492:13;10525:7;10518:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10436:104;:::o;40805:304::-;3029:12;:10;:12::i;:::-;3018:23;;:7;:5;:7::i;:::-;:23;;;3010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40949:13:::1;40941:21;;:4;:21;;::::0;40919:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;41060:41;41089:4;41095:5;41060:28;:41::i;:::-;40805:304:::0;;:::o;33989:24::-;;;;:::o;33491:35::-;;;;:::o;34247:27::-;;;;:::o;34133:25::-;;;;:::o;14654:413::-;14747:4;14764:24;14791:11;:25;14803:12;:10;:12::i;:::-;14791:25;;;;;;;;;;;;;;;:34;14817:7;14791:34;;;;;;;;;;;;;;;;14764:61;;14864:15;14844:16;:35;;14836:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14957:67;14966:12;:10;:12::i;:::-;14980:7;15008:15;14989:16;:34;14957:8;:67::i;:::-;15055:4;15048:11;;;14654:413;;;;:::o;33399:29::-;;;;:::o;11848:175::-;11934:4;11951:42;11961:12;:10;:12::i;:::-;11975:9;11986:6;11951:9;:42::i;:::-;12011:4;12004:11;;11848:175;;;;:::o;41313:231::-;3029:12;:10;:12::i;:::-;3018:23;;:7;:5;:7::i;:::-;:23;;;3010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41473:15:::1;;;;;;;;;;;41430:59;;41453:18;41430:59;;;;;;;;;;;;41518:18;41500:15;;:36;;;;;;;;;;;;;;;;;;41313:231:::0;:::o;34644:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33575:33::-;;;;;;;;;;;;;:::o;40615:182::-;3029:12;:10;:12::i;:::-;3018:23;;:7;:5;:7::i;:::-;:23;;;3010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40731:8:::1;40700:19;:28;40720:7;40700:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40771:7;40755:34;;;40780:8;40755:34;;;;;;:::i;:::-;;;;;;;;40615:182:::0;;:::o;40197:410::-;3029:12;:10;:12::i;:::-;3018:23;;:7;:5;:7::i;:::-;:23;;;3010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40367:13:::1;40348:16;:32;;;;40410:13;40391:16;:32;;;;40447:7;40434:10;:20;;;;40519:10;;40500:16;;40481;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40465:13;:64;;;;40565:1;40548:13;;:18;;40540:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;40197:410:::0;;;:::o;39153:256::-;3029:12;:10;:12::i;:::-;3018:23;;:7;:5;:7::i;:::-;:23;;;3010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39293:4:::1;39285;39280:1;39264:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39263:26;;;;:::i;:::-;39262:35;;;;:::i;:::-;39252:6;:45;;39230:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39394:6;39384;:17;;;;:::i;:::-;39372:9;:29;;;;39153:256:::0;:::o;33833:39::-;;;;;;;;;;;;;:::o;33136:35::-;;;;:::o;38365:497::-;38473:4;3029:12;:10;:12::i;:::-;3018:23;;:7;:5;:7::i;:::-;:23;;;3010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38552:6:::1;38547:1;38531:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38530:28;;;;:::i;:::-;38517:9;:41;;38495:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38707:4;38702:1;38686:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38685:26;;;;:::i;:::-;38672:9;:39;;38650:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38823:9;38802:18;:30;;;;38850:4;38843:11;;38365:497:::0;;;:::o;33881:27::-;;;;:::o;12086:151::-;12175:7;12202:11;:18;12214:5;12202:18;;;;;;;;;;;;;;;:27;12221:7;12202:27;;;;;;;;;;;;;;;;12195:34;;12086:151;;;;:::o;33178:33::-;;;;:::o;38160:135::-;38220:4;3029:12;:10;:12::i;:::-;3018:23;;:7;:5;:7::i;:::-;:23;;;3010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38260:5:::1;38237:20;;:28;;;;;;;;;;;;;;;;;;38283:4;38276:11;;38160:135:::0;:::o;33952:30::-;;;;:::o;3707:201::-;3029:12;:10;:12::i;:::-;3018:23;;:7;:5;:7::i;:::-;:23;;;3010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3816:1:::1;3796:22;;:8;:22;;::::0;3788:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3872:28;3891:8;3872:18;:28::i;:::-;3707:201:::0;:::o;34095:31::-;;;;:::o;33218:24::-;;;;:::o;1470:98::-;1523:7;1550:10;1543:17;;1470:98;:::o;18338:380::-;18491:1;18474:19;;:5;:19;;;18466:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18572:1;18553:21;;:7;:21;;;18545:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18656:6;18626:11;:18;18638:5;18626:18;;;;;;;;;;;;;;;:27;18645:7;18626:27;;;;;;;;;;;;;;;:36;;;;18694:7;18678:32;;18687:5;18678:32;;;18703:6;18678:32;;;;;;:::i;:::-;;;;;;;;18338:380;;;:::o;41901:4967::-;42049:1;42033:18;;:4;:18;;;42025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42126:1;42112:16;;:2;:16;;;42104:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42195:1;42185:6;:11;42181:93;;42213:28;42229:4;42235:2;42239:1;42213:15;:28::i;:::-;42256:7;;42181:93;42290:14;;;;;;;;;;;42286:2487;;;42351:7;:5;:7::i;:::-;42343:15;;:4;:15;;;;:49;;;;;42385:7;:5;:7::i;:::-;42379:13;;:2;:13;;;;42343:49;:86;;;;;42427:1;42413:16;;:2;:16;;;;42343:86;:128;;;;;42464:6;42450:21;;:2;:21;;;;42343:128;:158;;;;;42493:8;;;;;;;;;;;42492:9;42343:158;42321:2441;;;42541:13;;;;;;;;;;;42536:223;;42613:19;:25;42633:4;42613:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42642:19;:23;42662:2;42642:23;;;;;;;;;;;;;;;;;;;;;;;;;42613:52;42579:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42536:223;42915:20;;;;;;;;;;;42911:641;;;42996:7;:5;:7::i;:::-;42990:13;;:2;:13;;;;:72;;;;;43046:15;43032:30;;:2;:30;;;;42990:72;:129;;;;;43105:13;43091:28;;:2;:28;;;;42990:129;42960:573;;;43283:12;43208:28;:39;43237:9;43208:39;;;;;;;;;;;;;;;;:87;43170:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43497:12;43455:28;:39;43484:9;43455:39;;;;;;;;;;;;;;;:54;;;;42960:573;42911:641;43626:25;:31;43652:4;43626:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43683:31;:35;43715:2;43683:35;;;;;;;;;;;;;;;;;;;;;;;;;43682:36;43626:92;43600:1147;;;43805:20;;43795:6;:30;;43761:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44013:9;;43996:13;44006:2;43996:9;:13::i;:::-;43987:6;:22;;;;:::i;:::-;:35;;43953:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43600:1147;;;44191:25;:29;44217:2;44191:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44246:31;:37;44278:4;44246:37;;;;;;;;;;;;;;;;;;;;;;;;;44245:38;44191:92;44165:582;;;44370:20;;44360:6;:30;;44326:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44165:582;;;44527:31;:35;44559:2;44527:35;;;;;;;;;;;;;;;;;;;;;;;;;44522:225;;44647:9;;44630:13;44640:2;44630:9;:13::i;:::-;44621:6;:22;;;;:::i;:::-;:35;;44587:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44522:225;44165:582;43600:1147;42321:2441;42286:2487;44785:28;44816:24;44834:4;44816:9;:24::i;:::-;44785:55;;44853:12;44892:18;;44868:20;:42;;44853:57;;44941:7;:35;;;;;44965:11;;;;;;;;;;;44941:35;:61;;;;;44994:8;;;;;;;;;;;44993:9;44941:61;:110;;;;;45020:25;:31;45046:4;45020:31;;;;;;;;;;;;;;;;;;;;;;;;;45019:32;44941:110;:153;;;;;45069:19;:25;45089:4;45069:25;;;;;;;;;;;;;;;;;;;;;;;;;45068:26;44941:153;:194;;;;;45112:19;:23;45132:2;45112:23;;;;;;;;;;;;;;;;;;;;;;;;;45111:24;44941:194;44923:326;;;45173:4;45162:8;;:15;;;;;;;;;;;;;;;;;;45194:10;:8;:10::i;:::-;45232:5;45221:8;;:16;;;;;;;;;;;;;;;;;;44923:326;45280:8;;;;;;;;;;;45279:9;:55;;;;;45305:25;:29;45331:2;45305:29;;;;;;;;;;;;;;;;;;;;;;;;;45279:55;:85;;;;;45351:13;;;;;;;;;;;45279:85;:153;;;;;45417:15;;45400:14;;:32;;;;:::i;:::-;45381:15;:51;;45279:153;:196;;;;;45450:19;:25;45470:4;45450:25;;;;;;;;;;;;;;;;;;;;;;;;;45449:26;45279:196;45261:238;45511:12;45527:8;;;;;;;;;;;45526:9;45511:24;;45637:19;:25;45657:4;45637:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45666:19;:23;45686:2;45666:23;;;;;;;;;;;;;;;;;;;;;;;;;45637:52;45633:100;;;45716:5;45706:15;;45633:100;45745:12;45850:7;45846:969;;;45902:25;:29;45928:2;45902:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45951:1;45935:13;;:17;45902:50;45898:768;;;45980:34;46010:3;45980:25;45991:13;;45980:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45973:41;;46083:13;;46063:16;;46056:4;:23;;;;:::i;:::-;46055:41;;;;:::i;:::-;46033:18;;:63;;;;;;;:::i;:::-;;;;;;;;46153:13;;46139:10;;46132:4;:17;;;;:::i;:::-;46131:35;;;;:::i;:::-;46115:12;;:51;;;;;;;:::i;:::-;;;;;;;;46235:13;;46215:16;;46208:4;:23;;;;:::i;:::-;46207:41;;;;:::i;:::-;46185:18;;:63;;;;;;;:::i;:::-;;;;;;;;45898:768;;;46310:25;:31;46336:4;46310:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46360:1;46345:12;;:16;46310:51;46306:360;;;46389:33;46418:3;46389:24;46400:12;;46389:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46382:40;;46490:12;;46471:15;;46464:4;:22;;;;:::i;:::-;46463:39;;;;:::i;:::-;46441:18;;:61;;;;;;;:::i;:::-;;;;;;;;46558:12;;46545:9;;46538:4;:16;;;;:::i;:::-;46537:33;;;;:::i;:::-;46521:12;;:49;;;;;;;:::i;:::-;;;;;;;;46638:12;;46619:15;;46612:4;:22;;;;:::i;:::-;46611:39;;;;:::i;:::-;46589:18;;:61;;;;;;;:::i;:::-;;;;;;;;46306:360;45898:768;46693:1;46686:4;:8;46682:91;;;46715:42;46731:4;46745;46752;46715:15;:42::i;:::-;46682:91;46799:4;46789:14;;;;;:::i;:::-;;;45846:969;46827:33;46843:4;46849:2;46853:6;46827:15;:33::i;:::-;42014:4854;;;;41901:4967;;;;:::o;4068:191::-;4142:16;4161:6;;;;;;;;;;;4142:25;;4187:8;4178:6;;:17;;;;;;;;;;;;;;;;;;4242:8;4211:40;;4232:8;4211:40;;;;;;;;;;;;4131:128;4068:191;:::o;41117:188::-;41234:5;41200:25;:31;41226:4;41200:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41291:5;41257:40;;41285:4;41257:40;;;;;;;;;;;;41117:188;;:::o;15557:733::-;15715:1;15697:20;;:6;:20;;;15689:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15799:1;15778:23;;:9;:23;;;15770:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15854:47;15875:6;15883:9;15894:6;15854:20;:47::i;:::-;15914:21;15938:9;:17;15948:6;15938:17;;;;;;;;;;;;;;;;15914:41;;15991:6;15974:13;:23;;15966:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;16112:6;16096:13;:22;16076:9;:17;16086:6;16076:17;;;;;;;;;;;;;;;:42;;;;16164:6;16140:9;:20;16150:9;16140:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16205:9;16188:35;;16197:6;16188:35;;;16216:6;16188:35;;;;;;:::i;:::-;;;;;;;;16236:46;16256:6;16264:9;16275:6;16236:19;:46::i;:::-;15678:612;15557:733;;;:::o;47998:1756::-;48037:23;48063:24;48081:4;48063:9;:24::i;:::-;48037:50;;48098:25;48194:12;;48160:18;;48126;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48098:108;;48217:12;48265:1;48246:15;:20;:46;;;;48291:1;48270:17;:22;48246:46;48242:85;;;48309:7;;;;;48242:85;48382:2;48361:18;;:23;;;;:::i;:::-;48343:15;:41;48339:115;;;48440:2;48419:18;;:23;;;;:::i;:::-;48401:41;;48339:115;48515:23;48628:1;48595:17;48560:18;;48542:15;:36;;;;:::i;:::-;48541:71;;;;:::i;:::-;:88;;;;:::i;:::-;48515:114;;48640:26;48669:36;48689:15;48669;:19;;:36;;;;:::i;:::-;48640:65;;48718:25;48746:21;48718:49;;48780:36;48797:18;48780:16;:36::i;:::-;48829:18;48850:44;48876:17;48850:21;:25;;:44;;;;:::i;:::-;48829:65;;48907:23;48933:81;48986:17;48933:34;48948:18;;48933:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48907:107;;49025:17;49045:51;49078:17;49045:28;49060:12;;49045:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49025:71;;49109:23;49166:9;49148:15;49135:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49109:66;;49209:1;49188:18;:22;;;;49242:1;49221:18;:22;;;;49269:1;49254:12;:16;;;;49305:9;;;;;;;;;;;49297:23;;49328:9;49297:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49283:59;;;;;49377:1;49359:15;:19;:42;;;;;49400:1;49382:15;:19;49359:42;49355:278;;;49418:46;49431:15;49448;49418:12;:46::i;:::-;49484:137;49517:18;49554:15;49588:18;;49484:137;;;;;;;;:::i;:::-;;;;;;;;49355:278;49667:15;;;;;;;;;;;49659:29;;49710:21;49659:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49645:101;;;;;48026:1728;;;;;;;;;;47998:1756;:::o;23792:98::-;23850:7;23881:1;23877;:5;;;;:::i;:::-;23870:12;;23792:98;;;;:::o;24191:::-;24249:7;24280:1;24276;:5;;;;:::i;:::-;24269:12;;24191:98;;;;:::o;19318:125::-;;;;:::o;20047:124::-;;;;:::o;23435:98::-;23493:7;23524:1;23520;:5;;;;:::i;:::-;23513:12;;23435:98;;;;:::o;46876:589::-;47002:21;47040:1;47026:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47002:40;;47071:4;47053;47058:1;47053:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47097:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47087:4;47092:1;47087:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47132:62;47149:4;47164:15;47182:11;47132:8;:62::i;:::-;47233:15;:66;;;47314:11;47340:1;47384:4;47411;47431:15;47233:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46931:534;46876:589;:::o;47473:517::-;47621:62;47638:4;47653:15;47671:11;47621:8;:62::i;:::-;47726:15;:31;;;47765:9;47798:4;47818:11;47844:1;47887;33020:6;47956:15;47726:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47473:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:468::-;7179:6;7187;7236:2;7224:9;7215:7;7211:23;7207:32;7204:119;;;7242:79;;:::i;:::-;7204:119;7362:1;7387:53;7432:7;7423:6;7412:9;7408:22;7387:53;:::i;:::-;7377:63;;7333:117;7489:2;7515:50;7557:7;7548:6;7537:9;7533:22;7515:50;:::i;:::-;7505:60;;7460:115;7114:468;;;;;:::o;7588:619::-;7665:6;7673;7681;7730:2;7718:9;7709:7;7705:23;7701:32;7698:119;;;7736:79;;:::i;:::-;7698:119;7856:1;7881:53;7926:7;7917:6;7906:9;7902:22;7881:53;:::i;:::-;7871:63;;7827:117;7983:2;8009:53;8054:7;8045:6;8034:9;8030:22;8009:53;:::i;:::-;7999:63;;7954:118;8111:2;8137:53;8182:7;8173:6;8162:9;8158:22;8137:53;:::i;:::-;8127:63;;8082:118;7588:619;;;;;:::o;8213:323::-;8269:6;8318:2;8306:9;8297:7;8293:23;8289:32;8286:119;;;8324:79;;:::i;:::-;8286:119;8444:1;8469:50;8511:7;8502:6;8491:9;8487:22;8469:50;:::i;:::-;8459:60;;8415:114;8213:323;;;;:::o;8542:474::-;8610:6;8618;8667:2;8655:9;8646:7;8642:23;8638:32;8635:119;;;8673:79;;:::i;:::-;8635:119;8793:1;8818:53;8863:7;8854:6;8843:9;8839:22;8818:53;:::i;:::-;8808:63;;8764:117;8920:2;8946:53;8991:7;8982:6;8971:9;8967:22;8946:53;:::i;:::-;8936:63;;8891:118;8542:474;;;;;:::o;9022:180::-;9070:77;9067:1;9060:88;9167:4;9164:1;9157:15;9191:4;9188:1;9181:15;9208:320;9252:6;9289:1;9283:4;9279:12;9269:22;;9336:1;9330:4;9326:12;9357:18;9347:81;;9413:4;9405:6;9401:17;9391:27;;9347:81;9475:2;9467:6;9464:14;9444:18;9441:38;9438:84;;9494:18;;:::i;:::-;9438:84;9259:269;9208:320;;;:::o;9534:182::-;9674:34;9670:1;9662:6;9658:14;9651:58;9534:182;:::o;9722:366::-;9864:3;9885:67;9949:2;9944:3;9885:67;:::i;:::-;9878:74;;9961:93;10050:3;9961:93;:::i;:::-;10079:2;10074:3;10070:12;10063:19;;9722:366;;;:::o;10094:419::-;10260:4;10298:2;10287:9;10283:18;10275:26;;10347:9;10341:4;10337:20;10333:1;10322:9;10318:17;10311:47;10375:131;10501:4;10375:131;:::i;:::-;10367:139;;10094:419;;;:::o;10519:180::-;10567:77;10564:1;10557:88;10664:4;10661:1;10654:15;10688:4;10685:1;10678:15;10705:410;10745:7;10768:20;10786:1;10768:20;:::i;:::-;10763:25;;10802:20;10820:1;10802:20;:::i;:::-;10797:25;;10857:1;10854;10850:9;10879:30;10897:11;10879:30;:::i;:::-;10868:41;;11058:1;11049:7;11045:15;11042:1;11039:22;11019:1;11012:9;10992:83;10969:139;;11088:18;;:::i;:::-;10969:139;10753:362;10705:410;;;;:::o;11121:180::-;11169:77;11166:1;11159:88;11266:4;11263:1;11256:15;11290:4;11287:1;11280:15;11307:185;11347:1;11364:20;11382:1;11364:20;:::i;:::-;11359:25;;11398:20;11416:1;11398:20;:::i;:::-;11393:25;;11437:1;11427:35;;11442:18;;:::i;:::-;11427:35;11484:1;11481;11477:9;11472:14;;11307:185;;;;:::o;11498:234::-;11638:34;11634:1;11626:6;11622:14;11615:58;11707:17;11702:2;11694:6;11690:15;11683:42;11498:234;:::o;11738:366::-;11880:3;11901:67;11965:2;11960:3;11901:67;:::i;:::-;11894:74;;11977:93;12066:3;11977:93;:::i;:::-;12095:2;12090:3;12086:12;12079:19;;11738:366;;;:::o;12110:419::-;12276:4;12314:2;12303:9;12299:18;12291:26;;12363:9;12357:4;12353:20;12349:1;12338:9;12334:17;12327:47;12391:131;12517:4;12391:131;:::i;:::-;12383:139;;12110:419;;;:::o;12535:227::-;12675:34;12671:1;12663:6;12659:14;12652:58;12744:10;12739:2;12731:6;12727:15;12720:35;12535:227;:::o;12768:366::-;12910:3;12931:67;12995:2;12990:3;12931:67;:::i;:::-;12924:74;;13007:93;13096:3;13007:93;:::i;:::-;13125:2;13120:3;13116:12;13109:19;;12768:366;;;:::o;13140:419::-;13306:4;13344:2;13333:9;13329:18;13321:26;;13393:9;13387:4;13383:20;13379:1;13368:9;13364:17;13357:47;13421:131;13547:4;13421:131;:::i;:::-;13413:139;;13140:419;;;:::o;13565:191::-;13605:3;13624:20;13642:1;13624:20;:::i;:::-;13619:25;;13658:20;13676:1;13658:20;:::i;:::-;13653:25;;13701:1;13698;13694:9;13687:16;;13722:3;13719:1;13716:10;13713:36;;;13729:18;;:::i;:::-;13713:36;13565:191;;;;:::o;13762:178::-;13902:30;13898:1;13890:6;13886:14;13879:54;13762:178;:::o;13946:366::-;14088:3;14109:67;14173:2;14168:3;14109:67;:::i;:::-;14102:74;;14185:93;14274:3;14185:93;:::i;:::-;14303:2;14298:3;14294:12;14287:19;;13946:366;;;:::o;14318:419::-;14484:4;14522:2;14511:9;14507:18;14499:26;;14571:9;14565:4;14561:20;14557:1;14546:9;14542:17;14535:47;14599:131;14725:4;14599:131;:::i;:::-;14591:139;;14318:419;;;:::o;14743:244::-;14883:34;14879:1;14871:6;14867:14;14860:58;14952:27;14947:2;14939:6;14935:15;14928:52;14743:244;:::o;14993:366::-;15135:3;15156:67;15220:2;15215:3;15156:67;:::i;:::-;15149:74;;15232:93;15321:3;15232:93;:::i;:::-;15350:2;15345:3;15341:12;15334:19;;14993:366;;;:::o;15365:419::-;15531:4;15569:2;15558:9;15554:18;15546:26;;15618:9;15612:4;15608:20;15604:1;15593:9;15589:17;15582:47;15646:131;15772:4;15646:131;:::i;:::-;15638:139;;15365:419;;;:::o;15790:224::-;15930:34;15926:1;15918:6;15914:14;15907:58;15999:7;15994:2;15986:6;15982:15;15975:32;15790:224;:::o;16020:366::-;16162:3;16183:67;16247:2;16242:3;16183:67;:::i;:::-;16176:74;;16259:93;16348:3;16259:93;:::i;:::-;16377:2;16372:3;16368:12;16361:19;;16020:366;;;:::o;16392:419::-;16558:4;16596:2;16585:9;16581:18;16573:26;;16645:9;16639:4;16635:20;16631:1;16620:9;16616:17;16609:47;16673:131;16799:4;16673:131;:::i;:::-;16665:139;;16392:419;;;:::o;16817:223::-;16957:34;16953:1;16945:6;16941:14;16934:58;17026:6;17021:2;17013:6;17009:15;17002:31;16817:223;:::o;17046:366::-;17188:3;17209:67;17273:2;17268:3;17209:67;:::i;:::-;17202:74;;17285:93;17374:3;17285:93;:::i;:::-;17403:2;17398:3;17394:12;17387:19;;17046:366;;;:::o;17418:419::-;17584:4;17622:2;17611:9;17607:18;17599:26;;17671:9;17665:4;17661:20;17657:1;17646:9;17642:17;17635:47;17699:131;17825:4;17699:131;:::i;:::-;17691:139;;17418:419;;;:::o;17843:240::-;17983:34;17979:1;17971:6;17967:14;17960:58;18052:23;18047:2;18039:6;18035:15;18028:48;17843:240;:::o;18089:366::-;18231:3;18252:67;18316:2;18311:3;18252:67;:::i;:::-;18245:74;;18328:93;18417:3;18328:93;:::i;:::-;18446:2;18441:3;18437:12;18430:19;;18089:366;;;:::o;18461:419::-;18627:4;18665:2;18654:9;18650:18;18642:26;;18714:9;18708:4;18704:20;18700:1;18689:9;18685:17;18678:47;18742:131;18868:4;18742:131;:::i;:::-;18734:139;;18461:419;;;:::o;18886:239::-;19026:34;19022:1;19014:6;19010:14;19003:58;19095:22;19090:2;19082:6;19078:15;19071:47;18886:239;:::o;19131:366::-;19273:3;19294:67;19358:2;19353:3;19294:67;:::i;:::-;19287:74;;19370:93;19459:3;19370:93;:::i;:::-;19488:2;19483:3;19479:12;19472:19;;19131:366;;;:::o;19503:419::-;19669:4;19707:2;19696:9;19692:18;19684:26;;19756:9;19750:4;19746:20;19742:1;19731:9;19727:17;19720:47;19784:131;19910:4;19784:131;:::i;:::-;19776:139;;19503:419;;;:::o;19928:225::-;20068:34;20064:1;20056:6;20052:14;20045:58;20137:8;20132:2;20124:6;20120:15;20113:33;19928:225;:::o;20159:366::-;20301:3;20322:67;20386:2;20381:3;20322:67;:::i;:::-;20315:74;;20398:93;20487:3;20398:93;:::i;:::-;20516:2;20511:3;20507:12;20500:19;;20159:366;;;:::o;20531:419::-;20697:4;20735:2;20724:9;20720:18;20712:26;;20784:9;20778:4;20774:20;20770:1;20759:9;20755:17;20748:47;20812:131;20938:4;20812:131;:::i;:::-;20804:139;;20531:419;;;:::o;20956:223::-;21096:34;21092:1;21084:6;21080:14;21073:58;21165:6;21160:2;21152:6;21148:15;21141:31;20956:223;:::o;21185:366::-;21327:3;21348:67;21412:2;21407:3;21348:67;:::i;:::-;21341:74;;21424:93;21513:3;21424:93;:::i;:::-;21542:2;21537:3;21533:12;21526:19;;21185:366;;;:::o;21557:419::-;21723:4;21761:2;21750:9;21746:18;21738:26;;21810:9;21804:4;21800:20;21796:1;21785:9;21781:17;21774:47;21838:131;21964:4;21838:131;:::i;:::-;21830:139;;21557:419;;;:::o;21982:221::-;22122:34;22118:1;22110:6;22106:14;22099:58;22191:4;22186:2;22178:6;22174:15;22167:29;21982:221;:::o;22209:366::-;22351:3;22372:67;22436:2;22431:3;22372:67;:::i;:::-;22365:74;;22448:93;22537:3;22448:93;:::i;:::-;22566:2;22561:3;22557:12;22550:19;;22209:366;;;:::o;22581:419::-;22747:4;22785:2;22774:9;22770:18;22762:26;;22834:9;22828:4;22824:20;22820:1;22809:9;22805:17;22798:47;22862:131;22988:4;22862:131;:::i;:::-;22854:139;;22581:419;;;:::o;23006:224::-;23146:34;23142:1;23134:6;23130:14;23123:58;23215:7;23210:2;23202:6;23198:15;23191:32;23006:224;:::o;23236:366::-;23378:3;23399:67;23463:2;23458:3;23399:67;:::i;:::-;23392:74;;23475:93;23564:3;23475:93;:::i;:::-;23593:2;23588:3;23584:12;23577:19;;23236:366;;;:::o;23608:419::-;23774:4;23812:2;23801:9;23797:18;23789:26;;23861:9;23855:4;23851:20;23847:1;23836:9;23832:17;23825:47;23889:131;24015:4;23889:131;:::i;:::-;23881:139;;23608:419;;;:::o;24033:222::-;24173:34;24169:1;24161:6;24157:14;24150:58;24242:5;24237:2;24229:6;24225:15;24218:30;24033:222;:::o;24261:366::-;24403:3;24424:67;24488:2;24483:3;24424:67;:::i;:::-;24417:74;;24500:93;24589:3;24500:93;:::i;:::-;24618:2;24613:3;24609:12;24602:19;;24261:366;;;:::o;24633:419::-;24799:4;24837:2;24826:9;24822:18;24814:26;;24886:9;24880:4;24876:20;24872:1;24861:9;24857:17;24850:47;24914:131;25040:4;24914:131;:::i;:::-;24906:139;;24633:419;;;:::o;25058:172::-;25198:24;25194:1;25186:6;25182:14;25175:48;25058:172;:::o;25236:366::-;25378:3;25399:67;25463:2;25458:3;25399:67;:::i;:::-;25392:74;;25475:93;25564:3;25475:93;:::i;:::-;25593:2;25588:3;25584:12;25577:19;;25236:366;;;:::o;25608:419::-;25774:4;25812:2;25801:9;25797:18;25789:26;;25861:9;25855:4;25851:20;25847:1;25836:9;25832:17;25825:47;25889:131;26015:4;25889:131;:::i;:::-;25881:139;;25608:419;;;:::o;26033:297::-;26173:34;26169:1;26161:6;26157:14;26150:58;26242:34;26237:2;26229:6;26225:15;26218:59;26311:11;26306:2;26298:6;26294:15;26287:36;26033:297;:::o;26336:366::-;26478:3;26499:67;26563:2;26558:3;26499:67;:::i;:::-;26492:74;;26575:93;26664:3;26575:93;:::i;:::-;26693:2;26688:3;26684:12;26677:19;;26336:366;;;:::o;26708:419::-;26874:4;26912:2;26901:9;26897:18;26889:26;;26961:9;26955:4;26951:20;26947:1;26936:9;26932:17;26925:47;26989:131;27115:4;26989:131;:::i;:::-;26981:139;;26708:419;;;:::o;27133:240::-;27273:34;27269:1;27261:6;27257:14;27250:58;27342:23;27337:2;27329:6;27325:15;27318:48;27133:240;:::o;27379:366::-;27521:3;27542:67;27606:2;27601:3;27542:67;:::i;:::-;27535:74;;27618:93;27707:3;27618:93;:::i;:::-;27736:2;27731:3;27727:12;27720:19;;27379:366;;;:::o;27751:419::-;27917:4;27955:2;27944:9;27940:18;27932:26;;28004:9;27998:4;27994:20;27990:1;27979:9;27975:17;27968:47;28032:131;28158:4;28032:131;:::i;:::-;28024:139;;27751:419;;;:::o;28176:169::-;28316:21;28312:1;28304:6;28300:14;28293:45;28176:169;:::o;28351:366::-;28493:3;28514:67;28578:2;28573:3;28514:67;:::i;:::-;28507:74;;28590:93;28679:3;28590:93;:::i;:::-;28708:2;28703:3;28699:12;28692:19;;28351:366;;;:::o;28723:419::-;28889:4;28927:2;28916:9;28912:18;28904:26;;28976:9;28970:4;28966:20;28962:1;28951:9;28947:17;28940:47;29004:131;29130:4;29004:131;:::i;:::-;28996:139;;28723:419;;;:::o;29148:241::-;29288:34;29284:1;29276:6;29272:14;29265:58;29357:24;29352:2;29344:6;29340:15;29333:49;29148:241;:::o;29395:366::-;29537:3;29558:67;29622:2;29617:3;29558:67;:::i;:::-;29551:74;;29634:93;29723:3;29634:93;:::i;:::-;29752:2;29747:3;29743:12;29736:19;;29395:366;;;:::o;29767:419::-;29933:4;29971:2;29960:9;29956:18;29948:26;;30020:9;30014:4;30010:20;30006:1;29995:9;29991:17;29984:47;30048:131;30174:4;30048:131;:::i;:::-;30040:139;;29767:419;;;:::o;30192:194::-;30232:4;30252:20;30270:1;30252:20;:::i;:::-;30247:25;;30286:20;30304:1;30286:20;:::i;:::-;30281:25;;30330:1;30327;30323:9;30315:17;;30354:1;30348:4;30345:11;30342:37;;;30359:18;;:::i;:::-;30342:37;30192:194;;;;:::o;30392:225::-;30532:34;30528:1;30520:6;30516:14;30509:58;30601:8;30596:2;30588:6;30584:15;30577:33;30392:225;:::o;30623:366::-;30765:3;30786:67;30850:2;30845:3;30786:67;:::i;:::-;30779:74;;30862:93;30951:3;30862:93;:::i;:::-;30980:2;30975:3;30971:12;30964:19;;30623:366;;;:::o;30995:419::-;31161:4;31199:2;31188:9;31184:18;31176:26;;31248:9;31242:4;31238:20;31234:1;31223:9;31219:17;31212:47;31276:131;31402:4;31276:131;:::i;:::-;31268:139;;30995:419;;;:::o;31420:147::-;31521:11;31558:3;31543:18;;31420:147;;;;:::o;31573:114::-;;:::o;31693:398::-;31852:3;31873:83;31954:1;31949:3;31873:83;:::i;:::-;31866:90;;31965:93;32054:3;31965:93;:::i;:::-;32083:1;32078:3;32074:11;32067:18;;31693:398;;;:::o;32097:379::-;32281:3;32303:147;32446:3;32303:147;:::i;:::-;32296:154;;32467:3;32460:10;;32097:379;;;:::o;32482:442::-;32631:4;32669:2;32658:9;32654:18;32646:26;;32682:71;32750:1;32739:9;32735:17;32726:6;32682:71;:::i;:::-;32763:72;32831:2;32820:9;32816:18;32807:6;32763:72;:::i;:::-;32845;32913:2;32902:9;32898:18;32889:6;32845:72;:::i;:::-;32482:442;;;;;;:::o;32930:180::-;32978:77;32975:1;32968:88;33075:4;33072:1;33065:15;33099:4;33096:1;33089:15;33116:180;33164:77;33161:1;33154:88;33261:4;33258:1;33251:15;33285:4;33282:1;33275:15;33302:143;33359:5;33390:6;33384:13;33375:22;;33406:33;33433:5;33406:33;:::i;:::-;33302:143;;;;:::o;33451:351::-;33521:6;33570:2;33558:9;33549:7;33545:23;33541:32;33538:119;;;33576:79;;:::i;:::-;33538:119;33696:1;33721:64;33777:7;33768:6;33757:9;33753:22;33721:64;:::i;:::-;33711:74;;33667:128;33451:351;;;;:::o;33808:85::-;33853:7;33882:5;33871:16;;33808:85;;;:::o;33899:158::-;33957:9;33990:61;34008:42;34017:32;34043:5;34017:32;:::i;:::-;34008:42;:::i;:::-;33990:61;:::i;:::-;33977:74;;33899:158;;;:::o;34063:147::-;34158:45;34197:5;34158:45;:::i;:::-;34153:3;34146:58;34063:147;;:::o;34216:114::-;34283:6;34317:5;34311:12;34301:22;;34216:114;;;:::o;34336:184::-;34435:11;34469:6;34464:3;34457:19;34509:4;34504:3;34500:14;34485:29;;34336:184;;;;:::o;34526:132::-;34593:4;34616:3;34608:11;;34646:4;34641:3;34637:14;34629:22;;34526:132;;;:::o;34664:108::-;34741:24;34759:5;34741:24;:::i;:::-;34736:3;34729:37;34664:108;;:::o;34778:179::-;34847:10;34868:46;34910:3;34902:6;34868:46;:::i;:::-;34946:4;34941:3;34937:14;34923:28;;34778:179;;;;:::o;34963:113::-;35033:4;35065;35060:3;35056:14;35048:22;;34963:113;;;:::o;35112:732::-;35231:3;35260:54;35308:5;35260:54;:::i;:::-;35330:86;35409:6;35404:3;35330:86;:::i;:::-;35323:93;;35440:56;35490:5;35440:56;:::i;:::-;35519:7;35550:1;35535:284;35560:6;35557:1;35554:13;35535:284;;;35636:6;35630:13;35663:63;35722:3;35707:13;35663:63;:::i;:::-;35656:70;;35749:60;35802:6;35749:60;:::i;:::-;35739:70;;35595:224;35582:1;35579;35575:9;35570:14;;35535:284;;;35539:14;35835:3;35828:10;;35236:608;;;35112:732;;;;:::o;35850:831::-;36113:4;36151:3;36140:9;36136:19;36128:27;;36165:71;36233:1;36222:9;36218:17;36209:6;36165:71;:::i;:::-;36246:80;36322:2;36311:9;36307:18;36298:6;36246:80;:::i;:::-;36373:9;36367:4;36363:20;36358:2;36347:9;36343:18;36336:48;36401:108;36504:4;36495:6;36401:108;:::i;:::-;36393:116;;36519:72;36587:2;36576:9;36572:18;36563:6;36519:72;:::i;:::-;36601:73;36669:3;36658:9;36654:19;36645:6;36601:73;:::i;:::-;35850:831;;;;;;;;:::o;36687:807::-;36936:4;36974:3;36963:9;36959:19;36951:27;;36988:71;37056:1;37045:9;37041:17;37032:6;36988:71;:::i;:::-;37069:72;37137:2;37126:9;37122:18;37113:6;37069:72;:::i;:::-;37151:80;37227:2;37216:9;37212:18;37203:6;37151:80;:::i;:::-;37241;37317:2;37306:9;37302:18;37293:6;37241:80;:::i;:::-;37331:73;37399:3;37388:9;37384:19;37375:6;37331:73;:::i;:::-;37414;37482:3;37471:9;37467:19;37458:6;37414:73;:::i;:::-;36687:807;;;;;;;;;:::o;37500:143::-;37557:5;37588:6;37582:13;37573:22;;37604:33;37631:5;37604:33;:::i;:::-;37500:143;;;;:::o;37649:663::-;37737:6;37745;37753;37802:2;37790:9;37781:7;37777:23;37773:32;37770:119;;;37808:79;;:::i;:::-;37770:119;37928:1;37953:64;38009:7;38000:6;37989:9;37985:22;37953:64;:::i;:::-;37943:74;;37899:128;38066:2;38092:64;38148:7;38139:6;38128:9;38124:22;38092:64;:::i;:::-;38082:74;;38037:129;38205:2;38231:64;38287:7;38278:6;38267:9;38263:22;38231:64;:::i;:::-;38221:74;;38176:129;37649:663;;;;;:::o

Swarm Source

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