ETH Price: $3,086.36 (-0.07%)
Gas: 5 Gwei

Token

FishMeme (Fish)
 

Overview

Max Total Supply

1,000,000,000 Fish

Holders

1,038

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.461461781110346535 Fish

Value
$0.00
0x6929bc12539bc632c72a3d54d7b5a7789b11d4c8
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:
FishMeme

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-05-28
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.20;
pragma experimental ABIEncoderV2;

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

// pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    bool public tradingActive = false;
    bool public swapEnabled = false;

    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("FishMeme", "Fish") {
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );

        uint256 totalSupply = 1_000_000_000 ether;

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

        buyMarketingFee = 3;
        buyLiquidityFee = 0;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;

        sellMarketingFee = 3;
        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 enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

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

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

    function updateMarketingWallet(address _marketingWallet)
        external
        onlyOwner
    {
        require(_marketingWallet != address(0), "ERC20: Address 0");
        address oldWallet = marketingWallet;
        marketingWallet = _marketingWallet;
        emit marketingWalletUpdated(marketingWallet, oldWallet);
    }

    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
        ) {
            if (!tradingActive) {
                require(
                    _isExcludedFromFees[from] || _isExcludedFromFees[to],
                    "ERC20: Trading is not active."
                );
            }

            //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 &&
            swapEnabled &&
            !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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","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"}]

60c06040525f600a5f6101000a81548160ff0219169083151502179055505f600a60016101000a81548160ff02191690831515021790555034801562000043575f80fd5b506040518060400160405280600881526020017f466973684d656d650000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f46697368000000000000000000000000000000000000000000000000000000008152508160039081620000c1919062000bd7565b508060049081620000d3919062000bd7565b505050620000f6620000ea620004c360201b60201c565b620004ca60201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200018a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001b0919062000d20565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000218573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200023e919062000d20565b6040518363ffffffff1660e01b81526004016200025d92919062000d61565b6020604051808303815f875af11580156200027a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002a0919062000d20565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250505f6b033b2e3c9fd0803ce800000090506064600282620002f4919062000db9565b62000300919062000e30565b600781905550806009819055506103e86001826200031f919062000db9565b6200032b919062000e30565b6008819055506003600c819055505f600d81905550600d54600c5462000352919062000e67565b600b819055506003600f819055505f601081905550601054600f5462000379919062000e67565b600e81905550600e54601381905550620003986200058d60201b60201c565b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003f9620003eb6200058d60201b60201c565b6001620005b560201b60201c565b6200040c306001620005b560201b60201c565b6200042161dead6001620005b560201b60201c565b62000443620004356200058d60201b60201c565b60016200066d60201b60201c565b620004563060016200066d60201b60201c565b6200046b61dead60016200066d60201b60201c565b6200048060805160016200066d60201b60201c565b6200049560a05160016200066d60201b60201c565b620004aa60a0516001620006d560201b60201c565b620004bc33826200077360201b60201c565b5062000ff0565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620005c5620008d860201b60201c565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000661919062000ebd565b60405180910390a25050565b6200067d620008d860201b60201c565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007db9062000f36565b60405180910390fd5b620007f75f83836200096960201b60201c565b8060025f8282546200080a919062000e67565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008b9919062000f67565b60405180910390a3620008d45f83836200096e60201b60201c565b5050565b620008e8620004c360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200090e6200058d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000967576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200095e9062000fd0565b60405180910390fd5b565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620009ef57607f821691505b60208210810362000a055762000a04620009aa565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000a697fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a2c565b62000a75868362000a2c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000abf62000ab962000ab38462000a8d565b62000a96565b62000a8d565b9050919050565b5f819050919050565b62000ada8362000a9f565b62000af262000ae98262000ac6565b84845462000a38565b825550505050565b5f90565b62000b0862000afa565b62000b1581848462000acf565b505050565b5b8181101562000b3c5762000b305f8262000afe565b60018101905062000b1b565b5050565b601f82111562000b8b5762000b558162000a0b565b62000b608462000a1d565b8101602085101562000b70578190505b62000b8862000b7f8562000a1d565b83018262000b1a565b50505b505050565b5f82821c905092915050565b5f62000bad5f198460080262000b90565b1980831691505092915050565b5f62000bc7838362000b9c565b9150826002028217905092915050565b62000be28262000973565b67ffffffffffffffff81111562000bfe5762000bfd6200097d565b5b62000c0a8254620009d7565b62000c1782828562000b40565b5f60209050601f83116001811462000c4d575f841562000c38578287015190505b62000c44858262000bba565b86555062000cb3565b601f19841662000c5d8662000a0b565b5f5b8281101562000c865784890151825560018201915060208501945060208101905062000c5f565b8683101562000ca6578489015162000ca2601f89168262000b9c565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000cea8262000cbf565b9050919050565b62000cfc8162000cde565b811462000d07575f80fd5b50565b5f8151905062000d1a8162000cf1565b92915050565b5f6020828403121562000d385762000d3762000cbb565b5b5f62000d478482850162000d0a565b91505092915050565b62000d5b8162000cde565b82525050565b5f60408201905062000d765f83018562000d50565b62000d85602083018462000d50565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000dc58262000a8d565b915062000dd28362000a8d565b925082820262000de28162000a8d565b9150828204841483151762000dfc5762000dfb62000d8c565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000e3c8262000a8d565b915062000e498362000a8d565b92508262000e5c5762000e5b62000e03565b5b828204905092915050565b5f62000e738262000a8d565b915062000e808362000a8d565b925082820190508082111562000e9b5762000e9a62000d8c565b5b92915050565b5f8115159050919050565b62000eb78162000ea1565b82525050565b5f60208201905062000ed25f83018462000eac565b92915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000f1e601f8362000ed8565b915062000f2b8262000ee8565b602082019050919050565b5f6020820190508181035f83015262000f4f8162000f10565b9050919050565b62000f618162000a8d565b82525050565b5f60208201905062000f7c5f83018462000f56565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f62000fb860208362000ed8565b915062000fc58262000f82565b602082019050919050565b5f6020820190508181035f83015262000fe98162000faa565b9050919050565b60805160a051613b21620010355f395f6109fa01525f818161095b015281816125d5015281816126b4015281816126db0152818161277101526127980152613b215ff3fe608060405260043610610207575f3560e01c806375f0a87411610117578063c02466681161009f578063dd62ed3e1161006e578063dd62ed3e1461075a578063e2f4560514610796578063f2fde38b146107c0578063f5648a4f146107e8578063f8b45b05146107fe5761020e565b8063c0246668146106a2578063c8c8ebe4146106ca578063d257b34f146106f4578063d85ba063146107305761020e565b806396188399116100e657806396188399146105b0578063a457c2d7146105d8578063a9059cbb14610614578063aacebbe314610650578063bbc0c742146106785761020e565b806375f0a8741461051c5780638a8c523c146105465780638da5cb5b1461055c57806395d89b41146105865761020e565b8063395093511161019a5780636a486a8e116101695780636a486a8e1461044e5780636ddd17131461047857806370a08231146104a2578063715018a6146104de5780637571336a146104f45761020e565b8063395093511461038457806349bd5a5e146103c05780634fbee193146103ea57806366ca9b83146104265761020e565b806318160ddd116101d657806318160ddd146102ca57806323b872dd146102f457806327c8f83514610330578063313ce5671461035a5761020e565b806302dbd8f81461021257806306fdde031461023a578063095ea7b3146102645780631694505e146102a05761020e565b3661020e57005b5f80fd5b34801561021d575f80fd5b5061023860048036038101906102339190612880565b610828565b005b348015610245575f80fd5b5061024e6108a7565b60405161025b9190612948565b60405180910390f35b34801561026f575f80fd5b5061028a600480360381019061028591906129c2565b610937565b6040516102979190612a1a565b60405180910390f35b3480156102ab575f80fd5b506102b4610959565b6040516102c19190612a8e565b60405180910390f35b3480156102d5575f80fd5b506102de61097d565b6040516102eb9190612ab6565b60405180910390f35b3480156102ff575f80fd5b5061031a60048036038101906103159190612acf565b610986565b6040516103279190612a1a565b60405180910390f35b34801561033b575f80fd5b506103446109b4565b6040516103519190612b2e565b60405180910390f35b348015610365575f80fd5b5061036e6109ba565b60405161037b9190612b62565b60405180910390f35b34801561038f575f80fd5b506103aa60048036038101906103a591906129c2565b6109c2565b6040516103b79190612a1a565b60405180910390f35b3480156103cb575f80fd5b506103d46109f8565b6040516103e19190612b2e565b60405180910390f35b3480156103f5575f80fd5b50610410600480360381019061040b9190612b7b565b610a1c565b60405161041d9190612a1a565b60405180910390f35b348015610431575f80fd5b5061044c60048036038101906104479190612880565b610a6e565b005b348015610459575f80fd5b50610462610ae4565b60405161046f9190612ab6565b60405180910390f35b348015610483575f80fd5b5061048c610aea565b6040516104999190612a1a565b60405180910390f35b3480156104ad575f80fd5b506104c860048036038101906104c39190612b7b565b610afd565b6040516104d59190612ab6565b60405180910390f35b3480156104e9575f80fd5b506104f2610b42565b005b3480156104ff575f80fd5b5061051a60048036038101906105159190612bd0565b610b55565b005b348015610527575f80fd5b50610530610bb5565b60405161053d9190612b2e565b60405180910390f35b348015610551575f80fd5b5061055a610bda565b005b348015610567575f80fd5b50610570610c19565b60405161057d9190612b2e565b60405180910390f35b348015610591575f80fd5b5061059a610c41565b6040516105a79190612948565b60405180910390f35b3480156105bb575f80fd5b506105d660048036038101906105d19190612880565b610cd1565b005b3480156105e3575f80fd5b506105fe60048036038101906105f991906129c2565b610db1565b60405161060b9190612a1a565b60405180910390f35b34801561061f575f80fd5b5061063a600480360381019061063591906129c2565b610e26565b6040516106479190612a1a565b60405180910390f35b34801561065b575f80fd5b5061067660048036038101906106719190612b7b565b610e48565b005b348015610683575f80fd5b5061068c610fa2565b6040516106999190612a1a565b60405180910390f35b3480156106ad575f80fd5b506106c860048036038101906106c39190612bd0565b610fb4565b005b3480156106d5575f80fd5b506106de611062565b6040516106eb9190612ab6565b60405180910390f35b3480156106ff575f80fd5b5061071a60048036038101906107159190612c0e565b611068565b6040516107279190612a1a565b60405180910390f35b34801561073b575f80fd5b50610744611148565b6040516107519190612ab6565b60405180910390f35b348015610765575f80fd5b50610780600480360381019061077b9190612c39565b61114e565b60405161078d9190612ab6565b60405180910390f35b3480156107a1575f80fd5b506107aa6111d0565b6040516107b79190612ab6565b60405180910390f35b3480156107cb575f80fd5b506107e660048036038101906107e19190612b7b565b6111d6565b005b3480156107f3575f80fd5b506107fc611258565b005b348015610809575f80fd5b506108126112cd565b60405161081f9190612ab6565b60405180910390f35b6108306112d3565b81600f8190555080601081905550601054600f5461084e9190612ca4565b600e81905550600e54601381905550600a600e5411156108a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089a90612d47565b60405180910390fd5b5050565b6060600380546108b690612d92565b80601f01602080910402602001604051908101604052809291908181526020018280546108e290612d92565b801561092d5780601f106109045761010080835404028352916020019161092d565b820191905f5260205f20905b81548152906001019060200180831161091057829003601f168201915b5050505050905090565b5f80610941611351565b905061094e818585611358565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b5f80610990611351565b905061099d85828561151b565b6109a88585856115a6565b60019150509392505050565b61dead81565b5f6012905090565b5f806109cc611351565b90506109ed8185856109de858961114e565b6109e89190612ca4565b611358565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f60145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610a766112d3565b81600c8190555080600d81905550600d54600c54610a949190612ca4565b600b81905550600a600b541115610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad790612d47565b60405180910390fd5b5050565b600e5481565b600a60019054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610b4a6112d3565b610b535f611fc5565b565b610b5d6112d3565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610be26112d3565b6001600a5f6101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c5090612d92565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7c90612d92565b8015610cc75780601f10610c9e57610100808354040283529160200191610cc7565b820191905f5260205f20905b815481529060010190602001808311610caa57829003601f168201915b5050505050905090565b610cd96112d3565b6103e86005610ce661097d565b610cf09190612dc2565b610cfa9190612e30565b821015610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390612ed0565b60405180910390fd5b6103e86005610d4961097d565b610d539190612dc2565b610d5d9190612e30565b811015610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690612f5e565b60405180910390fd5b80600981905550816007819055505050565b5f80610dbb611351565b90505f610dc8828661114e565b905083811015610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0490612fec565b60405180910390fd5b610e1a8286868403611358565b60019250505092915050565b5f80610e30611351565b9050610e3d8185856115a6565b600191505092915050565b610e506112d3565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590613054565b60405180910390fd5b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a35050565b600a5f9054906101000a900460ff1681565b610fbc6112d3565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516110569190612a1a565b60405180910390a25050565b60075481565b5f6110716112d3565b620186a0600161107f61097d565b6110899190612dc2565b6110939190612e30565b8210156110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc906130e2565b60405180910390fd5b6103e860056110e261097d565b6110ec9190612dc2565b6110f69190612e30565b821115611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f90613170565b60405180910390fd5b8160088190555060019050919050565b600b5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b6111de6112d3565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361124c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611243906131fe565b60405180910390fd5b61125581611fc5565b50565b6112606112d3565b5f3373ffffffffffffffffffffffffffffffffffffffff164760405161128590613249565b5f6040518083038185875af1925050503d805f81146112bf576040519150601f19603f3d011682016040523d82523d5f602084013e6112c4565b606091505b50508091505050565b60095481565b6112db611351565b73ffffffffffffffffffffffffffffffffffffffff166112f9610c19565b73ffffffffffffffffffffffffffffffffffffffff161461134f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611346906132a7565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bd90613335565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b906133c3565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161150e9190612ab6565b60405180910390a3505050565b5f611526848461114e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115a05781811015611592576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115899061342b565b60405180910390fd5b61159f8484848403611358565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b906134b9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990613547565b60405180910390fd5b5f81036116995761169483835f612088565b611fc0565b6116a1610c19565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561170f57506116df610c19565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561174757505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611781575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561179a5750600560149054906101000a900460ff16155b15611b6757600a5f9054906101000a900460ff1661188d5760145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061184d575060145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b61188c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611883906135af565b60405180910390fd5b5b60165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561192a575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156119d157600754811115611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b9061363d565b60405180910390fd5b60095461198083610afd565b8261198b9190612ca4565b11156119cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c3906136a5565b60405180910390fd5b611b66565b60165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611a6e575060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611abd57600754811115611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90613733565b60405180910390fd5b611b65565b60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611b6457600954611b1783610afd565b82611b229190612ca4565b1115611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a906136a5565b60405180910390fd5b5b5b5b5b5f611b7130610afd565b90505f6008548210159050808015611b955750600a60019054906101000a900460ff165b8015611bae5750600560149054906101000a900460ff16155b8015611c01575060165f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611c54575060145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611ca7575060145f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611cea576001600560146101000a81548160ff021916908315150217905550611ccf6122f4565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060145f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611d99575060145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611da2575f90505b5f8115611fa75760165f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611e0057505f600e54115b15611e9857611e2d6064611e1f600e54886124ef90919063ffffffff16565b61250490919063ffffffff16565b9050600e5460105482611e409190612dc2565b611e4a9190612e30565b60125f828254611e5a9190612ca4565b92505081905550600e54600f5482611e729190612dc2565b611e7c9190612e30565b60115f828254611e8c9190612ca4565b92505081905550611f84565b60165f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611eef57505f600b54115b15611f8357611f1c6064611f0e600b54886124ef90919063ffffffff16565b61250490919063ffffffff16565b9050600b54600d5482611f2f9190612dc2565b611f399190612e30565b60125f828254611f499190612ca4565b92505081905550600b54600c5482611f619190612dc2565b611f6b9190612e30565b60115f828254611f7b9190612ca4565b925050819055505b5b5f811115611f9857611f97873083612088565b5b8085611fa49190613751565b94505b611fb2878787612088565b601354600e81905550505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ed906134b9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b90613547565b60405180910390fd5b61216f838383612519565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156121f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e9906137f4565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122db9190612ab6565b60405180910390a36122ee84848461251e565b50505050565b5f6122fe30610afd565b90505f6011546012546123119190612ca4565b90505f8083148061232157505f82145b1561232e575050506124ed565b601460085461233d9190612dc2565b8311156123565760146008546123539190612dc2565b92505b5f600283601254866123689190612dc2565b6123729190612e30565b61237c9190612e30565b90505f612392828661252390919063ffffffff16565b90505f4790506123a182612538565b5f6123b5824761252390919063ffffffff16565b90505f6123df876123d1601154856124ef90919063ffffffff16565b61250490919063ffffffff16565b90505f81836123ee9190613751565b90505f6012819055505f6011819055505f8611801561240c57505f81115b156124595761241b868261276b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260125460405161245093929190613812565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161249e90613249565b5f6040518083038185875af1925050503d805f81146124d8576040519150601f19603f3d011682016040523d82523d5f602084013e6124dd565b606091505b5050809750505050505050505050505b565b5f81836124fc9190612dc2565b905092915050565b5f81836125119190612e30565b905092915050565b505050565b505050565b5f81836125309190613751565b905092915050565b5f600267ffffffffffffffff81111561255457612553613847565b5b6040519080825280602002602001820160405280156125825781602001602082028036833780820191505090505b50905030815f8151811061259957612598613874565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561263c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061266091906138b5565b8160018151811061267457612673613874565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506126d9307f000000000000000000000000000000000000000000000000000000000000000084611358565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161273a9594939291906139d0565b5f604051808303815f87803b158015612751575f80fd5b505af1158015612763573d5f803e3d5ffd5b505050505050565b612796307f000000000000000000000000000000000000000000000000000000000000000084611358565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f806127df610c19565b426040518863ffffffff1660e01b815260040161280196959493929190613a28565b60606040518083038185885af115801561281d573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906128429190613a9b565b5050505050565b5f80fd5b5f819050919050565b61285f8161284d565b8114612869575f80fd5b50565b5f8135905061287a81612856565b92915050565b5f806040838503121561289657612895612849565b5b5f6128a38582860161286c565b92505060206128b48582860161286c565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156128f55780820151818401526020810190506128da565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61291a826128be565b61292481856128c8565b93506129348185602086016128d8565b61293d81612900565b840191505092915050565b5f6020820190508181035f8301526129608184612910565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61299182612968565b9050919050565b6129a181612987565b81146129ab575f80fd5b50565b5f813590506129bc81612998565b92915050565b5f80604083850312156129d8576129d7612849565b5b5f6129e5858286016129ae565b92505060206129f68582860161286c565b9150509250929050565b5f8115159050919050565b612a1481612a00565b82525050565b5f602082019050612a2d5f830184612a0b565b92915050565b5f819050919050565b5f612a56612a51612a4c84612968565b612a33565b612968565b9050919050565b5f612a6782612a3c565b9050919050565b5f612a7882612a5d565b9050919050565b612a8881612a6e565b82525050565b5f602082019050612aa15f830184612a7f565b92915050565b612ab08161284d565b82525050565b5f602082019050612ac95f830184612aa7565b92915050565b5f805f60608486031215612ae657612ae5612849565b5b5f612af3868287016129ae565b9350506020612b04868287016129ae565b9250506040612b158682870161286c565b9150509250925092565b612b2881612987565b82525050565b5f602082019050612b415f830184612b1f565b92915050565b5f60ff82169050919050565b612b5c81612b47565b82525050565b5f602082019050612b755f830184612b53565b92915050565b5f60208284031215612b9057612b8f612849565b5b5f612b9d848285016129ae565b91505092915050565b612baf81612a00565b8114612bb9575f80fd5b50565b5f81359050612bca81612ba6565b92915050565b5f8060408385031215612be657612be5612849565b5b5f612bf3858286016129ae565b9250506020612c0485828601612bbc565b9150509250929050565b5f60208284031215612c2357612c22612849565b5b5f612c308482850161286c565b91505092915050565b5f8060408385031215612c4f57612c4e612849565b5b5f612c5c858286016129ae565b9250506020612c6d858286016129ae565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612cae8261284d565b9150612cb98361284d565b9250828201905080821115612cd157612cd0612c77565b5b92915050565b7f45524332303a204d757374206b656570206665657320617420313025206f72205f8201527f6c65737300000000000000000000000000000000000000000000000000000000602082015250565b5f612d316024836128c8565b9150612d3c82612cd7565b604082019050919050565b5f6020820190508181035f830152612d5e81612d25565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612da957607f821691505b602082108103612dbc57612dbb612d65565b5b50919050565b5f612dcc8261284d565b9150612dd78361284d565b9250828202612de58161284d565b91508282048414831517612dfc57612dfb612c77565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612e3a8261284d565b9150612e458361284d565b925082612e5557612e54612e03565b5b828204905092915050565b7f45524332303a2043616e6e6f7420736574206d617854786e206c6f77657220745f8201527f68616e20302e3525000000000000000000000000000000000000000000000000602082015250565b5f612eba6028836128c8565b9150612ec582612e60565b604082019050919050565b5f6020820190508181035f830152612ee781612eae565b9050919050565b7f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f77655f8201527f72207468616e20302e3525000000000000000000000000000000000000000000602082015250565b5f612f48602b836128c8565b9150612f5382612eee565b604082019050919050565b5f6020820190508181035f830152612f7581612f3c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612fd66025836128c8565b9150612fe182612f7c565b604082019050919050565b5f6020820190508181035f83015261300381612fca565b9050919050565b7f45524332303a20416464726573732030000000000000000000000000000000005f82015250565b5f61303e6010836128c8565b91506130498261300a565b602082019050919050565b5f6020820190508181035f83015261306b81613032565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f775f8201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000602082015250565b5f6130cc603c836128c8565b91506130d782613072565b604082019050919050565b5f6020820190508181035f8301526130f9816130c0565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206869675f8201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000602082015250565b5f61315a603b836128c8565b915061316582613100565b604082019050919050565b5f6020820190508181035f8301526131878161314e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6131e86026836128c8565b91506131f38261318e565b604082019050919050565b5f6020820190508181035f830152613215816131dc565b9050919050565b5f81905092915050565b50565b5f6132345f8361321c565b915061323f82613226565b5f82019050919050565b5f61325382613229565b9150819050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6132916020836128c8565b915061329c8261325d565b602082019050919050565b5f6020820190508181035f8301526132be81613285565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61331f6024836128c8565b915061332a826132c5565b604082019050919050565b5f6020820190508181035f83015261334c81613313565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6133ad6022836128c8565b91506133b882613353565b604082019050919050565b5f6020820190508181035f8301526133da816133a1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613415601d836128c8565b9150613420826133e1565b602082019050919050565b5f6020820190508181035f83015261344281613409565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6134a36025836128c8565b91506134ae82613449565b604082019050919050565b5f6020820190508181035f8301526134d081613497565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6135316023836128c8565b915061353c826134d7565b604082019050919050565b5f6020820190508181035f83015261355e81613525565b9050919050565b7f45524332303a2054726164696e67206973206e6f74206163746976652e0000005f82015250565b5f613599601d836128c8565b91506135a482613565565b602082019050919050565b5f6020820190508181035f8301526135c68161358d565b9050919050565b7f45524332303a20427579207472616e7366657220616d6f756e742065786365655f8201527f647320746865206d61785472616e73616374696f6e416d6f756e742e00000000602082015250565b5f613627603c836128c8565b9150613632826135cd565b604082019050919050565b5f6020820190508181035f8301526136548161361b565b9050919050565b7f45524332303a204d61782077616c6c65742065786365656465640000000000005f82015250565b5f61368f601a836128c8565b915061369a8261365b565b602082019050919050565b5f6020820190508181035f8301526136bc81613683565b9050919050565b7f45524332303a2053656c6c207472616e7366657220616d6f756e7420657863655f8201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e000000602082015250565b5f61371d603d836128c8565b9150613728826136c3565b604082019050919050565b5f6020820190508181035f83015261374a81613711565b9050919050565b5f61375b8261284d565b91506137668361284d565b925082820390508181111561377e5761377d612c77565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6137de6026836128c8565b91506137e982613784565b604082019050919050565b5f6020820190508181035f83015261380b816137d2565b9050919050565b5f6060820190506138255f830186612aa7565b6138326020830185612aa7565b61383f6040830184612aa7565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506138af81612998565b92915050565b5f602082840312156138ca576138c9612849565b5b5f6138d7848285016138a1565b91505092915050565b5f819050919050565b5f6139036138fe6138f9846138e0565b612a33565b61284d565b9050919050565b613913816138e9565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61394b81612987565b82525050565b5f61395c8383613942565b60208301905092915050565b5f602082019050919050565b5f61397e82613919565b6139888185613923565b935061399383613933565b805f5b838110156139c35781516139aa8882613951565b97506139b583613968565b925050600181019050613996565b5085935050505092915050565b5f60a0820190506139e35f830188612aa7565b6139f0602083018761390a565b8181036040830152613a028186613974565b9050613a116060830185612b1f565b613a1e6080830184612aa7565b9695505050505050565b5f60c082019050613a3b5f830189612b1f565b613a486020830188612aa7565b613a55604083018761390a565b613a62606083018661390a565b613a6f6080830185612b1f565b613a7c60a0830184612aa7565b979650505050505050565b5f81519050613a9581612856565b92915050565b5f805f60608486031215613ab257613ab1612849565b5b5f613abf86828701613a87565b9350506020613ad086828701613a87565b9250506040613ae186828701613a87565b915050925092509256fea264697066735822122049251383ab0643f91d1b7bb3919db4f012c95aa090c6ab8fe9abc7f6b211a83f64736f6c63430008140033

Deployed Bytecode

0x608060405260043610610207575f3560e01c806375f0a87411610117578063c02466681161009f578063dd62ed3e1161006e578063dd62ed3e1461075a578063e2f4560514610796578063f2fde38b146107c0578063f5648a4f146107e8578063f8b45b05146107fe5761020e565b8063c0246668146106a2578063c8c8ebe4146106ca578063d257b34f146106f4578063d85ba063146107305761020e565b806396188399116100e657806396188399146105b0578063a457c2d7146105d8578063a9059cbb14610614578063aacebbe314610650578063bbc0c742146106785761020e565b806375f0a8741461051c5780638a8c523c146105465780638da5cb5b1461055c57806395d89b41146105865761020e565b8063395093511161019a5780636a486a8e116101695780636a486a8e1461044e5780636ddd17131461047857806370a08231146104a2578063715018a6146104de5780637571336a146104f45761020e565b8063395093511461038457806349bd5a5e146103c05780634fbee193146103ea57806366ca9b83146104265761020e565b806318160ddd116101d657806318160ddd146102ca57806323b872dd146102f457806327c8f83514610330578063313ce5671461035a5761020e565b806302dbd8f81461021257806306fdde031461023a578063095ea7b3146102645780631694505e146102a05761020e565b3661020e57005b5f80fd5b34801561021d575f80fd5b5061023860048036038101906102339190612880565b610828565b005b348015610245575f80fd5b5061024e6108a7565b60405161025b9190612948565b60405180910390f35b34801561026f575f80fd5b5061028a600480360381019061028591906129c2565b610937565b6040516102979190612a1a565b60405180910390f35b3480156102ab575f80fd5b506102b4610959565b6040516102c19190612a8e565b60405180910390f35b3480156102d5575f80fd5b506102de61097d565b6040516102eb9190612ab6565b60405180910390f35b3480156102ff575f80fd5b5061031a60048036038101906103159190612acf565b610986565b6040516103279190612a1a565b60405180910390f35b34801561033b575f80fd5b506103446109b4565b6040516103519190612b2e565b60405180910390f35b348015610365575f80fd5b5061036e6109ba565b60405161037b9190612b62565b60405180910390f35b34801561038f575f80fd5b506103aa60048036038101906103a591906129c2565b6109c2565b6040516103b79190612a1a565b60405180910390f35b3480156103cb575f80fd5b506103d46109f8565b6040516103e19190612b2e565b60405180910390f35b3480156103f5575f80fd5b50610410600480360381019061040b9190612b7b565b610a1c565b60405161041d9190612a1a565b60405180910390f35b348015610431575f80fd5b5061044c60048036038101906104479190612880565b610a6e565b005b348015610459575f80fd5b50610462610ae4565b60405161046f9190612ab6565b60405180910390f35b348015610483575f80fd5b5061048c610aea565b6040516104999190612a1a565b60405180910390f35b3480156104ad575f80fd5b506104c860048036038101906104c39190612b7b565b610afd565b6040516104d59190612ab6565b60405180910390f35b3480156104e9575f80fd5b506104f2610b42565b005b3480156104ff575f80fd5b5061051a60048036038101906105159190612bd0565b610b55565b005b348015610527575f80fd5b50610530610bb5565b60405161053d9190612b2e565b60405180910390f35b348015610551575f80fd5b5061055a610bda565b005b348015610567575f80fd5b50610570610c19565b60405161057d9190612b2e565b60405180910390f35b348015610591575f80fd5b5061059a610c41565b6040516105a79190612948565b60405180910390f35b3480156105bb575f80fd5b506105d660048036038101906105d19190612880565b610cd1565b005b3480156105e3575f80fd5b506105fe60048036038101906105f991906129c2565b610db1565b60405161060b9190612a1a565b60405180910390f35b34801561061f575f80fd5b5061063a600480360381019061063591906129c2565b610e26565b6040516106479190612a1a565b60405180910390f35b34801561065b575f80fd5b5061067660048036038101906106719190612b7b565b610e48565b005b348015610683575f80fd5b5061068c610fa2565b6040516106999190612a1a565b60405180910390f35b3480156106ad575f80fd5b506106c860048036038101906106c39190612bd0565b610fb4565b005b3480156106d5575f80fd5b506106de611062565b6040516106eb9190612ab6565b60405180910390f35b3480156106ff575f80fd5b5061071a60048036038101906107159190612c0e565b611068565b6040516107279190612a1a565b60405180910390f35b34801561073b575f80fd5b50610744611148565b6040516107519190612ab6565b60405180910390f35b348015610765575f80fd5b50610780600480360381019061077b9190612c39565b61114e565b60405161078d9190612ab6565b60405180910390f35b3480156107a1575f80fd5b506107aa6111d0565b6040516107b79190612ab6565b60405180910390f35b3480156107cb575f80fd5b506107e660048036038101906107e19190612b7b565b6111d6565b005b3480156107f3575f80fd5b506107fc611258565b005b348015610809575f80fd5b506108126112cd565b60405161081f9190612ab6565b60405180910390f35b6108306112d3565b81600f8190555080601081905550601054600f5461084e9190612ca4565b600e81905550600e54601381905550600a600e5411156108a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089a90612d47565b60405180910390fd5b5050565b6060600380546108b690612d92565b80601f01602080910402602001604051908101604052809291908181526020018280546108e290612d92565b801561092d5780601f106109045761010080835404028352916020019161092d565b820191905f5260205f20905b81548152906001019060200180831161091057829003601f168201915b5050505050905090565b5f80610941611351565b905061094e818585611358565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b5f80610990611351565b905061099d85828561151b565b6109a88585856115a6565b60019150509392505050565b61dead81565b5f6012905090565b5f806109cc611351565b90506109ed8185856109de858961114e565b6109e89190612ca4565b611358565b600191505092915050565b7f0000000000000000000000005fe92321ce1fff89ff56e4ce34db09ae01676df781565b5f60145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610a766112d3565b81600c8190555080600d81905550600d54600c54610a949190612ca4565b600b81905550600a600b541115610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad790612d47565b60405180910390fd5b5050565b600e5481565b600a60019054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610b4a6112d3565b610b535f611fc5565b565b610b5d6112d3565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610be26112d3565b6001600a5f6101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c5090612d92565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7c90612d92565b8015610cc75780601f10610c9e57610100808354040283529160200191610cc7565b820191905f5260205f20905b815481529060010190602001808311610caa57829003601f168201915b5050505050905090565b610cd96112d3565b6103e86005610ce661097d565b610cf09190612dc2565b610cfa9190612e30565b821015610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390612ed0565b60405180910390fd5b6103e86005610d4961097d565b610d539190612dc2565b610d5d9190612e30565b811015610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690612f5e565b60405180910390fd5b80600981905550816007819055505050565b5f80610dbb611351565b90505f610dc8828661114e565b905083811015610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0490612fec565b60405180910390fd5b610e1a8286868403611358565b60019250505092915050565b5f80610e30611351565b9050610e3d8185856115a6565b600191505092915050565b610e506112d3565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590613054565b60405180910390fd5b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a35050565b600a5f9054906101000a900460ff1681565b610fbc6112d3565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516110569190612a1a565b60405180910390a25050565b60075481565b5f6110716112d3565b620186a0600161107f61097d565b6110899190612dc2565b6110939190612e30565b8210156110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc906130e2565b60405180910390fd5b6103e860056110e261097d565b6110ec9190612dc2565b6110f69190612e30565b821115611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f90613170565b60405180910390fd5b8160088190555060019050919050565b600b5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b6111de6112d3565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361124c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611243906131fe565b60405180910390fd5b61125581611fc5565b50565b6112606112d3565b5f3373ffffffffffffffffffffffffffffffffffffffff164760405161128590613249565b5f6040518083038185875af1925050503d805f81146112bf576040519150601f19603f3d011682016040523d82523d5f602084013e6112c4565b606091505b50508091505050565b60095481565b6112db611351565b73ffffffffffffffffffffffffffffffffffffffff166112f9610c19565b73ffffffffffffffffffffffffffffffffffffffff161461134f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611346906132a7565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bd90613335565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b906133c3565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161150e9190612ab6565b60405180910390a3505050565b5f611526848461114e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115a05781811015611592576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115899061342b565b60405180910390fd5b61159f8484848403611358565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b906134b9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990613547565b60405180910390fd5b5f81036116995761169483835f612088565b611fc0565b6116a1610c19565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561170f57506116df610c19565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561174757505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611781575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561179a5750600560149054906101000a900460ff16155b15611b6757600a5f9054906101000a900460ff1661188d5760145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061184d575060145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b61188c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611883906135af565b60405180910390fd5b5b60165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561192a575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156119d157600754811115611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b9061363d565b60405180910390fd5b60095461198083610afd565b8261198b9190612ca4565b11156119cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c3906136a5565b60405180910390fd5b611b66565b60165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611a6e575060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611abd57600754811115611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90613733565b60405180910390fd5b611b65565b60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611b6457600954611b1783610afd565b82611b229190612ca4565b1115611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a906136a5565b60405180910390fd5b5b5b5b5b5f611b7130610afd565b90505f6008548210159050808015611b955750600a60019054906101000a900460ff165b8015611bae5750600560149054906101000a900460ff16155b8015611c01575060165f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611c54575060145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611ca7575060145f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611cea576001600560146101000a81548160ff021916908315150217905550611ccf6122f4565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060145f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611d99575060145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611da2575f90505b5f8115611fa75760165f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611e0057505f600e54115b15611e9857611e2d6064611e1f600e54886124ef90919063ffffffff16565b61250490919063ffffffff16565b9050600e5460105482611e409190612dc2565b611e4a9190612e30565b60125f828254611e5a9190612ca4565b92505081905550600e54600f5482611e729190612dc2565b611e7c9190612e30565b60115f828254611e8c9190612ca4565b92505081905550611f84565b60165f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611eef57505f600b54115b15611f8357611f1c6064611f0e600b54886124ef90919063ffffffff16565b61250490919063ffffffff16565b9050600b54600d5482611f2f9190612dc2565b611f399190612e30565b60125f828254611f499190612ca4565b92505081905550600b54600c5482611f619190612dc2565b611f6b9190612e30565b60115f828254611f7b9190612ca4565b925050819055505b5b5f811115611f9857611f97873083612088565b5b8085611fa49190613751565b94505b611fb2878787612088565b601354600e81905550505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ed906134b9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b90613547565b60405180910390fd5b61216f838383612519565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156121f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e9906137f4565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122db9190612ab6565b60405180910390a36122ee84848461251e565b50505050565b5f6122fe30610afd565b90505f6011546012546123119190612ca4565b90505f8083148061232157505f82145b1561232e575050506124ed565b601460085461233d9190612dc2565b8311156123565760146008546123539190612dc2565b92505b5f600283601254866123689190612dc2565b6123729190612e30565b61237c9190612e30565b90505f612392828661252390919063ffffffff16565b90505f4790506123a182612538565b5f6123b5824761252390919063ffffffff16565b90505f6123df876123d1601154856124ef90919063ffffffff16565b61250490919063ffffffff16565b90505f81836123ee9190613751565b90505f6012819055505f6011819055505f8611801561240c57505f81115b156124595761241b868261276b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260125460405161245093929190613812565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161249e90613249565b5f6040518083038185875af1925050503d805f81146124d8576040519150601f19603f3d011682016040523d82523d5f602084013e6124dd565b606091505b5050809750505050505050505050505b565b5f81836124fc9190612dc2565b905092915050565b5f81836125119190612e30565b905092915050565b505050565b505050565b5f81836125309190613751565b905092915050565b5f600267ffffffffffffffff81111561255457612553613847565b5b6040519080825280602002602001820160405280156125825781602001602082028036833780820191505090505b50905030815f8151811061259957612598613874565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561263c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061266091906138b5565b8160018151811061267457612673613874565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506126d9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611358565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161273a9594939291906139d0565b5f604051808303815f87803b158015612751575f80fd5b505af1158015612763573d5f803e3d5ffd5b505050505050565b612796307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611358565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f806127df610c19565b426040518863ffffffff1660e01b815260040161280196959493929190613a28565b60606040518083038185885af115801561281d573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906128429190613a9b565b5050505050565b5f80fd5b5f819050919050565b61285f8161284d565b8114612869575f80fd5b50565b5f8135905061287a81612856565b92915050565b5f806040838503121561289657612895612849565b5b5f6128a38582860161286c565b92505060206128b48582860161286c565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156128f55780820151818401526020810190506128da565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61291a826128be565b61292481856128c8565b93506129348185602086016128d8565b61293d81612900565b840191505092915050565b5f6020820190508181035f8301526129608184612910565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61299182612968565b9050919050565b6129a181612987565b81146129ab575f80fd5b50565b5f813590506129bc81612998565b92915050565b5f80604083850312156129d8576129d7612849565b5b5f6129e5858286016129ae565b92505060206129f68582860161286c565b9150509250929050565b5f8115159050919050565b612a1481612a00565b82525050565b5f602082019050612a2d5f830184612a0b565b92915050565b5f819050919050565b5f612a56612a51612a4c84612968565b612a33565b612968565b9050919050565b5f612a6782612a3c565b9050919050565b5f612a7882612a5d565b9050919050565b612a8881612a6e565b82525050565b5f602082019050612aa15f830184612a7f565b92915050565b612ab08161284d565b82525050565b5f602082019050612ac95f830184612aa7565b92915050565b5f805f60608486031215612ae657612ae5612849565b5b5f612af3868287016129ae565b9350506020612b04868287016129ae565b9250506040612b158682870161286c565b9150509250925092565b612b2881612987565b82525050565b5f602082019050612b415f830184612b1f565b92915050565b5f60ff82169050919050565b612b5c81612b47565b82525050565b5f602082019050612b755f830184612b53565b92915050565b5f60208284031215612b9057612b8f612849565b5b5f612b9d848285016129ae565b91505092915050565b612baf81612a00565b8114612bb9575f80fd5b50565b5f81359050612bca81612ba6565b92915050565b5f8060408385031215612be657612be5612849565b5b5f612bf3858286016129ae565b9250506020612c0485828601612bbc565b9150509250929050565b5f60208284031215612c2357612c22612849565b5b5f612c308482850161286c565b91505092915050565b5f8060408385031215612c4f57612c4e612849565b5b5f612c5c858286016129ae565b9250506020612c6d858286016129ae565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612cae8261284d565b9150612cb98361284d565b9250828201905080821115612cd157612cd0612c77565b5b92915050565b7f45524332303a204d757374206b656570206665657320617420313025206f72205f8201527f6c65737300000000000000000000000000000000000000000000000000000000602082015250565b5f612d316024836128c8565b9150612d3c82612cd7565b604082019050919050565b5f6020820190508181035f830152612d5e81612d25565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612da957607f821691505b602082108103612dbc57612dbb612d65565b5b50919050565b5f612dcc8261284d565b9150612dd78361284d565b9250828202612de58161284d565b91508282048414831517612dfc57612dfb612c77565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612e3a8261284d565b9150612e458361284d565b925082612e5557612e54612e03565b5b828204905092915050565b7f45524332303a2043616e6e6f7420736574206d617854786e206c6f77657220745f8201527f68616e20302e3525000000000000000000000000000000000000000000000000602082015250565b5f612eba6028836128c8565b9150612ec582612e60565b604082019050919050565b5f6020820190508181035f830152612ee781612eae565b9050919050565b7f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f77655f8201527f72207468616e20302e3525000000000000000000000000000000000000000000602082015250565b5f612f48602b836128c8565b9150612f5382612eee565b604082019050919050565b5f6020820190508181035f830152612f7581612f3c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612fd66025836128c8565b9150612fe182612f7c565b604082019050919050565b5f6020820190508181035f83015261300381612fca565b9050919050565b7f45524332303a20416464726573732030000000000000000000000000000000005f82015250565b5f61303e6010836128c8565b91506130498261300a565b602082019050919050565b5f6020820190508181035f83015261306b81613032565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f775f8201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000602082015250565b5f6130cc603c836128c8565b91506130d782613072565b604082019050919050565b5f6020820190508181035f8301526130f9816130c0565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206869675f8201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000602082015250565b5f61315a603b836128c8565b915061316582613100565b604082019050919050565b5f6020820190508181035f8301526131878161314e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6131e86026836128c8565b91506131f38261318e565b604082019050919050565b5f6020820190508181035f830152613215816131dc565b9050919050565b5f81905092915050565b50565b5f6132345f8361321c565b915061323f82613226565b5f82019050919050565b5f61325382613229565b9150819050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6132916020836128c8565b915061329c8261325d565b602082019050919050565b5f6020820190508181035f8301526132be81613285565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61331f6024836128c8565b915061332a826132c5565b604082019050919050565b5f6020820190508181035f83015261334c81613313565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6133ad6022836128c8565b91506133b882613353565b604082019050919050565b5f6020820190508181035f8301526133da816133a1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613415601d836128c8565b9150613420826133e1565b602082019050919050565b5f6020820190508181035f83015261344281613409565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6134a36025836128c8565b91506134ae82613449565b604082019050919050565b5f6020820190508181035f8301526134d081613497565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6135316023836128c8565b915061353c826134d7565b604082019050919050565b5f6020820190508181035f83015261355e81613525565b9050919050565b7f45524332303a2054726164696e67206973206e6f74206163746976652e0000005f82015250565b5f613599601d836128c8565b91506135a482613565565b602082019050919050565b5f6020820190508181035f8301526135c68161358d565b9050919050565b7f45524332303a20427579207472616e7366657220616d6f756e742065786365655f8201527f647320746865206d61785472616e73616374696f6e416d6f756e742e00000000602082015250565b5f613627603c836128c8565b9150613632826135cd565b604082019050919050565b5f6020820190508181035f8301526136548161361b565b9050919050565b7f45524332303a204d61782077616c6c65742065786365656465640000000000005f82015250565b5f61368f601a836128c8565b915061369a8261365b565b602082019050919050565b5f6020820190508181035f8301526136bc81613683565b9050919050565b7f45524332303a2053656c6c207472616e7366657220616d6f756e7420657863655f8201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e000000602082015250565b5f61371d603d836128c8565b9150613728826136c3565b604082019050919050565b5f6020820190508181035f83015261374a81613711565b9050919050565b5f61375b8261284d565b91506137668361284d565b925082820390508181111561377e5761377d612c77565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6137de6026836128c8565b91506137e982613784565b604082019050919050565b5f6020820190508181035f83015261380b816137d2565b9050919050565b5f6060820190506138255f830186612aa7565b6138326020830185612aa7565b61383f6040830184612aa7565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506138af81612998565b92915050565b5f602082840312156138ca576138c9612849565b5b5f6138d7848285016138a1565b91505092915050565b5f819050919050565b5f6139036138fe6138f9846138e0565b612a33565b61284d565b9050919050565b613913816138e9565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61394b81612987565b82525050565b5f61395c8383613942565b60208301905092915050565b5f602082019050919050565b5f61397e82613919565b6139888185613923565b935061399383613933565b805f5b838110156139c35781516139aa8882613951565b97506139b583613968565b925050600181019050613996565b5085935050505092915050565b5f60a0820190506139e35f830188612aa7565b6139f0602083018761390a565b8181036040830152613a028186613974565b9050613a116060830185612b1f565b613a1e6080830184612aa7565b9695505050505050565b5f60c082019050613a3b5f830189612b1f565b613a486020830188612aa7565b613a55604083018761390a565b613a62606083018661390a565b613a6f6080830185612b1f565b613a7c60a0830184612aa7565b979650505050505050565b5f81519050613a9581612856565b92915050565b5f805f60608486031215613ab257613ab1612849565b5b5f613abf86828701613a87565b9350506020613ad086828701613a87565b9250506040613ae186828701613a87565b915050925092509256fea264697066735822122049251383ab0643f91d1b7bb3919db4f012c95aa090c6ab8fe9abc7f6b211a83f64736f6c63430008140033

Deployed Bytecode Sourcemap

37655:11867:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42229:385;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9439:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11940:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37733:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10568:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12762:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37836:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10410:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13466:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37791:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43541:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41881:340;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38274:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38122:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10739:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2819:103;;;;;;;;;;;;;:::i;:::-;;41706:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37928:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40552:112;;;;;;;;;;;;;:::i;:::-;;2178:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9658:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41191:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14239:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11122:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42622:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38082:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42964:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37967:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40672:511;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38162:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11419:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38009:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3077:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43154:183;;;;;;;;;;;;;:::i;:::-;;38049:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42229:385;2064:13;:11;:13::i;:::-;42371::::1;42352:16;:32;;;;42414:13;42395:16;:32;;;;42473:16;;42454;;:35;;;;:::i;:::-;42438:13;:51;;;;42514:13;;42500:11;:27;;;;42563:2;42546:13;;:19;;42538:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42229:385:::0;;:::o;9439:100::-;9493:13;9526:5;9519:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9439:100;:::o;11940:242::-;12059:4;12081:13;12097:12;:10;:12::i;:::-;12081:28;;12120:32;12129:5;12136:7;12145:6;12120:8;:32::i;:::-;12170:4;12163:11;;;11940:242;;;;:::o;37733:51::-;;;:::o;10568:108::-;10629:7;10656:12;;10649:19;;10568:108;:::o;12762:295::-;12893:4;12910:15;12928:12;:10;:12::i;:::-;12910:30;;12951:38;12967:4;12973:7;12982:6;12951:15;:38::i;:::-;13000:27;13010:4;13016:2;13020:6;13000:9;:27::i;:::-;13045:4;13038:11;;;12762:295;;;;;:::o;37836:53::-;37882:6;37836:53;:::o;10410:93::-;10468:5;10493:2;10486:9;;10410:93;:::o;13466:270::-;13581:4;13603:13;13619:12;:10;:12::i;:::-;13603:28;;13642:64;13651:5;13658:7;13695:10;13667:25;13677:5;13684:7;13667:9;:25::i;:::-;:38;;;;:::i;:::-;13642:8;:64::i;:::-;13724:4;13717:11;;;13466:270;;;;:::o;37791:38::-;;;:::o;43541:126::-;43607:4;43631:19;:28;43651:7;43631:28;;;;;;;;;;;;;;;;;;;;;;;;;43624:35;;43541:126;;;:::o;41881:340::-;2064:13;:11;:13::i;:::-;42021::::1;42003:15;:31;;;;42063:13;42045:15;:31;;;;42120:15;;42102;;:33;;;;:::i;:::-;42087:12;:48;;;;42170:2;42154:12;;:18;;42146:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;41881:340:::0;;:::o;38274:28::-;;;;:::o;38122:31::-;;;;;;;;;;;;;:::o;10739:177::-;10858:7;10890:9;:18;10900:7;10890:18;;;;;;;;;;;;;;;;10883:25;;10739:177;;;:::o;2819:103::-;2064:13;:11;:13::i;:::-;2884:30:::1;2911:1;2884:18;:30::i;:::-;2819:103::o:0;41706:167::-;2064:13;:11;:13::i;:::-;41861:4:::1;41819:31;:39;41851:6;41819:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;41706:167:::0;;:::o;37928:30::-;;;;;;;;;;;;;:::o;40552:112::-;2064:13;:11;:13::i;:::-;40623:4:::1;40607:13;;:20;;;;;;;;;;;;;;;;;;40652:4;40638:11;;:18;;;;;;;;;;;;;;;;;;40552:112::o:0;2178:87::-;2224:7;2251:6;;;;;;;;;;;2244:13;;2178:87;:::o;9658:104::-;9714:13;9747:7;9740:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9658:104;:::o;41191:507::-;2064:13;:11;:13::i;:::-;41385:4:::1;41380:1;41364:13;:11;:13::i;:::-;:17;;;;:::i;:::-;41363:26;;;;:::i;:::-;41349:9;:41;;41327:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;41533:4;41528:1;41512:13;:11;:13::i;:::-;:17;;;;:::i;:::-;41511:26;;;;:::i;:::-;41491:15;:47;;41469:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;41632:15;41620:9;:27;;;;41681:9;41658:20;:32;;;;41191:507:::0;;:::o;14239:505::-;14359:4;14381:13;14397:12;:10;:12::i;:::-;14381:28;;14420:24;14447:25;14457:5;14464:7;14447:9;:25::i;:::-;14420:52;;14525:15;14505:16;:35;;14483:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;14641:60;14650:5;14657:7;14685:15;14666:16;:34;14641:8;:60::i;:::-;14732:4;14725:11;;;;14239:505;;;;:::o;11122:234::-;11237:4;11259:13;11275:12;:10;:12::i;:::-;11259:28;;11298;11308:5;11315:2;11319:6;11298:9;:28::i;:::-;11344:4;11337:11;;;11122:234;;;;:::o;42622:334::-;2064:13;:11;:13::i;:::-;42768:1:::1;42740:30;;:16;:30;;::::0;42732:59:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;42802:17;42822:15;;;;;;;;;;;42802:35;;42866:16;42848:15;;:34;;;;;;;;;;;;;;;;;;42938:9;42898:50;;42921:15;;;;;;;;;;;42898:50;;;;;;;;;;;;42721:235;42622:334:::0;:::o;38082:33::-;;;;;;;;;;;;;:::o;42964:182::-;2064:13;:11;:13::i;:::-;43080:8:::1;43049:19;:28;43069:7;43049:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;43120:7;43104:34;;;43129:8;43104:34;;;;;;:::i;:::-;;;;;;;;42964:182:::0;;:::o;37967:35::-;;;;:::o;40672:511::-;40780:4;2064:13;:11;:13::i;:::-;40859:6:::1;40854:1;40838:13;:11;:13::i;:::-;:17;;;;:::i;:::-;40837:28;;;;:::i;:::-;40824:9;:41;;40802:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;41021:4;41016:1;41000:13;:11;:13::i;:::-;:17;;;;:::i;:::-;40999:26;;;;:::i;:::-;40986:9;:39;;40964:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;41144:9;41123:18;:30;;;;41171:4;41164:11;;40672:511:::0;;;:::o;38162:27::-;;;;:::o;11419:201::-;11553:7;11585:11;:18;11597:5;11585:18;;;;;;;;;;;;;;;:27;11604:7;11585:27;;;;;;;;;;;;;;;;11578:34;;11419:201;;;;:::o;38009:33::-;;;;:::o;3077:238::-;2064:13;:11;:13::i;:::-;3200:1:::1;3180:22;;:8;:22;;::::0;3158:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3279:28;3298:8;3279:18;:28::i;:::-;3077:238:::0;:::o;43154:183::-;2064:13;:11;:13::i;:::-;43210:12:::1;43255:10;43247:24;;43279:21;43247:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43233:96;;;;;43199:138;43154:183::o:0;38049:24::-;;;;:::o;2343:132::-;2418:12;:10;:12::i;:::-;2407:23;;:7;:5;:7::i;:::-;:23;;;2399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2343:132::o;723:98::-;776:7;803:10;796:17;;723:98;:::o;18372:380::-;18525:1;18508:19;;:5;:19;;;18500:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18606:1;18587:21;;:7;:21;;;18579:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18690:6;18660:11;:18;18672:5;18660:18;;;;;;;;;;;;;;;:27;18679:7;18660:27;;;;;;;;;;;;;;;:36;;;;18728:7;18712:32;;18721:5;18712:32;;;18737:6;18712:32;;;;;;:::i;:::-;;;;;;;;18372:380;;;:::o;19043:502::-;19178:24;19205:25;19215:5;19222:7;19205:9;:25::i;:::-;19178:52;;19265:17;19245:16;:37;19241:297;;19345:6;19325:16;:26;;19299:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;19460:51;19469:5;19476:7;19504:6;19485:16;:25;19460:8;:51::i;:::-;19241:297;19167:378;19043:502;;;:::o;43675:3484::-;43823:1;43807:18;;:4;:18;;;43799:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43900:1;43886:16;;:2;:16;;;43878:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43969:1;43959:6;:11;43955:93;;43987:28;44003:4;44009:2;44013:1;43987:15;:28::i;:::-;44030:7;;43955:93;44086:7;:5;:7::i;:::-;44078:15;;:4;:15;;;;:45;;;;;44116:7;:5;:7::i;:::-;44110:13;;:2;:13;;;;44078:45;:78;;;;;44154:1;44140:16;;:2;:16;;;;44078:78;:112;;;;;37882:6;44173:17;;:2;:17;;;;44078:112;:138;;;;;44208:8;;;;;;;;;;;44207:9;44078:138;44060:1511;;;44248:13;;;;;;;;;;;44243:210;;44312:19;:25;44332:4;44312:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44341:19;:23;44361:2;44341:23;;;;;;;;;;;;;;;;;;;;;;;;;44312:52;44282:155;;;;;;;;;;;;:::i;:::-;;;;;;;;;44243:210;44515:25;:31;44541:4;44515:31;;;;;;;;;;;;;;;;;;;;;;;;;:88;;;;;44568:31;:35;44600:2;44568:35;;;;;;;;;;;;;;;;;;;;;;;;;44567:36;44515:88;44493:1067;;;44678:20;;44668:6;:30;;44638:164;;;;;;;;;;;;:::i;:::-;;;;;;;;;44877:9;;44860:13;44870:2;44860:9;:13::i;:::-;44851:6;:22;;;;:::i;:::-;:35;;44821:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;44493:1067;;;45038:25;:29;45064:2;45038:29;;;;;;;;;;;;;;;;;;;;;;;;;:88;;;;;45089:31;:37;45121:4;45089:37;;;;;;;;;;;;;;;;;;;;;;;;;45088:38;45038:88;45016:544;;;45201:20;;45191:6;:30;;45161:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;45016:544;;;45353:31;:35;45385:2;45353:35;;;;;;;;;;;;;;;;;;;;;;;;;45348:212;;45465:9;;45448:13;45458:2;45448:9;:13::i;:::-;45439:6;:22;;;;:::i;:::-;:35;;45409:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;45348:212;45016:544;44493:1067;44060:1511;45583:28;45614:24;45632:4;45614:9;:24::i;:::-;45583:55;;45651:12;45690:18;;45666:20;:42;;45651:57;;45739:7;:35;;;;;45763:11;;;;;;;;;;;45739:35;:61;;;;;45792:8;;;;;;;;;;;45791:9;45739:61;:110;;;;;45818:25;:31;45844:4;45818:31;;;;;;;;;;;;;;;;;;;;;;;;;45817:32;45739:110;:153;;;;;45867:19;:25;45887:4;45867:25;;;;;;;;;;;;;;;;;;;;;;;;;45866:26;45739:153;:194;;;;;45910:19;:23;45930:2;45910:23;;;;;;;;;;;;;;;;;;;;;;;;;45909:24;45739:194;45721:326;;;45971:4;45960:8;;:15;;;;;;;;;;;;;;;;;;45992:10;:8;:10::i;:::-;46030:5;46019:8;;:16;;;;;;;;;;;;;;;;;;45721:326;46059:12;46075:8;;;;;;;;;;;46074:9;46059:24;;46100:19;:25;46120:4;46100:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;46129:19;:23;46149:2;46129:23;;;;;;;;;;;;;;;;;;;;;;;;;46100:52;46096:100;;;46179:5;46169:15;;46096:100;46208:12;46241:7;46237:831;;;46293:25;:29;46319:2;46293:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;46342:1;46326:13;;:17;46293:50;46289:630;;;46371:34;46401:3;46371:25;46382:13;;46371:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;46364:41;;46474:13;;46454:16;;46447:4;:23;;;;:::i;:::-;46446:41;;;;:::i;:::-;46424:18;;:63;;;;;;;:::i;:::-;;;;;;;;46556:13;;46536:16;;46529:4;:23;;;;:::i;:::-;46528:41;;;;:::i;:::-;46506:18;;:63;;;;;;;:::i;:::-;;;;;;;;46289:630;;;46631:25;:31;46657:4;46631:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46681:1;46666:12;;:16;46631:51;46627:292;;;46710:33;46739:3;46710:24;46721:12;;46710:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46703:40;;46811:12;;46792:15;;46785:4;:22;;;;:::i;:::-;46784:39;;;;:::i;:::-;46762:18;;:61;;;;;;;:::i;:::-;;;;;;;;46891:12;;46872:15;;46865:4;:22;;;;:::i;:::-;46864:39;;;;:::i;:::-;46842:18;;:61;;;;;;;:::i;:::-;;;;;;;;46627:292;46289:630;46946:1;46939:4;:8;46935:91;;;46968:42;46984:4;46998;47005;46968:15;:42::i;:::-;46935:91;47052:4;47042:14;;;;;:::i;:::-;;;46237:831;47080:33;47096:4;47102:2;47106:6;47080:15;:33::i;:::-;47140:11;;47124:13;:27;;;;43788:3371;;;;43675:3484;;;;:::o;3475:191::-;3549:16;3568:6;;;;;;;;;;;3549:25;;3594:8;3585:6;;:17;;;;;;;;;;;;;;;;;;3649:8;3618:40;;3639:8;3618:40;;;;;;;;;;;;3538:128;3475:191;:::o;15214:877::-;15361:1;15345:18;;:4;:18;;;15337:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15438:1;15424:16;;:2;:16;;;15416:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15493:38;15514:4;15520:2;15524:6;15493:20;:38::i;:::-;15544:19;15566:9;:15;15576:4;15566:15;;;;;;;;;;;;;;;;15544:37;;15629:6;15614:11;:21;;15592:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;15769:6;15755:11;:20;15737:9;:15;15747:4;15737:15;;;;;;;;;;;;;;;:38;;;;15972:6;15955:9;:13;15965:2;15955:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;16022:2;16007:26;;16016:4;16007:26;;;16026:6;16007:26;;;;;;:::i;:::-;;;;;;;;16046:37;16066:4;16072:2;16076:6;16046:19;:37::i;:::-;15326:765;15214:877;;;:::o;48046:1473::-;48085:23;48111:24;48129:4;48111:9;:24::i;:::-;48085:50;;48146:25;48195:18;;48174;;:39;;;;:::i;:::-;48146:67;;48224:12;48272:1;48253:15;:20;:46;;;;48298:1;48277:17;:22;48253:46;48249:85;;;48316:7;;;;;48249:85;48389:2;48368:18;;:23;;;;:::i;:::-;48350:15;:41;48346:115;;;48447:2;48426:18;;:23;;;;:::i;:::-;48408:41;;48346:115;48473:23;48586:1;48553:17;48518:18;;48500:15;:36;;;;:::i;:::-;48499:71;;;;:::i;:::-;:88;;;;:::i;:::-;48473:114;;48598:26;48627:36;48647:15;48627;:19;;:36;;;;:::i;:::-;48598:65;;48676:25;48704:21;48676:49;;48738:36;48755:18;48738:16;:36::i;:::-;48787:18;48808:44;48834:17;48808:21;:25;;:44;;;;:::i;:::-;48787:65;;48865:23;48891:81;48944:17;48891:34;48906:18;;48891:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48865:107;;48985:23;49024:15;49011:10;:28;;;;:::i;:::-;48985:54;;49073:1;49052:18;:22;;;;49106:1;49085:18;:22;;;;49142:1;49124:15;:19;:42;;;;;49165:1;49147:15;:19;49124:42;49120:278;;;49183:46;49196:15;49213;49183:12;:46::i;:::-;49249:137;49282:18;49319:15;49353:18;;49249:137;;;;;;;;:::i;:::-;;;;;;;;49120:278;49432:15;;;;;;;;;;;49424:29;;49461:21;49424:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49410:101;;;;;48074:1445;;;;;;;;;48046:1473;:::o;24720:98::-;24778:7;24809:1;24805;:5;;;;:::i;:::-;24798:12;;24720:98;;;;:::o;25119:::-;25177:7;25208:1;25204;:5;;;;:::i;:::-;25197:12;;25119:98;;;;:::o;20145:125::-;;;;:::o;20874:124::-;;;;:::o;24363:98::-;24421:7;24452:1;24448;:5;;;;:::i;:::-;24441:12;;24363:98;;;;:::o;47167:501::-;47233:21;47271:1;47257:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47233:40;;47302:4;47284;47289:1;47284:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47328:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47318:4;47323:1;47318:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47363:62;47380:4;47395:15;47413:11;47363:8;:62::i;:::-;47464:15;:66;;;47545:11;47571:1;47587:4;47614;47634:15;47464:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47222:446;47167:501;:::o;47676:362::-;47757:62;47774:4;47789:15;47807:11;47757:8;:62::i;:::-;47832:15;:31;;;47871:9;47904:4;47924:11;47950:1;47966;47982:7;:5;:7::i;:::-;48004:15;47832:198;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47676: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:166::-;14492:18;14488:1;14480:6;14476:14;14469:42;14352:166;:::o;14524:366::-;14666:3;14687:67;14751:2;14746:3;14687:67;:::i;:::-;14680:74;;14763:93;14852:3;14763:93;:::i;:::-;14881:2;14876:3;14872:12;14865:19;;14524:366;;;:::o;14896:419::-;15062:4;15100:2;15089:9;15085:18;15077:26;;15149:9;15143:4;15139:20;15135:1;15124:9;15120:17;15113:47;15177:131;15303:4;15177:131;:::i;:::-;15169:139;;14896:419;;;:::o;15321:247::-;15461:34;15457:1;15449:6;15445:14;15438:58;15530:30;15525:2;15517:6;15513:15;15506:55;15321:247;:::o;15574:366::-;15716:3;15737:67;15801:2;15796:3;15737:67;:::i;:::-;15730:74;;15813:93;15902:3;15813:93;:::i;:::-;15931:2;15926:3;15922:12;15915:19;;15574:366;;;:::o;15946:419::-;16112:4;16150:2;16139:9;16135:18;16127:26;;16199:9;16193:4;16189:20;16185:1;16174:9;16170:17;16163:47;16227:131;16353:4;16227:131;:::i;:::-;16219:139;;15946:419;;;:::o;16371:246::-;16511:34;16507:1;16499:6;16495:14;16488:58;16580:29;16575:2;16567:6;16563:15;16556:54;16371:246;:::o;16623:366::-;16765:3;16786:67;16850:2;16845:3;16786:67;:::i;:::-;16779:74;;16862:93;16951:3;16862:93;:::i;:::-;16980:2;16975:3;16971:12;16964:19;;16623:366;;;:::o;16995:419::-;17161:4;17199:2;17188:9;17184:18;17176:26;;17248:9;17242:4;17238:20;17234:1;17223:9;17219:17;17212:47;17276:131;17402:4;17276:131;:::i;:::-;17268:139;;16995:419;;;:::o;17420:225::-;17560:34;17556:1;17548:6;17544:14;17537:58;17629:8;17624:2;17616:6;17612:15;17605:33;17420:225;:::o;17651:366::-;17793:3;17814:67;17878:2;17873:3;17814:67;:::i;:::-;17807:74;;17890:93;17979:3;17890:93;:::i;:::-;18008:2;18003:3;17999:12;17992:19;;17651:366;;;:::o;18023:419::-;18189:4;18227:2;18216:9;18212:18;18204:26;;18276:9;18270:4;18266:20;18262:1;18251:9;18247:17;18240:47;18304:131;18430:4;18304:131;:::i;:::-;18296:139;;18023:419;;;:::o;18448:147::-;18549:11;18586:3;18571:18;;18448:147;;;;:::o;18601:114::-;;:::o;18721:398::-;18880:3;18901:83;18982:1;18977:3;18901:83;:::i;:::-;18894:90;;18993:93;19082:3;18993:93;:::i;:::-;19111:1;19106:3;19102:11;19095:18;;18721:398;;;:::o;19125:379::-;19309:3;19331:147;19474:3;19331:147;:::i;:::-;19324:154;;19495:3;19488:10;;19125:379;;;:::o;19510:182::-;19650:34;19646:1;19638:6;19634:14;19627:58;19510:182;:::o;19698:366::-;19840:3;19861:67;19925:2;19920:3;19861:67;:::i;:::-;19854:74;;19937:93;20026:3;19937:93;:::i;:::-;20055:2;20050:3;20046:12;20039:19;;19698:366;;;:::o;20070:419::-;20236:4;20274:2;20263:9;20259:18;20251:26;;20323:9;20317:4;20313:20;20309:1;20298:9;20294:17;20287:47;20351:131;20477:4;20351:131;:::i;:::-;20343:139;;20070:419;;;:::o;20495:223::-;20635:34;20631:1;20623:6;20619:14;20612:58;20704:6;20699:2;20691:6;20687:15;20680:31;20495:223;:::o;20724:366::-;20866:3;20887:67;20951:2;20946:3;20887:67;:::i;:::-;20880:74;;20963:93;21052:3;20963:93;:::i;:::-;21081:2;21076:3;21072:12;21065:19;;20724:366;;;:::o;21096:419::-;21262:4;21300:2;21289:9;21285:18;21277:26;;21349:9;21343:4;21339:20;21335:1;21324:9;21320:17;21313:47;21377:131;21503:4;21377:131;:::i;:::-;21369:139;;21096:419;;;:::o;21521:221::-;21661:34;21657:1;21649:6;21645:14;21638:58;21730:4;21725:2;21717:6;21713:15;21706:29;21521:221;:::o;21748:366::-;21890:3;21911:67;21975:2;21970:3;21911:67;:::i;:::-;21904:74;;21987:93;22076:3;21987:93;:::i;:::-;22105:2;22100:3;22096:12;22089:19;;21748:366;;;:::o;22120:419::-;22286:4;22324:2;22313:9;22309:18;22301:26;;22373:9;22367:4;22363:20;22359:1;22348:9;22344:17;22337:47;22401:131;22527:4;22401:131;:::i;:::-;22393:139;;22120:419;;;:::o;22545:179::-;22685:31;22681:1;22673:6;22669:14;22662:55;22545:179;:::o;22730:366::-;22872:3;22893:67;22957:2;22952:3;22893:67;:::i;:::-;22886:74;;22969:93;23058:3;22969:93;:::i;:::-;23087:2;23082:3;23078:12;23071:19;;22730:366;;;:::o;23102:419::-;23268:4;23306:2;23295:9;23291:18;23283:26;;23355:9;23349:4;23345:20;23341:1;23330:9;23326:17;23319:47;23383:131;23509:4;23383:131;:::i;:::-;23375:139;;23102:419;;;:::o;23527:224::-;23667:34;23663:1;23655:6;23651:14;23644:58;23736:7;23731:2;23723:6;23719:15;23712:32;23527:224;:::o;23757:366::-;23899:3;23920:67;23984:2;23979:3;23920:67;:::i;:::-;23913:74;;23996:93;24085:3;23996:93;:::i;:::-;24114:2;24109:3;24105:12;24098:19;;23757:366;;;:::o;24129:419::-;24295:4;24333:2;24322:9;24318:18;24310:26;;24382:9;24376:4;24372:20;24368:1;24357:9;24353:17;24346:47;24410:131;24536:4;24410:131;:::i;:::-;24402:139;;24129:419;;;:::o;24554:222::-;24694:34;24690:1;24682:6;24678:14;24671:58;24763:5;24758:2;24750:6;24746:15;24739:30;24554:222;:::o;24782:366::-;24924:3;24945:67;25009:2;25004:3;24945:67;:::i;:::-;24938:74;;25021:93;25110:3;25021:93;:::i;:::-;25139:2;25134:3;25130:12;25123:19;;24782:366;;;:::o;25154:419::-;25320:4;25358:2;25347:9;25343:18;25335:26;;25407:9;25401:4;25397:20;25393:1;25382:9;25378:17;25371:47;25435:131;25561:4;25435:131;:::i;:::-;25427:139;;25154:419;;;:::o;25579:179::-;25719:31;25715:1;25707:6;25703:14;25696:55;25579:179;:::o;25764:366::-;25906:3;25927:67;25991:2;25986:3;25927:67;:::i;:::-;25920:74;;26003:93;26092:3;26003:93;:::i;:::-;26121:2;26116:3;26112:12;26105:19;;25764:366;;;:::o;26136:419::-;26302:4;26340:2;26329:9;26325:18;26317:26;;26389:9;26383:4;26379:20;26375:1;26364:9;26360:17;26353:47;26417:131;26543:4;26417:131;:::i;:::-;26409:139;;26136:419;;;:::o;26561:247::-;26701:34;26697:1;26689:6;26685:14;26678:58;26770:30;26765:2;26757:6;26753:15;26746:55;26561:247;:::o;26814:366::-;26956:3;26977:67;27041:2;27036:3;26977:67;:::i;:::-;26970:74;;27053:93;27142:3;27053:93;:::i;:::-;27171:2;27166:3;27162:12;27155:19;;26814:366;;;:::o;27186:419::-;27352:4;27390:2;27379:9;27375:18;27367:26;;27439:9;27433:4;27429:20;27425:1;27414:9;27410:17;27403:47;27467:131;27593:4;27467:131;:::i;:::-;27459:139;;27186:419;;;:::o;27611:176::-;27751:28;27747:1;27739:6;27735:14;27728:52;27611:176;:::o;27793:366::-;27935:3;27956:67;28020:2;28015:3;27956:67;:::i;:::-;27949:74;;28032:93;28121:3;28032:93;:::i;:::-;28150:2;28145:3;28141:12;28134:19;;27793:366;;;:::o;28165:419::-;28331:4;28369:2;28358:9;28354:18;28346:26;;28418:9;28412:4;28408:20;28404:1;28393:9;28389:17;28382:47;28446:131;28572:4;28446:131;:::i;:::-;28438:139;;28165:419;;;:::o;28590:248::-;28730:34;28726:1;28718:6;28714:14;28707:58;28799:31;28794:2;28786:6;28782:15;28775:56;28590:248;:::o;28844:366::-;28986:3;29007:67;29071:2;29066:3;29007:67;:::i;:::-;29000:74;;29083:93;29172:3;29083:93;:::i;:::-;29201:2;29196:3;29192:12;29185:19;;28844:366;;;:::o;29216:419::-;29382:4;29420:2;29409:9;29405:18;29397:26;;29469:9;29463:4;29459:20;29455:1;29444:9;29440:17;29433:47;29497:131;29623:4;29497:131;:::i;:::-;29489:139;;29216:419;;;:::o;29641:194::-;29681:4;29701:20;29719:1;29701:20;:::i;:::-;29696:25;;29735:20;29753:1;29735:20;:::i;:::-;29730:25;;29779:1;29776;29772:9;29764:17;;29803:1;29797:4;29794:11;29791:37;;;29808:18;;:::i;:::-;29791:37;29641:194;;;;:::o;29841:225::-;29981:34;29977:1;29969:6;29965:14;29958:58;30050:8;30045:2;30037:6;30033:15;30026:33;29841:225;:::o;30072:366::-;30214:3;30235:67;30299:2;30294:3;30235:67;:::i;:::-;30228:74;;30311:93;30400:3;30311:93;:::i;:::-;30429:2;30424:3;30420:12;30413:19;;30072:366;;;:::o;30444:419::-;30610:4;30648:2;30637:9;30633:18;30625:26;;30697:9;30691:4;30687:20;30683:1;30672:9;30668:17;30661:47;30725:131;30851:4;30725:131;:::i;:::-;30717:139;;30444:419;;;:::o;30869:442::-;31018:4;31056:2;31045:9;31041:18;31033:26;;31069:71;31137:1;31126:9;31122:17;31113:6;31069:71;:::i;:::-;31150:72;31218:2;31207:9;31203:18;31194:6;31150:72;:::i;:::-;31232;31300:2;31289:9;31285:18;31276:6;31232:72;:::i;:::-;30869:442;;;;;;:::o;31317:180::-;31365:77;31362:1;31355:88;31462:4;31459:1;31452:15;31486:4;31483:1;31476:15;31503:180;31551:77;31548:1;31541:88;31648:4;31645:1;31638:15;31672:4;31669:1;31662:15;31689:143;31746:5;31777:6;31771:13;31762:22;;31793:33;31820:5;31793:33;:::i;:::-;31689:143;;;;:::o;31838:351::-;31908:6;31957:2;31945:9;31936:7;31932:23;31928:32;31925:119;;;31963:79;;:::i;:::-;31925:119;32083:1;32108:64;32164:7;32155:6;32144:9;32140:22;32108:64;:::i;:::-;32098:74;;32054:128;31838:351;;;;:::o;32195:85::-;32240:7;32269:5;32258:16;;32195:85;;;:::o;32286:158::-;32344:9;32377:61;32395:42;32404:32;32430:5;32404:32;:::i;:::-;32395:42;:::i;:::-;32377:61;:::i;:::-;32364:74;;32286:158;;;:::o;32450:147::-;32545:45;32584:5;32545:45;:::i;:::-;32540:3;32533:58;32450:147;;:::o;32603:114::-;32670:6;32704:5;32698:12;32688:22;;32603:114;;;:::o;32723:184::-;32822:11;32856:6;32851:3;32844:19;32896:4;32891:3;32887:14;32872:29;;32723:184;;;;:::o;32913:132::-;32980:4;33003:3;32995:11;;33033:4;33028:3;33024:14;33016:22;;32913:132;;;:::o;33051:108::-;33128:24;33146:5;33128:24;:::i;:::-;33123:3;33116:37;33051:108;;:::o;33165:179::-;33234:10;33255:46;33297:3;33289:6;33255:46;:::i;:::-;33333:4;33328:3;33324:14;33310:28;;33165:179;;;;:::o;33350:113::-;33420:4;33452;33447:3;33443:14;33435:22;;33350:113;;;:::o;33499:732::-;33618:3;33647:54;33695:5;33647:54;:::i;:::-;33717:86;33796:6;33791:3;33717:86;:::i;:::-;33710:93;;33827:56;33877:5;33827:56;:::i;:::-;33906:7;33937:1;33922:284;33947:6;33944:1;33941:13;33922:284;;;34023:6;34017:13;34050:63;34109:3;34094:13;34050:63;:::i;:::-;34043:70;;34136:60;34189:6;34136:60;:::i;:::-;34126:70;;33982:224;33969:1;33966;33962:9;33957:14;;33922:284;;;33926:14;34222:3;34215:10;;33623:608;;;33499:732;;;;:::o;34237:831::-;34500:4;34538:3;34527:9;34523:19;34515:27;;34552:71;34620:1;34609:9;34605:17;34596:6;34552:71;:::i;:::-;34633:80;34709:2;34698:9;34694:18;34685:6;34633:80;:::i;:::-;34760:9;34754:4;34750:20;34745:2;34734:9;34730:18;34723:48;34788:108;34891:4;34882:6;34788:108;:::i;:::-;34780:116;;34906:72;34974:2;34963:9;34959:18;34950:6;34906:72;:::i;:::-;34988:73;35056:3;35045:9;35041:19;35032:6;34988:73;:::i;:::-;34237:831;;;;;;;;:::o;35074:807::-;35323:4;35361:3;35350:9;35346:19;35338:27;;35375:71;35443:1;35432:9;35428:17;35419:6;35375:71;:::i;:::-;35456:72;35524:2;35513:9;35509:18;35500:6;35456:72;:::i;:::-;35538:80;35614:2;35603:9;35599:18;35590:6;35538:80;:::i;:::-;35628;35704:2;35693:9;35689:18;35680:6;35628:80;:::i;:::-;35718:73;35786:3;35775:9;35771:19;35762:6;35718:73;:::i;:::-;35801;35869:3;35858:9;35854:19;35845:6;35801:73;:::i;:::-;35074:807;;;;;;;;;:::o;35887:143::-;35944:5;35975:6;35969:13;35960:22;;35991:33;36018:5;35991:33;:::i;:::-;35887:143;;;;:::o;36036:663::-;36124:6;36132;36140;36189:2;36177:9;36168:7;36164:23;36160:32;36157:119;;;36195:79;;:::i;:::-;36157:119;36315:1;36340:64;36396:7;36387:6;36376:9;36372:22;36340:64;:::i;:::-;36330:74;;36286:128;36453:2;36479:64;36535:7;36526:6;36515:9;36511:22;36479:64;:::i;:::-;36469:74;;36424:129;36592:2;36618:64;36674:7;36665:6;36654:9;36650:22;36618:64;:::i;:::-;36608:74;;36563:129;36036:663;;;;;:::o

Swarm Source

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