ETH Price: $3,196.08 (-4.25%)
 

Overview

Max Total Supply

1,000,000,000 CL

Holders

2

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 CL

Value
$0.00
0x47174d039fb16f8bfad5a9e34c365c21f34c112f
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:
ChipLink

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-30
*/

/*
░█████╗░██╗░░██╗██╗██████╗░██╗░░░░░██╗███╗░░██╗██╗░░██╗
██╔══██╗██║░░██║██║██╔══██╗██║░░░░░██║████╗░██║██║░██╔╝
██║░░╚═╝███████║██║██████╔╝██║░░░░░██║██╔██╗██║█████═╝░
██║░░██╗██╔══██║██║██╔═══╝░██║░░░░░██║██║╚████║██╔═██╗░
╚█████╔╝██║░░██║██║██║░░░░░███████╗██║██║░╚███║██║░╚██╗
░╚════╝░╚═╝░░╚═╝╚═╝╚═╝░░░░░╚══════╝╚═╝╚═╝░░╚══╝╚═╝░░╚═╝
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.20;
pragma experimental ABIEncoderV2;

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

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

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

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

// pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }


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

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

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

// pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

// pragma solidity ^0.8.0;

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

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

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

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

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

// pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

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

// pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.5.0;

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

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

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

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

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

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

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

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

    bool private swapping;

    address public marketingWallet;

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

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

    constructor() ERC20("ChipLink", "CL") {
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );

        uint256 totalSupply = 1_000_000_000 ether;

        maxTransactionAmount = totalSupply;
        maxWallet = totalSupply;
        swapTokensAtAmount = (totalSupply * 1) / 1000;

        buyMarketingFee = 1;
        buyLiquidityFee = 0;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;

        sellMarketingFee = 15;
        sellLiquidityFee = 0;
        sellTotalFees = sellMarketingFee + sellLiquidityFee;
        previousFee = sellTotalFees;

        marketingWallet = owner();

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);
        excludeFromMaxTransaction(address(uniswapV2Router), true);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);

        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

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

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

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

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

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

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

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;

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

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

            amount -= fees;
        }

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

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

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

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

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

        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );

        uint256 ethForLiquidity = ethBalance - ethForMarketing;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxnNum","type":"uint256"},{"internalType":"uint256","name":"newMaxWalletNum","type":"uint256"}],"name":"updateMaxWalletAndTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405234801562000010575f80fd5b506040518060400160405280600881526020017f436869704c696e6b0000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f434c00000000000000000000000000000000000000000000000000000000000081525081600390816200008e919062000b88565b508060049081620000a0919062000b88565b505050620000c3620000b76200047460201b60201c565b6200047b60201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000157573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200017d919062000cd1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001e5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200020b919062000cd1565b6040518363ffffffff1660e01b81526004016200022a92919062000d12565b6020604051808303815f875af115801562000247573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200026d919062000cd1565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250505f6b033b2e3c9fd0803ce8000000905080600781905550806009819055506103e8600182620002d0919062000d6a565b620002dc919062000de1565b6008819055506001600b819055505f600c81905550600c54600b5462000303919062000e18565b600a81905550600f600e819055505f600f81905550600f54600e546200032a919062000e18565b600d81905550600d54601281905550620003496200053e60201b60201c565b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003aa6200039c6200053e60201b60201c565b60016200056660201b60201c565b620003bd3060016200056660201b60201c565b620003d261dead60016200056660201b60201c565b620003f4620003e66200053e60201b60201c565b60016200061e60201b60201c565b620004073060016200061e60201b60201c565b6200041c61dead60016200061e60201b60201c565b6200043160805160016200061e60201b60201c565b6200044660a05160016200061e60201b60201c565b6200045b60a05160016200068660201b60201c565b6200046d33826200072460201b60201c565b5062000fa1565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620005766200088960201b60201c565b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000612919062000e6e565b60405180910390a25050565b6200062e6200088960201b60201c565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000795576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200078c9062000ee7565b60405180910390fd5b620007a85f83836200091a60201b60201c565b8060025f828254620007bb919062000e18565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200086a919062000f18565b60405180910390a3620008855f83836200091f60201b60201c565b5050565b620008996200047460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008bf6200053e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000918576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200090f9062000f81565b60405180910390fd5b565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620009a057607f821691505b602082108103620009b657620009b56200095b565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000a1a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620009dd565b62000a268683620009dd565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000a7062000a6a62000a648462000a3e565b62000a47565b62000a3e565b9050919050565b5f819050919050565b62000a8b8362000a50565b62000aa362000a9a8262000a77565b848454620009e9565b825550505050565b5f90565b62000ab962000aab565b62000ac681848462000a80565b505050565b5b8181101562000aed5762000ae15f8262000aaf565b60018101905062000acc565b5050565b601f82111562000b3c5762000b0681620009bc565b62000b1184620009ce565b8101602085101562000b21578190505b62000b3962000b3085620009ce565b83018262000acb565b50505b505050565b5f82821c905092915050565b5f62000b5e5f198460080262000b41565b1980831691505092915050565b5f62000b78838362000b4d565b9150826002028217905092915050565b62000b938262000924565b67ffffffffffffffff81111562000baf5762000bae6200092e565b5b62000bbb825462000988565b62000bc882828562000af1565b5f60209050601f83116001811462000bfe575f841562000be9578287015190505b62000bf5858262000b6b565b86555062000c64565b601f19841662000c0e86620009bc565b5f5b8281101562000c375784890151825560018201915060208501945060208101905062000c10565b8683101562000c57578489015162000c53601f89168262000b4d565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000c9b8262000c70565b9050919050565b62000cad8162000c8f565b811462000cb8575f80fd5b50565b5f8151905062000ccb8162000ca2565b92915050565b5f6020828403121562000ce95762000ce862000c6c565b5b5f62000cf88482850162000cbb565b91505092915050565b62000d0c8162000c8f565b82525050565b5f60408201905062000d275f83018562000d01565b62000d36602083018462000d01565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000d768262000a3e565b915062000d838362000a3e565b925082820262000d938162000a3e565b9150828204841483151762000dad5762000dac62000d3d565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000ded8262000a3e565b915062000dfa8362000a3e565b92508262000e0d5762000e0c62000db4565b5b828204905092915050565b5f62000e248262000a3e565b915062000e318362000a3e565b925082820190508082111562000e4c5762000e4b62000d3d565b5b92915050565b5f8115159050919050565b62000e688162000e52565b82525050565b5f60208201905062000e835f83018462000e5d565b92915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000ecf601f8362000e89565b915062000edc8262000e99565b602082019050919050565b5f6020820190508181035f83015262000f008162000ec1565b9050919050565b62000f128162000a3e565b82525050565b5f60208201905062000f2d5f83018462000f07565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f62000f6960208362000e89565b915062000f768262000f33565b602082019050919050565b5f6020820190508181035f83015262000f9a8162000f5b565b9050919050565b60805160a05161362662000fe65f395f61090901525f818161086a015281816121aa01528181612289015281816122b001528181612346015261236d01526136265ff3fe6080604052600436106101d0575f3560e01c806375f0a874116100f6578063c8c8ebe411610094578063e2f4560511610063578063e2f45605146106a5578063f2fde38b146106cf578063f5648a4f146106f7578063f8b45b051461070d576101d7565b8063c8c8ebe4146105d9578063d257b34f14610603578063d85ba0631461063f578063dd62ed3e14610669576101d7565b806396188399116100d05780639618839914610511578063a457c2d714610539578063a9059cbb14610575578063c0246668146105b1576101d7565b806375f0a874146104935780638da5cb5b146104bd57806395d89b41146104e7576101d7565b8063313ce5671161016e5780636a486a8e1161013d5780636a486a8e146103ef57806370a0823114610419578063715018a6146104555780637571336a1461046b576101d7565b8063313ce56714610323578063395093511461034d57806349bd5a5e146103895780634fbee193146103b3576101d7565b80631694505e116101aa5780631694505e1461026957806318160ddd1461029357806323b872dd146102bd57806327c8f835146102f9576101d7565b806302dbd8f8146101db57806306fdde0314610203578063095ea7b31461022d576101d7565b366101d757005b5f80fd5b3480156101e6575f80fd5b5061020160048036038101906101fc9190612455565b610737565b005b34801561020e575f80fd5b506102176107b6565b604051610224919061251d565b60405180910390f35b348015610238575f80fd5b50610253600480360381019061024e9190612597565b610846565b60405161026091906125ef565b60405180910390f35b348015610274575f80fd5b5061027d610868565b60405161028a9190612663565b60405180910390f35b34801561029e575f80fd5b506102a761088c565b6040516102b4919061268b565b60405180910390f35b3480156102c8575f80fd5b506102e360048036038101906102de91906126a4565b610895565b6040516102f091906125ef565b60405180910390f35b348015610304575f80fd5b5061030d6108c3565b60405161031a9190612703565b60405180910390f35b34801561032e575f80fd5b506103376108c9565b6040516103449190612737565b60405180910390f35b348015610358575f80fd5b50610373600480360381019061036e9190612597565b6108d1565b60405161038091906125ef565b60405180910390f35b348015610394575f80fd5b5061039d610907565b6040516103aa9190612703565b60405180910390f35b3480156103be575f80fd5b506103d960048036038101906103d49190612750565b61092b565b6040516103e691906125ef565b60405180910390f35b3480156103fa575f80fd5b5061040361097d565b604051610410919061268b565b60405180910390f35b348015610424575f80fd5b5061043f600480360381019061043a9190612750565b610983565b60405161044c919061268b565b60405180910390f35b348015610460575f80fd5b506104696109c8565b005b348015610476575f80fd5b50610491600480360381019061048c91906127a5565b6109db565b005b34801561049e575f80fd5b506104a7610a3b565b6040516104b49190612703565b60405180910390f35b3480156104c8575f80fd5b506104d1610a60565b6040516104de9190612703565b60405180910390f35b3480156104f2575f80fd5b506104fb610a88565b604051610508919061251d565b60405180910390f35b34801561051c575f80fd5b5061053760048036038101906105329190612455565b610b18565b005b348015610544575f80fd5b5061055f600480360381019061055a9190612597565b610bf8565b60405161056c91906125ef565b60405180910390f35b348015610580575f80fd5b5061059b60048036038101906105969190612597565b610c6d565b6040516105a891906125ef565b60405180910390f35b3480156105bc575f80fd5b506105d760048036038101906105d291906127a5565b610c8f565b005b3480156105e4575f80fd5b506105ed610d3d565b6040516105fa919061268b565b60405180910390f35b34801561060e575f80fd5b50610629600480360381019061062491906127e3565b610d43565b60405161063691906125ef565b60405180910390f35b34801561064a575f80fd5b50610653610e23565b604051610660919061268b565b60405180910390f35b348015610674575f80fd5b5061068f600480360381019061068a919061280e565b610e29565b60405161069c919061268b565b60405180910390f35b3480156106b0575f80fd5b506106b9610eab565b6040516106c6919061268b565b60405180910390f35b3480156106da575f80fd5b506106f560048036038101906106f09190612750565b610eb1565b005b348015610702575f80fd5b5061070b610f33565b005b348015610718575f80fd5b50610721610fa8565b60405161072e919061268b565b60405180910390f35b61073f610fae565b81600e8190555080600f81905550600f54600e5461075d9190612879565b600d81905550600d54601281905550600a600d5411156107b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a99061291c565b60405180910390fd5b5050565b6060600380546107c590612967565b80601f01602080910402602001604051908101604052809291908181526020018280546107f190612967565b801561083c5780601f106108135761010080835404028352916020019161083c565b820191905f5260205f20905b81548152906001019060200180831161081f57829003601f168201915b5050505050905090565b5f8061085061102c565b905061085d818585611033565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b5f8061089f61102c565b90506108ac8582856111f6565b6108b7858585611281565b60019150509392505050565b61dead81565b5f6012905090565b5f806108db61102c565b90506108fc8185856108ed8589610e29565b6108f79190612879565b611033565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f60135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b600d5481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6109d0610fae565b6109d95f611b9a565b565b6109e3610fae565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a9790612967565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac390612967565b8015610b0e5780601f10610ae557610100808354040283529160200191610b0e565b820191905f5260205f20905b815481529060010190602001808311610af157829003601f168201915b5050505050905090565b610b20610fae565b6103e86005610b2d61088c565b610b379190612997565b610b419190612a05565b821015610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90612aa5565b60405180910390fd5b6103e86005610b9061088c565b610b9a9190612997565b610ba49190612a05565b811015610be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdd90612b33565b60405180910390fd5b80600981905550816007819055505050565b5f80610c0261102c565b90505f610c0f8286610e29565b905083811015610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90612bc1565b60405180910390fd5b610c618286868403611033565b60019250505092915050565b5f80610c7761102c565b9050610c84818585611281565b600191505092915050565b610c97610fae565b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610d3191906125ef565b60405180910390a25050565b60075481565b5f610d4c610fae565b620186a06001610d5a61088c565b610d649190612997565b610d6e9190612a05565b821015610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790612c4f565b60405180910390fd5b6103e86005610dbd61088c565b610dc79190612997565b610dd19190612a05565b821115610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90612cdd565b60405180910390fd5b8160088190555060019050919050565b600a5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b610eb9610fae565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e90612d6b565b60405180910390fd5b610f3081611b9a565b50565b610f3b610fae565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610f6090612db6565b5f6040518083038185875af1925050503d805f8114610f9a576040519150601f19603f3d011682016040523d82523d5f602084013e610f9f565b606091505b50508091505050565b60095481565b610fb661102c565b73ffffffffffffffffffffffffffffffffffffffff16610fd4610a60565b73ffffffffffffffffffffffffffffffffffffffff161461102a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102190612e14565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109890612ea2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110690612f30565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111e9919061268b565b60405180910390a3505050565b5f6112018484610e29565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461127b578181101561126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490612f98565b60405180910390fd5b61127a8484848403611033565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e690613026565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361135d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611354906130b4565b60405180910390fd5b5f81036113745761136f83835f611c5d565b611b95565b61137c610a60565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156113ea57506113ba610a60565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561142257505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561145c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156114755750600560149054906101000a900460ff16155b156117545760155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611517575060145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156115be57600754811115611561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155890613142565b60405180910390fd5b60095461156d83610983565b826115789190612879565b11156115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b0906131aa565b60405180910390fd5b611753565b60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561165b575060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156116aa576007548111156116a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169c90613238565b60405180910390fd5b611752565b60145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166117515760095461170483610983565b8261170f9190612879565b1115611750576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611747906131aa565b60405180910390fd5b5b5b5b5b5f61175e30610983565b90505f60085482101590508080156117835750600560149054906101000a900460ff16155b80156117d6575060155f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611829575060135f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561187c575060135f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156118bf576001600560146101000a81548160ff0219169083151502179055506118a4611ec9565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060135f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061196e575060135f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611977575f90505b5f8115611b7c5760155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156119d557505f600d54115b15611a6d57611a0260646119f4600d54886120c490919063ffffffff16565b6120d990919063ffffffff16565b9050600d54600f5482611a159190612997565b611a1f9190612a05565b60115f828254611a2f9190612879565b92505081905550600d54600e5482611a479190612997565b611a519190612a05565b60105f828254611a619190612879565b92505081905550611b59565b60155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611ac457505f600a54115b15611b5857611af16064611ae3600a54886120c490919063ffffffff16565b6120d990919063ffffffff16565b9050600a54600c5482611b049190612997565b611b0e9190612a05565b60115f828254611b1e9190612879565b92505081905550600a54600b5482611b369190612997565b611b409190612a05565b60105f828254611b509190612879565b925050819055505b5b5f811115611b6d57611b6c873083611c5d565b5b8085611b799190613256565b94505b611b87878787611c5d565b601254600d81905550505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc290613026565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d30906130b4565b60405180910390fd5b611d448383836120ee565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe906132f9565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611eb0919061268b565b60405180910390a3611ec38484846120f3565b50505050565b5f611ed330610983565b90505f601054601154611ee69190612879565b90505f80831480611ef657505f82145b15611f03575050506120c2565b6014600854611f129190612997565b831115611f2b576014600854611f289190612997565b92505b5f60028360115486611f3d9190612997565b611f479190612a05565b611f519190612a05565b90505f611f6782866120f890919063ffffffff16565b90505f479050611f768261210d565b5f611f8a82476120f890919063ffffffff16565b90505f611fb487611fa6601054856120c490919063ffffffff16565b6120d990919063ffffffff16565b90505f8183611fc39190613256565b90505f6011819055505f6010819055505f86118015611fe157505f81115b1561202e57611ff08682612340565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260115460405161202593929190613317565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161207390612db6565b5f6040518083038185875af1925050503d805f81146120ad576040519150601f19603f3d011682016040523d82523d5f602084013e6120b2565b606091505b5050809750505050505050505050505b565b5f81836120d19190612997565b905092915050565b5f81836120e69190612a05565b905092915050565b505050565b505050565b5f81836121059190613256565b905092915050565b5f600267ffffffffffffffff8111156121295761212861334c565b5b6040519080825280602002602001820160405280156121575781602001602082028036833780820191505090505b50905030815f8151811061216e5761216d613379565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612211573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061223591906133ba565b8160018151811061224957612248613379565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506122ae307f000000000000000000000000000000000000000000000000000000000000000084611033565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161230f9594939291906134d5565b5f604051808303815f87803b158015612326575f80fd5b505af1158015612338573d5f803e3d5ffd5b505050505050565b61236b307f000000000000000000000000000000000000000000000000000000000000000084611033565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f806123b4610a60565b426040518863ffffffff1660e01b81526004016123d69695949392919061352d565b60606040518083038185885af11580156123f2573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061241791906135a0565b5050505050565b5f80fd5b5f819050919050565b61243481612422565b811461243e575f80fd5b50565b5f8135905061244f8161242b565b92915050565b5f806040838503121561246b5761246a61241e565b5b5f61247885828601612441565b925050602061248985828601612441565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156124ca5780820151818401526020810190506124af565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6124ef82612493565b6124f9818561249d565b93506125098185602086016124ad565b612512816124d5565b840191505092915050565b5f6020820190508181035f83015261253581846124e5565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6125668261253d565b9050919050565b6125768161255c565b8114612580575f80fd5b50565b5f813590506125918161256d565b92915050565b5f80604083850312156125ad576125ac61241e565b5b5f6125ba85828601612583565b92505060206125cb85828601612441565b9150509250929050565b5f8115159050919050565b6125e9816125d5565b82525050565b5f6020820190506126025f8301846125e0565b92915050565b5f819050919050565b5f61262b6126266126218461253d565b612608565b61253d565b9050919050565b5f61263c82612611565b9050919050565b5f61264d82612632565b9050919050565b61265d81612643565b82525050565b5f6020820190506126765f830184612654565b92915050565b61268581612422565b82525050565b5f60208201905061269e5f83018461267c565b92915050565b5f805f606084860312156126bb576126ba61241e565b5b5f6126c886828701612583565b93505060206126d986828701612583565b92505060406126ea86828701612441565b9150509250925092565b6126fd8161255c565b82525050565b5f6020820190506127165f8301846126f4565b92915050565b5f60ff82169050919050565b6127318161271c565b82525050565b5f60208201905061274a5f830184612728565b92915050565b5f602082840312156127655761276461241e565b5b5f61277284828501612583565b91505092915050565b612784816125d5565b811461278e575f80fd5b50565b5f8135905061279f8161277b565b92915050565b5f80604083850312156127bb576127ba61241e565b5b5f6127c885828601612583565b92505060206127d985828601612791565b9150509250929050565b5f602082840312156127f8576127f761241e565b5b5f61280584828501612441565b91505092915050565b5f80604083850312156128245761282361241e565b5b5f61283185828601612583565b925050602061284285828601612583565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61288382612422565b915061288e83612422565b92508282019050808211156128a6576128a561284c565b5b92915050565b7f45524332303a204d757374206b656570206665657320617420313025206f72205f8201527f6c65737300000000000000000000000000000000000000000000000000000000602082015250565b5f61290660248361249d565b9150612911826128ac565b604082019050919050565b5f6020820190508181035f830152612933816128fa565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061297e57607f821691505b6020821081036129915761299061293a565b5b50919050565b5f6129a182612422565b91506129ac83612422565b92508282026129ba81612422565b915082820484148315176129d1576129d061284c565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612a0f82612422565b9150612a1a83612422565b925082612a2a57612a296129d8565b5b828204905092915050565b7f45524332303a2043616e6e6f7420736574206d617854786e206c6f77657220745f8201527f68616e20302e3525000000000000000000000000000000000000000000000000602082015250565b5f612a8f60288361249d565b9150612a9a82612a35565b604082019050919050565b5f6020820190508181035f830152612abc81612a83565b9050919050565b7f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f77655f8201527f72207468616e20302e3525000000000000000000000000000000000000000000602082015250565b5f612b1d602b8361249d565b9150612b2882612ac3565b604082019050919050565b5f6020820190508181035f830152612b4a81612b11565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612bab60258361249d565b9150612bb682612b51565b604082019050919050565b5f6020820190508181035f830152612bd881612b9f565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f775f8201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000602082015250565b5f612c39603c8361249d565b9150612c4482612bdf565b604082019050919050565b5f6020820190508181035f830152612c6681612c2d565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206869675f8201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000602082015250565b5f612cc7603b8361249d565b9150612cd282612c6d565b604082019050919050565b5f6020820190508181035f830152612cf481612cbb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612d5560268361249d565b9150612d6082612cfb565b604082019050919050565b5f6020820190508181035f830152612d8281612d49565b9050919050565b5f81905092915050565b50565b5f612da15f83612d89565b9150612dac82612d93565b5f82019050919050565b5f612dc082612d96565b9150819050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612dfe60208361249d565b9150612e0982612dca565b602082019050919050565b5f6020820190508181035f830152612e2b81612df2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612e8c60248361249d565b9150612e9782612e32565b604082019050919050565b5f6020820190508181035f830152612eb981612e80565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612f1a60228361249d565b9150612f2582612ec0565b604082019050919050565b5f6020820190508181035f830152612f4781612f0e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612f82601d8361249d565b9150612f8d82612f4e565b602082019050919050565b5f6020820190508181035f830152612faf81612f76565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61301060258361249d565b915061301b82612fb6565b604082019050919050565b5f6020820190508181035f83015261303d81613004565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61309e60238361249d565b91506130a982613044565b604082019050919050565b5f6020820190508181035f8301526130cb81613092565b9050919050565b7f45524332303a20427579207472616e7366657220616d6f756e742065786365655f8201527f647320746865206d61785472616e73616374696f6e416d6f756e742e00000000602082015250565b5f61312c603c8361249d565b9150613137826130d2565b604082019050919050565b5f6020820190508181035f83015261315981613120565b9050919050565b7f45524332303a204d61782077616c6c65742065786365656465640000000000005f82015250565b5f613194601a8361249d565b915061319f82613160565b602082019050919050565b5f6020820190508181035f8301526131c181613188565b9050919050565b7f45524332303a2053656c6c207472616e7366657220616d6f756e7420657863655f8201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e000000602082015250565b5f613222603d8361249d565b915061322d826131c8565b604082019050919050565b5f6020820190508181035f83015261324f81613216565b9050919050565b5f61326082612422565b915061326b83612422565b92508282039050818111156132835761328261284c565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6132e360268361249d565b91506132ee82613289565b604082019050919050565b5f6020820190508181035f830152613310816132d7565b9050919050565b5f60608201905061332a5f83018661267c565b613337602083018561267c565b613344604083018461267c565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506133b48161256d565b92915050565b5f602082840312156133cf576133ce61241e565b5b5f6133dc848285016133a6565b91505092915050565b5f819050919050565b5f6134086134036133fe846133e5565b612608565b612422565b9050919050565b613418816133ee565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6134508161255c565b82525050565b5f6134618383613447565b60208301905092915050565b5f602082019050919050565b5f6134838261341e565b61348d8185613428565b935061349883613438565b805f5b838110156134c85781516134af8882613456565b97506134ba8361346d565b92505060018101905061349b565b5085935050505092915050565b5f60a0820190506134e85f83018861267c565b6134f5602083018761340f565b81810360408301526135078186613479565b905061351660608301856126f4565b613523608083018461267c565b9695505050505050565b5f60c0820190506135405f8301896126f4565b61354d602083018861267c565b61355a604083018761340f565b613567606083018661340f565b61357460808301856126f4565b61358160a083018461267c565b979650505050505050565b5f8151905061359a8161242b565b92915050565b5f805f606084860312156135b7576135b661241e565b5b5f6135c48682870161358c565b93505060206135d58682870161358c565b92505060406135e68682870161358c565b915050925092509256fea264697066735822122061792cddee200a216e786a46f17e79edb15707442a0e3dd18410ff28af0c7ce364736f6c63430008140033

Deployed Bytecode

0x6080604052600436106101d0575f3560e01c806375f0a874116100f6578063c8c8ebe411610094578063e2f4560511610063578063e2f45605146106a5578063f2fde38b146106cf578063f5648a4f146106f7578063f8b45b051461070d576101d7565b8063c8c8ebe4146105d9578063d257b34f14610603578063d85ba0631461063f578063dd62ed3e14610669576101d7565b806396188399116100d05780639618839914610511578063a457c2d714610539578063a9059cbb14610575578063c0246668146105b1576101d7565b806375f0a874146104935780638da5cb5b146104bd57806395d89b41146104e7576101d7565b8063313ce5671161016e5780636a486a8e1161013d5780636a486a8e146103ef57806370a0823114610419578063715018a6146104555780637571336a1461046b576101d7565b8063313ce56714610323578063395093511461034d57806349bd5a5e146103895780634fbee193146103b3576101d7565b80631694505e116101aa5780631694505e1461026957806318160ddd1461029357806323b872dd146102bd57806327c8f835146102f9576101d7565b806302dbd8f8146101db57806306fdde0314610203578063095ea7b31461022d576101d7565b366101d757005b5f80fd5b3480156101e6575f80fd5b5061020160048036038101906101fc9190612455565b610737565b005b34801561020e575f80fd5b506102176107b6565b604051610224919061251d565b60405180910390f35b348015610238575f80fd5b50610253600480360381019061024e9190612597565b610846565b60405161026091906125ef565b60405180910390f35b348015610274575f80fd5b5061027d610868565b60405161028a9190612663565b60405180910390f35b34801561029e575f80fd5b506102a761088c565b6040516102b4919061268b565b60405180910390f35b3480156102c8575f80fd5b506102e360048036038101906102de91906126a4565b610895565b6040516102f091906125ef565b60405180910390f35b348015610304575f80fd5b5061030d6108c3565b60405161031a9190612703565b60405180910390f35b34801561032e575f80fd5b506103376108c9565b6040516103449190612737565b60405180910390f35b348015610358575f80fd5b50610373600480360381019061036e9190612597565b6108d1565b60405161038091906125ef565b60405180910390f35b348015610394575f80fd5b5061039d610907565b6040516103aa9190612703565b60405180910390f35b3480156103be575f80fd5b506103d960048036038101906103d49190612750565b61092b565b6040516103e691906125ef565b60405180910390f35b3480156103fa575f80fd5b5061040361097d565b604051610410919061268b565b60405180910390f35b348015610424575f80fd5b5061043f600480360381019061043a9190612750565b610983565b60405161044c919061268b565b60405180910390f35b348015610460575f80fd5b506104696109c8565b005b348015610476575f80fd5b50610491600480360381019061048c91906127a5565b6109db565b005b34801561049e575f80fd5b506104a7610a3b565b6040516104b49190612703565b60405180910390f35b3480156104c8575f80fd5b506104d1610a60565b6040516104de9190612703565b60405180910390f35b3480156104f2575f80fd5b506104fb610a88565b604051610508919061251d565b60405180910390f35b34801561051c575f80fd5b5061053760048036038101906105329190612455565b610b18565b005b348015610544575f80fd5b5061055f600480360381019061055a9190612597565b610bf8565b60405161056c91906125ef565b60405180910390f35b348015610580575f80fd5b5061059b60048036038101906105969190612597565b610c6d565b6040516105a891906125ef565b60405180910390f35b3480156105bc575f80fd5b506105d760048036038101906105d291906127a5565b610c8f565b005b3480156105e4575f80fd5b506105ed610d3d565b6040516105fa919061268b565b60405180910390f35b34801561060e575f80fd5b50610629600480360381019061062491906127e3565b610d43565b60405161063691906125ef565b60405180910390f35b34801561064a575f80fd5b50610653610e23565b604051610660919061268b565b60405180910390f35b348015610674575f80fd5b5061068f600480360381019061068a919061280e565b610e29565b60405161069c919061268b565b60405180910390f35b3480156106b0575f80fd5b506106b9610eab565b6040516106c6919061268b565b60405180910390f35b3480156106da575f80fd5b506106f560048036038101906106f09190612750565b610eb1565b005b348015610702575f80fd5b5061070b610f33565b005b348015610718575f80fd5b50610721610fa8565b60405161072e919061268b565b60405180910390f35b61073f610fae565b81600e8190555080600f81905550600f54600e5461075d9190612879565b600d81905550600d54601281905550600a600d5411156107b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a99061291c565b60405180910390fd5b5050565b6060600380546107c590612967565b80601f01602080910402602001604051908101604052809291908181526020018280546107f190612967565b801561083c5780601f106108135761010080835404028352916020019161083c565b820191905f5260205f20905b81548152906001019060200180831161081f57829003601f168201915b5050505050905090565b5f8061085061102c565b905061085d818585611033565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b5f8061089f61102c565b90506108ac8582856111f6565b6108b7858585611281565b60019150509392505050565b61dead81565b5f6012905090565b5f806108db61102c565b90506108fc8185856108ed8589610e29565b6108f79190612879565b611033565b600191505092915050565b7f00000000000000000000000000e6eafd935bd236cc6aab893cb41ce3ca91d0e881565b5f60135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b600d5481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6109d0610fae565b6109d95f611b9a565b565b6109e3610fae565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a9790612967565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac390612967565b8015610b0e5780601f10610ae557610100808354040283529160200191610b0e565b820191905f5260205f20905b815481529060010190602001808311610af157829003601f168201915b5050505050905090565b610b20610fae565b6103e86005610b2d61088c565b610b379190612997565b610b419190612a05565b821015610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90612aa5565b60405180910390fd5b6103e86005610b9061088c565b610b9a9190612997565b610ba49190612a05565b811015610be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdd90612b33565b60405180910390fd5b80600981905550816007819055505050565b5f80610c0261102c565b90505f610c0f8286610e29565b905083811015610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90612bc1565b60405180910390fd5b610c618286868403611033565b60019250505092915050565b5f80610c7761102c565b9050610c84818585611281565b600191505092915050565b610c97610fae565b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610d3191906125ef565b60405180910390a25050565b60075481565b5f610d4c610fae565b620186a06001610d5a61088c565b610d649190612997565b610d6e9190612a05565b821015610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790612c4f565b60405180910390fd5b6103e86005610dbd61088c565b610dc79190612997565b610dd19190612a05565b821115610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90612cdd565b60405180910390fd5b8160088190555060019050919050565b600a5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b610eb9610fae565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e90612d6b565b60405180910390fd5b610f3081611b9a565b50565b610f3b610fae565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610f6090612db6565b5f6040518083038185875af1925050503d805f8114610f9a576040519150601f19603f3d011682016040523d82523d5f602084013e610f9f565b606091505b50508091505050565b60095481565b610fb661102c565b73ffffffffffffffffffffffffffffffffffffffff16610fd4610a60565b73ffffffffffffffffffffffffffffffffffffffff161461102a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102190612e14565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109890612ea2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110690612f30565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111e9919061268b565b60405180910390a3505050565b5f6112018484610e29565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461127b578181101561126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490612f98565b60405180910390fd5b61127a8484848403611033565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e690613026565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361135d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611354906130b4565b60405180910390fd5b5f81036113745761136f83835f611c5d565b611b95565b61137c610a60565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156113ea57506113ba610a60565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561142257505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561145c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156114755750600560149054906101000a900460ff16155b156117545760155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611517575060145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156115be57600754811115611561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155890613142565b60405180910390fd5b60095461156d83610983565b826115789190612879565b11156115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b0906131aa565b60405180910390fd5b611753565b60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561165b575060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156116aa576007548111156116a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169c90613238565b60405180910390fd5b611752565b60145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166117515760095461170483610983565b8261170f9190612879565b1115611750576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611747906131aa565b60405180910390fd5b5b5b5b5b5f61175e30610983565b90505f60085482101590508080156117835750600560149054906101000a900460ff16155b80156117d6575060155f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611829575060135f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561187c575060135f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156118bf576001600560146101000a81548160ff0219169083151502179055506118a4611ec9565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060135f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061196e575060135f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611977575f90505b5f8115611b7c5760155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156119d557505f600d54115b15611a6d57611a0260646119f4600d54886120c490919063ffffffff16565b6120d990919063ffffffff16565b9050600d54600f5482611a159190612997565b611a1f9190612a05565b60115f828254611a2f9190612879565b92505081905550600d54600e5482611a479190612997565b611a519190612a05565b60105f828254611a619190612879565b92505081905550611b59565b60155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611ac457505f600a54115b15611b5857611af16064611ae3600a54886120c490919063ffffffff16565b6120d990919063ffffffff16565b9050600a54600c5482611b049190612997565b611b0e9190612a05565b60115f828254611b1e9190612879565b92505081905550600a54600b5482611b369190612997565b611b409190612a05565b60105f828254611b509190612879565b925050819055505b5b5f811115611b6d57611b6c873083611c5d565b5b8085611b799190613256565b94505b611b87878787611c5d565b601254600d81905550505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc290613026565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d30906130b4565b60405180910390fd5b611d448383836120ee565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe906132f9565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611eb0919061268b565b60405180910390a3611ec38484846120f3565b50505050565b5f611ed330610983565b90505f601054601154611ee69190612879565b90505f80831480611ef657505f82145b15611f03575050506120c2565b6014600854611f129190612997565b831115611f2b576014600854611f289190612997565b92505b5f60028360115486611f3d9190612997565b611f479190612a05565b611f519190612a05565b90505f611f6782866120f890919063ffffffff16565b90505f479050611f768261210d565b5f611f8a82476120f890919063ffffffff16565b90505f611fb487611fa6601054856120c490919063ffffffff16565b6120d990919063ffffffff16565b90505f8183611fc39190613256565b90505f6011819055505f6010819055505f86118015611fe157505f81115b1561202e57611ff08682612340565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260115460405161202593929190613317565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161207390612db6565b5f6040518083038185875af1925050503d805f81146120ad576040519150601f19603f3d011682016040523d82523d5f602084013e6120b2565b606091505b5050809750505050505050505050505b565b5f81836120d19190612997565b905092915050565b5f81836120e69190612a05565b905092915050565b505050565b505050565b5f81836121059190613256565b905092915050565b5f600267ffffffffffffffff8111156121295761212861334c565b5b6040519080825280602002602001820160405280156121575781602001602082028036833780820191505090505b50905030815f8151811061216e5761216d613379565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612211573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061223591906133ba565b8160018151811061224957612248613379565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506122ae307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611033565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161230f9594939291906134d5565b5f604051808303815f87803b158015612326575f80fd5b505af1158015612338573d5f803e3d5ffd5b505050505050565b61236b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611033565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f806123b4610a60565b426040518863ffffffff1660e01b81526004016123d69695949392919061352d565b60606040518083038185885af11580156123f2573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061241791906135a0565b5050505050565b5f80fd5b5f819050919050565b61243481612422565b811461243e575f80fd5b50565b5f8135905061244f8161242b565b92915050565b5f806040838503121561246b5761246a61241e565b5b5f61247885828601612441565b925050602061248985828601612441565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156124ca5780820151818401526020810190506124af565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6124ef82612493565b6124f9818561249d565b93506125098185602086016124ad565b612512816124d5565b840191505092915050565b5f6020820190508181035f83015261253581846124e5565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6125668261253d565b9050919050565b6125768161255c565b8114612580575f80fd5b50565b5f813590506125918161256d565b92915050565b5f80604083850312156125ad576125ac61241e565b5b5f6125ba85828601612583565b92505060206125cb85828601612441565b9150509250929050565b5f8115159050919050565b6125e9816125d5565b82525050565b5f6020820190506126025f8301846125e0565b92915050565b5f819050919050565b5f61262b6126266126218461253d565b612608565b61253d565b9050919050565b5f61263c82612611565b9050919050565b5f61264d82612632565b9050919050565b61265d81612643565b82525050565b5f6020820190506126765f830184612654565b92915050565b61268581612422565b82525050565b5f60208201905061269e5f83018461267c565b92915050565b5f805f606084860312156126bb576126ba61241e565b5b5f6126c886828701612583565b93505060206126d986828701612583565b92505060406126ea86828701612441565b9150509250925092565b6126fd8161255c565b82525050565b5f6020820190506127165f8301846126f4565b92915050565b5f60ff82169050919050565b6127318161271c565b82525050565b5f60208201905061274a5f830184612728565b92915050565b5f602082840312156127655761276461241e565b5b5f61277284828501612583565b91505092915050565b612784816125d5565b811461278e575f80fd5b50565b5f8135905061279f8161277b565b92915050565b5f80604083850312156127bb576127ba61241e565b5b5f6127c885828601612583565b92505060206127d985828601612791565b9150509250929050565b5f602082840312156127f8576127f761241e565b5b5f61280584828501612441565b91505092915050565b5f80604083850312156128245761282361241e565b5b5f61283185828601612583565b925050602061284285828601612583565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61288382612422565b915061288e83612422565b92508282019050808211156128a6576128a561284c565b5b92915050565b7f45524332303a204d757374206b656570206665657320617420313025206f72205f8201527f6c65737300000000000000000000000000000000000000000000000000000000602082015250565b5f61290660248361249d565b9150612911826128ac565b604082019050919050565b5f6020820190508181035f830152612933816128fa565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061297e57607f821691505b6020821081036129915761299061293a565b5b50919050565b5f6129a182612422565b91506129ac83612422565b92508282026129ba81612422565b915082820484148315176129d1576129d061284c565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612a0f82612422565b9150612a1a83612422565b925082612a2a57612a296129d8565b5b828204905092915050565b7f45524332303a2043616e6e6f7420736574206d617854786e206c6f77657220745f8201527f68616e20302e3525000000000000000000000000000000000000000000000000602082015250565b5f612a8f60288361249d565b9150612a9a82612a35565b604082019050919050565b5f6020820190508181035f830152612abc81612a83565b9050919050565b7f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f77655f8201527f72207468616e20302e3525000000000000000000000000000000000000000000602082015250565b5f612b1d602b8361249d565b9150612b2882612ac3565b604082019050919050565b5f6020820190508181035f830152612b4a81612b11565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612bab60258361249d565b9150612bb682612b51565b604082019050919050565b5f6020820190508181035f830152612bd881612b9f565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f775f8201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000602082015250565b5f612c39603c8361249d565b9150612c4482612bdf565b604082019050919050565b5f6020820190508181035f830152612c6681612c2d565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206869675f8201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000602082015250565b5f612cc7603b8361249d565b9150612cd282612c6d565b604082019050919050565b5f6020820190508181035f830152612cf481612cbb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612d5560268361249d565b9150612d6082612cfb565b604082019050919050565b5f6020820190508181035f830152612d8281612d49565b9050919050565b5f81905092915050565b50565b5f612da15f83612d89565b9150612dac82612d93565b5f82019050919050565b5f612dc082612d96565b9150819050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612dfe60208361249d565b9150612e0982612dca565b602082019050919050565b5f6020820190508181035f830152612e2b81612df2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612e8c60248361249d565b9150612e9782612e32565b604082019050919050565b5f6020820190508181035f830152612eb981612e80565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612f1a60228361249d565b9150612f2582612ec0565b604082019050919050565b5f6020820190508181035f830152612f4781612f0e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612f82601d8361249d565b9150612f8d82612f4e565b602082019050919050565b5f6020820190508181035f830152612faf81612f76565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61301060258361249d565b915061301b82612fb6565b604082019050919050565b5f6020820190508181035f83015261303d81613004565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61309e60238361249d565b91506130a982613044565b604082019050919050565b5f6020820190508181035f8301526130cb81613092565b9050919050565b7f45524332303a20427579207472616e7366657220616d6f756e742065786365655f8201527f647320746865206d61785472616e73616374696f6e416d6f756e742e00000000602082015250565b5f61312c603c8361249d565b9150613137826130d2565b604082019050919050565b5f6020820190508181035f83015261315981613120565b9050919050565b7f45524332303a204d61782077616c6c65742065786365656465640000000000005f82015250565b5f613194601a8361249d565b915061319f82613160565b602082019050919050565b5f6020820190508181035f8301526131c181613188565b9050919050565b7f45524332303a2053656c6c207472616e7366657220616d6f756e7420657863655f8201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e000000602082015250565b5f613222603d8361249d565b915061322d826131c8565b604082019050919050565b5f6020820190508181035f83015261324f81613216565b9050919050565b5f61326082612422565b915061326b83612422565b92508282039050818111156132835761328261284c565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6132e360268361249d565b91506132ee82613289565b604082019050919050565b5f6020820190508181035f830152613310816132d7565b9050919050565b5f60608201905061332a5f83018661267c565b613337602083018561267c565b613344604083018461267c565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506133b48161256d565b92915050565b5f602082840312156133cf576133ce61241e565b5b5f6133dc848285016133a6565b91505092915050565b5f819050919050565b5f6134086134036133fe846133e5565b612608565b612422565b9050919050565b613418816133ee565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6134508161255c565b82525050565b5f6134618383613447565b60208301905092915050565b5f602082019050919050565b5f6134838261341e565b61348d8185613428565b935061349883613438565b805f5b838110156134c85781516134af8882613456565b97506134ba8361346d565b92505060018101905061349b565b5085935050505092915050565b5f60a0820190506134e85f83018861267c565b6134f5602083018761340f565b81810360408301526135078186613479565b905061351660608301856126f4565b613523608083018461267c565b9695505050505050565b5f60c0820190506135405f8301896126f4565b61354d602083018861267c565b61355a604083018761340f565b613567606083018661340f565b61357460808301856126f4565b61358160a083018461267c565b979650505050505050565b5f8151905061359a8161242b565b92915050565b5f805f606084860312156135b7576135b661241e565b5b5f6135c48682870161358c565b93505060206135d58682870161358c565b92505060406135e68682870161358c565b915050925092509256fea264697066735822122061792cddee200a216e786a46f17e79edb15707442a0e3dd18410ff28af0c7ce364736f6c63430008140033

Deployed Bytecode Sourcemap

38307:10708:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42320:383;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10091:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12592:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38385:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11220:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13414:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38488:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11062:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14118:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38443:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43288:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38846:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11391:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3467:103;;;;;;;;;;;;;:::i;:::-;;42145:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38580:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3160:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10310:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41630:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14891:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11774:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42711:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38619:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41111:511;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38734:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12071:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38661:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3729:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42901:183;;;;;;;;;;;;;:::i;:::-;;38701:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42320:383;3046:13;:11;:13::i;:::-;42460::::1;42441:16;:32;;;;42503:13;42484:16;:32;;;;42562:16;;42543;;:35;;;;:::i;:::-;42527:13;:51;;;;42603:13;;42589:11;:27;;;;42652:2;42635:13;;:19;;42627:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42320:383:::0;;:::o;10091:100::-;10145:13;10178:5;10171:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10091:100;:::o;12592:242::-;12711:4;12733:13;12749:12;:10;:12::i;:::-;12733:28;;12772:32;12781:5;12788:7;12797:6;12772:8;:32::i;:::-;12822:4;12815:11;;;12592:242;;;;:::o;38385:51::-;;;:::o;11220:108::-;11281:7;11308:12;;11301:19;;11220:108;:::o;13414:295::-;13545:4;13562:15;13580:12;:10;:12::i;:::-;13562:30;;13603:38;13619:4;13625:7;13634:6;13603:15;:38::i;:::-;13652:27;13662:4;13668:2;13672:6;13652:9;:27::i;:::-;13697:4;13690:11;;;13414:295;;;;;:::o;38488:53::-;38534:6;38488:53;:::o;11062:93::-;11120:5;11145:2;11138:9;;11062:93;:::o;14118:270::-;14233:4;14255:13;14271:12;:10;:12::i;:::-;14255:28;;14294:64;14303:5;14310:7;14347:10;14319:25;14329:5;14336:7;14319:9;:25::i;:::-;:38;;;;:::i;:::-;14294:8;:64::i;:::-;14376:4;14369:11;;;14118:270;;;;:::o;38443:38::-;;;:::o;43288:126::-;43354:4;43378:19;:28;43398:7;43378:28;;;;;;;;;;;;;;;;;;;;;;;;;43371:35;;43288:126;;;:::o;38846:28::-;;;;:::o;11391:177::-;11510:7;11542:9;:18;11552:7;11542:18;;;;;;;;;;;;;;;;11535:25;;11391:177;;;:::o;3467:103::-;3046:13;:11;:13::i;:::-;3532:30:::1;3559:1;3532:18;:30::i;:::-;3467:103::o:0;42145:167::-;3046:13;:11;:13::i;:::-;42300:4:::1;42258:31;:39;42290:6;42258:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;42145:167:::0;;:::o;38580:30::-;;;;;;;;;;;;;:::o;3160:87::-;3206:7;3233:6;;;;;;;;;;;3226:13;;3160:87;:::o;10310:104::-;10366:13;10399:7;10392:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10310:104;:::o;41630:507::-;3046:13;:11;:13::i;:::-;41824:4:::1;41819:1;41803:13;:11;:13::i;:::-;:17;;;;:::i;:::-;41802:26;;;;:::i;:::-;41788:9;:41;;41766:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;41972:4;41967:1;41951:13;:11;:13::i;:::-;:17;;;;:::i;:::-;41950:26;;;;:::i;:::-;41930:15;:47;;41908:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42071:15;42059:9;:27;;;;42120:9;42097:20;:32;;;;41630:507:::0;;:::o;14891:505::-;15011:4;15033:13;15049:12;:10;:12::i;:::-;15033:28;;15072:24;15099:25;15109:5;15116:7;15099:9;:25::i;:::-;15072:52;;15177:15;15157:16;:35;;15135:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;15293:60;15302:5;15309:7;15337:15;15318:16;:34;15293:8;:60::i;:::-;15384:4;15377:11;;;;14891:505;;;;:::o;11774:234::-;11889:4;11911:13;11927:12;:10;:12::i;:::-;11911:28;;11950;11960:5;11967:2;11971:6;11950:9;:28::i;:::-;11996:4;11989:11;;;11774:234;;;;:::o;42711:182::-;3046:13;:11;:13::i;:::-;42827:8:::1;42796:19;:28;42816:7;42796:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;42867:7;42851:34;;;42876:8;42851:34;;;;;;:::i;:::-;;;;;;;;42711:182:::0;;:::o;38619:35::-;;;;:::o;41111:511::-;41219:4;3046:13;:11;:13::i;:::-;41298:6:::1;41293:1;41277:13;:11;:13::i;:::-;:17;;;;:::i;:::-;41276:28;;;;:::i;:::-;41263:9;:41;;41241:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;41460:4;41455:1;41439:13;:11;:13::i;:::-;:17;;;;:::i;:::-;41438:26;;;;:::i;:::-;41425:9;:39;;41403:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;41583:9;41562:18;:30;;;;41610:4;41603:11;;41111:511:::0;;;:::o;38734:27::-;;;;:::o;12071:201::-;12205:7;12237:11;:18;12249:5;12237:18;;;;;;;;;;;;;;;:27;12256:7;12237:27;;;;;;;;;;;;;;;;12230:34;;12071:201;;;;:::o;38661:33::-;;;;:::o;3729:238::-;3046:13;:11;:13::i;:::-;3852:1:::1;3832:22;;:8;:22;;::::0;3810:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3931:28;3950:8;3931:18;:28::i;:::-;3729:238:::0;:::o;42901:183::-;3046:13;:11;:13::i;:::-;42957:12:::1;43002:10;42994:24;;43026:21;42994:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42980:96;;;;;42946:138;42901:183::o:0;38701:24::-;;;;:::o;3325:132::-;3400:12;:10;:12::i;:::-;3389:23;;:7;:5;:7::i;:::-;:23;;;3381:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3325:132::o;1705:98::-;1758:7;1785:10;1778:17;;1705:98;:::o;19024:380::-;19177:1;19160:19;;:5;:19;;;19152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19258:1;19239:21;;:7;:21;;;19231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19342:6;19312:11;:18;19324:5;19312:18;;;;;;;;;;;;;;;:27;19331:7;19312:27;;;;;;;;;;;;;;;:36;;;;19380:7;19364:32;;19373:5;19364:32;;;19389:6;19364:32;;;;;;:::i;:::-;;;;;;;;19024:380;;;:::o;19695:502::-;19830:24;19857:25;19867:5;19874:7;19857:9;:25::i;:::-;19830:52;;19917:17;19897:16;:37;19893:297;;19997:6;19977:16;:26;;19951:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;20112:51;20121:5;20128:7;20156:6;20137:16;:25;20112:8;:51::i;:::-;19893:297;19819:378;19695:502;;;:::o;43422:3230::-;43570:1;43554:18;;:4;:18;;;43546:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43647:1;43633:16;;:2;:16;;;43625:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43716:1;43706:6;:11;43702:93;;43734:28;43750:4;43756:2;43760:1;43734:15;:28::i;:::-;43777:7;;43702:93;43833:7;:5;:7::i;:::-;43825:15;;:4;:15;;;;:45;;;;;43863:7;:5;:7::i;:::-;43857:13;;:2;:13;;;;43825:45;:78;;;;;43901:1;43887:16;;:2;:16;;;;43825:78;:112;;;;;38534:6;43920:17;;:2;:17;;;;43825:112;:138;;;;;43955:8;;;;;;;;;;;43954:9;43825:138;43807:1285;;;44036:25;:31;44062:4;44036:31;;;;;;;;;;;;;;;;;;;;;;;;;:88;;;;;44089:31;:35;44121:2;44089:35;;;;;;;;;;;;;;;;;;;;;;;;;44088:36;44036:88;44014:1067;;;44199:20;;44189:6;:30;;44159:164;;;;;;;;;;;;:::i;:::-;;;;;;;;;44398:9;;44381:13;44391:2;44381:9;:13::i;:::-;44372:6;:22;;;;:::i;:::-;:35;;44342:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;44014:1067;;;44559:25;:29;44585:2;44559:29;;;;;;;;;;;;;;;;;;;;;;;;;:88;;;;;44610:31;:37;44642:4;44610:37;;;;;;;;;;;;;;;;;;;;;;;;;44609:38;44559:88;44537:544;;;44722:20;;44712:6;:30;;44682:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;44537:544;;;44874:31;:35;44906:2;44874:35;;;;;;;;;;;;;;;;;;;;;;;;;44869:212;;44986:9;;44969:13;44979:2;44969:9;:13::i;:::-;44960:6;:22;;;;:::i;:::-;:35;;44930:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;44869:212;44537:544;44014:1067;43807:1285;45104:28;45135:24;45153:4;45135:9;:24::i;:::-;45104:55;;45172:12;45211:18;;45187:20;:42;;45172:57;;45260:7;:33;;;;;45285:8;;;;;;;;;;;45284:9;45260:33;:82;;;;;45311:25;:31;45337:4;45311:31;;;;;;;;;;;;;;;;;;;;;;;;;45310:32;45260:82;:125;;;;;45360:19;:25;45380:4;45360:25;;;;;;;;;;;;;;;;;;;;;;;;;45359:26;45260:125;:166;;;;;45403:19;:23;45423:2;45403:23;;;;;;;;;;;;;;;;;;;;;;;;;45402:24;45260:166;45242:298;;;45464:4;45453:8;;:15;;;;;;;;;;;;;;;;;;45485:10;:8;:10::i;:::-;45523:5;45512:8;;:16;;;;;;;;;;;;;;;;;;45242:298;45552:12;45568:8;;;;;;;;;;;45567:9;45552:24;;45593:19;:25;45613:4;45593:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45622:19;:23;45642:2;45622:23;;;;;;;;;;;;;;;;;;;;;;;;;45593:52;45589:100;;;45672:5;45662:15;;45589:100;45701:12;45734:7;45730:831;;;45786:25;:29;45812:2;45786:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45835:1;45819:13;;:17;45786:50;45782:630;;;45864:34;45894:3;45864:25;45875:13;;45864:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45857:41;;45967:13;;45947:16;;45940:4;:23;;;;:::i;:::-;45939:41;;;;:::i;:::-;45917:18;;:63;;;;;;;:::i;:::-;;;;;;;;46049:13;;46029:16;;46022:4;:23;;;;:::i;:::-;46021:41;;;;:::i;:::-;45999:18;;:63;;;;;;;:::i;:::-;;;;;;;;45782:630;;;46124:25;:31;46150:4;46124:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46174:1;46159:12;;:16;46124:51;46120:292;;;46203:33;46232:3;46203:24;46214:12;;46203:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46196:40;;46304:12;;46285:15;;46278:4;:22;;;;:::i;:::-;46277:39;;;;:::i;:::-;46255:18;;:61;;;;;;;:::i;:::-;;;;;;;;46384:12;;46365:15;;46358:4;:22;;;;:::i;:::-;46357:39;;;;:::i;:::-;46335:18;;:61;;;;;;;:::i;:::-;;;;;;;;46120:292;45782:630;46439:1;46432:4;:8;46428:91;;;46461:42;46477:4;46491;46498;46461:15;:42::i;:::-;46428:91;46545:4;46535:14;;;;;:::i;:::-;;;45730:831;46573:33;46589:4;46595:2;46599:6;46573:15;:33::i;:::-;46633:11;;46617:13;:27;;;;43535:3117;;;;43422:3230;;;;:::o;4127:191::-;4201:16;4220:6;;;;;;;;;;;4201:25;;4246:8;4237:6;;:17;;;;;;;;;;;;;;;;;;4301:8;4270:40;;4291:8;4270:40;;;;;;;;;;;;4190:128;4127:191;:::o;15866:877::-;16013:1;15997:18;;:4;:18;;;15989:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16090:1;16076:16;;:2;:16;;;16068:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;16145:38;16166:4;16172:2;16176:6;16145:20;:38::i;:::-;16196:19;16218:9;:15;16228:4;16218:15;;;;;;;;;;;;;;;;16196:37;;16281:6;16266:11;:21;;16244:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;16421:6;16407:11;:20;16389:9;:15;16399:4;16389:15;;;;;;;;;;;;;;;:38;;;;16624:6;16607:9;:13;16617:2;16607:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;16674:2;16659:26;;16668:4;16659:26;;;16678:6;16659:26;;;;;;:::i;:::-;;;;;;;;16698:37;16718:4;16724:2;16728:6;16698:19;:37::i;:::-;15978:765;15866:877;;;:::o;47539:1473::-;47578:23;47604:24;47622:4;47604:9;:24::i;:::-;47578:50;;47639:25;47688:18;;47667;;:39;;;;:::i;:::-;47639:67;;47717:12;47765:1;47746:15;:20;:46;;;;47791:1;47770:17;:22;47746:46;47742:85;;;47809:7;;;;;47742:85;47882:2;47861:18;;:23;;;;:::i;:::-;47843:15;:41;47839:115;;;47940:2;47919:18;;:23;;;;:::i;:::-;47901:41;;47839:115;47966:23;48079:1;48046:17;48011:18;;47993:15;:36;;;;:::i;:::-;47992:71;;;;:::i;:::-;:88;;;;:::i;:::-;47966:114;;48091:26;48120:36;48140:15;48120;:19;;:36;;;;:::i;:::-;48091:65;;48169:25;48197:21;48169:49;;48231:36;48248:18;48231:16;:36::i;:::-;48280:18;48301:44;48327:17;48301:21;:25;;:44;;;;:::i;:::-;48280:65;;48358:23;48384:81;48437:17;48384:34;48399:18;;48384:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48358:107;;48478:23;48517:15;48504:10;:28;;;;:::i;:::-;48478:54;;48566:1;48545:18;:22;;;;48599:1;48578:18;:22;;;;48635:1;48617:15;:19;:42;;;;;48658:1;48640:15;:19;48617:42;48613:278;;;48676:46;48689:15;48706;48676:12;:46::i;:::-;48742:137;48775:18;48812:15;48846:18;;48742:137;;;;;;;;:::i;:::-;;;;;;;;48613:278;48925:15;;;;;;;;;;;48917:29;;48954:21;48917:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48903:101;;;;;47567:1445;;;;;;;;;47539:1473;:::o;25372:98::-;25430:7;25461:1;25457;:5;;;;:::i;:::-;25450:12;;25372:98;;;;:::o;25771:::-;25829:7;25860:1;25856;:5;;;;:::i;:::-;25849:12;;25771:98;;;;:::o;20797:125::-;;;;:::o;21526:124::-;;;;:::o;25015:98::-;25073:7;25104:1;25100;:5;;;;:::i;:::-;25093:12;;25015:98;;;;:::o;46660:501::-;46726:21;46764:1;46750:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46726:40;;46795:4;46777;46782:1;46777:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46821:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46811:4;46816:1;46811:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46856:62;46873:4;46888:15;46906:11;46856:8;:62::i;:::-;46957:15;:66;;;47038:11;47064:1;47080:4;47107;47127:15;46957:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46715:446;46660:501;:::o;47169:362::-;47250:62;47267:4;47282:15;47300:11;47250:8;:62::i;:::-;47325:15;:31;;;47364:9;47397:4;47417:11;47443:1;47459;47475:7;:5;:7::i;:::-;47497:15;47325:198;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47169:362;;:::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:246::-;1531:1;1541:113;1555:6;1552:1;1549:13;1541:113;;;1640:1;1635:3;1631:11;1625:18;1621:1;1616:3;1612:11;1605:39;1577:2;1574:1;1570:10;1565:15;;1541:113;;;1688:1;1679:6;1674:3;1670:16;1663:27;1512:184;1450:246;;;:::o;1702:102::-;1743:6;1794:2;1790:7;1785:2;1778:5;1774:14;1770:28;1760:38;;1702:102;;;:::o;1810:377::-;1898:3;1926:39;1959:5;1926:39;:::i;:::-;1981:71;2045:6;2040:3;1981:71;:::i;:::-;1974:78;;2061:65;2119:6;2114:3;2107:4;2100:5;2096:16;2061:65;:::i;:::-;2151:29;2173:6;2151:29;:::i;:::-;2146:3;2142:39;2135:46;;1902:285;1810:377;;;;:::o;2193:313::-;2306:4;2344:2;2333:9;2329:18;2321:26;;2393:9;2387:4;2383:20;2379:1;2368:9;2364:17;2357:47;2421:78;2494:4;2485:6;2421:78;:::i;:::-;2413:86;;2193:313;;;;:::o;2512:126::-;2549:7;2589:42;2582:5;2578:54;2567:65;;2512:126;;;:::o;2644:96::-;2681:7;2710:24;2728:5;2710:24;:::i;:::-;2699:35;;2644:96;;;:::o;2746:122::-;2819:24;2837:5;2819:24;:::i;:::-;2812:5;2809:35;2799:63;;2858:1;2855;2848:12;2799:63;2746:122;:::o;2874:139::-;2920:5;2958:6;2945:20;2936:29;;2974:33;3001:5;2974:33;:::i;:::-;2874:139;;;;:::o;3019:474::-;3087:6;3095;3144:2;3132:9;3123:7;3119:23;3115:32;3112:119;;;3150:79;;:::i;:::-;3112:119;3270:1;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3241:117;3397:2;3423:53;3468:7;3459:6;3448:9;3444:22;3423:53;:::i;:::-;3413:63;;3368:118;3019:474;;;;;:::o;3499:90::-;3533:7;3576:5;3569:13;3562:21;3551:32;;3499:90;;;:::o;3595:109::-;3676:21;3691:5;3676:21;:::i;:::-;3671:3;3664:34;3595:109;;:::o;3710:210::-;3797:4;3835:2;3824:9;3820:18;3812:26;;3848:65;3910:1;3899:9;3895:17;3886:6;3848:65;:::i;:::-;3710:210;;;;:::o;3926:60::-;3954:3;3975:5;3968:12;;3926:60;;;:::o;3992:142::-;4042:9;4075:53;4093:34;4102:24;4120:5;4102:24;:::i;:::-;4093:34;:::i;:::-;4075:53;:::i;:::-;4062:66;;3992:142;;;:::o;4140:126::-;4190:9;4223:37;4254:5;4223:37;:::i;:::-;4210:50;;4140:126;;;:::o;4272:153::-;4349:9;4382:37;4413:5;4382:37;:::i;:::-;4369:50;;4272:153;;;:::o;4431:185::-;4545:64;4603:5;4545:64;:::i;:::-;4540:3;4533:77;4431:185;;:::o;4622:276::-;4742:4;4780:2;4769:9;4765:18;4757:26;;4793:98;4888:1;4877:9;4873:17;4864:6;4793:98;:::i;:::-;4622:276;;;;:::o;4904:118::-;4991:24;5009:5;4991:24;:::i;:::-;4986:3;4979:37;4904:118;;:::o;5028:222::-;5121:4;5159:2;5148:9;5144:18;5136:26;;5172:71;5240:1;5229:9;5225:17;5216:6;5172:71;:::i;:::-;5028:222;;;;:::o;5256:619::-;5333:6;5341;5349;5398:2;5386:9;5377:7;5373:23;5369:32;5366:119;;;5404:79;;:::i;:::-;5366:119;5524:1;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5495:117;5651:2;5677:53;5722:7;5713:6;5702:9;5698:22;5677:53;:::i;:::-;5667:63;;5622:118;5779:2;5805:53;5850:7;5841:6;5830:9;5826:22;5805:53;:::i;:::-;5795:63;;5750:118;5256:619;;;;;:::o;5881:118::-;5968:24;5986:5;5968:24;:::i;:::-;5963:3;5956:37;5881:118;;:::o;6005:222::-;6098:4;6136:2;6125:9;6121:18;6113:26;;6149:71;6217:1;6206:9;6202:17;6193:6;6149:71;:::i;:::-;6005:222;;;;:::o;6233:86::-;6268:7;6308:4;6301:5;6297:16;6286:27;;6233:86;;;:::o;6325:112::-;6408:22;6424:5;6408:22;:::i;:::-;6403:3;6396:35;6325:112;;:::o;6443:214::-;6532:4;6570:2;6559:9;6555:18;6547:26;;6583:67;6647:1;6636:9;6632:17;6623:6;6583:67;:::i;:::-;6443:214;;;;:::o;6663:329::-;6722:6;6771:2;6759:9;6750:7;6746:23;6742:32;6739:119;;;6777:79;;:::i;:::-;6739:119;6897:1;6922:53;6967:7;6958:6;6947:9;6943:22;6922:53;:::i;:::-;6912:63;;6868:117;6663:329;;;;:::o;6998:116::-;7068:21;7083:5;7068:21;:::i;:::-;7061:5;7058:32;7048:60;;7104:1;7101;7094:12;7048:60;6998:116;:::o;7120:133::-;7163:5;7201:6;7188:20;7179:29;;7217:30;7241:5;7217:30;:::i;:::-;7120:133;;;;:::o;7259:468::-;7324:6;7332;7381:2;7369:9;7360:7;7356:23;7352:32;7349:119;;;7387:79;;:::i;:::-;7349:119;7507:1;7532:53;7577:7;7568:6;7557:9;7553:22;7532:53;:::i;:::-;7522:63;;7478:117;7634:2;7660:50;7702:7;7693:6;7682:9;7678:22;7660:50;:::i;:::-;7650:60;;7605:115;7259:468;;;;;:::o;7733:329::-;7792:6;7841:2;7829:9;7820:7;7816:23;7812:32;7809:119;;;7847:79;;:::i;:::-;7809:119;7967:1;7992:53;8037:7;8028:6;8017:9;8013:22;7992:53;:::i;:::-;7982:63;;7938:117;7733:329;;;;:::o;8068:474::-;8136:6;8144;8193:2;8181:9;8172:7;8168:23;8164:32;8161:119;;;8199:79;;:::i;:::-;8161:119;8319:1;8344:53;8389:7;8380:6;8369:9;8365:22;8344:53;:::i;:::-;8334:63;;8290:117;8446:2;8472:53;8517:7;8508:6;8497:9;8493:22;8472:53;:::i;:::-;8462:63;;8417:118;8068:474;;;;;:::o;8548:180::-;8596:77;8593:1;8586:88;8693:4;8690:1;8683:15;8717:4;8714:1;8707:15;8734:191;8774:3;8793:20;8811:1;8793:20;:::i;:::-;8788:25;;8827:20;8845:1;8827:20;:::i;:::-;8822:25;;8870:1;8867;8863:9;8856:16;;8891:3;8888:1;8885:10;8882:36;;;8898:18;;:::i;:::-;8882:36;8734:191;;;;:::o;8931:223::-;9071:34;9067:1;9059:6;9055:14;9048:58;9140:6;9135:2;9127:6;9123:15;9116:31;8931:223;:::o;9160:366::-;9302:3;9323:67;9387:2;9382:3;9323:67;:::i;:::-;9316:74;;9399:93;9488:3;9399:93;:::i;:::-;9517:2;9512:3;9508:12;9501:19;;9160:366;;;:::o;9532:419::-;9698:4;9736:2;9725:9;9721:18;9713:26;;9785:9;9779:4;9775:20;9771:1;9760:9;9756:17;9749:47;9813:131;9939:4;9813:131;:::i;:::-;9805:139;;9532:419;;;:::o;9957:180::-;10005:77;10002:1;9995:88;10102:4;10099:1;10092:15;10126:4;10123:1;10116:15;10143:320;10187:6;10224:1;10218:4;10214:12;10204:22;;10271:1;10265:4;10261:12;10292:18;10282:81;;10348:4;10340:6;10336:17;10326:27;;10282:81;10410:2;10402:6;10399:14;10379:18;10376:38;10373:84;;10429:18;;:::i;:::-;10373:84;10194:269;10143:320;;;:::o;10469:410::-;10509:7;10532:20;10550:1;10532:20;:::i;:::-;10527:25;;10566:20;10584:1;10566:20;:::i;:::-;10561:25;;10621:1;10618;10614:9;10643:30;10661:11;10643:30;:::i;:::-;10632:41;;10822:1;10813:7;10809:15;10806:1;10803:22;10783:1;10776:9;10756:83;10733:139;;10852:18;;:::i;:::-;10733:139;10517:362;10469:410;;;;:::o;10885:180::-;10933:77;10930:1;10923:88;11030:4;11027:1;11020:15;11054:4;11051:1;11044:15;11071:185;11111:1;11128:20;11146:1;11128:20;:::i;:::-;11123:25;;11162:20;11180:1;11162:20;:::i;:::-;11157:25;;11201:1;11191:35;;11206:18;;:::i;:::-;11191:35;11248:1;11245;11241:9;11236:14;;11071:185;;;;:::o;11262:227::-;11402:34;11398:1;11390:6;11386:14;11379:58;11471:10;11466:2;11458:6;11454:15;11447:35;11262:227;:::o;11495:366::-;11637:3;11658:67;11722:2;11717:3;11658:67;:::i;:::-;11651:74;;11734:93;11823:3;11734:93;:::i;:::-;11852:2;11847:3;11843:12;11836:19;;11495:366;;;:::o;11867:419::-;12033:4;12071:2;12060:9;12056:18;12048:26;;12120:9;12114:4;12110:20;12106:1;12095:9;12091:17;12084:47;12148:131;12274:4;12148:131;:::i;:::-;12140:139;;11867:419;;;:::o;12292:230::-;12432:34;12428:1;12420:6;12416:14;12409:58;12501:13;12496:2;12488:6;12484:15;12477:38;12292:230;:::o;12528:366::-;12670:3;12691:67;12755:2;12750:3;12691:67;:::i;:::-;12684:74;;12767:93;12856:3;12767:93;:::i;:::-;12885:2;12880:3;12876:12;12869:19;;12528:366;;;:::o;12900:419::-;13066:4;13104:2;13093:9;13089:18;13081:26;;13153:9;13147:4;13143:20;13139:1;13128:9;13124:17;13117:47;13181:131;13307:4;13181:131;:::i;:::-;13173:139;;12900:419;;;:::o;13325:224::-;13465:34;13461:1;13453:6;13449:14;13442:58;13534:7;13529:2;13521:6;13517:15;13510:32;13325:224;:::o;13555:366::-;13697:3;13718:67;13782:2;13777:3;13718:67;:::i;:::-;13711:74;;13794:93;13883:3;13794:93;:::i;:::-;13912:2;13907:3;13903:12;13896:19;;13555:366;;;:::o;13927:419::-;14093:4;14131:2;14120:9;14116:18;14108:26;;14180:9;14174:4;14170:20;14166:1;14155:9;14151:17;14144:47;14208:131;14334:4;14208:131;:::i;:::-;14200:139;;13927:419;;;:::o;14352:247::-;14492:34;14488:1;14480:6;14476:14;14469:58;14561:30;14556:2;14548:6;14544:15;14537:55;14352:247;:::o;14605:366::-;14747:3;14768:67;14832:2;14827:3;14768:67;:::i;:::-;14761:74;;14844:93;14933:3;14844:93;:::i;:::-;14962:2;14957:3;14953:12;14946:19;;14605:366;;;:::o;14977:419::-;15143:4;15181:2;15170:9;15166:18;15158:26;;15230:9;15224:4;15220:20;15216:1;15205:9;15201:17;15194:47;15258:131;15384:4;15258:131;:::i;:::-;15250:139;;14977:419;;;:::o;15402:246::-;15542:34;15538:1;15530:6;15526:14;15519:58;15611:29;15606:2;15598:6;15594:15;15587:54;15402:246;:::o;15654:366::-;15796:3;15817:67;15881:2;15876:3;15817:67;:::i;:::-;15810:74;;15893:93;15982:3;15893:93;:::i;:::-;16011:2;16006:3;16002:12;15995:19;;15654:366;;;:::o;16026:419::-;16192:4;16230:2;16219:9;16215:18;16207:26;;16279:9;16273:4;16269:20;16265:1;16254:9;16250:17;16243:47;16307:131;16433:4;16307:131;:::i;:::-;16299:139;;16026:419;;;:::o;16451:225::-;16591:34;16587:1;16579:6;16575:14;16568:58;16660:8;16655:2;16647:6;16643:15;16636:33;16451:225;:::o;16682:366::-;16824:3;16845:67;16909:2;16904:3;16845:67;:::i;:::-;16838:74;;16921:93;17010:3;16921:93;:::i;:::-;17039:2;17034:3;17030:12;17023:19;;16682:366;;;:::o;17054:419::-;17220:4;17258:2;17247:9;17243:18;17235:26;;17307:9;17301:4;17297:20;17293:1;17282:9;17278:17;17271:47;17335:131;17461:4;17335:131;:::i;:::-;17327:139;;17054:419;;;:::o;17479:147::-;17580:11;17617:3;17602:18;;17479:147;;;;:::o;17632:114::-;;:::o;17752:398::-;17911:3;17932:83;18013:1;18008:3;17932:83;:::i;:::-;17925:90;;18024:93;18113:3;18024:93;:::i;:::-;18142:1;18137:3;18133:11;18126:18;;17752:398;;;:::o;18156:379::-;18340:3;18362:147;18505:3;18362:147;:::i;:::-;18355:154;;18526:3;18519:10;;18156:379;;;:::o;18541:182::-;18681:34;18677:1;18669:6;18665:14;18658:58;18541:182;:::o;18729:366::-;18871:3;18892:67;18956:2;18951:3;18892:67;:::i;:::-;18885:74;;18968:93;19057:3;18968:93;:::i;:::-;19086:2;19081:3;19077:12;19070:19;;18729:366;;;:::o;19101:419::-;19267:4;19305:2;19294:9;19290:18;19282:26;;19354:9;19348:4;19344:20;19340:1;19329:9;19325:17;19318:47;19382:131;19508:4;19382:131;:::i;:::-;19374:139;;19101:419;;;:::o;19526:223::-;19666:34;19662:1;19654:6;19650:14;19643:58;19735:6;19730:2;19722:6;19718:15;19711:31;19526:223;:::o;19755:366::-;19897:3;19918:67;19982:2;19977:3;19918:67;:::i;:::-;19911:74;;19994:93;20083:3;19994:93;:::i;:::-;20112:2;20107:3;20103:12;20096:19;;19755:366;;;:::o;20127:419::-;20293:4;20331:2;20320:9;20316:18;20308:26;;20380:9;20374:4;20370:20;20366:1;20355:9;20351:17;20344:47;20408:131;20534:4;20408:131;:::i;:::-;20400:139;;20127:419;;;:::o;20552:221::-;20692:34;20688:1;20680:6;20676:14;20669:58;20761:4;20756:2;20748:6;20744:15;20737:29;20552:221;:::o;20779:366::-;20921:3;20942:67;21006:2;21001:3;20942:67;:::i;:::-;20935:74;;21018:93;21107:3;21018:93;:::i;:::-;21136:2;21131:3;21127:12;21120:19;;20779:366;;;:::o;21151:419::-;21317:4;21355:2;21344:9;21340:18;21332:26;;21404:9;21398:4;21394:20;21390:1;21379:9;21375:17;21368:47;21432:131;21558:4;21432:131;:::i;:::-;21424:139;;21151:419;;;:::o;21576:179::-;21716:31;21712:1;21704:6;21700:14;21693:55;21576:179;:::o;21761:366::-;21903:3;21924:67;21988:2;21983:3;21924:67;:::i;:::-;21917:74;;22000:93;22089:3;22000:93;:::i;:::-;22118:2;22113:3;22109:12;22102:19;;21761:366;;;:::o;22133:419::-;22299:4;22337:2;22326:9;22322:18;22314:26;;22386:9;22380:4;22376:20;22372:1;22361:9;22357:17;22350:47;22414:131;22540:4;22414:131;:::i;:::-;22406:139;;22133:419;;;:::o;22558:224::-;22698:34;22694:1;22686:6;22682:14;22675:58;22767:7;22762:2;22754:6;22750:15;22743:32;22558:224;:::o;22788:366::-;22930:3;22951:67;23015:2;23010:3;22951:67;:::i;:::-;22944:74;;23027:93;23116:3;23027:93;:::i;:::-;23145:2;23140:3;23136:12;23129:19;;22788:366;;;:::o;23160:419::-;23326:4;23364:2;23353:9;23349:18;23341:26;;23413:9;23407:4;23403:20;23399:1;23388:9;23384:17;23377:47;23441:131;23567:4;23441:131;:::i;:::-;23433:139;;23160:419;;;:::o;23585:222::-;23725:34;23721:1;23713:6;23709:14;23702:58;23794:5;23789:2;23781:6;23777:15;23770:30;23585:222;:::o;23813:366::-;23955:3;23976:67;24040:2;24035:3;23976:67;:::i;:::-;23969:74;;24052:93;24141:3;24052:93;:::i;:::-;24170:2;24165:3;24161:12;24154:19;;23813:366;;;:::o;24185:419::-;24351:4;24389:2;24378:9;24374:18;24366:26;;24438:9;24432:4;24428:20;24424:1;24413:9;24409:17;24402:47;24466:131;24592:4;24466:131;:::i;:::-;24458:139;;24185:419;;;:::o;24610:247::-;24750:34;24746:1;24738:6;24734:14;24727:58;24819:30;24814:2;24806:6;24802:15;24795:55;24610:247;:::o;24863:366::-;25005:3;25026:67;25090:2;25085:3;25026:67;:::i;:::-;25019:74;;25102:93;25191:3;25102:93;:::i;:::-;25220:2;25215:3;25211:12;25204:19;;24863:366;;;:::o;25235:419::-;25401:4;25439:2;25428:9;25424:18;25416:26;;25488:9;25482:4;25478:20;25474:1;25463:9;25459:17;25452:47;25516:131;25642:4;25516:131;:::i;:::-;25508:139;;25235:419;;;:::o;25660:176::-;25800:28;25796:1;25788:6;25784:14;25777:52;25660:176;:::o;25842:366::-;25984:3;26005:67;26069:2;26064:3;26005:67;:::i;:::-;25998:74;;26081:93;26170:3;26081:93;:::i;:::-;26199:2;26194:3;26190:12;26183:19;;25842:366;;;:::o;26214:419::-;26380:4;26418:2;26407:9;26403:18;26395:26;;26467:9;26461:4;26457:20;26453:1;26442:9;26438:17;26431:47;26495:131;26621:4;26495:131;:::i;:::-;26487:139;;26214:419;;;:::o;26639:248::-;26779:34;26775:1;26767:6;26763:14;26756:58;26848:31;26843:2;26835:6;26831:15;26824:56;26639:248;:::o;26893:366::-;27035:3;27056:67;27120:2;27115:3;27056:67;:::i;:::-;27049:74;;27132:93;27221:3;27132:93;:::i;:::-;27250:2;27245:3;27241:12;27234:19;;26893:366;;;:::o;27265:419::-;27431:4;27469:2;27458:9;27454:18;27446:26;;27518:9;27512:4;27508:20;27504:1;27493:9;27489:17;27482:47;27546:131;27672:4;27546:131;:::i;:::-;27538:139;;27265:419;;;:::o;27690:194::-;27730:4;27750:20;27768:1;27750:20;:::i;:::-;27745:25;;27784:20;27802:1;27784:20;:::i;:::-;27779:25;;27828:1;27825;27821:9;27813:17;;27852:1;27846:4;27843:11;27840:37;;;27857:18;;:::i;:::-;27840:37;27690:194;;;;:::o;27890:225::-;28030:34;28026:1;28018:6;28014:14;28007:58;28099:8;28094:2;28086:6;28082:15;28075:33;27890:225;:::o;28121:366::-;28263:3;28284:67;28348:2;28343:3;28284:67;:::i;:::-;28277:74;;28360:93;28449:3;28360:93;:::i;:::-;28478:2;28473:3;28469:12;28462:19;;28121:366;;;:::o;28493:419::-;28659:4;28697:2;28686:9;28682:18;28674:26;;28746:9;28740:4;28736:20;28732:1;28721:9;28717:17;28710:47;28774:131;28900:4;28774:131;:::i;:::-;28766:139;;28493:419;;;:::o;28918:442::-;29067:4;29105:2;29094:9;29090:18;29082:26;;29118:71;29186:1;29175:9;29171:17;29162:6;29118:71;:::i;:::-;29199:72;29267:2;29256:9;29252:18;29243:6;29199:72;:::i;:::-;29281;29349:2;29338:9;29334:18;29325:6;29281:72;:::i;:::-;28918:442;;;;;;:::o;29366:180::-;29414:77;29411:1;29404:88;29511:4;29508:1;29501:15;29535:4;29532:1;29525:15;29552:180;29600:77;29597:1;29590:88;29697:4;29694:1;29687:15;29721:4;29718:1;29711:15;29738:143;29795:5;29826:6;29820:13;29811:22;;29842:33;29869:5;29842:33;:::i;:::-;29738:143;;;;:::o;29887:351::-;29957:6;30006:2;29994:9;29985:7;29981:23;29977:32;29974:119;;;30012:79;;:::i;:::-;29974:119;30132:1;30157:64;30213:7;30204:6;30193:9;30189:22;30157:64;:::i;:::-;30147:74;;30103:128;29887:351;;;;:::o;30244:85::-;30289:7;30318:5;30307:16;;30244:85;;;:::o;30335:158::-;30393:9;30426:61;30444:42;30453:32;30479:5;30453:32;:::i;:::-;30444:42;:::i;:::-;30426:61;:::i;:::-;30413:74;;30335:158;;;:::o;30499:147::-;30594:45;30633:5;30594:45;:::i;:::-;30589:3;30582:58;30499:147;;:::o;30652:114::-;30719:6;30753:5;30747:12;30737:22;;30652:114;;;:::o;30772:184::-;30871:11;30905:6;30900:3;30893:19;30945:4;30940:3;30936:14;30921:29;;30772:184;;;;:::o;30962:132::-;31029:4;31052:3;31044:11;;31082:4;31077:3;31073:14;31065:22;;30962:132;;;:::o;31100:108::-;31177:24;31195:5;31177:24;:::i;:::-;31172:3;31165:37;31100:108;;:::o;31214:179::-;31283:10;31304:46;31346:3;31338:6;31304:46;:::i;:::-;31382:4;31377:3;31373:14;31359:28;;31214:179;;;;:::o;31399:113::-;31469:4;31501;31496:3;31492:14;31484:22;;31399:113;;;:::o;31548:732::-;31667:3;31696:54;31744:5;31696:54;:::i;:::-;31766:86;31845:6;31840:3;31766:86;:::i;:::-;31759:93;;31876:56;31926:5;31876:56;:::i;:::-;31955:7;31986:1;31971:284;31996:6;31993:1;31990:13;31971:284;;;32072:6;32066:13;32099:63;32158:3;32143:13;32099:63;:::i;:::-;32092:70;;32185:60;32238:6;32185:60;:::i;:::-;32175:70;;32031:224;32018:1;32015;32011:9;32006:14;;31971:284;;;31975:14;32271:3;32264:10;;31672:608;;;31548:732;;;;:::o;32286:831::-;32549:4;32587:3;32576:9;32572:19;32564:27;;32601:71;32669:1;32658:9;32654:17;32645:6;32601:71;:::i;:::-;32682:80;32758:2;32747:9;32743:18;32734:6;32682:80;:::i;:::-;32809:9;32803:4;32799:20;32794:2;32783:9;32779:18;32772:48;32837:108;32940:4;32931:6;32837:108;:::i;:::-;32829:116;;32955:72;33023:2;33012:9;33008:18;32999:6;32955:72;:::i;:::-;33037:73;33105:3;33094:9;33090:19;33081:6;33037:73;:::i;:::-;32286:831;;;;;;;;:::o;33123:807::-;33372:4;33410:3;33399:9;33395:19;33387:27;;33424:71;33492:1;33481:9;33477:17;33468:6;33424:71;:::i;:::-;33505:72;33573:2;33562:9;33558:18;33549:6;33505:72;:::i;:::-;33587:80;33663:2;33652:9;33648:18;33639:6;33587:80;:::i;:::-;33677;33753:2;33742:9;33738:18;33729:6;33677:80;:::i;:::-;33767:73;33835:3;33824:9;33820:19;33811:6;33767:73;:::i;:::-;33850;33918:3;33907:9;33903:19;33894:6;33850:73;:::i;:::-;33123:807;;;;;;;;;:::o;33936:143::-;33993:5;34024:6;34018:13;34009:22;;34040:33;34067:5;34040:33;:::i;:::-;33936:143;;;;:::o;34085:663::-;34173:6;34181;34189;34238:2;34226:9;34217:7;34213:23;34209:32;34206:119;;;34244:79;;:::i;:::-;34206:119;34364:1;34389:64;34445:7;34436:6;34425:9;34421:22;34389:64;:::i;:::-;34379:74;;34335:128;34502:2;34528:64;34584:7;34575:6;34564:9;34560:22;34528:64;:::i;:::-;34518:74;;34473:129;34641:2;34667:64;34723:7;34714:6;34703:9;34699:22;34667:64;:::i;:::-;34657:74;;34612:129;34085:663;;;;;:::o

Swarm Source

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