ETH Price: $3,829.25 (+5.32%)

Token

Omira (OMIRA)
 

Overview

Max Total Supply

100,000,000 OMIRA

Holders

1,327 ( 1.056%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
zero-21.eth
Balance
17,061.676105261387534022 OMIRA

Value
$0.00
0x0ae7acb769a899120106cfae50e11f5da80672c3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Omira Labs is an organization focused on applying predictive intelligence within DeFi. Omira's first model, B.B4, delivers sentiment-driven price predictions on specified assets.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Omira

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-12-02
*/

//SPDX-License-Identifier: MIT

/*
- Omira Labs native token -

Rethinking predictive intelligence for decentralized finance.

Our links:
https://omira.tech/
https://t.me/OmiraAI
https://x.com/OmiraAI

/*

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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);
}

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





/**
 * @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}.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

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,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract Omira is ERC20, Ownable {

    receive() external payable {}

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    uint public swapAndLiqThreshold;
    uint public purchaseLimit;
    uint public buySellTax;
    bool private inSwapAndLiquify;
    bool public tradingOpen;
    uint256 public liquidityFee;
    uint256 public ethFee;
    address public marketingWallet;
    mapping (address => bool) private _isExcludedFromLimit;

    modifier lockSwap {
        require(!inSwapAndLiquify, "Currently in swap and liquify");
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor(address _marketingWallet, address _uniRouter) ERC20(
            "Omira",
            "OMIRA") Ownable(msg.sender) {
        _mint(_msgSender(), 1e8 ether);

        ethFee = 25;
        liquidityFee = 0;
        marketingWallet = payable(_marketingWallet);
        address uniswapRouter = _uniRouter;
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(uniswapRouter);
        IUniswapV2Factory _uniswapFactory = IUniswapV2Factory(_uniswapV2Router.factory());

        address _uniswapV2Pair = _uniswapFactory.createPair(
            address(this), 
            _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;
        buySellTax = 2500;
        purchaseLimit = 50;
        swapAndLiqThreshold = 2e5 ether;

        excludeFromLimitation(uniswapV2Pair, true);
        excludeFromLimitation(address(uniswapRouter), true);
        excludeFromLimitation(_msgSender(), true);
        excludeFromLimitation(address(this), true);
    }

    function swapAndLiquify(uint256 toSwapLiquidity) private lockSwap {

        uint256 initialBalance = address(this).balance;
        uint256 totalFee = buySellTax / 100;
        uint256 forETH = toSwapLiquidity * ethFee / totalFee;
        uint256 forLiquidity = 0;
        uint256 tokensToSellForLiq = 0;
        uint256 tokensToAddLiq = 0;

        if (liquidityFee > 0) {
            forLiquidity = toSwapLiquidity * liquidityFee / totalFee;
            tokensToSellForLiq = forLiquidity / 2;
            tokensToAddLiq = forLiquidity - tokensToSellForLiq;
        }

        uint256 toSwap = forETH + tokensToSellForLiq;
        swapTokensForETH(toSwap);
        uint256 updatedBalance = address(this).balance - initialBalance;
        uint256 ethForMarketing = updatedBalance * forETH / toSwap;
        
        if (liquidityFee > 0) {
            uint256 ethForLiquidity = updatedBalance - ethForMarketing;
            addLiquidity(tokensToAddLiq, ethForLiquidity);
            emit SwapAndLiquified(toSwap, tokensToAddLiq, ethForLiquidity, ethForMarketing);
        } else {
            emit SwapAndLiquified(toSwap, 0, 0, ethForMarketing);
        }
        payable(marketingWallet).transfer(ethForMarketing);
    }

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

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

    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);

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _transfer(
        address from, 
        address to, 
        uint256 amount) internal override {
        require(amount > 0, "Transfer amount must be greater than 0");
        if(!_isExcludedFromLimit[from] || !_isExcludedFromLimit[to]) {
            require(tradingOpen, "Trading Closed");
        }

        uint256 taxAmount = 0;

        if (from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromLimit[to]) {

            require(amount <= totalSupply() * purchaseLimit / 1e4, "Amount exceeds max purchase amount.");
        }

        if((!_isExcludedFromLimit[from] || !_isExcludedFromLimit[to]) && from != address(this)){
            if((from == uniswapV2Pair || to == uniswapV2Pair) && buySellTax > 0){
                taxAmount = amount * buySellTax / 1e4;
                super._transfer(from, address(this), taxAmount);
            }
        }

        if (!inSwapAndLiquify && to == uniswapV2Pair && !_isExcludedFromLimit[from]) {
            uint256 balance = balanceOf(address(this));
            if(balance >= swapAndLiqThreshold) {
                uint256 maxSwapAndLiq = swapAndLiqThreshold + (swapAndLiqThreshold / 5); 
                if(balance >= maxSwapAndLiq){
                    swapAndLiquify(maxSwapAndLiq);
                }
                else {
                    swapAndLiquify(swapAndLiqThreshold);
                }
            }
        }

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

    function setSellBuyTax(
        uint forMarketingInPercentage, 
        uint forLiquidityInPercentage) external onlyOwner {
        
        uint256 taxInPercentage = forMarketingInPercentage + forLiquidityInPercentage;
        uint256 currentTaxInPercentage = buySellTax / 100;
        require(taxInPercentage <= currentTaxInPercentage, "You can only lower fees");

        

        ethFee = forMarketingInPercentage;
        liquidityFee = forLiquidityInPercentage;

        buySellTax = taxInPercentage * 100;
        
        emit TaxUpdated(buySellTax);
    }

    function setTradingOpen() external onlyOwner {
        require(!tradingOpen, "Trading already open");
        tradingOpen = true;
        emit TradingStatusUpdated(true);
    }

    function setPurchaseLimit(uint _limit) external onlyOwner {
        purchaseLimit = _limit;
        emit PurchaseLimitUpdated(_limit);
    }

    function setSwapThreshold(uint256 amount) public onlyOwner {
        uint256 currentTotalSupply = totalSupply();
        uint256 minSwapAndLiqThreshold = currentTotalSupply / 10000; 
        uint256 maxSwapAndLiqThreshold = currentTotalSupply * 5 / 1000; 

        require(amount >= minSwapAndLiqThreshold && amount <= maxSwapAndLiqThreshold, "SnL Threshold must be within the allowed range");
        swapAndLiqThreshold = amount;
        emit SwapAndLiqThresholdSet(amount);
    }

    function excludeFromLimitation(
        address account, 
        bool excluded) public onlyOwner {
        _isExcludedFromLimit[account] = excluded;
        emit ExcludeFromLimitation(account, excluded);
    }

    function batchExcludeFromLimitation(
        address[] calldata account, 
        bool[] calldata excluded) public onlyOwner {
        for(uint i = 0 ; i < account.length ; i ++) {
            _isExcludedFromLimit[account[i]] = excluded[i];
        }
        emit BatchExcludeFromLimitation(account, excluded);
    }

    function withdrawETH(address payable _to) external onlyOwner {
        require(address(this).balance > 0, "No ETH to withdraw");
        uint256 amount = address(this).balance;
        (bool sent, ) = _to.call{value: amount}("");
        require(sent, "Failed to send Ether");
        emit ETHWithdrawn(_to, amount);
    }

    function withdrawERC20Token(
        address token, 
        address to) public onlyOwner {
        uint256 balance = IERC20(address(token)).balanceOf(address(this));
        require(balance > 0, "Not enough tokens in contract");
        IERC20(address(token)).transfer(to, balance);
        emit ERC20Withdrawn(to, balance);
    }

    event ExcludeFromLimitation(address indexed account, bool isExcluded);
    event BatchExcludeFromLimitation(address[] account, bool[] isExcluded);
    event SwapAndLiquified(uint256 tokensSwapped, uint256 tokensForLiquidity, uint256 ethForLiquidity, uint256 ethForMarketing);
    event TaxUpdated(uint taxPercent);
    event PurchaseLimitUpdated(uint limitPercent);
    event SwapAndLiqThresholdSet(uint256 amount);
    event ETHWithdrawn(address indexed to, uint256 amount);
    event ERC20Withdrawn(address indexed to, uint256 amount);
    event TradingStatusUpdated(bool status);
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_uniRouter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":false,"internalType":"address[]","name":"account","type":"address[]"},{"indexed":false,"internalType":"bool[]","name":"isExcluded","type":"bool[]"}],"name":"BatchExcludeFromLimitation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20Withdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ETHWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimitation","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":false,"internalType":"uint256","name":"limitPercent","type":"uint256"}],"name":"PurchaseLimitUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapAndLiqThresholdSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensForLiquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethForLiquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethForMarketing","type":"uint256"}],"name":"SwapAndLiquified","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"taxPercent","type":"uint256"}],"name":"TaxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"TradingStatusUpdated","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"},{"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":"value","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":[{"internalType":"address[]","name":"account","type":"address[]"},{"internalType":"bool[]","name":"excluded","type":"bool[]"}],"name":"batchExcludeFromLimitation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buySellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromLimitation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"purchaseLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"forMarketingInPercentage","type":"uint256"},{"internalType":"uint256","name":"forLiquidityInPercentage","type":"uint256"}],"name":"setSellBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setTradingOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiqThreshold","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":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"withdrawERC20Token","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801561000f575f80fd5b5060405161436638038061436683398181016040528101906100319190610973565b336040518060400160405280600581526020017f4f6d6972610000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4f4d49524100000000000000000000000000000000000000000000000000000081525081600390816100ad9190610beb565b5080600490816100bd9190610beb565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610130575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101279190610cc9565b60405180910390fd5b61013f8161043860201b60201c565b506101686101516104fb60201b60201c565b6a52b7d2dcc80cd2e400000061050260201b60201c565b6019600d819055505f600c8190555081600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f8190505f8190505f8173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610209573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061022d9190610ce2565b90505f8173ffffffffffffffffffffffffffffffffffffffff1663c9c65396308573ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610296573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102ba9190610ce2565b6040518363ffffffff1660e01b81526004016102d7929190610d0d565b6020604051808303815f875af11580156102f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103179190610ce2565b90508260065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109c4600a819055506032600981905550692a5a058fc295ed0000006008819055506103ed60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161058760201b60201c565b6103fe84600161058760201b60201c565b61041c61040f6104fb60201b60201c565b600161058760201b60201c565b61042d30600161058760201b60201c565b505050505050610e24565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610572575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016105699190610cc9565b60405180910390fd5b6105835f838361063b60201b60201c565b5050565b61059561085460201b60201c565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fb662f3bfb1735e6cf86c62e0de5e8ded221db1f328a15d104be3fd29977cf23e8260405161062f9190610d4e565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361068b578060025f82825461067f9190610d94565b92505081905550610759565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610714578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161070b93929190610dd6565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107a0578060025f82825403925050819055506107ea565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516108479190610e0b565b60405180910390a3505050565b6108626104fb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166108866108ed60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146108eb576108af6104fb60201b60201c565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108e29190610cc9565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61094282610919565b9050919050565b61095281610938565b811461095c575f80fd5b50565b5f8151905061096d81610949565b92915050565b5f806040838503121561098957610988610915565b5b5f6109968582860161095f565b92505060206109a78582860161095f565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610a2c57607f821691505b602082108103610a3f57610a3e6109e8565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610aa17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610a66565b610aab8683610a66565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610aef610aea610ae584610ac3565b610acc565b610ac3565b9050919050565b5f819050919050565b610b0883610ad5565b610b1c610b1482610af6565b848454610a72565b825550505050565b5f90565b610b30610b24565b610b3b818484610aff565b505050565b5b81811015610b5e57610b535f82610b28565b600181019050610b41565b5050565b601f821115610ba357610b7481610a45565b610b7d84610a57565b81016020851015610b8c578190505b610ba0610b9885610a57565b830182610b40565b50505b505050565b5f82821c905092915050565b5f610bc35f1984600802610ba8565b1980831691505092915050565b5f610bdb8383610bb4565b9150826002028217905092915050565b610bf4826109b1565b67ffffffffffffffff811115610c0d57610c0c6109bb565b5b610c178254610a15565b610c22828285610b62565b5f60209050601f831160018114610c53575f8415610c41578287015190505b610c4b8582610bd0565b865550610cb2565b601f198416610c6186610a45565b5f5b82811015610c8857848901518255600182019150602085019450602081019050610c63565b86831015610ca55784890151610ca1601f891682610bb4565b8355505b6001600288020188555050505b505050505050565b610cc381610938565b82525050565b5f602082019050610cdc5f830184610cba565b92915050565b5f60208284031215610cf757610cf6610915565b5b5f610d048482850161095f565b91505092915050565b5f604082019050610d205f830185610cba565b610d2d6020830184610cba565b9392505050565b5f8115159050919050565b610d4881610d34565b82525050565b5f602082019050610d615f830184610d3f565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610d9e82610ac3565b9150610da983610ac3565b9250828201905080821115610dc157610dc0610d67565b5b92915050565b610dd081610ac3565b82525050565b5f606082019050610de95f830186610cba565b610df66020830185610dc7565b610e036040830184610dc7565b949350505050565b5f602082019050610e1e5f830184610dc7565b92915050565b61353580610e315f395ff3fe6080604052600436106101c5575f3560e01c80636edc4388116100f657806398118cb411610094578063dd62ed3e11610063578063dd62ed3e146105fe578063ecfbe70c1461063a578063f2fde38b14610662578063ffb54a991461068a576101cc565b806398118cb4146105465780639d0014b114610570578063a9059cbb14610598578063b62f6e04146105d4576101cc565b806375f0a874116100d057806375f0a8741461049e5780638da5cb5b146104c857806395d89b41146104f257806396e1c7d11461051c576101cc565b80636edc43881461042457806370a082311461044c578063715018a614610488576101cc565b806323b872dd116101635780634cf1115d1161013d5780634cf1115d146103825780635e7f2dc1146103ac57806361231f77146103d4578063690d8320146103fc576101cc565b806323b872dd146102f2578063313ce5671461032e57806349bd5a5e14610358576101cc565b806318160ddd1161019f57806318160ddd14610260578063188866571461028a5780631eed1ac8146102b45780632333f9f1146102ca576101cc565b806306fdde03146101d0578063095ea7b3146101fa5780631694505e14610236576101cc565b366101cc57005b5f80fd5b3480156101db575f80fd5b506101e46106b4565b6040516101f191906123d6565b60405180910390f35b348015610205575f80fd5b50610220600480360381019061021b919061248b565b610744565b60405161022d91906124e3565b60405180910390f35b348015610241575f80fd5b5061024a610766565b6040516102579190612557565b60405180910390f35b34801561026b575f80fd5b5061027461078b565b604051610281919061257f565b60405180910390f35b348015610295575f80fd5b5061029e610794565b6040516102ab919061257f565b60405180910390f35b3480156102bf575f80fd5b506102c861079a565b005b3480156102d5575f80fd5b506102f060048036038101906102eb91906125c2565b610847565b005b3480156102fd575f80fd5b5061031860048036038101906103139190612600565b6108f5565b60405161032591906124e3565b60405180910390f35b348015610339575f80fd5b50610342610923565b60405161034f919061266b565b60405180910390f35b348015610363575f80fd5b5061036c61092b565b6040516103799190612693565b60405180910390f35b34801561038d575f80fd5b50610396610950565b6040516103a3919061257f565b60405180910390f35b3480156103b7575f80fd5b506103d260048036038101906103cd9190612762565b610956565b005b3480156103df575f80fd5b506103fa60048036038101906103f591906127e0565b610a5e565b005b348015610407575f80fd5b50610422600480360381019061041d9190612859565b610b2a565b005b34801561042f575f80fd5b5061044a60048036038101906104459190612884565b610c73565b005b348015610457575f80fd5b50610472600480360381019061046d91906128af565b610cbc565b60405161047f919061257f565b60405180910390f35b348015610493575f80fd5b5061049c610d01565b005b3480156104a9575f80fd5b506104b2610d14565b6040516104bf9190612693565b60405180910390f35b3480156104d3575f80fd5b506104dc610d39565b6040516104e99190612693565b60405180910390f35b3480156104fd575f80fd5b50610506610d61565b60405161051391906123d6565b60405180910390f35b348015610527575f80fd5b50610530610df1565b60405161053d919061257f565b60405180910390f35b348015610551575f80fd5b5061055a610df7565b604051610567919061257f565b60405180910390f35b34801561057b575f80fd5b5061059660048036038101906105919190612884565b610dfd565b005b3480156105a3575f80fd5b506105be60048036038101906105b9919061248b565b610ed1565b6040516105cb91906124e3565b60405180910390f35b3480156105df575f80fd5b506105e8610ef3565b6040516105f5919061257f565b60405180910390f35b348015610609575f80fd5b50610624600480360381019061061f91906128da565b610ef9565b604051610631919061257f565b60405180910390f35b348015610645575f80fd5b50610660600480360381019061065b91906128da565b610f7b565b005b34801561066d575f80fd5b50610688600480360381019061068391906128af565b61110f565b005b348015610695575f80fd5b5061069e611193565b6040516106ab91906124e3565b60405180910390f35b6060600380546106c390612945565b80601f01602080910402602001604051908101604052809291908181526020018280546106ef90612945565b801561073a5780601f106107115761010080835404028352916020019161073a565b820191905f5260205f20905b81548152906001019060200180831161071d57829003601f168201915b5050505050905090565b5f8061074e6111a6565b905061075b8185856111ad565b600191505092915050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600254905090565b60095481565b6107a26111bf565b600b60019054906101000a900460ff16156107f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e9906129bf565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055507f44025b4c6266facf728a25ba1ed858c89e2215e03094486152577b87636ea7ab600160405161083d91906124e3565b60405180910390a1565b61084f6111bf565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fb662f3bfb1735e6cf86c62e0de5e8ded221db1f328a15d104be3fd29977cf23e826040516108e991906124e3565b60405180910390a25050565b5f806108ff6111a6565b905061090c858285611246565b6109178585856112d8565b60019150509392505050565b5f6012905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b61095e6111bf565b5f5b84849050811015610a1a5782828281811061097e5761097d6129dd565b5b90506020020160208101906109939190612a0a565b600f5f8787858181106109a9576109a86129dd565b5b90506020020160208101906109be91906128af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080600101915050610960565b507fec332beaa25122e2aaf782a4144424379d8b725b55f4656dc18bf72b4050819984848484604051610a509493929190612bad565b60405180910390a150505050565b610a666111bf565b5f8183610a739190612c13565b90505f6064600a54610a859190612c73565b905080821115610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac190612ced565b60405180910390fd5b83600d8190555082600c81905550606482610ae59190612d0b565b600a819055507f35ad15e7f5e4a16b548e8916bd02c51847dde8d106f334b4edaaacf140e43c91600a54604051610b1c919061257f565b60405180910390a150505050565b610b326111bf565b5f4711610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b90612d96565b60405180910390fd5b5f4790505f8273ffffffffffffffffffffffffffffffffffffffff1682604051610b9d90612de1565b5f6040518083038185875af1925050503d805f8114610bd7576040519150601f19603f3d011682016040523d82523d5f602084013e610bdc565b606091505b5050905080610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1790612e3f565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff167f94b2de810873337ed265c5f8cf98c9cffefa06b8607f9a2f1fbaebdfbcfbef1c83604051610c66919061257f565b60405180910390a2505050565b610c7b6111bf565b806009819055507fee131fa00e37f4b10e0ad1bffe4a204cdc5e73b4c9bfab1e2de9ae163dde1edc81604051610cb1919061257f565b60405180910390a150565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610d096111bf565b610d125f611865565b565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d7090612945565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9c90612945565b8015610de75780601f10610dbe57610100808354040283529160200191610de7565b820191905f5260205f20905b815481529060010190602001808311610dca57829003601f168201915b5050505050905090565b600a5481565b600c5481565b610e056111bf565b5f610e0e61078b565b90505f61271082610e1f9190612c73565b90505f6103e8600584610e329190612d0b565b610e3c9190612c73565b9050818410158015610e4e5750808411155b610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8490612ecd565b60405180910390fd5b836008819055507fd9865007332e13f0dcab58b7d2a784fb5276e18f0c72e90c1a404e88a562898184604051610ec3919061257f565b60405180910390a150505050565b5f80610edb6111a6565b9050610ee88185856112d8565b600191505092915050565b60085481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610f836111bf565b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610fbd9190612693565b602060405180830381865afa158015610fd8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ffc9190612eff565b90505f8111611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790612f74565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b815260040161107b929190612f92565b6020604051808303815f875af1158015611097573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110bb9190612fcd565b508173ffffffffffffffffffffffffffffffffffffffff167f7e2c99819371db0a6fc6f4269fe872496e44f502df19ba3eae594b7a1598746082604051611102919061257f565b60405180910390a2505050565b6111176111bf565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611187575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161117e9190612693565b60405180910390fd5b61119081611865565b50565b600b60019054906101000a900460ff1681565b5f33905090565b6111ba8383836001611928565b505050565b6111c76111a6565b73ffffffffffffffffffffffffffffffffffffffff166111e5610d39565b73ffffffffffffffffffffffffffffffffffffffff1614611244576112086111a6565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161123b9190612693565b60405180910390fd5b565b5f6112518484610ef9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112d257818110156112c3578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016112ba93929190612ff8565b60405180910390fd5b6112d184848484035f611928565b5b50505050565b5f811161131a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113119061309d565b60405180910390fd5b600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615806113b75750600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561140c57600b60019054906101000a900460ff1661140b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140290613105565b60405180910390fd5b5b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156114b6575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156115095750600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156115735761271060095461151c61078b565b6115269190612d0b565b6115309190612c73565b821115611572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156990613193565b60405180910390fd5b5b600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615806116105750600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561164857503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156117305760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116f4575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b801561170157505f600a54115b1561172f57612710600a54836117179190612d0b565b6117219190612c73565b905061172e843083611af7565b5b5b600b5f9054906101000a900460ff16158015611798575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80156117eb5750600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611849575f6117fa30610cbc565b90506008548110611847575f60056008546118159190612c73565b6008546118229190612c13565b90508082106118395761183481611be7565b611845565b611844600854611be7565b5b505b505b61185f8484838561185a91906131b1565b611af7565b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611998575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161198f9190612693565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a08575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016119ff9190612693565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611af1578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611ae8919061257f565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b67575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611b5e9190612693565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bd7575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611bce9190612693565b60405180910390fd5b611be2838383611e37565b505050565b600b5f9054906101000a900460ff1615611c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2d9061322e565b60405180910390fd5b6001600b5f6101000a81548160ff0219169083151502179055505f4790505f6064600a54611c649190612c73565b90505f81600d5485611c769190612d0b565b611c809190612c73565b90505f805f80600c541115611cc85784600c5488611c9e9190612d0b565b611ca89190612c73565b9250600283611cb79190612c73565b91508183611cc591906131b1565b90505b5f8285611cd59190612c13565b9050611ce081612050565b5f8747611ced91906131b1565b90505f828783611cfd9190612d0b565b611d079190612c73565b90505f600c541115611d6f575f8183611d2091906131b1565b9050611d2c8582612286565b7fada09296b37f942dad4a0318731be5f9df8af6bf0364ffc08234b0a7d842186184868385604051611d61949392919061324c565b60405180910390a150611dad565b7fada09296b37f942dad4a0318731be5f9df8af6bf0364ffc08234b0a7d8421861835f8084604051611da494939291906132c8565b60405180910390a15b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015611e11573d5f803e3d5ffd5b505050505050505050505f600b5f6101000a81548160ff02191690831515021790555050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e87578060025f828254611e7b9190612c13565b92505081905550611f55565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611f10578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611f0793929190612ff8565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f9c578060025f8282540392505081905550611fe6565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612043919061257f565b60405180910390a3505050565b5f600267ffffffffffffffff81111561206c5761206b61330b565b5b60405190808252806020026020018201604052801561209a5781602001602082028036833780820191505090505b50905030815f815181106120b1576120b06129dd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612155573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612179919061334c565b8160018151811061218d5761218c6129dd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506121f33060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846111ad565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016122559594939291906133f8565b5f604051808303815f87803b15801561226c575f80fd5b505af115801561227e573d5f803e3d5ffd5b505050505050565b6122b23060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846111ad565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f806122fc610d39565b426040518863ffffffff1660e01b815260040161231e96959493929190613450565b60606040518083038185885af115801561233a573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061235f91906134af565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6123a882612366565b6123b28185612370565b93506123c2818560208601612380565b6123cb8161238e565b840191505092915050565b5f6020820190508181035f8301526123ee818461239e565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612427826123fe565b9050919050565b6124378161241d565b8114612441575f80fd5b50565b5f813590506124528161242e565b92915050565b5f819050919050565b61246a81612458565b8114612474575f80fd5b50565b5f8135905061248581612461565b92915050565b5f80604083850312156124a1576124a06123f6565b5b5f6124ae85828601612444565b92505060206124bf85828601612477565b9150509250929050565b5f8115159050919050565b6124dd816124c9565b82525050565b5f6020820190506124f65f8301846124d4565b92915050565b5f819050919050565b5f61251f61251a612515846123fe565b6124fc565b6123fe565b9050919050565b5f61253082612505565b9050919050565b5f61254182612526565b9050919050565b61255181612537565b82525050565b5f60208201905061256a5f830184612548565b92915050565b61257981612458565b82525050565b5f6020820190506125925f830184612570565b92915050565b6125a1816124c9565b81146125ab575f80fd5b50565b5f813590506125bc81612598565b92915050565b5f80604083850312156125d8576125d76123f6565b5b5f6125e585828601612444565b92505060206125f6858286016125ae565b9150509250929050565b5f805f60608486031215612617576126166123f6565b5b5f61262486828701612444565b935050602061263586828701612444565b925050604061264686828701612477565b9150509250925092565b5f60ff82169050919050565b61266581612650565b82525050565b5f60208201905061267e5f83018461265c565b92915050565b61268d8161241d565b82525050565b5f6020820190506126a65f830184612684565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126126cd576126cc6126ac565b5b8235905067ffffffffffffffff8111156126ea576126e96126b0565b5b602083019150836020820283011115612706576127056126b4565b5b9250929050565b5f8083601f840112612722576127216126ac565b5b8235905067ffffffffffffffff81111561273f5761273e6126b0565b5b60208301915083602082028301111561275b5761275a6126b4565b5b9250929050565b5f805f806040858703121561277a576127796123f6565b5b5f85013567ffffffffffffffff811115612797576127966123fa565b5b6127a3878288016126b8565b9450945050602085013567ffffffffffffffff8111156127c6576127c56123fa565b5b6127d28782880161270d565b925092505092959194509250565b5f80604083850312156127f6576127f56123f6565b5b5f61280385828601612477565b925050602061281485828601612477565b9150509250929050565b5f612828826123fe565b9050919050565b6128388161281e565b8114612842575f80fd5b50565b5f813590506128538161282f565b92915050565b5f6020828403121561286e5761286d6123f6565b5b5f61287b84828501612845565b91505092915050565b5f60208284031215612899576128986123f6565b5b5f6128a684828501612477565b91505092915050565b5f602082840312156128c4576128c36123f6565b5b5f6128d184828501612444565b91505092915050565b5f80604083850312156128f0576128ef6123f6565b5b5f6128fd85828601612444565b925050602061290e85828601612444565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061295c57607f821691505b60208210810361296f5761296e612918565b5b50919050565b7f54726164696e6720616c7265616479206f70656e0000000000000000000000005f82015250565b5f6129a9601483612370565b91506129b482612975565b602082019050919050565b5f6020820190508181035f8301526129d68161299d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60208284031215612a1f57612a1e6123f6565b5b5f612a2c848285016125ae565b91505092915050565b5f82825260208201905092915050565b5f819050919050565b612a578161241d565b82525050565b5f612a688383612a4e565b60208301905092915050565b5f612a826020840184612444565b905092915050565b5f602082019050919050565b5f612aa18385612a35565b9350612aac82612a45565b805f5b85811015612ae457612ac18284612a74565b612acb8882612a5d565b9750612ad683612a8a565b925050600181019050612aaf565b5085925050509392505050565b5f82825260208201905092915050565b5f819050919050565b612b13816124c9565b82525050565b5f612b248383612b0a565b60208301905092915050565b5f612b3e60208401846125ae565b905092915050565b5f602082019050919050565b5f612b5d8385612af1565b9350612b6882612b01565b805f5b85811015612ba057612b7d8284612b30565b612b878882612b19565b9750612b9283612b46565b925050600181019050612b6b565b5085925050509392505050565b5f6040820190508181035f830152612bc6818688612a96565b90508181036020830152612bdb818486612b52565b905095945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612c1d82612458565b9150612c2883612458565b9250828201905080821115612c4057612c3f612be6565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612c7d82612458565b9150612c8883612458565b925082612c9857612c97612c46565b5b828204905092915050565b7f596f752063616e206f6e6c79206c6f77657220666565730000000000000000005f82015250565b5f612cd7601783612370565b9150612ce282612ca3565b602082019050919050565b5f6020820190508181035f830152612d0481612ccb565b9050919050565b5f612d1582612458565b9150612d2083612458565b9250828202612d2e81612458565b91508282048414831517612d4557612d44612be6565b5b5092915050565b7f4e6f2045544820746f20776974686472617700000000000000000000000000005f82015250565b5f612d80601283612370565b9150612d8b82612d4c565b602082019050919050565b5f6020820190508181035f830152612dad81612d74565b9050919050565b5f81905092915050565b50565b5f612dcc5f83612db4565b9150612dd782612dbe565b5f82019050919050565b5f612deb82612dc1565b9150819050919050565b7f4661696c656420746f2073656e642045746865720000000000000000000000005f82015250565b5f612e29601483612370565b9150612e3482612df5565b602082019050919050565b5f6020820190508181035f830152612e5681612e1d565b9050919050565b7f536e4c205468726573686f6c64206d7573742062652077697468696e207468655f8201527f20616c6c6f7765642072616e6765000000000000000000000000000000000000602082015250565b5f612eb7602e83612370565b9150612ec282612e5d565b604082019050919050565b5f6020820190508181035f830152612ee481612eab565b9050919050565b5f81519050612ef981612461565b92915050565b5f60208284031215612f1457612f136123f6565b5b5f612f2184828501612eeb565b91505092915050565b7f4e6f7420656e6f75676820746f6b656e7320696e20636f6e74726163740000005f82015250565b5f612f5e601d83612370565b9150612f6982612f2a565b602082019050919050565b5f6020820190508181035f830152612f8b81612f52565b9050919050565b5f604082019050612fa55f830185612684565b612fb26020830184612570565b9392505050565b5f81519050612fc781612598565b92915050565b5f60208284031215612fe257612fe16123f6565b5b5f612fef84828501612fb9565b91505092915050565b5f60608201905061300b5f830186612684565b6130186020830185612570565b6130256040830184612570565b949350505050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e20300000000000000000000000000000000000000000000000000000602082015250565b5f613087602683612370565b91506130928261302d565b604082019050919050565b5f6020820190508181035f8301526130b48161307b565b9050919050565b7f54726164696e6720436c6f7365640000000000000000000000000000000000005f82015250565b5f6130ef600e83612370565b91506130fa826130bb565b602082019050919050565b5f6020820190508181035f83015261311c816130e3565b9050919050565b7f416d6f756e742065786365656473206d617820707572636861736520616d6f755f8201527f6e742e0000000000000000000000000000000000000000000000000000000000602082015250565b5f61317d602383612370565b915061318882613123565b604082019050919050565b5f6020820190508181035f8301526131aa81613171565b9050919050565b5f6131bb82612458565b91506131c683612458565b92508282039050818111156131de576131dd612be6565b5b92915050565b7f43757272656e746c7920696e207377617020616e64206c6971756966790000005f82015250565b5f613218601d83612370565b9150613223826131e4565b602082019050919050565b5f6020820190508181035f8301526132458161320c565b9050919050565b5f60808201905061325f5f830187612570565b61326c6020830186612570565b6132796040830185612570565b6132866060830184612570565b95945050505050565b5f819050919050565b5f6132b26132ad6132a88461328f565b6124fc565b612458565b9050919050565b6132c281613298565b82525050565b5f6080820190506132db5f830187612570565b6132e860208301866132b9565b6132f560408301856132b9565b6133026060830184612570565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f815190506133468161242e565b92915050565b5f60208284031215613361576133606123f6565b5b5f61336e84828501613338565b91505092915050565b5f81519050919050565b5f819050602082019050919050565b5f602082019050919050565b5f6133a682613377565b6133b08185612a35565b93506133bb83613381565b805f5b838110156133eb5781516133d28882612a5d565b97506133dd83613390565b9250506001810190506133be565b5085935050505092915050565b5f60a08201905061340b5f830188612570565b61341860208301876132b9565b818103604083015261342a818661339c565b90506134396060830185612684565b6134466080830184612570565b9695505050505050565b5f60c0820190506134635f830189612684565b6134706020830188612570565b61347d60408301876132b9565b61348a60608301866132b9565b6134976080830185612684565b6134a460a0830184612570565b979650505050505050565b5f805f606084860312156134c6576134c56123f6565b5b5f6134d386828701612eeb565b93505060206134e486828701612eeb565b92505060406134f586828701612eeb565b915050925092509256fea2646970667358221220048bcb8b869b15f09a5afd39e22ec858a1045f2b44e611a0a633626613cf311864736f6c634300081a00330000000000000000000000003ce6b2b11776698153d0c940683339ed952ef2230000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x6080604052600436106101c5575f3560e01c80636edc4388116100f657806398118cb411610094578063dd62ed3e11610063578063dd62ed3e146105fe578063ecfbe70c1461063a578063f2fde38b14610662578063ffb54a991461068a576101cc565b806398118cb4146105465780639d0014b114610570578063a9059cbb14610598578063b62f6e04146105d4576101cc565b806375f0a874116100d057806375f0a8741461049e5780638da5cb5b146104c857806395d89b41146104f257806396e1c7d11461051c576101cc565b80636edc43881461042457806370a082311461044c578063715018a614610488576101cc565b806323b872dd116101635780634cf1115d1161013d5780634cf1115d146103825780635e7f2dc1146103ac57806361231f77146103d4578063690d8320146103fc576101cc565b806323b872dd146102f2578063313ce5671461032e57806349bd5a5e14610358576101cc565b806318160ddd1161019f57806318160ddd14610260578063188866571461028a5780631eed1ac8146102b45780632333f9f1146102ca576101cc565b806306fdde03146101d0578063095ea7b3146101fa5780631694505e14610236576101cc565b366101cc57005b5f80fd5b3480156101db575f80fd5b506101e46106b4565b6040516101f191906123d6565b60405180910390f35b348015610205575f80fd5b50610220600480360381019061021b919061248b565b610744565b60405161022d91906124e3565b60405180910390f35b348015610241575f80fd5b5061024a610766565b6040516102579190612557565b60405180910390f35b34801561026b575f80fd5b5061027461078b565b604051610281919061257f565b60405180910390f35b348015610295575f80fd5b5061029e610794565b6040516102ab919061257f565b60405180910390f35b3480156102bf575f80fd5b506102c861079a565b005b3480156102d5575f80fd5b506102f060048036038101906102eb91906125c2565b610847565b005b3480156102fd575f80fd5b5061031860048036038101906103139190612600565b6108f5565b60405161032591906124e3565b60405180910390f35b348015610339575f80fd5b50610342610923565b60405161034f919061266b565b60405180910390f35b348015610363575f80fd5b5061036c61092b565b6040516103799190612693565b60405180910390f35b34801561038d575f80fd5b50610396610950565b6040516103a3919061257f565b60405180910390f35b3480156103b7575f80fd5b506103d260048036038101906103cd9190612762565b610956565b005b3480156103df575f80fd5b506103fa60048036038101906103f591906127e0565b610a5e565b005b348015610407575f80fd5b50610422600480360381019061041d9190612859565b610b2a565b005b34801561042f575f80fd5b5061044a60048036038101906104459190612884565b610c73565b005b348015610457575f80fd5b50610472600480360381019061046d91906128af565b610cbc565b60405161047f919061257f565b60405180910390f35b348015610493575f80fd5b5061049c610d01565b005b3480156104a9575f80fd5b506104b2610d14565b6040516104bf9190612693565b60405180910390f35b3480156104d3575f80fd5b506104dc610d39565b6040516104e99190612693565b60405180910390f35b3480156104fd575f80fd5b50610506610d61565b60405161051391906123d6565b60405180910390f35b348015610527575f80fd5b50610530610df1565b60405161053d919061257f565b60405180910390f35b348015610551575f80fd5b5061055a610df7565b604051610567919061257f565b60405180910390f35b34801561057b575f80fd5b5061059660048036038101906105919190612884565b610dfd565b005b3480156105a3575f80fd5b506105be60048036038101906105b9919061248b565b610ed1565b6040516105cb91906124e3565b60405180910390f35b3480156105df575f80fd5b506105e8610ef3565b6040516105f5919061257f565b60405180910390f35b348015610609575f80fd5b50610624600480360381019061061f91906128da565b610ef9565b604051610631919061257f565b60405180910390f35b348015610645575f80fd5b50610660600480360381019061065b91906128da565b610f7b565b005b34801561066d575f80fd5b50610688600480360381019061068391906128af565b61110f565b005b348015610695575f80fd5b5061069e611193565b6040516106ab91906124e3565b60405180910390f35b6060600380546106c390612945565b80601f01602080910402602001604051908101604052809291908181526020018280546106ef90612945565b801561073a5780601f106107115761010080835404028352916020019161073a565b820191905f5260205f20905b81548152906001019060200180831161071d57829003601f168201915b5050505050905090565b5f8061074e6111a6565b905061075b8185856111ad565b600191505092915050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600254905090565b60095481565b6107a26111bf565b600b60019054906101000a900460ff16156107f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e9906129bf565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055507f44025b4c6266facf728a25ba1ed858c89e2215e03094486152577b87636ea7ab600160405161083d91906124e3565b60405180910390a1565b61084f6111bf565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fb662f3bfb1735e6cf86c62e0de5e8ded221db1f328a15d104be3fd29977cf23e826040516108e991906124e3565b60405180910390a25050565b5f806108ff6111a6565b905061090c858285611246565b6109178585856112d8565b60019150509392505050565b5f6012905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b61095e6111bf565b5f5b84849050811015610a1a5782828281811061097e5761097d6129dd565b5b90506020020160208101906109939190612a0a565b600f5f8787858181106109a9576109a86129dd565b5b90506020020160208101906109be91906128af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080600101915050610960565b507fec332beaa25122e2aaf782a4144424379d8b725b55f4656dc18bf72b4050819984848484604051610a509493929190612bad565b60405180910390a150505050565b610a666111bf565b5f8183610a739190612c13565b90505f6064600a54610a859190612c73565b905080821115610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac190612ced565b60405180910390fd5b83600d8190555082600c81905550606482610ae59190612d0b565b600a819055507f35ad15e7f5e4a16b548e8916bd02c51847dde8d106f334b4edaaacf140e43c91600a54604051610b1c919061257f565b60405180910390a150505050565b610b326111bf565b5f4711610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b90612d96565b60405180910390fd5b5f4790505f8273ffffffffffffffffffffffffffffffffffffffff1682604051610b9d90612de1565b5f6040518083038185875af1925050503d805f8114610bd7576040519150601f19603f3d011682016040523d82523d5f602084013e610bdc565b606091505b5050905080610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1790612e3f565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff167f94b2de810873337ed265c5f8cf98c9cffefa06b8607f9a2f1fbaebdfbcfbef1c83604051610c66919061257f565b60405180910390a2505050565b610c7b6111bf565b806009819055507fee131fa00e37f4b10e0ad1bffe4a204cdc5e73b4c9bfab1e2de9ae163dde1edc81604051610cb1919061257f565b60405180910390a150565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610d096111bf565b610d125f611865565b565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d7090612945565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9c90612945565b8015610de75780601f10610dbe57610100808354040283529160200191610de7565b820191905f5260205f20905b815481529060010190602001808311610dca57829003601f168201915b5050505050905090565b600a5481565b600c5481565b610e056111bf565b5f610e0e61078b565b90505f61271082610e1f9190612c73565b90505f6103e8600584610e329190612d0b565b610e3c9190612c73565b9050818410158015610e4e5750808411155b610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8490612ecd565b60405180910390fd5b836008819055507fd9865007332e13f0dcab58b7d2a784fb5276e18f0c72e90c1a404e88a562898184604051610ec3919061257f565b60405180910390a150505050565b5f80610edb6111a6565b9050610ee88185856112d8565b600191505092915050565b60085481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610f836111bf565b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610fbd9190612693565b602060405180830381865afa158015610fd8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ffc9190612eff565b90505f8111611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790612f74565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b815260040161107b929190612f92565b6020604051808303815f875af1158015611097573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110bb9190612fcd565b508173ffffffffffffffffffffffffffffffffffffffff167f7e2c99819371db0a6fc6f4269fe872496e44f502df19ba3eae594b7a1598746082604051611102919061257f565b60405180910390a2505050565b6111176111bf565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611187575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161117e9190612693565b60405180910390fd5b61119081611865565b50565b600b60019054906101000a900460ff1681565b5f33905090565b6111ba8383836001611928565b505050565b6111c76111a6565b73ffffffffffffffffffffffffffffffffffffffff166111e5610d39565b73ffffffffffffffffffffffffffffffffffffffff1614611244576112086111a6565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161123b9190612693565b60405180910390fd5b565b5f6112518484610ef9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112d257818110156112c3578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016112ba93929190612ff8565b60405180910390fd5b6112d184848484035f611928565b5b50505050565b5f811161131a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113119061309d565b60405180910390fd5b600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615806113b75750600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561140c57600b60019054906101000a900460ff1661140b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140290613105565b60405180910390fd5b5b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156114b6575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156115095750600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156115735761271060095461151c61078b565b6115269190612d0b565b6115309190612c73565b821115611572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156990613193565b60405180910390fd5b5b600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615806116105750600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561164857503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156117305760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116f4575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b801561170157505f600a54115b1561172f57612710600a54836117179190612d0b565b6117219190612c73565b905061172e843083611af7565b5b5b600b5f9054906101000a900460ff16158015611798575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80156117eb5750600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611849575f6117fa30610cbc565b90506008548110611847575f60056008546118159190612c73565b6008546118229190612c13565b90508082106118395761183481611be7565b611845565b611844600854611be7565b5b505b505b61185f8484838561185a91906131b1565b611af7565b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611998575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161198f9190612693565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a08575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016119ff9190612693565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611af1578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611ae8919061257f565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b67575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611b5e9190612693565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bd7575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611bce9190612693565b60405180910390fd5b611be2838383611e37565b505050565b600b5f9054906101000a900460ff1615611c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2d9061322e565b60405180910390fd5b6001600b5f6101000a81548160ff0219169083151502179055505f4790505f6064600a54611c649190612c73565b90505f81600d5485611c769190612d0b565b611c809190612c73565b90505f805f80600c541115611cc85784600c5488611c9e9190612d0b565b611ca89190612c73565b9250600283611cb79190612c73565b91508183611cc591906131b1565b90505b5f8285611cd59190612c13565b9050611ce081612050565b5f8747611ced91906131b1565b90505f828783611cfd9190612d0b565b611d079190612c73565b90505f600c541115611d6f575f8183611d2091906131b1565b9050611d2c8582612286565b7fada09296b37f942dad4a0318731be5f9df8af6bf0364ffc08234b0a7d842186184868385604051611d61949392919061324c565b60405180910390a150611dad565b7fada09296b37f942dad4a0318731be5f9df8af6bf0364ffc08234b0a7d8421861835f8084604051611da494939291906132c8565b60405180910390a15b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015611e11573d5f803e3d5ffd5b505050505050505050505f600b5f6101000a81548160ff02191690831515021790555050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e87578060025f828254611e7b9190612c13565b92505081905550611f55565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611f10578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611f0793929190612ff8565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f9c578060025f8282540392505081905550611fe6565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612043919061257f565b60405180910390a3505050565b5f600267ffffffffffffffff81111561206c5761206b61330b565b5b60405190808252806020026020018201604052801561209a5781602001602082028036833780820191505090505b50905030815f815181106120b1576120b06129dd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612155573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612179919061334c565b8160018151811061218d5761218c6129dd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506121f33060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846111ad565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016122559594939291906133f8565b5f604051808303815f87803b15801561226c575f80fd5b505af115801561227e573d5f803e3d5ffd5b505050505050565b6122b23060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846111ad565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f806122fc610d39565b426040518863ffffffff1660e01b815260040161231e96959493929190613450565b60606040518083038185885af115801561233a573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061235f91906134af565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6123a882612366565b6123b28185612370565b93506123c2818560208601612380565b6123cb8161238e565b840191505092915050565b5f6020820190508181035f8301526123ee818461239e565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612427826123fe565b9050919050565b6124378161241d565b8114612441575f80fd5b50565b5f813590506124528161242e565b92915050565b5f819050919050565b61246a81612458565b8114612474575f80fd5b50565b5f8135905061248581612461565b92915050565b5f80604083850312156124a1576124a06123f6565b5b5f6124ae85828601612444565b92505060206124bf85828601612477565b9150509250929050565b5f8115159050919050565b6124dd816124c9565b82525050565b5f6020820190506124f65f8301846124d4565b92915050565b5f819050919050565b5f61251f61251a612515846123fe565b6124fc565b6123fe565b9050919050565b5f61253082612505565b9050919050565b5f61254182612526565b9050919050565b61255181612537565b82525050565b5f60208201905061256a5f830184612548565b92915050565b61257981612458565b82525050565b5f6020820190506125925f830184612570565b92915050565b6125a1816124c9565b81146125ab575f80fd5b50565b5f813590506125bc81612598565b92915050565b5f80604083850312156125d8576125d76123f6565b5b5f6125e585828601612444565b92505060206125f6858286016125ae565b9150509250929050565b5f805f60608486031215612617576126166123f6565b5b5f61262486828701612444565b935050602061263586828701612444565b925050604061264686828701612477565b9150509250925092565b5f60ff82169050919050565b61266581612650565b82525050565b5f60208201905061267e5f83018461265c565b92915050565b61268d8161241d565b82525050565b5f6020820190506126a65f830184612684565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126126cd576126cc6126ac565b5b8235905067ffffffffffffffff8111156126ea576126e96126b0565b5b602083019150836020820283011115612706576127056126b4565b5b9250929050565b5f8083601f840112612722576127216126ac565b5b8235905067ffffffffffffffff81111561273f5761273e6126b0565b5b60208301915083602082028301111561275b5761275a6126b4565b5b9250929050565b5f805f806040858703121561277a576127796123f6565b5b5f85013567ffffffffffffffff811115612797576127966123fa565b5b6127a3878288016126b8565b9450945050602085013567ffffffffffffffff8111156127c6576127c56123fa565b5b6127d28782880161270d565b925092505092959194509250565b5f80604083850312156127f6576127f56123f6565b5b5f61280385828601612477565b925050602061281485828601612477565b9150509250929050565b5f612828826123fe565b9050919050565b6128388161281e565b8114612842575f80fd5b50565b5f813590506128538161282f565b92915050565b5f6020828403121561286e5761286d6123f6565b5b5f61287b84828501612845565b91505092915050565b5f60208284031215612899576128986123f6565b5b5f6128a684828501612477565b91505092915050565b5f602082840312156128c4576128c36123f6565b5b5f6128d184828501612444565b91505092915050565b5f80604083850312156128f0576128ef6123f6565b5b5f6128fd85828601612444565b925050602061290e85828601612444565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061295c57607f821691505b60208210810361296f5761296e612918565b5b50919050565b7f54726164696e6720616c7265616479206f70656e0000000000000000000000005f82015250565b5f6129a9601483612370565b91506129b482612975565b602082019050919050565b5f6020820190508181035f8301526129d68161299d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60208284031215612a1f57612a1e6123f6565b5b5f612a2c848285016125ae565b91505092915050565b5f82825260208201905092915050565b5f819050919050565b612a578161241d565b82525050565b5f612a688383612a4e565b60208301905092915050565b5f612a826020840184612444565b905092915050565b5f602082019050919050565b5f612aa18385612a35565b9350612aac82612a45565b805f5b85811015612ae457612ac18284612a74565b612acb8882612a5d565b9750612ad683612a8a565b925050600181019050612aaf565b5085925050509392505050565b5f82825260208201905092915050565b5f819050919050565b612b13816124c9565b82525050565b5f612b248383612b0a565b60208301905092915050565b5f612b3e60208401846125ae565b905092915050565b5f602082019050919050565b5f612b5d8385612af1565b9350612b6882612b01565b805f5b85811015612ba057612b7d8284612b30565b612b878882612b19565b9750612b9283612b46565b925050600181019050612b6b565b5085925050509392505050565b5f6040820190508181035f830152612bc6818688612a96565b90508181036020830152612bdb818486612b52565b905095945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612c1d82612458565b9150612c2883612458565b9250828201905080821115612c4057612c3f612be6565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612c7d82612458565b9150612c8883612458565b925082612c9857612c97612c46565b5b828204905092915050565b7f596f752063616e206f6e6c79206c6f77657220666565730000000000000000005f82015250565b5f612cd7601783612370565b9150612ce282612ca3565b602082019050919050565b5f6020820190508181035f830152612d0481612ccb565b9050919050565b5f612d1582612458565b9150612d2083612458565b9250828202612d2e81612458565b91508282048414831517612d4557612d44612be6565b5b5092915050565b7f4e6f2045544820746f20776974686472617700000000000000000000000000005f82015250565b5f612d80601283612370565b9150612d8b82612d4c565b602082019050919050565b5f6020820190508181035f830152612dad81612d74565b9050919050565b5f81905092915050565b50565b5f612dcc5f83612db4565b9150612dd782612dbe565b5f82019050919050565b5f612deb82612dc1565b9150819050919050565b7f4661696c656420746f2073656e642045746865720000000000000000000000005f82015250565b5f612e29601483612370565b9150612e3482612df5565b602082019050919050565b5f6020820190508181035f830152612e5681612e1d565b9050919050565b7f536e4c205468726573686f6c64206d7573742062652077697468696e207468655f8201527f20616c6c6f7765642072616e6765000000000000000000000000000000000000602082015250565b5f612eb7602e83612370565b9150612ec282612e5d565b604082019050919050565b5f6020820190508181035f830152612ee481612eab565b9050919050565b5f81519050612ef981612461565b92915050565b5f60208284031215612f1457612f136123f6565b5b5f612f2184828501612eeb565b91505092915050565b7f4e6f7420656e6f75676820746f6b656e7320696e20636f6e74726163740000005f82015250565b5f612f5e601d83612370565b9150612f6982612f2a565b602082019050919050565b5f6020820190508181035f830152612f8b81612f52565b9050919050565b5f604082019050612fa55f830185612684565b612fb26020830184612570565b9392505050565b5f81519050612fc781612598565b92915050565b5f60208284031215612fe257612fe16123f6565b5b5f612fef84828501612fb9565b91505092915050565b5f60608201905061300b5f830186612684565b6130186020830185612570565b6130256040830184612570565b949350505050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e20300000000000000000000000000000000000000000000000000000602082015250565b5f613087602683612370565b91506130928261302d565b604082019050919050565b5f6020820190508181035f8301526130b48161307b565b9050919050565b7f54726164696e6720436c6f7365640000000000000000000000000000000000005f82015250565b5f6130ef600e83612370565b91506130fa826130bb565b602082019050919050565b5f6020820190508181035f83015261311c816130e3565b9050919050565b7f416d6f756e742065786365656473206d617820707572636861736520616d6f755f8201527f6e742e0000000000000000000000000000000000000000000000000000000000602082015250565b5f61317d602383612370565b915061318882613123565b604082019050919050565b5f6020820190508181035f8301526131aa81613171565b9050919050565b5f6131bb82612458565b91506131c683612458565b92508282039050818111156131de576131dd612be6565b5b92915050565b7f43757272656e746c7920696e207377617020616e64206c6971756966790000005f82015250565b5f613218601d83612370565b9150613223826131e4565b602082019050919050565b5f6020820190508181035f8301526132458161320c565b9050919050565b5f60808201905061325f5f830187612570565b61326c6020830186612570565b6132796040830185612570565b6132866060830184612570565b95945050505050565b5f819050919050565b5f6132b26132ad6132a88461328f565b6124fc565b612458565b9050919050565b6132c281613298565b82525050565b5f6080820190506132db5f830187612570565b6132e860208301866132b9565b6132f560408301856132b9565b6133026060830184612570565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f815190506133468161242e565b92915050565b5f60208284031215613361576133606123f6565b5b5f61336e84828501613338565b91505092915050565b5f81519050919050565b5f819050602082019050919050565b5f602082019050919050565b5f6133a682613377565b6133b08185612a35565b93506133bb83613381565b805f5b838110156133eb5781516133d28882612a5d565b97506133dd83613390565b9250506001810190506133be565b5085935050505092915050565b5f60a08201905061340b5f830188612570565b61341860208301876132b9565b818103604083015261342a818661339c565b90506134396060830185612684565b6134466080830184612570565b9695505050505050565b5f60c0820190506134635f830189612684565b6134706020830188612570565b61347d60408301876132b9565b61348a60608301866132b9565b6134976080830185612684565b6134a460a0830184612570565b979650505050505050565b5f805f606084860312156134c6576134c56123f6565b5b5f6134d386828701612eeb565b93505060206134e486828701612eeb565b92505060406134f586828701612eeb565b915050925092509256fea2646970667358221220048bcb8b869b15f09a5afd39e22ec858a1045f2b44e611a0a633626613cf311864736f6c634300081a0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000003ce6b2b11776698153d0c940683339ed952ef2230000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0x3CE6B2B11776698153D0c940683339ED952ef223
Arg [1] : _uniRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000003ce6b2b11776698153d0c940683339ed952ef223
Arg [1] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


Deployed Bytecode Sourcemap

31863:8747:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16698:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18991:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31942:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17800:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32063:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37938:180;;;;;;;;;;;;;:::i;:::-;;38775:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19759:249;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17651:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31990:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32224:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38998:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37349:581;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39329:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38126:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17962:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3581:103;;;;;;;;;;;;;:::i;:::-;;32252:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2906:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16908:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32095:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32190:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38277:490;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18285:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32025:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18530:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39665:338;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3839:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32160:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16698:91;16743:13;16776:5;16769:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16698:91;:::o;18991:190::-;19064:4;19081:13;19097:12;:10;:12::i;:::-;19081:28;;19120:31;19129:5;19136:7;19145:5;19120:8;:31::i;:::-;19169:4;19162:11;;;18991:190;;;;:::o;31942:41::-;;;;;;;;;;;;;:::o;17800:99::-;17852:7;17879:12;;17872:19;;17800:99;:::o;32063:25::-;;;;:::o;37938:180::-;2792:13;:11;:13::i;:::-;38003:11:::1;;;;;;;;;;;38002:12;37994:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;38064:4;38050:11;;:18;;;;;;;;;;;;;;;;;;38084:26;38105:4;38084:26;;;;;;:::i;:::-;;;;;;;;37938:180::o:0;38775:215::-;2792:13;:11;:13::i;:::-;38918:8:::1;38886:20;:29;38907:7;38886:29;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;38964:7;38942:40;;;38973:8;38942:40;;;;;;:::i;:::-;;;;;;;;38775:215:::0;;:::o;19759:249::-;19846:4;19863:15;19881:12;:10;:12::i;:::-;19863:30;;19904:37;19920:4;19926:7;19935:5;19904:15;:37::i;:::-;19952:26;19962:4;19968:2;19972:5;19952:9;:26::i;:::-;19996:4;19989:11;;;19759:249;;;;;:::o;17651:84::-;17700:5;17725:2;17718:9;;17651:84;:::o;31990:28::-;;;;;;;;;;;;;:::o;32224:21::-;;;;:::o;38998:323::-;2792:13;:11;:13::i;:::-;39140:6:::1;39136:117;39157:7;;:14;;39153:1;:18;39136:117;;;39230:8;;39239:1;39230:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;39195:20;:32;39216:7;;39224:1;39216:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;39195:32;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39174:4;;;;;;;39136:117;;;;39268:45;39295:7;;39304:8;;39268:45;;;;;;;;;:::i;:::-;;;;;;;;38998:323:::0;;;;:::o;37349:581::-;2792:13;:11;:13::i;:::-;37494:23:::1;37547:24;37520;:51;;;;:::i;:::-;37494:77;;37582:30;37628:3;37615:10;;:16;;;;:::i;:::-;37582:49;;37669:22;37650:15;:41;;37642:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;37753:24;37744:6;:33;;;;37803:24;37788:12;:39;;;;37871:3;37853:15;:21;;;;:::i;:::-;37840:10;:34;;;;37900:22;37911:10;;37900:22;;;;;;:::i;:::-;;;;;;;;37473:457;;37349:581:::0;;:::o;39329:328::-;2792:13;:11;:13::i;:::-;39433:1:::1;39409:21;:25;39401:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;39468:14;39485:21;39468:38;;39518:9;39533:3;:8;;39549:6;39533:27;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39517:43;;;39579:4;39571:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;39637:3;39624:25;;;39642:6;39624:25;;;;;;:::i;:::-;;;;;;;;39390:267;;39329:328:::0;:::o;38126:143::-;2792:13;:11;:13::i;:::-;38211:6:::1;38195:13;:22;;;;38233:28;38254:6;38233:28;;;;;;:::i;:::-;;;;;;;;38126:143:::0;:::o;17962:118::-;18027:7;18054:9;:18;18064:7;18054:18;;;;;;;;;;;;;;;;18047:25;;17962:118;;;:::o;3581:103::-;2792:13;:11;:13::i;:::-;3646:30:::1;3673:1;3646:18;:30::i;:::-;3581:103::o:0;32252:30::-;;;;;;;;;;;;;:::o;2906:87::-;2952:7;2979:6;;;;;;;;;;;2972:13;;2906:87;:::o;16908:95::-;16955:13;16988:7;16981:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16908:95;:::o;32095:22::-;;;;:::o;32190:27::-;;;;:::o;38277:490::-;2792:13;:11;:13::i;:::-;38347:26:::1;38376:13;:11;:13::i;:::-;38347:42;;38400:30;38454:5;38433:18;:26;;;;:::i;:::-;38400:59;;38471:30;38529:4;38525:1;38504:18;:22;;;;:::i;:::-;:29;;;;:::i;:::-;38471:62;;38565:22;38555:6;:32;;:68;;;;;38601:22;38591:6;:32;;38555:68;38547:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;38707:6;38685:19;:28;;;;38729:30;38752:6;38729:30;;;;;;:::i;:::-;;;;;;;;38336:431;;;38277:490:::0;:::o;18285:182::-;18354:4;18371:13;18387:12;:10;:12::i;:::-;18371:28;;18410:27;18420:5;18427:2;18431:5;18410:9;:27::i;:::-;18455:4;18448:11;;;18285:182;;;;:::o;32025:31::-;;;;:::o;18530:142::-;18610:7;18637:11;:18;18649:5;18637:18;;;;;;;;;;;;;;;:27;18656:7;18637:27;;;;;;;;;;;;;;;;18630:34;;18530:142;;;;:::o;39665:338::-;2792:13;:11;:13::i;:::-;39768:15:::1;39801:5;39786:32;;;39827:4;39786:47;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39768:65;;39862:1;39852:7;:11;39844:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;39923:5;39908:31;;;39940:2;39944:7;39908:44;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39983:2;39968:27;;;39987:7;39968:27;;;;;;:::i;:::-;;;;;;;;39757:246;39665:338:::0;;:::o;3839:220::-;2792:13;:11;:13::i;:::-;3944:1:::1;3924:22;;:8;:22;;::::0;3920:93:::1;;3998:1;3970:31;;;;;;;;;;;:::i;:::-;;;;;;;;3920:93;4023:28;4042:8;4023:18;:28::i;:::-;3839:220:::0;:::o;32160:23::-;;;;;;;;;;;;;:::o;915:98::-;968:7;995:10;988:17;;915:98;:::o;23826:130::-;23911:37;23920:5;23927:7;23936:5;23943:4;23911:8;:37::i;:::-;23826:130;;;:::o;3071:166::-;3142:12;:10;:12::i;:::-;3131:23;;:7;:5;:7::i;:::-;:23;;;3127:103;;3205:12;:10;:12::i;:::-;3178:40;;;;;;;;;;;:::i;:::-;;;;;;;;3127:103;3071:166::o;25542:487::-;25642:24;25669:25;25679:5;25686:7;25669:9;:25::i;:::-;25642:52;;25729:17;25709:16;:37;25705:317;;25786:5;25767:16;:24;25763:132;;;25846:7;25855:16;25873:5;25819:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;25763:132;25938:57;25947:5;25954:7;25982:5;25963:16;:24;25989:5;25938:8;:57::i;:::-;25705:317;25631:398;25542:487;;;:::o;35836:1505::-;35973:1;35964:6;:10;35956:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36032:20;:26;36053:4;36032:26;;;;;;;;;;;;;;;;;;;;;;;;;36031:27;:56;;;;36063:20;:24;36084:2;36063:24;;;;;;;;;;;;;;;;;;;;;;;;;36062:25;36031:56;36028:126;;;36112:11;;;;;;;;;;;36104:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;36028:126;36166:17;36212:13;;;;;;;;;;;36204:21;;:4;:21;;;:55;;;;;36243:15;;;;;;;;;;;36229:30;;:2;:30;;;;36204:55;:84;;;;;36264:20;:24;36285:2;36264:24;;;;;;;;;;;;;;;;;;;;;;;;;36263:25;36204:84;36200:212;;;36357:3;36341:13;;36325;:11;:13::i;:::-;:29;;;;:::i;:::-;:35;;;;:::i;:::-;36315:6;:45;;36307:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;36200:212;36429:20;:26;36450:4;36429:26;;;;;;;;;;;;;;;;;;;;;;;;;36428:27;:56;;;;36460:20;:24;36481:2;36460:24;;;;;;;;;;;;;;;;;;;;;;;;;36459:25;36428:56;36427:83;;;;;36505:4;36489:21;;:4;:21;;;;36427:83;36424:319;;;36538:13;;;;;;;;;;;36530:21;;:4;:21;;;:44;;;;36561:13;;;;;;;;;;;36555:19;;:2;:19;;;36530:44;36529:64;;;;;36592:1;36579:10;;:14;36529:64;36526:206;;;36647:3;36634:10;;36625:6;:19;;;;:::i;:::-;:25;;;;:::i;:::-;36613:37;;36669:47;36685:4;36699;36706:9;36669:15;:47::i;:::-;36526:206;36424:319;36760:16;;;;;;;;;;;36759:17;:40;;;;;36786:13;;;;;;;;;;;36780:19;;:2;:19;;;36759:40;:71;;;;;36804:20;:26;36825:4;36804:26;;;;;;;;;;;;;;;;;;;;;;;;;36803:27;36759:71;36755:521;;;36847:15;36865:24;36883:4;36865:9;:24::i;:::-;36847:42;;36918:19;;36907:7;:30;36904:361;;36958:21;37027:1;37005:19;;:23;;;;:::i;:::-;36982:19;;:47;;;;:::i;:::-;36958:71;;37063:13;37052:7;:24;37049:201;;37100:29;37115:13;37100:14;:29::i;:::-;37049:201;;;37195:35;37210:19;;37195:14;:35::i;:::-;37049:201;36939:326;36904:361;36832:444;36755:521;37288:45;37304:4;37310:2;37322:9;37315:6;:16;;;;:::i;:::-;37288:15;:45::i;:::-;35945:1396;35836:1505;;;:::o;4219:191::-;4293:16;4312:6;;;;;;;;;;;4293:25;;4338:8;4329:6;;:17;;;;;;;;;;;;;;;;;;4393:8;4362:40;;4383:8;4362:40;;;;;;;;;;;;4282:128;4219:191;:::o;24807:443::-;24937:1;24920:19;;:5;:19;;;24916:91;;24992:1;24963:32;;;;;;;;;;;:::i;:::-;;;;;;;;24916:91;25040:1;25021:21;;:7;:21;;;25017:92;;25094:1;25066:31;;;;;;;;;;;:::i;:::-;;;;;;;;25017:92;25149:5;25119:11;:18;25131:5;25119:18;;;;;;;;;;;;;;;:27;25138:7;25119:27;;;;;;;;;;;;;;;:35;;;;25169:9;25165:78;;;25216:7;25200:31;;25209:5;25200:31;;;25225:5;25200:31;;;;;;:::i;:::-;;;;;;;;25165:78;24807:443;;;;:::o;20393:316::-;20501:1;20485:18;;:4;:18;;;20481:88;;20554:1;20527:30;;;;;;;;;;;:::i;:::-;;;;;;;;20481:88;20597:1;20583:16;;:2;:16;;;20579:88;;20652:1;20623:32;;;;;;;;;;;:::i;:::-;;;;;;;;20579:88;20677:24;20685:4;20691:2;20695:5;20677:7;:24::i;:::-;20393:316;;;:::o;33588:1251::-;32390:16;;;;;;;;;;;32389:17;32381:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;32470:4;32451:16;;:23;;;;;;;;;;;;;;;;;;33667:22:::1;33692:21;33667:46;;33724:16;33756:3;33743:10;;:16;;;;:::i;:::-;33724:35;;33770:14;33814:8;33805:6;;33787:15;:24;;;;:::i;:::-;:35;;;;:::i;:::-;33770:52;;33833:20;33868:26:::0;33909:22:::1;33967:1:::0;33952:12:::1;;:16;33948:222;;;34033:8;34018:12;;34000:15;:30;;;;:::i;:::-;:41;;;;:::i;:::-;33985:56;;34092:1;34077:12;:16;;;;:::i;:::-;34056:37;;34140:18;34125:12;:33;;;;:::i;:::-;34108:50;;33948:222;34182:14;34208:18;34199:6;:27;;;;:::i;:::-;34182:44;;34237:24;34254:6;34237:16;:24::i;:::-;34272:22;34321:14;34297:21;:38;;;;:::i;:::-;34272:63;;34346:23;34398:6;34389;34372:14;:23;;;;:::i;:::-;:32;;;;:::i;:::-;34346:58;;34444:1;34429:12;;:16;34425:346;;;34462:23;34505:15;34488:14;:32;;;;:::i;:::-;34462:58;;34535:45;34548:14;34564:15;34535:12;:45::i;:::-;34600:74;34617:6;34625:14;34641:15;34658;34600:74;;;;;;;;;:::i;:::-;;;;;;;;34447:239;34425:346;;;34712:47;34729:6;34737:1;34740::::0;34743:15:::1;34712:47;;;;;;;;;:::i;:::-;;;;;;;;34425:346;34789:15;;;;;;;;;;;34781:33;;:50;34815:15;34781:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;33654:1185;;;;;;;;;32516:5:::0;32497:16;;:24;;;;;;;;;;;;;;;;;;33588:1251;:::o;21033:1135::-;21139:1;21123:18;;:4;:18;;;21119:552;;21277:5;21261:12;;:21;;;;;;;:::i;:::-;;;;;;;;21119:552;;;21315:19;21337:9;:15;21347:4;21337:15;;;;;;;;;;;;;;;;21315:37;;21385:5;21371:11;:19;21367:117;;;21443:4;21449:11;21462:5;21418:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21367:117;21639:5;21625:11;:19;21607:9;:15;21617:4;21607:15;;;;;;;;;;;;;;;:37;;;;21300:371;21119:552;21701:1;21687:16;;:2;:16;;;21683:435;;21869:5;21853:12;;:21;;;;;;;;;;;21683:435;;;22086:5;22069:9;:13;22079:2;22069:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;21683:435;22150:2;22135:25;;22144:4;22135:25;;;22154:5;22135:25;;;;;;:::i;:::-;;;;;;;;21033:1135;;;:::o;35311:517::-;35377:21;35415:1;35401:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35377:40;;35446:4;35428;35433:1;35428:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;35472:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35462:4;35467:1;35462:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;35507:104;35538:4;35567:15;;;;;;;;;;;35599:11;35507:8;:104::i;:::-;35624:15;;;;;;;;;;;:66;;;35705:11;35731:1;35747:4;35774;35794:15;35624:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35366:462;35311:517;:::o;34847:456::-;34948:104;34979:4;35008:15;;;;;;;;;;;35040:11;34948:8;:104::i;:::-;35095:15;;;;;;;;;;;:31;;;35134:9;35167:4;35187:11;35213:1;35230;35247:7;:5;:7::i;:::-;35269:15;35095:200;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;34847:456;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1446:117;1555:1;1552;1545:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:60::-;3367:3;3388:5;3381:12;;3339:60;;;:::o;3405:142::-;3455:9;3488:53;3506:34;3515:24;3533:5;3515:24;:::i;:::-;3506:34;:::i;:::-;3488:53;:::i;:::-;3475:66;;3405:142;;;:::o;3553:126::-;3603:9;3636:37;3667:5;3636:37;:::i;:::-;3623:50;;3553:126;;;:::o;3685:153::-;3762:9;3795:37;3826:5;3795:37;:::i;:::-;3782:50;;3685:153;;;:::o;3844:185::-;3958:64;4016:5;3958:64;:::i;:::-;3953:3;3946:77;3844:185;;:::o;4035:276::-;4155:4;4193:2;4182:9;4178:18;4170:26;;4206:98;4301:1;4290:9;4286:17;4277:6;4206:98;:::i;:::-;4035:276;;;;:::o;4317:118::-;4404:24;4422:5;4404:24;:::i;:::-;4399:3;4392:37;4317:118;;:::o;4441:222::-;4534:4;4572:2;4561:9;4557:18;4549:26;;4585:71;4653:1;4642:9;4638:17;4629:6;4585:71;:::i;:::-;4441:222;;;;:::o;4669:116::-;4739:21;4754:5;4739:21;:::i;:::-;4732:5;4729:32;4719:60;;4775:1;4772;4765:12;4719:60;4669:116;:::o;4791:133::-;4834:5;4872:6;4859:20;4850:29;;4888:30;4912:5;4888:30;:::i;:::-;4791:133;;;;:::o;4930:468::-;4995:6;5003;5052:2;5040:9;5031:7;5027:23;5023:32;5020:119;;;5058:79;;:::i;:::-;5020:119;5178:1;5203:53;5248:7;5239:6;5228:9;5224:22;5203:53;:::i;:::-;5193:63;;5149:117;5305:2;5331:50;5373:7;5364:6;5353:9;5349:22;5331:50;:::i;:::-;5321:60;;5276:115;4930:468;;;;;:::o;5404:619::-;5481:6;5489;5497;5546:2;5534:9;5525:7;5521:23;5517:32;5514:119;;;5552:79;;:::i;:::-;5514:119;5672:1;5697:53;5742:7;5733:6;5722:9;5718:22;5697:53;:::i;:::-;5687:63;;5643:117;5799:2;5825:53;5870:7;5861:6;5850:9;5846:22;5825:53;:::i;:::-;5815:63;;5770:118;5927:2;5953:53;5998:7;5989:6;5978:9;5974:22;5953:53;:::i;:::-;5943:63;;5898:118;5404:619;;;;;:::o;6029:86::-;6064:7;6104:4;6097:5;6093:16;6082:27;;6029:86;;;:::o;6121:112::-;6204:22;6220:5;6204:22;:::i;:::-;6199:3;6192:35;6121:112;;:::o;6239:214::-;6328:4;6366:2;6355:9;6351:18;6343:26;;6379:67;6443:1;6432:9;6428:17;6419:6;6379:67;:::i;:::-;6239:214;;;;:::o;6459:118::-;6546:24;6564:5;6546:24;:::i;:::-;6541:3;6534:37;6459:118;;:::o;6583:222::-;6676:4;6714:2;6703:9;6699:18;6691:26;;6727:71;6795:1;6784:9;6780:17;6771:6;6727:71;:::i;:::-;6583:222;;;;:::o;6811:117::-;6920:1;6917;6910:12;6934:117;7043:1;7040;7033:12;7057:117;7166:1;7163;7156:12;7197:568;7270:8;7280:6;7330:3;7323:4;7315:6;7311:17;7307:27;7297:122;;7338:79;;:::i;:::-;7297:122;7451:6;7438:20;7428:30;;7481:18;7473:6;7470:30;7467:117;;;7503:79;;:::i;:::-;7467:117;7617:4;7609:6;7605:17;7593:29;;7671:3;7663:4;7655:6;7651:17;7641:8;7637:32;7634:41;7631:128;;;7678:79;;:::i;:::-;7631:128;7197:568;;;;;:::o;7785:565::-;7855:8;7865:6;7915:3;7908:4;7900:6;7896:17;7892:27;7882:122;;7923:79;;:::i;:::-;7882:122;8036:6;8023:20;8013:30;;8066:18;8058:6;8055:30;8052:117;;;8088:79;;:::i;:::-;8052:117;8202:4;8194:6;8190:17;8178:29;;8256:3;8248:4;8240:6;8236:17;8226:8;8222:32;8219:41;8216:128;;;8263:79;;:::i;:::-;8216:128;7785:565;;;;;:::o;8356:928::-;8475:6;8483;8491;8499;8548:2;8536:9;8527:7;8523:23;8519:32;8516:119;;;8554:79;;:::i;:::-;8516:119;8702:1;8691:9;8687:17;8674:31;8732:18;8724:6;8721:30;8718:117;;;8754:79;;:::i;:::-;8718:117;8867:80;8939:7;8930:6;8919:9;8915:22;8867:80;:::i;:::-;8849:98;;;;8645:312;9024:2;9013:9;9009:18;8996:32;9055:18;9047:6;9044:30;9041:117;;;9077:79;;:::i;:::-;9041:117;9190:77;9259:7;9250:6;9239:9;9235:22;9190:77;:::i;:::-;9172:95;;;;8967:310;8356:928;;;;;;;:::o;9290:474::-;9358:6;9366;9415:2;9403:9;9394:7;9390:23;9386:32;9383:119;;;9421:79;;:::i;:::-;9383:119;9541:1;9566:53;9611:7;9602:6;9591:9;9587:22;9566:53;:::i;:::-;9556:63;;9512:117;9668:2;9694:53;9739:7;9730:6;9719:9;9715:22;9694:53;:::i;:::-;9684:63;;9639:118;9290:474;;;;;:::o;9770:104::-;9815:7;9844:24;9862:5;9844:24;:::i;:::-;9833:35;;9770:104;;;:::o;9880:138::-;9961:32;9987:5;9961:32;:::i;:::-;9954:5;9951:43;9941:71;;10008:1;10005;9998:12;9941:71;9880:138;:::o;10024:155::-;10078:5;10116:6;10103:20;10094:29;;10132:41;10167:5;10132:41;:::i;:::-;10024:155;;;;:::o;10185:345::-;10252:6;10301:2;10289:9;10280:7;10276:23;10272:32;10269:119;;;10307:79;;:::i;:::-;10269:119;10427:1;10452:61;10505:7;10496:6;10485:9;10481:22;10452:61;:::i;:::-;10442:71;;10398:125;10185:345;;;;:::o;10536:329::-;10595:6;10644:2;10632:9;10623:7;10619:23;10615:32;10612:119;;;10650:79;;:::i;:::-;10612:119;10770:1;10795:53;10840:7;10831:6;10820:9;10816:22;10795:53;:::i;:::-;10785:63;;10741:117;10536:329;;;;:::o;10871:::-;10930:6;10979:2;10967:9;10958:7;10954:23;10950:32;10947:119;;;10985:79;;:::i;:::-;10947:119;11105:1;11130:53;11175:7;11166:6;11155:9;11151:22;11130:53;:::i;:::-;11120:63;;11076:117;10871:329;;;;:::o;11206:474::-;11274:6;11282;11331:2;11319:9;11310:7;11306:23;11302:32;11299:119;;;11337:79;;:::i;:::-;11299:119;11457:1;11482:53;11527:7;11518:6;11507:9;11503:22;11482:53;:::i;:::-;11472:63;;11428:117;11584:2;11610:53;11655:7;11646:6;11635:9;11631:22;11610:53;:::i;:::-;11600:63;;11555:118;11206:474;;;;;:::o;11686:180::-;11734:77;11731:1;11724:88;11831:4;11828:1;11821:15;11855:4;11852:1;11845:15;11872:320;11916:6;11953:1;11947:4;11943:12;11933:22;;12000:1;11994:4;11990:12;12021:18;12011:81;;12077:4;12069:6;12065:17;12055:27;;12011:81;12139:2;12131:6;12128:14;12108:18;12105:38;12102:84;;12158:18;;:::i;:::-;12102:84;11923:269;11872:320;;;:::o;12198:170::-;12338:22;12334:1;12326:6;12322:14;12315:46;12198:170;:::o;12374:366::-;12516:3;12537:67;12601:2;12596:3;12537:67;:::i;:::-;12530:74;;12613:93;12702:3;12613:93;:::i;:::-;12731:2;12726:3;12722:12;12715:19;;12374:366;;;:::o;12746:419::-;12912:4;12950:2;12939:9;12935:18;12927:26;;12999:9;12993:4;12989:20;12985:1;12974:9;12970:17;12963:47;13027:131;13153:4;13027:131;:::i;:::-;13019:139;;12746:419;;;:::o;13171:180::-;13219:77;13216:1;13209:88;13316:4;13313:1;13306:15;13340:4;13337:1;13330:15;13357:323;13413:6;13462:2;13450:9;13441:7;13437:23;13433:32;13430:119;;;13468:79;;:::i;:::-;13430:119;13588:1;13613:50;13655:7;13646:6;13635:9;13631:22;13613:50;:::i;:::-;13603:60;;13559:114;13357:323;;;;:::o;13686:184::-;13785:11;13819:6;13814:3;13807:19;13859:4;13854:3;13850:14;13835:29;;13686:184;;;;:::o;13876:102::-;13945:4;13968:3;13960:11;;13876:102;;;:::o;13984:108::-;14061:24;14079:5;14061:24;:::i;:::-;14056:3;14049:37;13984:108;;:::o;14098:179::-;14167:10;14188:46;14230:3;14222:6;14188:46;:::i;:::-;14266:4;14261:3;14257:14;14243:28;;14098:179;;;;:::o;14283:122::-;14335:5;14360:39;14395:2;14390:3;14386:12;14381:3;14360:39;:::i;:::-;14351:48;;14283:122;;;;:::o;14411:115::-;14483:4;14515;14510:3;14506:14;14498:22;;14411:115;;;:::o;14562:699::-;14691:3;14714:86;14793:6;14788:3;14714:86;:::i;:::-;14707:93;;14824:58;14876:5;14824:58;:::i;:::-;14905:7;14936:1;14921:315;14946:6;14943:1;14940:13;14921:315;;;15016:42;15051:6;15042:7;15016:42;:::i;:::-;15078:63;15137:3;15122:13;15078:63;:::i;:::-;15071:70;;15164:62;15219:6;15164:62;:::i;:::-;15154:72;;14981:255;14968:1;14965;14961:9;14956:14;;14921:315;;;14925:14;15252:3;15245:10;;14696:565;;14562:699;;;;;:::o;15267:181::-;15363:11;15397:6;15392:3;15385:19;15437:4;15432:3;15428:14;15413:29;;15267:181;;;;:::o;15454:99::-;15520:4;15543:3;15535:11;;15454:99;;;:::o;15559:::-;15630:21;15645:5;15630:21;:::i;:::-;15625:3;15618:34;15559:99;;:::o;15664:167::-;15727:10;15748:40;15784:3;15776:6;15748:40;:::i;:::-;15820:4;15815:3;15811:14;15797:28;;15664:167;;;;:::o;15837:116::-;15886:5;15911:36;15943:2;15938:3;15934:12;15929:3;15911:36;:::i;:::-;15902:45;;15837:116;;;;:::o;15959:112::-;16028:4;16060;16055:3;16051:14;16043:22;;15959:112;;;:::o;16101:675::-;16224:3;16247:83;16323:6;16318:3;16247:83;:::i;:::-;16240:90;;16354:55;16403:5;16354:55;:::i;:::-;16432:7;16463:1;16448:303;16473:6;16470:1;16467:13;16448:303;;;16543:39;16575:6;16566:7;16543:39;:::i;:::-;16602:57;16655:3;16640:13;16602:57;:::i;:::-;16595:64;;16682:59;16734:6;16682:59;:::i;:::-;16672:69;;16508:243;16495:1;16492;16488:9;16483:14;;16448:303;;;16452:14;16767:3;16760:10;;16229:547;;16101:675;;;;;:::o;16782:662::-;17017:4;17055:2;17044:9;17040:18;17032:26;;17104:9;17098:4;17094:20;17090:1;17079:9;17075:17;17068:47;17132:118;17245:4;17236:6;17228;17132:118;:::i;:::-;17124:126;;17297:9;17291:4;17287:20;17282:2;17271:9;17267:18;17260:48;17325:112;17432:4;17423:6;17415;17325:112;:::i;:::-;17317:120;;16782:662;;;;;;;:::o;17450:180::-;17498:77;17495:1;17488:88;17595:4;17592:1;17585:15;17619:4;17616:1;17609:15;17636:191;17676:3;17695:20;17713:1;17695:20;:::i;:::-;17690:25;;17729:20;17747:1;17729:20;:::i;:::-;17724:25;;17772:1;17769;17765:9;17758:16;;17793:3;17790:1;17787:10;17784:36;;;17800:18;;:::i;:::-;17784:36;17636:191;;;;:::o;17833:180::-;17881:77;17878:1;17871:88;17978:4;17975:1;17968:15;18002:4;17999:1;17992:15;18019:185;18059:1;18076:20;18094:1;18076:20;:::i;:::-;18071:25;;18110:20;18128:1;18110:20;:::i;:::-;18105:25;;18149:1;18139:35;;18154:18;;:::i;:::-;18139:35;18196:1;18193;18189:9;18184:14;;18019:185;;;;:::o;18210:173::-;18350:25;18346:1;18338:6;18334:14;18327:49;18210:173;:::o;18389:366::-;18531:3;18552:67;18616:2;18611:3;18552:67;:::i;:::-;18545:74;;18628:93;18717:3;18628:93;:::i;:::-;18746:2;18741:3;18737:12;18730:19;;18389:366;;;:::o;18761:419::-;18927:4;18965:2;18954:9;18950:18;18942:26;;19014:9;19008:4;19004:20;19000:1;18989:9;18985:17;18978:47;19042:131;19168:4;19042:131;:::i;:::-;19034:139;;18761:419;;;:::o;19186:410::-;19226:7;19249:20;19267:1;19249:20;:::i;:::-;19244:25;;19283:20;19301:1;19283:20;:::i;:::-;19278:25;;19338:1;19335;19331:9;19360:30;19378:11;19360:30;:::i;:::-;19349:41;;19539:1;19530:7;19526:15;19523:1;19520:22;19500:1;19493:9;19473:83;19450:139;;19569:18;;:::i;:::-;19450:139;19234:362;19186:410;;;;:::o;19602:168::-;19742:20;19738:1;19730:6;19726:14;19719:44;19602:168;:::o;19776:366::-;19918:3;19939:67;20003:2;19998:3;19939:67;:::i;:::-;19932:74;;20015:93;20104:3;20015:93;:::i;:::-;20133:2;20128:3;20124:12;20117:19;;19776:366;;;:::o;20148:419::-;20314:4;20352:2;20341:9;20337:18;20329:26;;20401:9;20395:4;20391:20;20387:1;20376:9;20372:17;20365:47;20429:131;20555:4;20429:131;:::i;:::-;20421:139;;20148:419;;;:::o;20573:147::-;20674:11;20711:3;20696:18;;20573:147;;;;:::o;20726:114::-;;:::o;20846:398::-;21005:3;21026:83;21107:1;21102:3;21026:83;:::i;:::-;21019:90;;21118:93;21207:3;21118:93;:::i;:::-;21236:1;21231:3;21227:11;21220:18;;20846:398;;;:::o;21250:379::-;21434:3;21456:147;21599:3;21456:147;:::i;:::-;21449:154;;21620:3;21613:10;;21250:379;;;:::o;21635:170::-;21775:22;21771:1;21763:6;21759:14;21752:46;21635:170;:::o;21811:366::-;21953:3;21974:67;22038:2;22033:3;21974:67;:::i;:::-;21967:74;;22050:93;22139:3;22050:93;:::i;:::-;22168:2;22163:3;22159:12;22152:19;;21811:366;;;:::o;22183:419::-;22349:4;22387:2;22376:9;22372:18;22364:26;;22436:9;22430:4;22426:20;22422:1;22411:9;22407:17;22400:47;22464:131;22590:4;22464:131;:::i;:::-;22456:139;;22183:419;;;:::o;22608:233::-;22748:34;22744:1;22736:6;22732:14;22725:58;22817:16;22812:2;22804:6;22800:15;22793:41;22608:233;:::o;22847:366::-;22989:3;23010:67;23074:2;23069:3;23010:67;:::i;:::-;23003:74;;23086:93;23175:3;23086:93;:::i;:::-;23204:2;23199:3;23195:12;23188:19;;22847:366;;;:::o;23219:419::-;23385:4;23423:2;23412:9;23408:18;23400:26;;23472:9;23466:4;23462:20;23458:1;23447:9;23443:17;23436:47;23500:131;23626:4;23500:131;:::i;:::-;23492:139;;23219:419;;;:::o;23644:143::-;23701:5;23732:6;23726:13;23717:22;;23748:33;23775:5;23748:33;:::i;:::-;23644:143;;;;:::o;23793:351::-;23863:6;23912:2;23900:9;23891:7;23887:23;23883:32;23880:119;;;23918:79;;:::i;:::-;23880:119;24038:1;24063:64;24119:7;24110:6;24099:9;24095:22;24063:64;:::i;:::-;24053:74;;24009:128;23793:351;;;;:::o;24150:179::-;24290:31;24286:1;24278:6;24274:14;24267:55;24150:179;:::o;24335:366::-;24477:3;24498:67;24562:2;24557:3;24498:67;:::i;:::-;24491:74;;24574:93;24663:3;24574:93;:::i;:::-;24692:2;24687:3;24683:12;24676:19;;24335:366;;;:::o;24707:419::-;24873:4;24911:2;24900:9;24896:18;24888:26;;24960:9;24954:4;24950:20;24946:1;24935:9;24931:17;24924:47;24988:131;25114:4;24988:131;:::i;:::-;24980:139;;24707:419;;;:::o;25132:332::-;25253:4;25291:2;25280:9;25276:18;25268:26;;25304:71;25372:1;25361:9;25357:17;25348:6;25304:71;:::i;:::-;25385:72;25453:2;25442:9;25438:18;25429:6;25385:72;:::i;:::-;25132:332;;;;;:::o;25470:137::-;25524:5;25555:6;25549:13;25540:22;;25571:30;25595:5;25571:30;:::i;:::-;25470:137;;;;:::o;25613:345::-;25680:6;25729:2;25717:9;25708:7;25704:23;25700:32;25697:119;;;25735:79;;:::i;:::-;25697:119;25855:1;25880:61;25933:7;25924:6;25913:9;25909:22;25880:61;:::i;:::-;25870:71;;25826:125;25613:345;;;;:::o;25964:442::-;26113:4;26151:2;26140:9;26136:18;26128:26;;26164:71;26232:1;26221:9;26217:17;26208:6;26164:71;:::i;:::-;26245:72;26313:2;26302:9;26298:18;26289:6;26245:72;:::i;:::-;26327;26395:2;26384:9;26380:18;26371:6;26327:72;:::i;:::-;25964:442;;;;;;:::o;26412:225::-;26552:34;26548:1;26540:6;26536:14;26529:58;26621:8;26616:2;26608:6;26604:15;26597:33;26412:225;:::o;26643:366::-;26785:3;26806:67;26870:2;26865:3;26806:67;:::i;:::-;26799:74;;26882:93;26971:3;26882:93;:::i;:::-;27000:2;26995:3;26991:12;26984:19;;26643:366;;;:::o;27015:419::-;27181:4;27219:2;27208:9;27204:18;27196:26;;27268:9;27262:4;27258:20;27254:1;27243:9;27239:17;27232:47;27296:131;27422:4;27296:131;:::i;:::-;27288:139;;27015:419;;;:::o;27440:164::-;27580:16;27576:1;27568:6;27564:14;27557:40;27440:164;:::o;27610:366::-;27752:3;27773:67;27837:2;27832:3;27773:67;:::i;:::-;27766:74;;27849:93;27938:3;27849:93;:::i;:::-;27967:2;27962:3;27958:12;27951:19;;27610:366;;;:::o;27982:419::-;28148:4;28186:2;28175:9;28171:18;28163:26;;28235:9;28229:4;28225:20;28221:1;28210:9;28206:17;28199:47;28263:131;28389:4;28263:131;:::i;:::-;28255:139;;27982:419;;;:::o;28407:222::-;28547:34;28543:1;28535:6;28531:14;28524:58;28616:5;28611:2;28603:6;28599:15;28592:30;28407:222;:::o;28635:366::-;28777:3;28798:67;28862:2;28857:3;28798:67;:::i;:::-;28791:74;;28874:93;28963:3;28874:93;:::i;:::-;28992:2;28987:3;28983:12;28976:19;;28635:366;;;:::o;29007:419::-;29173:4;29211:2;29200:9;29196:18;29188:26;;29260:9;29254:4;29250:20;29246:1;29235:9;29231:17;29224:47;29288:131;29414:4;29288:131;:::i;:::-;29280:139;;29007:419;;;:::o;29432:194::-;29472:4;29492:20;29510:1;29492:20;:::i;:::-;29487:25;;29526:20;29544:1;29526:20;:::i;:::-;29521:25;;29570:1;29567;29563:9;29555:17;;29594:1;29588:4;29585:11;29582:37;;;29599:18;;:::i;:::-;29582:37;29432:194;;;;:::o;29632:179::-;29772:31;29768:1;29760:6;29756:14;29749:55;29632:179;:::o;29817:366::-;29959:3;29980:67;30044:2;30039:3;29980:67;:::i;:::-;29973:74;;30056:93;30145:3;30056:93;:::i;:::-;30174:2;30169:3;30165:12;30158:19;;29817:366;;;:::o;30189:419::-;30355:4;30393:2;30382:9;30378:18;30370:26;;30442:9;30436:4;30432:20;30428:1;30417:9;30413:17;30406:47;30470:131;30596:4;30470:131;:::i;:::-;30462:139;;30189:419;;;:::o;30614:553::-;30791:4;30829:3;30818:9;30814:19;30806:27;;30843:71;30911:1;30900:9;30896:17;30887:6;30843:71;:::i;:::-;30924:72;30992:2;30981:9;30977:18;30968:6;30924:72;:::i;:::-;31006;31074:2;31063:9;31059:18;31050:6;31006:72;:::i;:::-;31088;31156:2;31145:9;31141:18;31132:6;31088:72;:::i;:::-;30614:553;;;;;;;:::o;31173:85::-;31218:7;31247:5;31236:16;;31173:85;;;:::o;31264:158::-;31322:9;31355:61;31373:42;31382:32;31408:5;31382:32;:::i;:::-;31373:42;:::i;:::-;31355:61;:::i;:::-;31342:74;;31264:158;;;:::o;31428:147::-;31523:45;31562:5;31523:45;:::i;:::-;31518:3;31511:58;31428:147;;:::o;31581:585::-;31774:4;31812:3;31801:9;31797:19;31789:27;;31826:71;31894:1;31883:9;31879:17;31870:6;31826:71;:::i;:::-;31907:80;31983:2;31972:9;31968:18;31959:6;31907:80;:::i;:::-;31997;32073:2;32062:9;32058:18;32049:6;31997:80;:::i;:::-;32087:72;32155:2;32144:9;32140:18;32131:6;32087:72;:::i;:::-;31581:585;;;;;;;:::o;32172:180::-;32220:77;32217:1;32210:88;32317:4;32314:1;32307:15;32341:4;32338:1;32331:15;32358:143;32415:5;32446:6;32440:13;32431:22;;32462:33;32489:5;32462:33;:::i;:::-;32358:143;;;;:::o;32507:351::-;32577:6;32626:2;32614:9;32605:7;32601:23;32597:32;32594:119;;;32632:79;;:::i;:::-;32594:119;32752:1;32777:64;32833:7;32824:6;32813:9;32809:22;32777:64;:::i;:::-;32767:74;;32723:128;32507:351;;;;:::o;32864:114::-;32931:6;32965:5;32959:12;32949:22;;32864:114;;;:::o;32984:132::-;33051:4;33074:3;33066:11;;33104:4;33099:3;33095:14;33087:22;;32984:132;;;:::o;33122:113::-;33192:4;33224;33219:3;33215:14;33207:22;;33122:113;;;:::o;33271:732::-;33390:3;33419:54;33467:5;33419:54;:::i;:::-;33489:86;33568:6;33563:3;33489:86;:::i;:::-;33482:93;;33599:56;33649:5;33599:56;:::i;:::-;33678:7;33709:1;33694:284;33719:6;33716:1;33713:13;33694:284;;;33795:6;33789:13;33822:63;33881:3;33866:13;33822:63;:::i;:::-;33815:70;;33908:60;33961:6;33908:60;:::i;:::-;33898:70;;33754:224;33741:1;33738;33734:9;33729:14;;33694:284;;;33698:14;33994:3;33987:10;;33395:608;;;33271:732;;;;:::o;34009:831::-;34272:4;34310:3;34299:9;34295:19;34287:27;;34324:71;34392:1;34381:9;34377:17;34368:6;34324:71;:::i;:::-;34405:80;34481:2;34470:9;34466:18;34457:6;34405:80;:::i;:::-;34532:9;34526:4;34522:20;34517:2;34506:9;34502:18;34495:48;34560:108;34663:4;34654:6;34560:108;:::i;:::-;34552:116;;34678:72;34746:2;34735:9;34731:18;34722:6;34678:72;:::i;:::-;34760:73;34828:3;34817:9;34813:19;34804:6;34760:73;:::i;:::-;34009:831;;;;;;;;:::o;34846:807::-;35095:4;35133:3;35122:9;35118:19;35110:27;;35147:71;35215:1;35204:9;35200:17;35191:6;35147:71;:::i;:::-;35228:72;35296:2;35285:9;35281:18;35272:6;35228:72;:::i;:::-;35310:80;35386:2;35375:9;35371:18;35362:6;35310:80;:::i;:::-;35400;35476:2;35465:9;35461:18;35452:6;35400:80;:::i;:::-;35490:73;35558:3;35547:9;35543:19;35534:6;35490:73;:::i;:::-;35573;35641:3;35630:9;35626:19;35617:6;35573:73;:::i;:::-;34846:807;;;;;;;;;:::o;35659:663::-;35747:6;35755;35763;35812:2;35800:9;35791:7;35787:23;35783:32;35780:119;;;35818:79;;:::i;:::-;35780:119;35938:1;35963:64;36019:7;36010:6;35999:9;35995:22;35963:64;:::i;:::-;35953:74;;35909:128;36076:2;36102:64;36158:7;36149:6;36138:9;36134:22;36102:64;:::i;:::-;36092:74;;36047:129;36215:2;36241:64;36297:7;36288:6;36277:9;36273:22;36241:64;:::i;:::-;36231:74;;36186:129;35659:663;;;;;:::o

Swarm Source

ipfs://048bcb8b869b15f09a5afd39e22ec858a1045f2b44e611a0a633626613cf3118
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.