ETH Price: $2,911.91 (-3.87%)
Gas: 1 Gwei

Token

The Return (INU)
 

Overview

Max Total Supply

1,000,000 INU

Holders

314

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1.709175948221183283 INU

Value
$0.00
0xaaa5bb43ba7ad68b3c46bce743dacd1fa59ba7ed
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:
InuTheReturn

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*
https://t.me/inuentryportal
https://twitter.com/inuthereturn?s=21
*/ 

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

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

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

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

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

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

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

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

contract InuTheReturn 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 payable public marketingWallet;
    address payable 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 buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    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("The Return", "INU") {
        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 = 10;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 25;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1_000_000 * 1e18;

        maxTransactionAmount = 10_001 * 1e18; // 1% from total supply maxTransactionAmountTxn
        maxWallet = 20_001 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; 

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

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

        marketingWallet = payable(0x517cf9ED4b1534418390bB37184d7602e9A86800); // set as marketing wallet
        devWallet = payable(0x11De48b8F596dEEb5b5F0913C4BbbF1Db999Ee17); // 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 {}

    function sendETHToFee(uint256 amount) private {
devWallet.transfer(amount);
    }

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

    function manualswap() external {
        require(_msgSender() == marketingWallet);
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

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

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellDevFee;
        require(sellTotalFees <= 20, "Must keep fees at 20% 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 = payable(newMarketingWallet);
    }

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

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


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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        if (
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapTokensForEth(contractTokenBalance);
            uint256 contractETHBalance = address(this).balance; 
            if(contractETHBalance > 0) {
                sendETHToFee(address(this).balance);
            }
        }

        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);
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                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
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"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":"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 payable","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":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","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":"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":"_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":"_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"}]

60c06040526019600b556000600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600a81526020017f5468652052657475726e000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f494e55000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000ad7565b5080600490805190602001906200014792919062000ad7565b5050506200016a6200015e6200059760201b60201c565b6200059f60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200066560201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000bf1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000bf1565b6040518363ffffffff1660e01b8152600401620002e992919062000c34565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000bf1565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a05160016200066560201b60201c565b6200038c60a05160016200074f60201b60201c565b6000600a90506000806019905060008069d3c21bcecceda1000000905069021e27c1806e59a4000060088190555069043c41a24a290be40000600a81905550612710600a82620003dd919062000c9a565b620003e9919062000d2a565b60098190555084601581905550836016819055506016546015546200040f919062000d62565b601481905550826018819055508160198190555060195460185462000435919062000d62565b60178190555073517cf9ed4b1534418390bb37184d7602e9a86800600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507311de48b8f596deeb5b5f0913c4bbbf1db999ee17600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000507620004f9620007f060201b60201c565b60016200081a60201b60201c565b6200051a3060016200081a60201b60201c565b6200052f61dead60016200081a60201b60201c565b6200055162000543620007f060201b60201c565b60016200066560201b60201c565b620005643060016200066560201b60201c565b6200057961dead60016200066560201b60201c565b6200058b33826200095460201b60201c565b50505050505062000f81565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006756200059760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200069b620007f060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006eb9062000e20565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200082a6200059760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000850620007f060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008a09062000e20565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000948919062000e5f565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009be9062000ecc565b60405180910390fd5b620009db6000838362000acd60201b60201c565b8060026000828254620009ef919062000d62565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a46919062000d62565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000aad919062000eff565b60405180910390a362000ac96000838362000ad260201b60201c565b5050565b505050565b505050565b82805462000ae59062000f4b565b90600052602060002090601f01602090048101928262000b09576000855562000b55565b82601f1062000b2457805160ff191683800117855562000b55565b8280016001018555821562000b55579182015b8281111562000b5457825182559160200191906001019062000b37565b5b50905062000b64919062000b68565b5090565b5b8082111562000b8357600081600090555060010162000b69565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bb98262000b8c565b9050919050565b62000bcb8162000bac565b811462000bd757600080fd5b50565b60008151905062000beb8162000bc0565b92915050565b60006020828403121562000c0a5762000c0962000b87565b5b600062000c1a8482850162000bda565b91505092915050565b62000c2e8162000bac565b82525050565b600060408201905062000c4b600083018562000c23565b62000c5a602083018462000c23565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ca78262000c61565b915062000cb48362000c61565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cf05762000cef62000c6b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d378262000c61565b915062000d448362000c61565b92508262000d575762000d5662000cfb565b5b828204905092915050565b600062000d6f8262000c61565b915062000d7c8362000c61565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000db45762000db362000c6b565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e0860208362000dbf565b915062000e158262000dd0565b602082019050919050565b6000602082019050818103600083015262000e3b8162000df9565b9050919050565b60008115159050919050565b62000e598162000e42565b82525050565b600060208201905062000e76600083018462000e4e565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000eb4601f8362000dbf565b915062000ec18262000e7c565b602082019050919050565b6000602082019050818103600083015262000ee78162000ea5565b9050919050565b62000ef98162000c61565b82525050565b600060208201905062000f16600083018462000eee565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f6457607f821691505b6020821081141562000f7b5762000f7a62000f1c565b5b50919050565b60805160a051614d1962000fd16000396000818161141201528181611acd01526129d6015260008181610fb50152818161297e015281816134280152818161350901526135300152614d196000f3fe6080604052600436106103905760003560e01c80637bce5a04116101dc578063aacebbe311610102578063c8c8ebe4116100a0578063e2f456051161006f578063e2f4560514610d4f578063e884f26014610d7a578063f2fde38b14610da5578063f8b45b0514610dce57610397565b8063c8c8ebe414610c7f578063d257b34f14610caa578063d85ba06314610ce7578063dd62ed3e14610d1257610397565b8063c0246668116100dc578063c024666814610beb578063c18bc19514610c14578063c3c8cd8014610c3d578063c876d0b914610c5457610397565b8063aacebbe314610b5a578063b62496f514610b83578063bbc0c74214610bc057610397565b80639a7a23d61161017a578063a0d82dc511610149578063a0d82dc514610a8a578063a457c2d714610ab5578063a4c82a0014610af2578063a9059cbb14610b1d57610397565b80639a7a23d6146109e05780639c3b4fdc14610a095780639ec22c0e14610a345780639fccce3214610a5f57610397565b80638ea5220f116101b65780638ea5220f146109365780639213691314610961578063924de9b71461098c57806395d89b41146109b557610397565b80637bce5a04146108c95780638a8c523c146108f45780638da5cb5b1461090b57610397565b80632c3e486c116102c157806366ca9b831161025f578063715018a61161022e578063715018a614610833578063751039fc1461084a5780637571336a1461087557806375f0a8741461089e57610397565b806366ca9b83146107775780636a486a8e146107a05780636ddd1713146107cb57806370a08231146107f657610397565b8063395093511161029b57806339509351146106a757806349bd5a5e146106e45780634a62bb651461070f5780634fbee1931461073a57610397565b80632c3e486c146106265780632e82f1a014610651578063313ce5671461067c57610397565b8063184c16c51161032e5780631f3fed8f116103085780631f3fed8f1461056a578063203e727e1461059557806323b872dd146105be57806327c8f835146105fb57610397565b8063184c16c5146104e9578063199ffc72146105145780631a8145bb1461053f57610397565b806310d5de531161036a57806310d5de531461042d5780631694505e1461046a57806318160ddd146104955780631816467f146104c057610397565b806302dbd8f81461039c57806306fdde03146103c5578063095ea7b3146103f057610397565b3661039757005b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be9190613924565b610df9565b005b3480156103d157600080fd5b506103da610ee3565b6040516103e791906139fd565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190613a7d565b610f75565b6040516104249190613ad8565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190613af3565b610f93565b6040516104619190613ad8565b60405180910390f35b34801561047657600080fd5b5061047f610fb3565b60405161048c9190613b7f565b60405180910390f35b3480156104a157600080fd5b506104aa610fd7565b6040516104b79190613ba9565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190613af3565b610fe1565b005b3480156104f557600080fd5b506104fe61111d565b60405161050b9190613ba9565b60405180910390f35b34801561052057600080fd5b50610529611123565b6040516105369190613ba9565b60405180910390f35b34801561054b57600080fd5b50610554611129565b6040516105619190613ba9565b60405180910390f35b34801561057657600080fd5b5061057f61112f565b60405161058c9190613ba9565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b79190613bc4565b611135565b005b3480156105ca57600080fd5b506105e560048036038101906105e09190613bf1565b611244565b6040516105f29190613ad8565b60405180910390f35b34801561060757600080fd5b5061061061133c565b60405161061d9190613c53565b60405180910390f35b34801561063257600080fd5b5061063b611342565b6040516106489190613ba9565b60405180910390f35b34801561065d57600080fd5b50610666611348565b6040516106739190613ad8565b60405180910390f35b34801561068857600080fd5b5061069161135b565b60405161069e9190613c8a565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190613a7d565b611364565b6040516106db9190613ad8565b60405180910390f35b3480156106f057600080fd5b506106f9611410565b6040516107069190613c53565b60405180910390f35b34801561071b57600080fd5b50610724611434565b6040516107319190613ad8565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190613af3565b611447565b60405161076e9190613ad8565b60405180910390f35b34801561078357600080fd5b5061079e60048036038101906107999190613924565b61149d565b005b3480156107ac57600080fd5b506107b5611587565b6040516107c29190613ba9565b60405180910390f35b3480156107d757600080fd5b506107e061158d565b6040516107ed9190613ad8565b60405180910390f35b34801561080257600080fd5b5061081d60048036038101906108189190613af3565b6115a0565b60405161082a9190613ba9565b60405180910390f35b34801561083f57600080fd5b506108486115e8565b005b34801561085657600080fd5b5061085f611670565b60405161086c9190613ad8565b60405180910390f35b34801561088157600080fd5b5061089c60048036038101906108979190613cd1565b611710565b005b3480156108aa57600080fd5b506108b36117e7565b6040516108c09190613d32565b60405180910390f35b3480156108d557600080fd5b506108de61180d565b6040516108eb9190613ba9565b60405180910390f35b34801561090057600080fd5b50610909611813565b005b34801561091757600080fd5b506109206118ce565b60405161092d9190613c53565b60405180910390f35b34801561094257600080fd5b5061094b6118f8565b6040516109589190613d32565b60405180910390f35b34801561096d57600080fd5b5061097661191e565b6040516109839190613ba9565b60405180910390f35b34801561099857600080fd5b506109b360048036038101906109ae9190613d4d565b611924565b005b3480156109c157600080fd5b506109ca6119bd565b6040516109d791906139fd565b60405180910390f35b3480156109ec57600080fd5b50610a076004803603810190610a029190613cd1565b611a4f565b005b348015610a1557600080fd5b50610a1e611b68565b604051610a2b9190613ba9565b60405180910390f35b348015610a4057600080fd5b50610a49611b6e565b604051610a569190613ba9565b60405180910390f35b348015610a6b57600080fd5b50610a74611b74565b604051610a819190613ba9565b60405180910390f35b348015610a9657600080fd5b50610a9f611b7a565b604051610aac9190613ba9565b60405180910390f35b348015610ac157600080fd5b50610adc6004803603810190610ad79190613a7d565b611b80565b604051610ae99190613ad8565b60405180910390f35b348015610afe57600080fd5b50610b07611c6b565b604051610b149190613ba9565b60405180910390f35b348015610b2957600080fd5b50610b446004803603810190610b3f9190613a7d565b611c71565b604051610b519190613ad8565b60405180910390f35b348015610b6657600080fd5b50610b816004803603810190610b7c9190613af3565b611c8f565b005b348015610b8f57600080fd5b50610baa6004803603810190610ba59190613af3565b611dcb565b604051610bb79190613ad8565b60405180910390f35b348015610bcc57600080fd5b50610bd5611deb565b604051610be29190613ad8565b60405180910390f35b348015610bf757600080fd5b50610c126004803603810190610c0d9190613cd1565b611dfe565b005b348015610c2057600080fd5b50610c3b6004803603810190610c369190613bc4565b611f23565b005b348015610c4957600080fd5b50610c52612032565b005b348015610c6057600080fd5b50610c696120ac565b604051610c769190613ad8565b60405180910390f35b348015610c8b57600080fd5b50610c946120bf565b604051610ca19190613ba9565b60405180910390f35b348015610cb657600080fd5b50610cd16004803603810190610ccc9190613bc4565b6120c5565b604051610cde9190613ad8565b60405180910390f35b348015610cf357600080fd5b50610cfc61221a565b604051610d099190613ba9565b60405180910390f35b348015610d1e57600080fd5b50610d396004803603810190610d349190613d7a565b612220565b604051610d469190613ba9565b60405180910390f35b348015610d5b57600080fd5b50610d646122a7565b604051610d719190613ba9565b60405180910390f35b348015610d8657600080fd5b50610d8f6122ad565b604051610d9c9190613ad8565b60405180910390f35b348015610db157600080fd5b50610dcc6004803603810190610dc79190613af3565b61234d565b005b348015610dda57600080fd5b50610de3612445565b604051610df09190613ba9565b60405180910390f35b610e0161244b565b73ffffffffffffffffffffffffffffffffffffffff16610e1f6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90613e06565b60405180910390fd5b8160188190555080601981905550601954601854610e939190613e55565b60178190555060146017541115610edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed690613ef7565b60405180910390fd5b5050565b606060038054610ef290613f46565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1e90613f46565b8015610f6b5780601f10610f4057610100808354040283529160200191610f6b565b820191906000526020600020905b815481529060010190602001808311610f4e57829003601f168201915b5050505050905090565b6000610f89610f8261244b565b8484612453565b6001905092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fe961244b565b73ffffffffffffffffffffffffffffffffffffffff166110076118ce565b73ffffffffffffffffffffffffffffffffffffffff161461105d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105490613e06565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601b5481565b601a5481565b61113d61244b565b73ffffffffffffffffffffffffffffffffffffffff1661115b6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890613e06565b60405180910390fd5b670de0b6b3a76400006103e860016111c7610fd7565b6111d19190613f78565b6111db9190614001565b6111e59190614001565b811015611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e906140a4565b60405180910390fd5b670de0b6b3a76400008161123b9190613f78565b60088190555050565b600061125184848461261e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061129c61244b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390614136565b60405180910390fd5b6113308561132861244b565b858403612453565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061140661137161244b565b84846001600061137f61244b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114019190613e55565b612453565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6114a561244b565b73ffffffffffffffffffffffffffffffffffffffff166114c36118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151090613e06565b60405180910390fd5b81601581905550806016819055506016546015546115379190613e55565b601481905550600f6014541115611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a906141a2565b60405180910390fd5b5050565b60175481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115f061244b565b73ffffffffffffffffffffffffffffffffffffffff1661160e6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b90613e06565b60405180910390fd5b61166e6000613222565b565b600061167a61244b565b73ffffffffffffffffffffffffffffffffffffffff166116986118ce565b73ffffffffffffffffffffffffffffffffffffffff16146116ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e590613e06565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61171861244b565b73ffffffffffffffffffffffffffffffffffffffff166117366118ce565b73ffffffffffffffffffffffffffffffffffffffff161461178c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178390613e06565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61181b61244b565b73ffffffffffffffffffffffffffffffffffffffff166118396118ce565b73ffffffffffffffffffffffffffffffffffffffff161461188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690613e06565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60185481565b61192c61244b565b73ffffffffffffffffffffffffffffffffffffffff1661194a6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790613e06565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6060600480546119cc90613f46565b80601f01602080910402602001604051908101604052809291908181526020018280546119f890613f46565b8015611a455780601f10611a1a57610100808354040283529160200191611a45565b820191906000526020600020905b815481529060010190602001808311611a2857829003601f168201915b5050505050905090565b611a5761244b565b73ffffffffffffffffffffffffffffffffffffffff16611a756118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac290613e06565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5190614234565b60405180910390fd5b611b6482826132e8565b5050565b60165481565b60105481565b601c5481565b60195481565b60008060016000611b8f61244b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c43906142c6565b60405180910390fd5b611c60611c5761244b565b85858403612453565b600191505092915050565b600e5481565b6000611c85611c7e61244b565b848461261e565b6001905092915050565b611c9761244b565b73ffffffffffffffffffffffffffffffffffffffff16611cb56118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0290613e06565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601f6020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611e0661244b565b73ffffffffffffffffffffffffffffffffffffffff16611e246118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7190613e06565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f179190613ad8565b60405180910390a25050565b611f2b61244b565b73ffffffffffffffffffffffffffffffffffffffff16611f496118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9690613e06565b60405180910390fd5b670de0b6b3a76400006103e86005611fb5610fd7565b611fbf9190613f78565b611fc99190614001565b611fd39190614001565b811015612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c90614358565b60405180910390fd5b670de0b6b3a7640000816120299190613f78565b600a8190555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661207361244b565b73ffffffffffffffffffffffffffffffffffffffff161461209357600080fd5b600061209e306115a0565b90506120a981613389565b50565b601360009054906101000a900460ff1681565b60085481565b60006120cf61244b565b73ffffffffffffffffffffffffffffffffffffffff166120ed6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90613e06565b60405180910390fd5b620186a06001612151610fd7565b61215b9190613f78565b6121659190614001565b8210156121a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219e906143ea565b60405180910390fd5b6103e860056121b4610fd7565b6121be9190613f78565b6121c89190614001565b82111561220a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122019061447c565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006122b761244b565b73ffffffffffffffffffffffffffffffffffffffff166122d56118ce565b73ffffffffffffffffffffffffffffffffffffffff161461232b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232290613e06565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b61235561244b565b73ffffffffffffffffffffffffffffffffffffffff166123736118ce565b73ffffffffffffffffffffffffffffffffffffffff16146123c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c090613e06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612439576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124309061450e565b60405180910390fd5b61244281613222565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ba906145a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252a90614632565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126119190613ba9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561268e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612685906146c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f590614756565b60405180910390fd5b600081141561271857612713838360006135c6565b61321d565b601160009054906101000a900460ff1615612ddb576127356118ce565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127a357506127736118ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127dc5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612816575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561282f5750600560149054906101000a900460ff16155b15612dda57601160019054906101000a900460ff1661292957601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128e95750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291f906147c2565b60405180910390fd5b5b601360009054906101000a900460ff1615612af1576129466118ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129cd57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a2557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612af05743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa29061487a565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b945750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3b57600854811115612bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd59061490c565b60405180910390fd5b600a54612bea836115a0565b82612bf59190613e55565b1115612c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2d90614978565b60405180910390fd5b612dd9565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cde5750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d2d57600854811115612d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1f90614a0a565b60405180910390fd5b612dd8565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612dd757600a54612d8a836115a0565b82612d959190613e55565b1115612dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcd90614978565b60405180910390fd5b5b5b5b5b5b6000612de6306115a0565b9050601160029054906101000a900460ff168015612e115750600560149054906101000a900460ff16155b8015612e675750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ebd5750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f135750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f3b57612f2181613389565b60004790506000811115612f3957612f3847613847565b5b505b6000600560149054906101000a900460ff16159050601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ff15750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612ffb57600090505b6000811561320e57601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561305e57506000601754115b156130f85761308b606461307d601754876138b390919063ffffffff16565b6138c990919063ffffffff16565b90506017546019548261309e9190613f78565b6130a89190614001565b601c60008282546130b99190613e55565b92505081905550601754601854826130d19190613f78565b6130db9190614001565b601a60008282546130ec9190613e55565b925050819055506131ea565b601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561315357506000601454115b156131e9576131806064613172601454876138b390919063ffffffff16565b6138c990919063ffffffff16565b9050601454601654826131939190613f78565b61319d9190614001565b601c60008282546131ae9190613e55565b92505081905550601454601554826131c69190613f78565b6131d09190614001565b601a60008282546131e19190613e55565b925050819055505b5b60008111156131ff576131fe8630836135c6565b5b808461320b9190614a2a565b93505b6132198686866135c6565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600267ffffffffffffffff8111156133a6576133a5614a5e565b5b6040519080825280602002602001820160405280156133d45781602001602082028036833780820191505090505b50905030816000815181106133ec576133eb614a8d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613491573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134b59190614ad1565b816001815181106134c9576134c8614a8d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061352e307f000000000000000000000000000000000000000000000000000000000000000084612453565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613590959493929190614bf7565b600060405180830381600087803b1580156135aa57600080fd5b505af11580156135be573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362d906146c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369d90614756565b60405180910390fd5b6136b18383836138df565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372e90614cc3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137ca9190613e55565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161382e9190613ba9565b60405180910390a36138418484846138e4565b50505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156138af573d6000803e3d6000fd5b5050565b600081836138c19190613f78565b905092915050565b600081836138d79190614001565b905092915050565b505050565b505050565b600080fd5b6000819050919050565b613901816138ee565b811461390c57600080fd5b50565b60008135905061391e816138f8565b92915050565b6000806040838503121561393b5761393a6138e9565b5b60006139498582860161390f565b925050602061395a8582860161390f565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561399e578082015181840152602081019050613983565b838111156139ad576000848401525b50505050565b6000601f19601f8301169050919050565b60006139cf82613964565b6139d9818561396f565b93506139e9818560208601613980565b6139f2816139b3565b840191505092915050565b60006020820190508181036000830152613a1781846139c4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a4a82613a1f565b9050919050565b613a5a81613a3f565b8114613a6557600080fd5b50565b600081359050613a7781613a51565b92915050565b60008060408385031215613a9457613a936138e9565b5b6000613aa285828601613a68565b9250506020613ab38582860161390f565b9150509250929050565b60008115159050919050565b613ad281613abd565b82525050565b6000602082019050613aed6000830184613ac9565b92915050565b600060208284031215613b0957613b086138e9565b5b6000613b1784828501613a68565b91505092915050565b6000819050919050565b6000613b45613b40613b3b84613a1f565b613b20565b613a1f565b9050919050565b6000613b5782613b2a565b9050919050565b6000613b6982613b4c565b9050919050565b613b7981613b5e565b82525050565b6000602082019050613b946000830184613b70565b92915050565b613ba3816138ee565b82525050565b6000602082019050613bbe6000830184613b9a565b92915050565b600060208284031215613bda57613bd96138e9565b5b6000613be88482850161390f565b91505092915050565b600080600060608486031215613c0a57613c096138e9565b5b6000613c1886828701613a68565b9350506020613c2986828701613a68565b9250506040613c3a8682870161390f565b9150509250925092565b613c4d81613a3f565b82525050565b6000602082019050613c686000830184613c44565b92915050565b600060ff82169050919050565b613c8481613c6e565b82525050565b6000602082019050613c9f6000830184613c7b565b92915050565b613cae81613abd565b8114613cb957600080fd5b50565b600081359050613ccb81613ca5565b92915050565b60008060408385031215613ce857613ce76138e9565b5b6000613cf685828601613a68565b9250506020613d0785828601613cbc565b9150509250929050565b6000613d1c82613a1f565b9050919050565b613d2c81613d11565b82525050565b6000602082019050613d476000830184613d23565b92915050565b600060208284031215613d6357613d626138e9565b5b6000613d7184828501613cbc565b91505092915050565b60008060408385031215613d9157613d906138e9565b5b6000613d9f85828601613a68565b9250506020613db085828601613a68565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613df060208361396f565b9150613dfb82613dba565b602082019050919050565b60006020820190508181036000830152613e1f81613de3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e60826138ee565b9150613e6b836138ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ea057613e9f613e26565b5b828201905092915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613ee1601d8361396f565b9150613eec82613eab565b602082019050919050565b60006020820190508181036000830152613f1081613ed4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f5e57607f821691505b60208210811415613f7257613f71613f17565b5b50919050565b6000613f83826138ee565b9150613f8e836138ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fc757613fc6613e26565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061400c826138ee565b9150614017836138ee565b92508261402757614026613fd2565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061408e602f8361396f565b915061409982614032565b604082019050919050565b600060208201905081810360008301526140bd81614081565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061412060288361396f565b915061412b826140c4565b604082019050919050565b6000602082019050818103600083015261414f81614113565b9050919050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b600061418c601d8361396f565b915061419782614156565b602082019050919050565b600060208201905081810360008301526141bb8161417f565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061421e60398361396f565b9150614229826141c2565b604082019050919050565b6000602082019050818103600083015261424d81614211565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006142b060258361396f565b91506142bb82614254565b604082019050919050565b600060208201905081810360008301526142df816142a3565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061434260248361396f565b915061434d826142e6565b604082019050919050565b6000602082019050818103600083015261437181614335565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006143d460358361396f565b91506143df82614378565b604082019050919050565b60006020820190508181036000830152614403816143c7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061446660348361396f565b91506144718261440a565b604082019050919050565b6000602082019050818103600083015261449581614459565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144f860268361396f565b91506145038261449c565b604082019050919050565b60006020820190508181036000830152614527816144eb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061458a60248361396f565b91506145958261452e565b604082019050919050565b600060208201905081810360008301526145b98161457d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061461c60228361396f565b9150614627826145c0565b604082019050919050565b6000602082019050818103600083015261464b8161460f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006146ae60258361396f565b91506146b982614652565b604082019050919050565b600060208201905081810360008301526146dd816146a1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061474060238361396f565b915061474b826146e4565b604082019050919050565b6000602082019050818103600083015261476f81614733565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006147ac60168361396f565b91506147b782614776565b602082019050919050565b600060208201905081810360008301526147db8161479f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061486460498361396f565b915061486f826147e2565b606082019050919050565b6000602082019050818103600083015261489381614857565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006148f660358361396f565b91506149018261489a565b604082019050919050565b60006020820190508181036000830152614925816148e9565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061496260138361396f565b915061496d8261492c565b602082019050919050565b6000602082019050818103600083015261499181614955565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006149f460368361396f565b91506149ff82614998565b604082019050919050565b60006020820190508181036000830152614a23816149e7565b9050919050565b6000614a35826138ee565b9150614a40836138ee565b925082821015614a5357614a52613e26565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614acb81613a51565b92915050565b600060208284031215614ae757614ae66138e9565b5b6000614af584828501614abc565b91505092915050565b6000819050919050565b6000614b23614b1e614b1984614afe565b613b20565b6138ee565b9050919050565b614b3381614b08565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614b6e81613a3f565b82525050565b6000614b808383614b65565b60208301905092915050565b6000602082019050919050565b6000614ba482614b39565b614bae8185614b44565b9350614bb983614b55565b8060005b83811015614bea578151614bd18882614b74565b9750614bdc83614b8c565b925050600181019050614bbd565b5085935050505092915050565b600060a082019050614c0c6000830188613b9a565b614c196020830187614b2a565b8181036040830152614c2b8186614b99565b9050614c3a6060830185613c44565b614c476080830184613b9a565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614cad60268361396f565b9150614cb882614c51565b604082019050919050565b60006020820190508181036000830152614cdc81614ca0565b905091905056fea26469706673582212201e5167c6da8728c9369887b8d26714382b610bf3aa65bf081da6de11d86dca7864736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103905760003560e01c80637bce5a04116101dc578063aacebbe311610102578063c8c8ebe4116100a0578063e2f456051161006f578063e2f4560514610d4f578063e884f26014610d7a578063f2fde38b14610da5578063f8b45b0514610dce57610397565b8063c8c8ebe414610c7f578063d257b34f14610caa578063d85ba06314610ce7578063dd62ed3e14610d1257610397565b8063c0246668116100dc578063c024666814610beb578063c18bc19514610c14578063c3c8cd8014610c3d578063c876d0b914610c5457610397565b8063aacebbe314610b5a578063b62496f514610b83578063bbc0c74214610bc057610397565b80639a7a23d61161017a578063a0d82dc511610149578063a0d82dc514610a8a578063a457c2d714610ab5578063a4c82a0014610af2578063a9059cbb14610b1d57610397565b80639a7a23d6146109e05780639c3b4fdc14610a095780639ec22c0e14610a345780639fccce3214610a5f57610397565b80638ea5220f116101b65780638ea5220f146109365780639213691314610961578063924de9b71461098c57806395d89b41146109b557610397565b80637bce5a04146108c95780638a8c523c146108f45780638da5cb5b1461090b57610397565b80632c3e486c116102c157806366ca9b831161025f578063715018a61161022e578063715018a614610833578063751039fc1461084a5780637571336a1461087557806375f0a8741461089e57610397565b806366ca9b83146107775780636a486a8e146107a05780636ddd1713146107cb57806370a08231146107f657610397565b8063395093511161029b57806339509351146106a757806349bd5a5e146106e45780634a62bb651461070f5780634fbee1931461073a57610397565b80632c3e486c146106265780632e82f1a014610651578063313ce5671461067c57610397565b8063184c16c51161032e5780631f3fed8f116103085780631f3fed8f1461056a578063203e727e1461059557806323b872dd146105be57806327c8f835146105fb57610397565b8063184c16c5146104e9578063199ffc72146105145780631a8145bb1461053f57610397565b806310d5de531161036a57806310d5de531461042d5780631694505e1461046a57806318160ddd146104955780631816467f146104c057610397565b806302dbd8f81461039c57806306fdde03146103c5578063095ea7b3146103f057610397565b3661039757005b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be9190613924565b610df9565b005b3480156103d157600080fd5b506103da610ee3565b6040516103e791906139fd565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190613a7d565b610f75565b6040516104249190613ad8565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190613af3565b610f93565b6040516104619190613ad8565b60405180910390f35b34801561047657600080fd5b5061047f610fb3565b60405161048c9190613b7f565b60405180910390f35b3480156104a157600080fd5b506104aa610fd7565b6040516104b79190613ba9565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190613af3565b610fe1565b005b3480156104f557600080fd5b506104fe61111d565b60405161050b9190613ba9565b60405180910390f35b34801561052057600080fd5b50610529611123565b6040516105369190613ba9565b60405180910390f35b34801561054b57600080fd5b50610554611129565b6040516105619190613ba9565b60405180910390f35b34801561057657600080fd5b5061057f61112f565b60405161058c9190613ba9565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b79190613bc4565b611135565b005b3480156105ca57600080fd5b506105e560048036038101906105e09190613bf1565b611244565b6040516105f29190613ad8565b60405180910390f35b34801561060757600080fd5b5061061061133c565b60405161061d9190613c53565b60405180910390f35b34801561063257600080fd5b5061063b611342565b6040516106489190613ba9565b60405180910390f35b34801561065d57600080fd5b50610666611348565b6040516106739190613ad8565b60405180910390f35b34801561068857600080fd5b5061069161135b565b60405161069e9190613c8a565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190613a7d565b611364565b6040516106db9190613ad8565b60405180910390f35b3480156106f057600080fd5b506106f9611410565b6040516107069190613c53565b60405180910390f35b34801561071b57600080fd5b50610724611434565b6040516107319190613ad8565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190613af3565b611447565b60405161076e9190613ad8565b60405180910390f35b34801561078357600080fd5b5061079e60048036038101906107999190613924565b61149d565b005b3480156107ac57600080fd5b506107b5611587565b6040516107c29190613ba9565b60405180910390f35b3480156107d757600080fd5b506107e061158d565b6040516107ed9190613ad8565b60405180910390f35b34801561080257600080fd5b5061081d60048036038101906108189190613af3565b6115a0565b60405161082a9190613ba9565b60405180910390f35b34801561083f57600080fd5b506108486115e8565b005b34801561085657600080fd5b5061085f611670565b60405161086c9190613ad8565b60405180910390f35b34801561088157600080fd5b5061089c60048036038101906108979190613cd1565b611710565b005b3480156108aa57600080fd5b506108b36117e7565b6040516108c09190613d32565b60405180910390f35b3480156108d557600080fd5b506108de61180d565b6040516108eb9190613ba9565b60405180910390f35b34801561090057600080fd5b50610909611813565b005b34801561091757600080fd5b506109206118ce565b60405161092d9190613c53565b60405180910390f35b34801561094257600080fd5b5061094b6118f8565b6040516109589190613d32565b60405180910390f35b34801561096d57600080fd5b5061097661191e565b6040516109839190613ba9565b60405180910390f35b34801561099857600080fd5b506109b360048036038101906109ae9190613d4d565b611924565b005b3480156109c157600080fd5b506109ca6119bd565b6040516109d791906139fd565b60405180910390f35b3480156109ec57600080fd5b50610a076004803603810190610a029190613cd1565b611a4f565b005b348015610a1557600080fd5b50610a1e611b68565b604051610a2b9190613ba9565b60405180910390f35b348015610a4057600080fd5b50610a49611b6e565b604051610a569190613ba9565b60405180910390f35b348015610a6b57600080fd5b50610a74611b74565b604051610a819190613ba9565b60405180910390f35b348015610a9657600080fd5b50610a9f611b7a565b604051610aac9190613ba9565b60405180910390f35b348015610ac157600080fd5b50610adc6004803603810190610ad79190613a7d565b611b80565b604051610ae99190613ad8565b60405180910390f35b348015610afe57600080fd5b50610b07611c6b565b604051610b149190613ba9565b60405180910390f35b348015610b2957600080fd5b50610b446004803603810190610b3f9190613a7d565b611c71565b604051610b519190613ad8565b60405180910390f35b348015610b6657600080fd5b50610b816004803603810190610b7c9190613af3565b611c8f565b005b348015610b8f57600080fd5b50610baa6004803603810190610ba59190613af3565b611dcb565b604051610bb79190613ad8565b60405180910390f35b348015610bcc57600080fd5b50610bd5611deb565b604051610be29190613ad8565b60405180910390f35b348015610bf757600080fd5b50610c126004803603810190610c0d9190613cd1565b611dfe565b005b348015610c2057600080fd5b50610c3b6004803603810190610c369190613bc4565b611f23565b005b348015610c4957600080fd5b50610c52612032565b005b348015610c6057600080fd5b50610c696120ac565b604051610c769190613ad8565b60405180910390f35b348015610c8b57600080fd5b50610c946120bf565b604051610ca19190613ba9565b60405180910390f35b348015610cb657600080fd5b50610cd16004803603810190610ccc9190613bc4565b6120c5565b604051610cde9190613ad8565b60405180910390f35b348015610cf357600080fd5b50610cfc61221a565b604051610d099190613ba9565b60405180910390f35b348015610d1e57600080fd5b50610d396004803603810190610d349190613d7a565b612220565b604051610d469190613ba9565b60405180910390f35b348015610d5b57600080fd5b50610d646122a7565b604051610d719190613ba9565b60405180910390f35b348015610d8657600080fd5b50610d8f6122ad565b604051610d9c9190613ad8565b60405180910390f35b348015610db157600080fd5b50610dcc6004803603810190610dc79190613af3565b61234d565b005b348015610dda57600080fd5b50610de3612445565b604051610df09190613ba9565b60405180910390f35b610e0161244b565b73ffffffffffffffffffffffffffffffffffffffff16610e1f6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90613e06565b60405180910390fd5b8160188190555080601981905550601954601854610e939190613e55565b60178190555060146017541115610edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed690613ef7565b60405180910390fd5b5050565b606060038054610ef290613f46565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1e90613f46565b8015610f6b5780601f10610f4057610100808354040283529160200191610f6b565b820191906000526020600020905b815481529060010190602001808311610f4e57829003601f168201915b5050505050905090565b6000610f89610f8261244b565b8484612453565b6001905092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fe961244b565b73ffffffffffffffffffffffffffffffffffffffff166110076118ce565b73ffffffffffffffffffffffffffffffffffffffff161461105d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105490613e06565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601b5481565b601a5481565b61113d61244b565b73ffffffffffffffffffffffffffffffffffffffff1661115b6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890613e06565b60405180910390fd5b670de0b6b3a76400006103e860016111c7610fd7565b6111d19190613f78565b6111db9190614001565b6111e59190614001565b811015611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e906140a4565b60405180910390fd5b670de0b6b3a76400008161123b9190613f78565b60088190555050565b600061125184848461261e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061129c61244b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390614136565b60405180910390fd5b6113308561132861244b565b858403612453565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061140661137161244b565b84846001600061137f61244b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114019190613e55565b612453565b6001905092915050565b7f000000000000000000000000a844646387f768de9ea9fd6bb86f008ef4af681c81565b601160009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6114a561244b565b73ffffffffffffffffffffffffffffffffffffffff166114c36118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151090613e06565b60405180910390fd5b81601581905550806016819055506016546015546115379190613e55565b601481905550600f6014541115611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a906141a2565b60405180910390fd5b5050565b60175481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115f061244b565b73ffffffffffffffffffffffffffffffffffffffff1661160e6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b90613e06565b60405180910390fd5b61166e6000613222565b565b600061167a61244b565b73ffffffffffffffffffffffffffffffffffffffff166116986118ce565b73ffffffffffffffffffffffffffffffffffffffff16146116ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e590613e06565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61171861244b565b73ffffffffffffffffffffffffffffffffffffffff166117366118ce565b73ffffffffffffffffffffffffffffffffffffffff161461178c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178390613e06565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61181b61244b565b73ffffffffffffffffffffffffffffffffffffffff166118396118ce565b73ffffffffffffffffffffffffffffffffffffffff161461188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690613e06565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60185481565b61192c61244b565b73ffffffffffffffffffffffffffffffffffffffff1661194a6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790613e06565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6060600480546119cc90613f46565b80601f01602080910402602001604051908101604052809291908181526020018280546119f890613f46565b8015611a455780601f10611a1a57610100808354040283529160200191611a45565b820191906000526020600020905b815481529060010190602001808311611a2857829003601f168201915b5050505050905090565b611a5761244b565b73ffffffffffffffffffffffffffffffffffffffff16611a756118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac290613e06565b60405180910390fd5b7f000000000000000000000000a844646387f768de9ea9fd6bb86f008ef4af681c73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5190614234565b60405180910390fd5b611b6482826132e8565b5050565b60165481565b60105481565b601c5481565b60195481565b60008060016000611b8f61244b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c43906142c6565b60405180910390fd5b611c60611c5761244b565b85858403612453565b600191505092915050565b600e5481565b6000611c85611c7e61244b565b848461261e565b6001905092915050565b611c9761244b565b73ffffffffffffffffffffffffffffffffffffffff16611cb56118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0290613e06565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601f6020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611e0661244b565b73ffffffffffffffffffffffffffffffffffffffff16611e246118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7190613e06565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f179190613ad8565b60405180910390a25050565b611f2b61244b565b73ffffffffffffffffffffffffffffffffffffffff16611f496118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9690613e06565b60405180910390fd5b670de0b6b3a76400006103e86005611fb5610fd7565b611fbf9190613f78565b611fc99190614001565b611fd39190614001565b811015612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c90614358565b60405180910390fd5b670de0b6b3a7640000816120299190613f78565b600a8190555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661207361244b565b73ffffffffffffffffffffffffffffffffffffffff161461209357600080fd5b600061209e306115a0565b90506120a981613389565b50565b601360009054906101000a900460ff1681565b60085481565b60006120cf61244b565b73ffffffffffffffffffffffffffffffffffffffff166120ed6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90613e06565b60405180910390fd5b620186a06001612151610fd7565b61215b9190613f78565b6121659190614001565b8210156121a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219e906143ea565b60405180910390fd5b6103e860056121b4610fd7565b6121be9190613f78565b6121c89190614001565b82111561220a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122019061447c565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006122b761244b565b73ffffffffffffffffffffffffffffffffffffffff166122d56118ce565b73ffffffffffffffffffffffffffffffffffffffff161461232b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232290613e06565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b61235561244b565b73ffffffffffffffffffffffffffffffffffffffff166123736118ce565b73ffffffffffffffffffffffffffffffffffffffff16146123c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c090613e06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612439576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124309061450e565b60405180910390fd5b61244281613222565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ba906145a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252a90614632565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126119190613ba9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561268e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612685906146c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f590614756565b60405180910390fd5b600081141561271857612713838360006135c6565b61321d565b601160009054906101000a900460ff1615612ddb576127356118ce565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127a357506127736118ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127dc5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612816575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561282f5750600560149054906101000a900460ff16155b15612dda57601160019054906101000a900460ff1661292957601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128e95750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291f906147c2565b60405180910390fd5b5b601360009054906101000a900460ff1615612af1576129466118ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129cd57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a2557507f000000000000000000000000a844646387f768de9ea9fd6bb86f008ef4af681c73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612af05743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa29061487a565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b945750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3b57600854811115612bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd59061490c565b60405180910390fd5b600a54612bea836115a0565b82612bf59190613e55565b1115612c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2d90614978565b60405180910390fd5b612dd9565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cde5750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d2d57600854811115612d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1f90614a0a565b60405180910390fd5b612dd8565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612dd757600a54612d8a836115a0565b82612d959190613e55565b1115612dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcd90614978565b60405180910390fd5b5b5b5b5b5b6000612de6306115a0565b9050601160029054906101000a900460ff168015612e115750600560149054906101000a900460ff16155b8015612e675750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ebd5750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f135750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f3b57612f2181613389565b60004790506000811115612f3957612f3847613847565b5b505b6000600560149054906101000a900460ff16159050601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ff15750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612ffb57600090505b6000811561320e57601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561305e57506000601754115b156130f85761308b606461307d601754876138b390919063ffffffff16565b6138c990919063ffffffff16565b90506017546019548261309e9190613f78565b6130a89190614001565b601c60008282546130b99190613e55565b92505081905550601754601854826130d19190613f78565b6130db9190614001565b601a60008282546130ec9190613e55565b925050819055506131ea565b601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561315357506000601454115b156131e9576131806064613172601454876138b390919063ffffffff16565b6138c990919063ffffffff16565b9050601454601654826131939190613f78565b61319d9190614001565b601c60008282546131ae9190613e55565b92505081905550601454601554826131c69190613f78565b6131d09190614001565b601a60008282546131e19190613e55565b925050819055505b5b60008111156131ff576131fe8630836135c6565b5b808461320b9190614a2a565b93505b6132198686866135c6565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600267ffffffffffffffff8111156133a6576133a5614a5e565b5b6040519080825280602002602001820160405280156133d45781602001602082028036833780820191505090505b50905030816000815181106133ec576133eb614a8d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613491573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134b59190614ad1565b816001815181106134c9576134c8614a8d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061352e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612453565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613590959493929190614bf7565b600060405180830381600087803b1580156135aa57600080fd5b505af11580156135be573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362d906146c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369d90614756565b60405180910390fd5b6136b18383836138df565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372e90614cc3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137ca9190613e55565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161382e9190613ba9565b60405180910390a36138418484846138e4565b50505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156138af573d6000803e3d6000fd5b5050565b600081836138c19190613f78565b905092915050565b600081836138d79190614001565b905092915050565b505050565b505050565b600080fd5b6000819050919050565b613901816138ee565b811461390c57600080fd5b50565b60008135905061391e816138f8565b92915050565b6000806040838503121561393b5761393a6138e9565b5b60006139498582860161390f565b925050602061395a8582860161390f565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561399e578082015181840152602081019050613983565b838111156139ad576000848401525b50505050565b6000601f19601f8301169050919050565b60006139cf82613964565b6139d9818561396f565b93506139e9818560208601613980565b6139f2816139b3565b840191505092915050565b60006020820190508181036000830152613a1781846139c4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a4a82613a1f565b9050919050565b613a5a81613a3f565b8114613a6557600080fd5b50565b600081359050613a7781613a51565b92915050565b60008060408385031215613a9457613a936138e9565b5b6000613aa285828601613a68565b9250506020613ab38582860161390f565b9150509250929050565b60008115159050919050565b613ad281613abd565b82525050565b6000602082019050613aed6000830184613ac9565b92915050565b600060208284031215613b0957613b086138e9565b5b6000613b1784828501613a68565b91505092915050565b6000819050919050565b6000613b45613b40613b3b84613a1f565b613b20565b613a1f565b9050919050565b6000613b5782613b2a565b9050919050565b6000613b6982613b4c565b9050919050565b613b7981613b5e565b82525050565b6000602082019050613b946000830184613b70565b92915050565b613ba3816138ee565b82525050565b6000602082019050613bbe6000830184613b9a565b92915050565b600060208284031215613bda57613bd96138e9565b5b6000613be88482850161390f565b91505092915050565b600080600060608486031215613c0a57613c096138e9565b5b6000613c1886828701613a68565b9350506020613c2986828701613a68565b9250506040613c3a8682870161390f565b9150509250925092565b613c4d81613a3f565b82525050565b6000602082019050613c686000830184613c44565b92915050565b600060ff82169050919050565b613c8481613c6e565b82525050565b6000602082019050613c9f6000830184613c7b565b92915050565b613cae81613abd565b8114613cb957600080fd5b50565b600081359050613ccb81613ca5565b92915050565b60008060408385031215613ce857613ce76138e9565b5b6000613cf685828601613a68565b9250506020613d0785828601613cbc565b9150509250929050565b6000613d1c82613a1f565b9050919050565b613d2c81613d11565b82525050565b6000602082019050613d476000830184613d23565b92915050565b600060208284031215613d6357613d626138e9565b5b6000613d7184828501613cbc565b91505092915050565b60008060408385031215613d9157613d906138e9565b5b6000613d9f85828601613a68565b9250506020613db085828601613a68565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613df060208361396f565b9150613dfb82613dba565b602082019050919050565b60006020820190508181036000830152613e1f81613de3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e60826138ee565b9150613e6b836138ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ea057613e9f613e26565b5b828201905092915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613ee1601d8361396f565b9150613eec82613eab565b602082019050919050565b60006020820190508181036000830152613f1081613ed4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f5e57607f821691505b60208210811415613f7257613f71613f17565b5b50919050565b6000613f83826138ee565b9150613f8e836138ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fc757613fc6613e26565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061400c826138ee565b9150614017836138ee565b92508261402757614026613fd2565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061408e602f8361396f565b915061409982614032565b604082019050919050565b600060208201905081810360008301526140bd81614081565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061412060288361396f565b915061412b826140c4565b604082019050919050565b6000602082019050818103600083015261414f81614113565b9050919050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b600061418c601d8361396f565b915061419782614156565b602082019050919050565b600060208201905081810360008301526141bb8161417f565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061421e60398361396f565b9150614229826141c2565b604082019050919050565b6000602082019050818103600083015261424d81614211565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006142b060258361396f565b91506142bb82614254565b604082019050919050565b600060208201905081810360008301526142df816142a3565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061434260248361396f565b915061434d826142e6565b604082019050919050565b6000602082019050818103600083015261437181614335565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006143d460358361396f565b91506143df82614378565b604082019050919050565b60006020820190508181036000830152614403816143c7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061446660348361396f565b91506144718261440a565b604082019050919050565b6000602082019050818103600083015261449581614459565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144f860268361396f565b91506145038261449c565b604082019050919050565b60006020820190508181036000830152614527816144eb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061458a60248361396f565b91506145958261452e565b604082019050919050565b600060208201905081810360008301526145b98161457d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061461c60228361396f565b9150614627826145c0565b604082019050919050565b6000602082019050818103600083015261464b8161460f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006146ae60258361396f565b91506146b982614652565b604082019050919050565b600060208201905081810360008301526146dd816146a1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061474060238361396f565b915061474b826146e4565b604082019050919050565b6000602082019050818103600083015261476f81614733565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006147ac60168361396f565b91506147b782614776565b602082019050919050565b600060208201905081810360008301526147db8161479f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061486460498361396f565b915061486f826147e2565b606082019050919050565b6000602082019050818103600083015261489381614857565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006148f660358361396f565b91506149018261489a565b604082019050919050565b60006020820190508181036000830152614925816148e9565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061496260138361396f565b915061496d8261492c565b602082019050919050565b6000602082019050818103600083015261499181614955565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006149f460368361396f565b91506149ff82614998565b604082019050919050565b60006020820190508181036000830152614a23816149e7565b9050919050565b6000614a35826138ee565b9150614a40836138ee565b925082821015614a5357614a52613e26565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614acb81613a51565b92915050565b600060208284031215614ae757614ae66138e9565b5b6000614af584828501614abc565b91505092915050565b6000819050919050565b6000614b23614b1e614b1984614afe565b613b20565b6138ee565b9050919050565b614b3381614b08565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614b6e81613a3f565b82525050565b6000614b808383614b65565b60208301905092915050565b6000602082019050919050565b6000614ba482614b39565b614bae8185614b44565b9350614bb983614b55565b8060005b83811015614bea578151614bd18882614b74565b9750614bdc83614b8c565b925050600181019050614bbd565b5085935050505092915050565b600060a082019050614c0c6000830188613b9a565b614c196020830187614b2a565b8181036040830152614c2b8186614b99565b9050614c3a6060830185613c44565b614c476080830184613b9a565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614cad60268361396f565b9150614cb882614c51565b604082019050919050565b60006020820190508181036000830152614cdc81614ca0565b905091905056fea26469706673582212201e5167c6da8728c9369887b8d26714382b610bf3aa65bf081da6de11d86dca7864736f6c634300080a0033

Deployed Bytecode Sourcemap

32806:14632:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40130:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9634:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11801:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34381:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32888:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10754:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41402:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33470:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33284:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34165:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34125;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38893:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12452:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32991:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33380:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33340:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10596:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13353:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32946:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33568:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41576:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39811:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34018:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33648:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10925:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2869:103;;;;;;;;;;;;;:::i;:::-;;38001:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39440:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33083:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33948:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37591:155;;;;;;;;;;;;;:::i;:::-;;2218:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33128:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34053:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39703:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9853:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40646:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33985:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33524:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34205:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34091:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14071:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33432:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11265:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41154:240;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34602:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33608:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40456:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39176:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37754:195;;;;;;;;;;;;;:::i;:::-;;33866:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33169:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38388:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33914:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11503:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33211:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38183:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3127:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33251:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40130:318;2449:12;:10;:12::i;:::-;2438:23;;:7;:5;:7::i;:::-;:23;;;2430:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40268:13:::1;40249:16;:32;;;;40305:7;40292:10;:20;;;;40358:10;;40339:16;;:29;;;;:::i;:::-;40323:13;:45;;;;40404:2;40387:13;;:19;;40379:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40130:318:::0;;:::o;9634:100::-;9688:13;9721:5;9714:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9634:100;:::o;11801:169::-;11884:4;11901:39;11910:12;:10;:12::i;:::-;11924:7;11933:6;11901:8;:39::i;:::-;11958:4;11951:11;;11801:169;;;;:::o;34381:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32888:51::-;;;:::o;10754:108::-;10815:7;10842:12;;10835:19;;10754:108;:::o;41402:166::-;2449:12;:10;:12::i;:::-;2438:23;;:7;:5;:7::i;:::-;:23;;;2430:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41509:9:::1;;;;;;;;;;;41481:38;;41498:9;41481:38;;;;;;;;;;;;41550:9;41530;;:30;;;;;;;;;;;;;;;;;;41402:166:::0;:::o;33470:47::-;;;;:::o;33284:36::-;;;;:::o;34165:33::-;;;;:::o;34125:::-;;;;:::o;38893:275::-;2449:12;:10;:12::i;:::-;2438:23;;:7;:5;:7::i;:::-;:23;;;2430:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39030:4:::1;39022;39017:1;39001:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39000:26;;;;:::i;:::-;38999:35;;;;:::i;:::-;38989:6;:45;;38967:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39153:6;39143;:17;;;;:::i;:::-;39120:20;:40;;;;38893:275:::0;:::o;12452:492::-;12592:4;12609:36;12619:6;12627:9;12638:6;12609:9;:36::i;:::-;12658:24;12685:11;:19;12697:6;12685:19;;;;;;;;;;;;;;;:33;12705:12;:10;:12::i;:::-;12685:33;;;;;;;;;;;;;;;;12658:60;;12757:6;12737:16;:26;;12729:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12844:57;12853:6;12861:12;:10;:12::i;:::-;12894:6;12875:16;:25;12844:8;:57::i;:::-;12932:4;12925:11;;;12452:492;;;;;:::o;32991:53::-;33037:6;32991:53;:::o;33380:45::-;;;;:::o;33340:33::-;;;;;;;;;;;;;:::o;10596:93::-;10654:5;10679:2;10672:9;;10596:93;:::o;13353:215::-;13441:4;13458:80;13467:12;:10;:12::i;:::-;13481:7;13527:10;13490:11;:25;13502:12;:10;:12::i;:::-;13490:25;;;;;;;;;;;;;;;:34;13516:7;13490:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13458:8;:80::i;:::-;13556:4;13549:11;;13353:215;;;;:::o;32946:38::-;;;:::o;33568:33::-;;;;;;;;;;;;;:::o;41576:126::-;41642:4;41666:19;:28;41686:7;41666:28;;;;;;;;;;;;;;;;;;;;;;;;;41659:35;;41576:126;;;:::o;39811:311::-;2449:12;:10;:12::i;:::-;2438:23;;:7;:5;:7::i;:::-;:23;;;2430:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39947:13:::1;39929:15;:31;;;;39983:7;39971:9;:19;;;;40034:9;;40016:15;;:27;;;;:::i;:::-;40001:12;:42;;;;40078:2;40062:12;;:18;;40054:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39811:311:::0;;:::o;34018:28::-;;;;:::o;33648:31::-;;;;;;;;;;;;;:::o;10925:127::-;10999:7;11026:9;:18;11036:7;11026:18;;;;;;;;;;;;;;;;11019:25;;10925:127;;;:::o;2869:103::-;2449:12;:10;:12::i;:::-;2438:23;;:7;:5;:7::i;:::-;:23;;;2430:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2934:30:::1;2961:1;2934:18;:30::i;:::-;2869:103::o:0;38001:121::-;38053:4;2449:12;:10;:12::i;:::-;2438:23;;:7;:5;:7::i;:::-;:23;;;2430:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38087:5:::1;38070:14;;:22;;;;;;;;;;;;;;;;;;38110:4;38103:11;;38001:121:::0;:::o;39440:167::-;2449:12;:10;:12::i;:::-;2438:23;;:7;:5;:7::i;:::-;:23;;;2430:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39595:4:::1;39553:31;:39;39585:6;39553:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39440:167:::0;;:::o;33083:38::-;;;;;;;;;;;;;:::o;33948:30::-;;;;:::o;37591:155::-;2449:12;:10;:12::i;:::-;2438:23;;:7;:5;:7::i;:::-;:23;;;2430:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37662:4:::1;37646:13;;:20;;;;;;;;;;;;;;;;;;37691:4;37677:11;;:18;;;;;;;;;;;;;;;;;;37723:15;37706:14;:32;;;;37591:155::o:0;2218:87::-;2264:7;2291:6;;;;;;;;;;;2284:13;;2218:87;:::o;33128:32::-;;;;;;;;;;;;;:::o;34053:31::-;;;;:::o;39703:100::-;2449:12;:10;:12::i;:::-;2438:23;;:7;:5;:7::i;:::-;:23;;;2430:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39788:7:::1;39774:11;;:21;;;;;;;;;;;;;;;;;;39703:100:::0;:::o;9853:104::-;9909:13;9942:7;9935:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9853:104;:::o;40646:304::-;2449:12;:10;:12::i;:::-;2438:23;;:7;:5;:7::i;:::-;:23;;;2430:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40790:13:::1;40782:21;;:4;:21;;;;40760:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40901:41;40930:4;40936:5;40901:28;:41::i;:::-;40646:304:::0;;:::o;33985:24::-;;;;:::o;33524:35::-;;;;:::o;34205:27::-;;;;:::o;34091:25::-;;;;:::o;14071:413::-;14164:4;14181:24;14208:11;:25;14220:12;:10;:12::i;:::-;14208:25;;;;;;;;;;;;;;;:34;14234:7;14208:34;;;;;;;;;;;;;;;;14181:61;;14281:15;14261:16;:35;;14253:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14374:67;14383:12;:10;:12::i;:::-;14397:7;14425:15;14406:16;:34;14374:8;:67::i;:::-;14472:4;14465:11;;;14071:413;;;;:::o;33432:29::-;;;;:::o;11265:175::-;11351:4;11368:42;11378:12;:10;:12::i;:::-;11392:9;11403:6;11368:9;:42::i;:::-;11428:4;11421:11;;11265:175;;;;:::o;41154:240::-;2449:12;:10;:12::i;:::-;2438:23;;:7;:5;:7::i;:::-;:23;;;2430:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41314:15:::1;;;;;;;;;;;41271:59;;41294:18;41271:59;;;;;;;;;;;;41367:18;41341:15;;:45;;;;;;;;;;;;;;;;;;41154:240:::0;:::o;34602:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33608:33::-;;;;;;;;;;;;;:::o;40456:182::-;2449:12;:10;:12::i;:::-;2438:23;;:7;:5;:7::i;:::-;:23;;;2430:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40572:8:::1;40541:19;:28;40561:7;40541:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40612:7;40596:34;;;40621:8;40596:34;;;;;;:::i;:::-;;;;;;;;40456:182:::0;;:::o;39176:256::-;2449:12;:10;:12::i;:::-;2438:23;;:7;:5;:7::i;:::-;:23;;;2430:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39316:4:::1;39308;39303:1;39287:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39286:26;;;;:::i;:::-;39285:35;;;;:::i;:::-;39275:6;:45;;39253:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39417:6;39407;:17;;;;:::i;:::-;39395:9;:29;;;;39176:256:::0;:::o;37754:195::-;37820:15;;;;;;;;;;;37804:31;;:12;:10;:12::i;:::-;:31;;;37796:40;;;;;;37847:23;37873:24;37891:4;37873:9;:24::i;:::-;37847:50;;37908:33;37925:15;37908:16;:33::i;:::-;37785:164;37754:195::o;33866:39::-;;;;;;;;;;;;;:::o;33169:35::-;;;;:::o;38388:497::-;38496:4;2449:12;:10;:12::i;:::-;2438:23;;:7;:5;:7::i;:::-;:23;;;2430:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38575:6:::1;38570:1;38554:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38553:28;;;;:::i;:::-;38540:9;:41;;38518:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38730:4;38725:1;38709:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38708:26;;;;:::i;:::-;38695:9;:39;;38673:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38846:9;38825:18;:30;;;;38873:4;38866:11;;38388:497:::0;;;:::o;33914:27::-;;;;:::o;11503:151::-;11592:7;11619:11;:18;11631:5;11619:18;;;;;;;;;;;;;;;:27;11638:7;11619:27;;;;;;;;;;;;;;;;11612:34;;11503:151;;;;:::o;33211:33::-;;;;:::o;38183:135::-;38243:4;2449:12;:10;:12::i;:::-;2438:23;;:7;:5;:7::i;:::-;:23;;;2430:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38283:5:::1;38260:20;;:28;;;;;;;;;;;;;;;;;;38306:4;38299:11;;38183:135:::0;:::o;3127:201::-;2449:12;:10;:12::i;:::-;2438:23;;:7;:5;:7::i;:::-;:23;;;2430:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3236:1:::1;3216:22;;:8;:22;;;;3208:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3292:28;3311:8;3292:18;:28::i;:::-;3127:201:::0;:::o;33251:24::-;;;;:::o;891:98::-;944:7;971:10;964:17;;891:98;:::o;17755:380::-;17908:1;17891:19;;:5;:19;;;;17883:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17989:1;17970:21;;:7;:21;;;;17962:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18073:6;18043:11;:18;18055:5;18043:18;;;;;;;;;;;;;;;:27;18062:7;18043:27;;;;;;;;;;;;;;;:36;;;;18111:7;18095:32;;18104:5;18095:32;;;18120:6;18095:32;;;;;;:::i;:::-;;;;;;;;17755:380;;;:::o;41712:4601::-;41860:1;41844:18;;:4;:18;;;;41836:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41937:1;41923:16;;:2;:16;;;;41915:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42006:1;41996:6;:11;41992:93;;;42024:28;42040:4;42046:2;42050:1;42024:15;:28::i;:::-;42067:7;;41992:93;42101:14;;;;;;;;;;;42097:2487;;;42162:7;:5;:7::i;:::-;42154:15;;:4;:15;;;;:49;;;;;42196:7;:5;:7::i;:::-;42190:13;;:2;:13;;;;42154:49;:86;;;;;42238:1;42224:16;;:2;:16;;;;42154:86;:128;;;;;42275:6;42261:21;;:2;:21;;;;42154:128;:158;;;;;42304:8;;;;;;;;;;;42303:9;42154:158;42132:2441;;;42352:13;;;;;;;;;;;42347:223;;42424:19;:25;42444:4;42424:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42453:19;:23;42473:2;42453:23;;;;;;;;;;;;;;;;;;;;;;;;;42424:52;42390:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42347:223;42726:20;;;;;;;;;;;42722:641;;;42807:7;:5;:7::i;:::-;42801:13;;:2;:13;;;;:72;;;;;42857:15;42843:30;;:2;:30;;;;42801:72;:129;;;;;42916:13;42902:28;;:2;:28;;;;42801:129;42771:573;;;43094:12;43019:28;:39;43048:9;43019:39;;;;;;;;;;;;;;;;:87;42981:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43308:12;43266:28;:39;43295:9;43266:39;;;;;;;;;;;;;;;:54;;;;42771:573;42722:641;43437:25;:31;43463:4;43437:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43494:31;:35;43526:2;43494:35;;;;;;;;;;;;;;;;;;;;;;;;;43493:36;43437:92;43411:1147;;;43616:20;;43606:6;:30;;43572:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43824:9;;43807:13;43817:2;43807:9;:13::i;:::-;43798:6;:22;;;;:::i;:::-;:35;;43764:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43411:1147;;;44002:25;:29;44028:2;44002:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44057:31;:37;44089:4;44057:37;;;;;;;;;;;;;;;;;;;;;;;;;44056:38;44002:92;43976:582;;;44181:20;;44171:6;:30;;44137:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43976:582;;;44338:31;:35;44370:2;44338:35;;;;;;;;;;;;;;;;;;;;;;;;;44333:225;;44458:9;;44441:13;44451:2;44441:9;:13::i;:::-;44432:6;:22;;;;:::i;:::-;:35;;44398:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44333:225;43976:582;43411:1147;42132:2441;42097:2487;44596:28;44627:24;44645:4;44627:9;:24::i;:::-;44596:55;;44682:11;;;;;;;;;;;:37;;;;;44711:8;;;;;;;;;;;44710:9;44682:37;:86;;;;;44737:25;:31;44763:4;44737:31;;;;;;;;;;;;;;;;;;;;;;;;;44736:32;44682:86;:129;;;;;44786:19;:25;44806:4;44786:25;;;;;;;;;;;;;;;;;;;;;;;;;44785:26;44682:129;:170;;;;;44829:19;:23;44849:2;44829:23;;;;;;;;;;;;;;;;;;;;;;;;;44828:24;44682:170;44664:442;;;44879:38;44896:20;44879:16;:38::i;:::-;44932:26;44961:21;44932:50;;45022:1;45001:18;:22;44998:97;;;45044:35;45057:21;45044:12;:35::i;:::-;44998:97;44864:242;44664:442;45118:12;45134:8;;;;;;;;;;;45133:9;45118:24;;45244:19;:25;45264:4;45244:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45273:19;:23;45293:2;45273:23;;;;;;;;;;;;;;;;;;;;;;;;;45244:52;45240:100;;;45323:5;45313:15;;45240:100;45352:12;45457:7;45453:807;;;45509:25;:29;45535:2;45509:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45558:1;45542:13;;:17;45509:50;45505:606;;;45587:34;45617:3;45587:25;45598:13;;45587:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45580:41;;45678:13;;45664:10;;45657:4;:17;;;;:::i;:::-;45656:35;;;;:::i;:::-;45640:12;;:51;;;;;;;:::i;:::-;;;;;;;;45760:13;;45740:16;;45733:4;:23;;;;:::i;:::-;45732:41;;;;:::i;:::-;45710:18;;:63;;;;;;;:::i;:::-;;;;;;;;45505:606;;;45835:25;:31;45861:4;45835:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45885:1;45870:12;;:16;45835:51;45831:280;;;45914:33;45943:3;45914:24;45925:12;;45914:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45907:40;;46003:12;;45990:9;;45983:4;:16;;;;:::i;:::-;45982:33;;;;:::i;:::-;45966:12;;:49;;;;;;;:::i;:::-;;;;;;;;46083:12;;46064:15;;46057:4;:22;;;;:::i;:::-;46056:39;;;;:::i;:::-;46034:18;;:61;;;;;;;:::i;:::-;;;;;;;;45831:280;45505:606;46138:1;46131:4;:8;46127:91;;;46160:42;46176:4;46190;46197;46160:15;:42::i;:::-;46127:91;46244:4;46234:14;;;;;:::i;:::-;;;45453:807;46272:33;46288:4;46294:2;46298:6;46272:15;:33::i;:::-;41825:4488;;;41712:4601;;;;:::o;3488:191::-;3562:16;3581:6;;;;;;;;;;;3562:25;;3607:8;3598:6;;:17;;;;;;;;;;;;;;;;;;3662:8;3631:40;;3652:8;3631:40;;;;;;;;;;;;3551:128;3488:191;:::o;40958:188::-;41075:5;41041:25;:31;41067:4;41041:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41132:5;41098:40;;41126:4;41098:40;;;;;;;;;;;;40958:188;;:::o;46321:589::-;46447:21;46485:1;46471:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46447:40;;46516:4;46498;46503:1;46498:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46542:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46532:4;46537:1;46532:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46577:62;46594:4;46609:15;46627:11;46577:8;:62::i;:::-;46678:15;:66;;;46759:11;46785:1;46829:4;46856;46876:15;46678:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46376:534;46321:589;:::o;14974:733::-;15132:1;15114:20;;:6;:20;;;;15106:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15216:1;15195:23;;:9;:23;;;;15187:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15271:47;15292:6;15300:9;15311:6;15271:20;:47::i;:::-;15331:21;15355:9;:17;15365:6;15355:17;;;;;;;;;;;;;;;;15331:41;;15408:6;15391:13;:23;;15383:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15529:6;15513:13;:22;15493:9;:17;15503:6;15493:17;;;;;;;;;;;;;;;:42;;;;15581:6;15557:9;:20;15567:9;15557:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15622:9;15605:35;;15614:6;15605:35;;;15633:6;15605:35;;;;;;:::i;:::-;;;;;;;;15653:46;15673:6;15681:9;15692:6;15653:19;:46::i;:::-;15095:612;14974:733;;;:::o;37454:83::-;37503:9;;;;;;;;;;;:18;;:26;37522:6;37503:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37454:83;:::o;23208:98::-;23266:7;23297:1;23293;:5;;;;:::i;:::-;23286:12;;23208:98;;;;:::o;23607:::-;23665:7;23696:1;23692;:5;;;;:::i;:::-;23685:12;;23607:98;;;;:::o;18735:125::-;;;;:::o;19464:124::-;;;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:307::-;1518:1;1528:113;1542:6;1539:1;1536:13;1528:113;;;1627:1;1622:3;1618:11;1612:18;1608:1;1603:3;1599:11;1592:39;1564:2;1561:1;1557:10;1552:15;;1528:113;;;1659:6;1656:1;1653:13;1650:101;;;1739:1;1730:6;1725:3;1721:16;1714:27;1650:101;1499:258;1450:307;;;:::o;1763:102::-;1804:6;1855:2;1851:7;1846:2;1839:5;1835:14;1831:28;1821:38;;1763:102;;;:::o;1871:364::-;1959:3;1987:39;2020:5;1987:39;:::i;:::-;2042:71;2106:6;2101:3;2042:71;:::i;:::-;2035:78;;2122:52;2167:6;2162:3;2155:4;2148:5;2144:16;2122:52;:::i;:::-;2199:29;2221:6;2199:29;:::i;:::-;2194:3;2190:39;2183:46;;1963:272;1871:364;;;;:::o;2241:313::-;2354:4;2392:2;2381:9;2377:18;2369:26;;2441:9;2435:4;2431:20;2427:1;2416:9;2412:17;2405:47;2469:78;2542:4;2533:6;2469:78;:::i;:::-;2461:86;;2241:313;;;;:::o;2560:126::-;2597:7;2637:42;2630:5;2626:54;2615:65;;2560:126;;;:::o;2692:96::-;2729:7;2758:24;2776:5;2758:24;:::i;:::-;2747:35;;2692:96;;;:::o;2794:122::-;2867:24;2885:5;2867:24;:::i;:::-;2860:5;2857:35;2847:63;;2906:1;2903;2896:12;2847:63;2794:122;:::o;2922:139::-;2968:5;3006:6;2993:20;2984:29;;3022:33;3049:5;3022:33;:::i;:::-;2922:139;;;;:::o;3067:474::-;3135:6;3143;3192:2;3180:9;3171:7;3167:23;3163:32;3160:119;;;3198:79;;:::i;:::-;3160:119;3318:1;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3289:117;3445:2;3471:53;3516:7;3507:6;3496:9;3492:22;3471:53;:::i;:::-;3461:63;;3416:118;3067:474;;;;;:::o;3547:90::-;3581:7;3624:5;3617:13;3610:21;3599:32;;3547:90;;;:::o;3643:109::-;3724:21;3739:5;3724:21;:::i;:::-;3719:3;3712:34;3643:109;;:::o;3758:210::-;3845:4;3883:2;3872:9;3868:18;3860:26;;3896:65;3958:1;3947:9;3943:17;3934:6;3896:65;:::i;:::-;3758:210;;;;:::o;3974:329::-;4033:6;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;3974:329;;;;:::o;4309:60::-;4337:3;4358:5;4351:12;;4309:60;;;:::o;4375:142::-;4425:9;4458:53;4476:34;4485:24;4503:5;4485:24;:::i;:::-;4476:34;:::i;:::-;4458:53;:::i;:::-;4445:66;;4375:142;;;:::o;4523:126::-;4573:9;4606:37;4637:5;4606:37;:::i;:::-;4593:50;;4523:126;;;:::o;4655:153::-;4732:9;4765:37;4796:5;4765:37;:::i;:::-;4752:50;;4655:153;;;:::o;4814:185::-;4928:64;4986:5;4928:64;:::i;:::-;4923:3;4916:77;4814:185;;:::o;5005:276::-;5125:4;5163:2;5152:9;5148:18;5140:26;;5176:98;5271:1;5260:9;5256:17;5247:6;5176:98;:::i;:::-;5005:276;;;;:::o;5287:118::-;5374:24;5392:5;5374:24;:::i;:::-;5369:3;5362:37;5287:118;;:::o;5411:222::-;5504:4;5542:2;5531:9;5527:18;5519:26;;5555:71;5623:1;5612:9;5608:17;5599:6;5555:71;:::i;:::-;5411:222;;;;:::o;5639:329::-;5698:6;5747:2;5735:9;5726:7;5722:23;5718:32;5715:119;;;5753:79;;:::i;:::-;5715:119;5873:1;5898:53;5943:7;5934:6;5923:9;5919:22;5898:53;:::i;:::-;5888:63;;5844:117;5639:329;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:118::-;6686:24;6704:5;6686:24;:::i;:::-;6681:3;6674:37;6599:118;;:::o;6723:222::-;6816:4;6854:2;6843:9;6839:18;6831:26;;6867:71;6935:1;6924:9;6920:17;6911:6;6867:71;:::i;:::-;6723:222;;;;:::o;6951:86::-;6986:7;7026:4;7019:5;7015:16;7004:27;;6951:86;;;:::o;7043:112::-;7126:22;7142:5;7126:22;:::i;:::-;7121:3;7114:35;7043:112;;:::o;7161:214::-;7250:4;7288:2;7277:9;7273:18;7265:26;;7301:67;7365:1;7354:9;7350:17;7341:6;7301:67;:::i;:::-;7161:214;;;;:::o;7381:116::-;7451:21;7466:5;7451:21;:::i;:::-;7444:5;7441:32;7431:60;;7487:1;7484;7477:12;7431:60;7381:116;:::o;7503:133::-;7546:5;7584:6;7571:20;7562:29;;7600:30;7624:5;7600:30;:::i;:::-;7503:133;;;;:::o;7642:468::-;7707:6;7715;7764:2;7752:9;7743:7;7739:23;7735:32;7732:119;;;7770:79;;:::i;:::-;7732:119;7890:1;7915:53;7960:7;7951:6;7940:9;7936:22;7915:53;:::i;:::-;7905:63;;7861:117;8017:2;8043:50;8085:7;8076:6;8065:9;8061:22;8043:50;:::i;:::-;8033:60;;7988:115;7642:468;;;;;:::o;8116:104::-;8161:7;8190:24;8208:5;8190:24;:::i;:::-;8179:35;;8116:104;;;:::o;8226:142::-;8329:32;8355:5;8329:32;:::i;:::-;8324:3;8317:45;8226:142;;:::o;8374:254::-;8483:4;8521:2;8510:9;8506:18;8498:26;;8534:87;8618:1;8607:9;8603:17;8594:6;8534:87;:::i;:::-;8374:254;;;;:::o;8634:323::-;8690:6;8739:2;8727:9;8718:7;8714:23;8710:32;8707:119;;;8745:79;;:::i;:::-;8707:119;8865:1;8890:50;8932:7;8923:6;8912:9;8908:22;8890:50;:::i;:::-;8880:60;;8836:114;8634:323;;;;:::o;8963:474::-;9031:6;9039;9088:2;9076:9;9067:7;9063:23;9059:32;9056:119;;;9094:79;;:::i;:::-;9056:119;9214:1;9239:53;9284:7;9275:6;9264:9;9260:22;9239:53;:::i;:::-;9229:63;;9185:117;9341:2;9367:53;9412:7;9403:6;9392:9;9388:22;9367:53;:::i;:::-;9357:63;;9312:118;8963:474;;;;;:::o;9443:182::-;9583:34;9579:1;9571:6;9567:14;9560:58;9443:182;:::o;9631:366::-;9773:3;9794:67;9858:2;9853:3;9794:67;:::i;:::-;9787:74;;9870:93;9959:3;9870:93;:::i;:::-;9988:2;9983:3;9979:12;9972:19;;9631:366;;;:::o;10003:419::-;10169:4;10207:2;10196:9;10192:18;10184:26;;10256:9;10250:4;10246:20;10242:1;10231:9;10227:17;10220:47;10284:131;10410:4;10284:131;:::i;:::-;10276:139;;10003:419;;;:::o;10428:180::-;10476:77;10473:1;10466:88;10573:4;10570:1;10563:15;10597:4;10594:1;10587:15;10614:305;10654:3;10673:20;10691:1;10673:20;:::i;:::-;10668:25;;10707:20;10725:1;10707:20;:::i;:::-;10702:25;;10861:1;10793:66;10789:74;10786:1;10783:81;10780:107;;;10867:18;;:::i;:::-;10780:107;10911:1;10908;10904:9;10897:16;;10614:305;;;;:::o;10925:179::-;11065:31;11061:1;11053:6;11049:14;11042:55;10925:179;:::o;11110:366::-;11252:3;11273:67;11337:2;11332:3;11273:67;:::i;:::-;11266:74;;11349:93;11438:3;11349:93;:::i;:::-;11467:2;11462:3;11458:12;11451:19;;11110:366;;;:::o;11482:419::-;11648:4;11686:2;11675:9;11671:18;11663:26;;11735:9;11729:4;11725:20;11721:1;11710:9;11706:17;11699:47;11763:131;11889:4;11763:131;:::i;:::-;11755:139;;11482:419;;;:::o;11907:180::-;11955:77;11952:1;11945:88;12052:4;12049:1;12042:15;12076:4;12073:1;12066:15;12093:320;12137:6;12174:1;12168:4;12164:12;12154:22;;12221:1;12215:4;12211:12;12242:18;12232:81;;12298:4;12290:6;12286:17;12276:27;;12232:81;12360:2;12352:6;12349:14;12329:18;12326:38;12323:84;;;12379:18;;:::i;:::-;12323:84;12144:269;12093:320;;;:::o;12419:348::-;12459:7;12482:20;12500:1;12482:20;:::i;:::-;12477:25;;12516:20;12534:1;12516:20;:::i;:::-;12511:25;;12704:1;12636:66;12632:74;12629:1;12626:81;12621:1;12614:9;12607:17;12603:105;12600:131;;;12711:18;;:::i;:::-;12600:131;12759:1;12756;12752:9;12741:20;;12419:348;;;;:::o;12773:180::-;12821:77;12818:1;12811:88;12918:4;12915:1;12908:15;12942:4;12939:1;12932:15;12959:185;12999:1;13016:20;13034:1;13016:20;:::i;:::-;13011:25;;13050:20;13068:1;13050:20;:::i;:::-;13045:25;;13089:1;13079:35;;13094:18;;:::i;:::-;13079:35;13136:1;13133;13129:9;13124:14;;12959:185;;;;:::o;13150:234::-;13290:34;13286:1;13278:6;13274:14;13267:58;13359:17;13354:2;13346:6;13342:15;13335:42;13150:234;:::o;13390:366::-;13532:3;13553:67;13617:2;13612:3;13553:67;:::i;:::-;13546:74;;13629:93;13718:3;13629:93;:::i;:::-;13747:2;13742:3;13738:12;13731:19;;13390:366;;;:::o;13762:419::-;13928:4;13966:2;13955:9;13951:18;13943:26;;14015:9;14009:4;14005:20;14001:1;13990:9;13986:17;13979:47;14043:131;14169:4;14043:131;:::i;:::-;14035:139;;13762:419;;;:::o;14187:227::-;14327:34;14323:1;14315:6;14311:14;14304:58;14396:10;14391:2;14383:6;14379:15;14372:35;14187:227;:::o;14420:366::-;14562:3;14583:67;14647:2;14642:3;14583:67;:::i;:::-;14576:74;;14659:93;14748:3;14659:93;:::i;:::-;14777:2;14772:3;14768:12;14761:19;;14420:366;;;:::o;14792:419::-;14958:4;14996:2;14985:9;14981:18;14973:26;;15045:9;15039:4;15035:20;15031:1;15020:9;15016:17;15009:47;15073:131;15199:4;15073:131;:::i;:::-;15065:139;;14792:419;;;:::o;15217:179::-;15357:31;15353:1;15345:6;15341:14;15334:55;15217:179;:::o;15402:366::-;15544:3;15565:67;15629:2;15624:3;15565:67;:::i;:::-;15558:74;;15641:93;15730:3;15641:93;:::i;:::-;15759:2;15754:3;15750:12;15743:19;;15402:366;;;:::o;15774:419::-;15940:4;15978:2;15967:9;15963:18;15955:26;;16027:9;16021:4;16017:20;16013:1;16002:9;15998:17;15991:47;16055:131;16181:4;16055:131;:::i;:::-;16047:139;;15774:419;;;:::o;16199:244::-;16339:34;16335:1;16327:6;16323:14;16316:58;16408:27;16403:2;16395:6;16391:15;16384:52;16199:244;:::o;16449:366::-;16591:3;16612:67;16676:2;16671:3;16612:67;:::i;:::-;16605:74;;16688:93;16777:3;16688:93;:::i;:::-;16806:2;16801:3;16797:12;16790:19;;16449:366;;;:::o;16821:419::-;16987:4;17025:2;17014:9;17010:18;17002:26;;17074:9;17068:4;17064:20;17060:1;17049:9;17045:17;17038:47;17102:131;17228:4;17102:131;:::i;:::-;17094:139;;16821:419;;;:::o;17246:224::-;17386:34;17382:1;17374:6;17370:14;17363:58;17455:7;17450:2;17442:6;17438:15;17431:32;17246:224;:::o;17476:366::-;17618:3;17639:67;17703:2;17698:3;17639:67;:::i;:::-;17632:74;;17715:93;17804:3;17715:93;:::i;:::-;17833:2;17828:3;17824:12;17817:19;;17476:366;;;:::o;17848:419::-;18014:4;18052:2;18041:9;18037:18;18029:26;;18101:9;18095:4;18091:20;18087:1;18076:9;18072:17;18065:47;18129:131;18255:4;18129:131;:::i;:::-;18121:139;;17848:419;;;:::o;18273:223::-;18413:34;18409:1;18401:6;18397:14;18390:58;18482:6;18477:2;18469:6;18465:15;18458:31;18273:223;:::o;18502:366::-;18644:3;18665:67;18729:2;18724:3;18665:67;:::i;:::-;18658:74;;18741:93;18830:3;18741:93;:::i;:::-;18859:2;18854:3;18850:12;18843:19;;18502:366;;;:::o;18874:419::-;19040:4;19078:2;19067:9;19063:18;19055:26;;19127:9;19121:4;19117:20;19113:1;19102:9;19098:17;19091:47;19155:131;19281:4;19155:131;:::i;:::-;19147:139;;18874:419;;;:::o;19299:240::-;19439:34;19435:1;19427:6;19423:14;19416:58;19508:23;19503:2;19495:6;19491:15;19484:48;19299:240;:::o;19545:366::-;19687:3;19708:67;19772:2;19767:3;19708:67;:::i;:::-;19701:74;;19784:93;19873:3;19784:93;:::i;:::-;19902:2;19897:3;19893:12;19886:19;;19545:366;;;:::o;19917:419::-;20083:4;20121:2;20110:9;20106:18;20098:26;;20170:9;20164:4;20160:20;20156:1;20145:9;20141:17;20134:47;20198:131;20324:4;20198:131;:::i;:::-;20190:139;;19917:419;;;:::o;20342:239::-;20482:34;20478:1;20470:6;20466:14;20459:58;20551:22;20546:2;20538:6;20534:15;20527:47;20342:239;:::o;20587:366::-;20729:3;20750:67;20814:2;20809:3;20750:67;:::i;:::-;20743:74;;20826:93;20915:3;20826:93;:::i;:::-;20944:2;20939:3;20935:12;20928:19;;20587:366;;;:::o;20959:419::-;21125:4;21163:2;21152:9;21148:18;21140:26;;21212:9;21206:4;21202:20;21198:1;21187:9;21183:17;21176:47;21240:131;21366:4;21240:131;:::i;:::-;21232:139;;20959:419;;;:::o;21384:225::-;21524:34;21520:1;21512:6;21508:14;21501:58;21593:8;21588:2;21580:6;21576:15;21569:33;21384:225;:::o;21615:366::-;21757:3;21778:67;21842:2;21837:3;21778:67;:::i;:::-;21771:74;;21854:93;21943:3;21854:93;:::i;:::-;21972:2;21967:3;21963:12;21956:19;;21615:366;;;:::o;21987:419::-;22153:4;22191:2;22180:9;22176:18;22168:26;;22240:9;22234:4;22230:20;22226:1;22215:9;22211:17;22204:47;22268:131;22394:4;22268:131;:::i;:::-;22260:139;;21987:419;;;:::o;22412:223::-;22552:34;22548:1;22540:6;22536:14;22529:58;22621:6;22616:2;22608:6;22604:15;22597:31;22412:223;:::o;22641:366::-;22783:3;22804:67;22868:2;22863:3;22804:67;:::i;:::-;22797:74;;22880:93;22969:3;22880:93;:::i;:::-;22998:2;22993:3;22989:12;22982:19;;22641:366;;;:::o;23013:419::-;23179:4;23217:2;23206:9;23202:18;23194:26;;23266:9;23260:4;23256:20;23252:1;23241:9;23237:17;23230:47;23294:131;23420:4;23294:131;:::i;:::-;23286:139;;23013:419;;;:::o;23438:221::-;23578:34;23574:1;23566:6;23562:14;23555:58;23647:4;23642:2;23634:6;23630:15;23623:29;23438:221;:::o;23665:366::-;23807:3;23828:67;23892:2;23887:3;23828:67;:::i;:::-;23821:74;;23904:93;23993:3;23904:93;:::i;:::-;24022:2;24017:3;24013:12;24006:19;;23665:366;;;:::o;24037:419::-;24203:4;24241:2;24230:9;24226:18;24218:26;;24290:9;24284:4;24280:20;24276:1;24265:9;24261:17;24254:47;24318:131;24444:4;24318:131;:::i;:::-;24310:139;;24037:419;;;:::o;24462:224::-;24602:34;24598:1;24590:6;24586:14;24579:58;24671:7;24666:2;24658:6;24654:15;24647:32;24462:224;:::o;24692:366::-;24834:3;24855:67;24919:2;24914:3;24855:67;:::i;:::-;24848:74;;24931:93;25020:3;24931:93;:::i;:::-;25049:2;25044:3;25040:12;25033:19;;24692:366;;;:::o;25064:419::-;25230:4;25268:2;25257:9;25253:18;25245:26;;25317:9;25311:4;25307:20;25303:1;25292:9;25288:17;25281:47;25345:131;25471:4;25345:131;:::i;:::-;25337:139;;25064:419;;;:::o;25489:222::-;25629:34;25625:1;25617:6;25613:14;25606:58;25698:5;25693:2;25685:6;25681:15;25674:30;25489:222;:::o;25717:366::-;25859:3;25880:67;25944:2;25939:3;25880:67;:::i;:::-;25873:74;;25956:93;26045:3;25956:93;:::i;:::-;26074:2;26069:3;26065:12;26058:19;;25717:366;;;:::o;26089:419::-;26255:4;26293:2;26282:9;26278:18;26270:26;;26342:9;26336:4;26332:20;26328:1;26317:9;26313:17;26306:47;26370:131;26496:4;26370:131;:::i;:::-;26362:139;;26089:419;;;:::o;26514:172::-;26654:24;26650:1;26642:6;26638:14;26631:48;26514:172;:::o;26692:366::-;26834:3;26855:67;26919:2;26914:3;26855:67;:::i;:::-;26848:74;;26931:93;27020:3;26931:93;:::i;:::-;27049:2;27044:3;27040:12;27033:19;;26692:366;;;:::o;27064:419::-;27230:4;27268:2;27257:9;27253:18;27245:26;;27317:9;27311:4;27307:20;27303:1;27292:9;27288:17;27281:47;27345:131;27471:4;27345:131;:::i;:::-;27337:139;;27064:419;;;:::o;27489:297::-;27629:34;27625:1;27617:6;27613:14;27606:58;27698:34;27693:2;27685:6;27681:15;27674:59;27767:11;27762:2;27754:6;27750:15;27743:36;27489:297;:::o;27792:366::-;27934:3;27955:67;28019:2;28014:3;27955:67;:::i;:::-;27948:74;;28031:93;28120:3;28031:93;:::i;:::-;28149:2;28144:3;28140:12;28133:19;;27792:366;;;:::o;28164:419::-;28330:4;28368:2;28357:9;28353:18;28345:26;;28417:9;28411:4;28407:20;28403:1;28392:9;28388:17;28381:47;28445:131;28571:4;28445:131;:::i;:::-;28437:139;;28164:419;;;:::o;28589:240::-;28729:34;28725:1;28717:6;28713:14;28706:58;28798:23;28793:2;28785:6;28781:15;28774:48;28589:240;:::o;28835:366::-;28977:3;28998:67;29062:2;29057:3;28998:67;:::i;:::-;28991:74;;29074:93;29163:3;29074:93;:::i;:::-;29192:2;29187:3;29183:12;29176:19;;28835:366;;;:::o;29207:419::-;29373:4;29411:2;29400:9;29396:18;29388:26;;29460:9;29454:4;29450:20;29446:1;29435:9;29431:17;29424:47;29488:131;29614:4;29488:131;:::i;:::-;29480:139;;29207:419;;;:::o;29632:169::-;29772:21;29768:1;29760:6;29756:14;29749:45;29632:169;:::o;29807:366::-;29949:3;29970:67;30034:2;30029:3;29970:67;:::i;:::-;29963:74;;30046:93;30135:3;30046:93;:::i;:::-;30164:2;30159:3;30155:12;30148:19;;29807:366;;;:::o;30179:419::-;30345:4;30383:2;30372:9;30368:18;30360:26;;30432:9;30426:4;30422:20;30418:1;30407:9;30403:17;30396:47;30460:131;30586:4;30460:131;:::i;:::-;30452:139;;30179:419;;;:::o;30604:241::-;30744:34;30740:1;30732:6;30728:14;30721:58;30813:24;30808:2;30800:6;30796:15;30789:49;30604:241;:::o;30851:366::-;30993:3;31014:67;31078:2;31073:3;31014:67;:::i;:::-;31007:74;;31090:93;31179:3;31090:93;:::i;:::-;31208:2;31203:3;31199:12;31192:19;;30851:366;;;:::o;31223:419::-;31389:4;31427:2;31416:9;31412:18;31404:26;;31476:9;31470:4;31466:20;31462:1;31451:9;31447:17;31440:47;31504:131;31630:4;31504:131;:::i;:::-;31496:139;;31223:419;;;:::o;31648:191::-;31688:4;31708:20;31726:1;31708:20;:::i;:::-;31703:25;;31742:20;31760:1;31742:20;:::i;:::-;31737:25;;31781:1;31778;31775:8;31772:34;;;31786:18;;:::i;:::-;31772:34;31831:1;31828;31824:9;31816:17;;31648:191;;;;:::o;31845:180::-;31893:77;31890:1;31883:88;31990:4;31987:1;31980:15;32014:4;32011:1;32004:15;32031:180;32079:77;32076:1;32069:88;32176:4;32173:1;32166:15;32200:4;32197:1;32190:15;32217:143;32274:5;32305:6;32299:13;32290:22;;32321:33;32348:5;32321:33;:::i;:::-;32217:143;;;;:::o;32366:351::-;32436:6;32485:2;32473:9;32464:7;32460:23;32456:32;32453:119;;;32491:79;;:::i;:::-;32453:119;32611:1;32636:64;32692:7;32683:6;32672:9;32668:22;32636:64;:::i;:::-;32626:74;;32582:128;32366:351;;;;:::o;32723:85::-;32768:7;32797:5;32786:16;;32723:85;;;:::o;32814:158::-;32872:9;32905:61;32923:42;32932:32;32958:5;32932:32;:::i;:::-;32923:42;:::i;:::-;32905:61;:::i;:::-;32892:74;;32814:158;;;:::o;32978:147::-;33073:45;33112:5;33073:45;:::i;:::-;33068:3;33061:58;32978:147;;:::o;33131:114::-;33198:6;33232:5;33226:12;33216:22;;33131:114;;;:::o;33251:184::-;33350:11;33384:6;33379:3;33372:19;33424:4;33419:3;33415:14;33400:29;;33251:184;;;;:::o;33441:132::-;33508:4;33531:3;33523:11;;33561:4;33556:3;33552:14;33544:22;;33441:132;;;:::o;33579:108::-;33656:24;33674:5;33656:24;:::i;:::-;33651:3;33644:37;33579:108;;:::o;33693:179::-;33762:10;33783:46;33825:3;33817:6;33783:46;:::i;:::-;33861:4;33856:3;33852:14;33838:28;;33693:179;;;;:::o;33878:113::-;33948:4;33980;33975:3;33971:14;33963:22;;33878:113;;;:::o;34027:732::-;34146:3;34175:54;34223:5;34175:54;:::i;:::-;34245:86;34324:6;34319:3;34245:86;:::i;:::-;34238:93;;34355:56;34405:5;34355:56;:::i;:::-;34434:7;34465:1;34450:284;34475:6;34472:1;34469:13;34450:284;;;34551:6;34545:13;34578:63;34637:3;34622:13;34578:63;:::i;:::-;34571:70;;34664:60;34717:6;34664:60;:::i;:::-;34654:70;;34510:224;34497:1;34494;34490:9;34485:14;;34450:284;;;34454:14;34750:3;34743:10;;34151:608;;;34027:732;;;;:::o;34765:831::-;35028:4;35066:3;35055:9;35051:19;35043:27;;35080:71;35148:1;35137:9;35133:17;35124:6;35080:71;:::i;:::-;35161:80;35237:2;35226:9;35222:18;35213:6;35161:80;:::i;:::-;35288:9;35282:4;35278:20;35273:2;35262:9;35258:18;35251:48;35316:108;35419:4;35410:6;35316:108;:::i;:::-;35308:116;;35434:72;35502:2;35491:9;35487:18;35478:6;35434:72;:::i;:::-;35516:73;35584:3;35573:9;35569:19;35560:6;35516:73;:::i;:::-;34765:831;;;;;;;;:::o;35602:225::-;35742:34;35738:1;35730:6;35726:14;35719:58;35811:8;35806:2;35798:6;35794:15;35787:33;35602:225;:::o;35833:366::-;35975:3;35996:67;36060:2;36055:3;35996:67;:::i;:::-;35989:74;;36072:93;36161:3;36072:93;:::i;:::-;36190:2;36185:3;36181:12;36174:19;;35833:366;;;:::o;36205:419::-;36371:4;36409:2;36398:9;36394:18;36386:26;;36458:9;36452:4;36448:20;36444:1;36433:9;36429:17;36422:47;36486:131;36612:4;36486:131;:::i;:::-;36478:139;;36205:419;;;:::o

Swarm Source

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