ETH Price: $3,502.39 (+2.30%)
Gas: 2 Gwei

Token

Oasis Finance (OASIS)
 

Overview

Max Total Supply

763,794,853.355294565305402838 OASIS

Holders

118

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: OASIS 24
Balance
51,567,372.891662833337697177 OASIS

Value
$0.00
0x0e72e165bbe7a5c98c14f4455a0d49b405434569
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OASIS

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-14
*/

/**

Website: https://oasisfi.tech
Twitter: https://twitter.com/oasisfitech
Telegram: https://t.me/oasisfitech

**/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.15;
pragma experimental ABIEncoderV2;

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

    bool private swapping;

    address public mktWallet;

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

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public taxForBuy;
    uint256 public taxForSell;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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


    constructor() ERC20("Oasis Finance", "OASIS") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
 
        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = (totalSupply * 2) * 100; // 2%
        maxWallet = (totalSupply * 2 / 100); // 2% 
        swapTokensAtAmount = (totalSupply * 8) / 1000000; // 0.05% 

        taxForBuy = 24;
        taxForSell = 24;

        mktWallet = address(0xCB25aee5f383BD9AF5ACFd98DdBF892f2Eb070F4);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(mktWallet, true);
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    function createOasisPool() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

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

    function createPair() external onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
            .createPair(address(this), uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        addLiquidity(balanceOf(address(this)), address(this).balance);
    }

    function reduceToNormalTax() external onlyOwner {
        taxForBuy = 2;
        taxForSell = 2;
    }

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

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && taxForSell > 0) {
                fees = amount.mul(taxForSell).div(100);
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && taxForBuy > 0) {
                fees = amount.mul(taxForBuy).div(100);
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));

        if (contractBalance == 0) {
            return;
        }

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

        swapTokensForEth(contractBalance);
        
        payable(mktWallet).transfer(address(this).balance);
    }

    function withdrawStuckToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function withdrawStuckEth(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createOasisPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"createPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mktWallet","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":"reduceToNormalTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052600b805462ffffff191660011790553480156200001f575f80fd5b506040518060400160405280600d81526020016c4f617369732046696e616e636560981b815250604051806040016040528060058152602001644f4153495360d81b815250816003908162000075919062000506565b50600462000084828262000506565b505050620000a16200009b6200020b60201b60201c565b6200020f565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c381600162000260565b6001600160a01b0381166080526b033b2e3c9fd0803ce8000000620000ea816002620005e2565b620000f7906064620005e2565b600855606462000109826002620005e2565b62000115919062000602565b600a55620f424062000129826008620005e2565b62000135919062000602565b6009556018600c819055600d55600780546001600160a01b03191673cb25aee5f383bd9af5acfd98ddbf892f2eb070f4179055620001876200017f6005546001600160a01b031690565b6001620002d8565b62000194306001620002d8565b620001a361dead6001620002d8565b600754620001bc906001600160a01b0316600162000260565b620001db620001d36005546001600160a01b031690565b600162000260565b620001e830600162000260565b620001f761dead600162000260565b62000203338262000380565b505062000638565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620002ae5760405162461bcd60e51b815260206004820181905260248201525f805160206200286283398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152600f60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620003225760405162461bcd60e51b815260206004820181905260248201525f80516020620028628339815191526044820152606401620002a5565b6001600160a01b0382165f818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620003d85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620002a5565b8060025f828254620003eb919062000622565b90915550506001600160a01b0382165f90815260208190526040812080548392906200041990849062000622565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200049057607f821691505b602082108103620004af57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000462575f81815260208120601f850160051c81016020861015620004dd5750805b601f850160051c820191505b81811015620004fe57828155600101620004e9565b505050505050565b81516001600160401b0381111562000522576200052262000467565b6200053a816200053384546200047b565b84620004b5565b602080601f83116001811462000570575f8415620005585750858301515b5f19600386901b1c1916600185901b178555620004fe565b5f85815260208120601f198616915b82811015620005a0578886015182559484019460019091019084016200057f565b5085821015620005be57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620005fc57620005fc620005ce565b92915050565b5f826200061d57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620005fc57620005fc620005ce565b6080516121e0620006825f395f81816102ec01528181610abd01528181610b4c0152818161180a0152818161183101528181611c9701528181611d4e0152611d8a01526121e05ff3fe608060405260043610610220575f3560e01c806380f0647f1161011e578063bc205ad3116100a8578063dd62ed3e1161006d578063dd62ed3e14610642578063e2f4560514610686578063e803cee01461069b578063f2fde38b146106ba578063f8b45b05146106d9575f80fd5b8063bc205ad3146105c7578063c0246668146105e6578063c8c8ebe414610605578063d16166461461061a578063dd2ca4b41461062e575f80fd5b80639e78fb4f116100ee5780639e78fb4f14610529578063a457c2d71461053d578063a9059cbb1461055c578063b62496f51461057b578063bbc0c742146105a9575f80fd5b806380f0647f146104c45780638da5cb5b146104d957806395d89b41146104f65780639a7a23d61461050a575f80fd5b806343d58025116101aa57806370a082311161016f57806370a0823114610428578063715018a61461045c578063751039fc146104725780637571336a146104865780637ca8448a146104a5575f80fd5b806343d580251461038557806349bd5a5e1461039a5780634a62bb65146103b95780634fbee193146103d25780636ddd171314610409575f80fd5b80631694505e116101f05780631694505e146102db57806318160ddd1461030e57806323b872dd1461032c578063313ce5671461034b5780633950935114610366575f80fd5b806303fd2a451461022b57806306fdde031461025d578063078662911461027e578063095ea7b3146102bc575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061024061dead81565b6040516001600160a01b0390911681526020015b60405180910390f35b348015610268575f80fd5b506102716106ee565b6040516102549190611df8565b348015610289575f80fd5b506102ac610298366004611e57565b600f6020525f908152604090205460ff1681565b6040519015158152602001610254565b3480156102c7575f80fd5b506102ac6102d6366004611e72565b61077e565b3480156102e6575f80fd5b506102407f000000000000000000000000000000000000000000000000000000000000000081565b348015610319575f80fd5b506002545b604051908152602001610254565b348015610337575f80fd5b506102ac610346366004611e9c565b610794565b348015610356575f80fd5b5060405160128152602001610254565b348015610371575f80fd5b506102ac610380366004611e72565b610841565b348015610390575f80fd5b5061031e600c5481565b3480156103a5575f80fd5b50600654610240906001600160a01b031681565b3480156103c4575f80fd5b50600b546102ac9060ff1681565b3480156103dd575f80fd5b506102ac6103ec366004611e57565b6001600160a01b03165f908152600e602052604090205460ff1690565b348015610414575f80fd5b50600b546102ac9062010000900460ff1681565b348015610433575f80fd5b5061031e610442366004611e57565b6001600160a01b03165f9081526020819052604090205490565b348015610467575f80fd5b5061047061087c565b005b34801561047d575f80fd5b506102ac6108b1565b348015610491575f80fd5b506104706104a0366004611ee7565b6108ed565b3480156104b0575f80fd5b506104706104bf366004611e57565b610941565b3480156104cf575f80fd5b5061031e600d5481565b3480156104e4575f80fd5b506005546001600160a01b0316610240565b348015610501575f80fd5b506102716109ca565b348015610515575f80fd5b50610470610524366004611ee7565b6109d9565b348015610534575f80fd5b50610470610a91565b348015610548575f80fd5b506102ac610557366004611e72565b610c92565b348015610567575f80fd5b506102ac610576366004611e72565b610d2a565b348015610586575f80fd5b506102ac610595366004611e57565b60106020525f908152604090205460ff1681565b3480156105b4575f80fd5b50600b546102ac90610100900460ff1681565b3480156105d2575f80fd5b506104706105e1366004611f1e565b610d36565b3480156105f1575f80fd5b50610470610600366004611ee7565b610e98565b348015610610575f80fd5b5061031e60085481565b348015610625575f80fd5b50610470610f20565b348015610639575f80fd5b50610470610f56565b34801561064d575f80fd5b5061031e61065c366004611f1e565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610691575f80fd5b5061031e60095481565b3480156106a6575f80fd5b50600754610240906001600160a01b031681565b3480156106c5575f80fd5b506104706106d4366004611e57565b610f93565b3480156106e4575f80fd5b5061031e600a5481565b6060600380546106fd90611f4a565b80601f016020809104026020016040519081016040528092919081815260200182805461072990611f4a565b80156107745780601f1061074b57610100808354040283529160200191610774565b820191905f5260205f20905b81548152906001019060200180831161075757829003601f168201915b5050505050905090565b5f61078a33848461102e565b5060015b92915050565b5f6107a0848484611151565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156108295760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610836853385840361102e565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161078a918590610877908690611f96565b61102e565b6005546001600160a01b031633146108a65760405162461bcd60e51b815260040161082090611fa9565b6108af5f611760565b565b6005545f906001600160a01b031633146108dd5760405162461bcd60e51b815260040161082090611fa9565b50600b805460ff19169055600190565b6005546001600160a01b031633146109175760405162461bcd60e51b815260040161082090611fa9565b6001600160a01b03919091165f908152600f60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461096b5760405162461bcd60e51b815260040161082090611fa9565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f81146109b4576040519150601f19603f3d011682016040523d82523d5f602084013e6109b9565b606091505b50509050806109c6575f80fd5b5050565b6060600480546106fd90611f4a565b6005546001600160a01b03163314610a035760405162461bcd60e51b815260040161082090611fa9565b6006546001600160a01b0390811690831603610a875760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610820565b6109c682826117b1565b6005546001600160a01b03163314610abb5760405162461bcd60e51b815260040161082090611fa9565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b17573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b3b9190611fde565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ba6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bca9190611fde565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610c14573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c389190611fde565b600680546001600160a01b0319166001600160a01b03929092169182179055610c629060016108ed565b600654610c79906001600160a01b031660016117b1565b305f908152602081905260409020546108af9047611804565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610d135760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610820565b610d20338585840361102e565b5060019392505050565b5f61078a338484611151565b6005546001600160a01b03163314610d605760405162461bcd60e51b815260040161082090611fa9565b6001600160a01b038216610db65760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610820565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610dfa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e1e9190611ff9565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015610e6e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e929190612010565b50505050565b6005546001600160a01b03163314610ec25760405162461bcd60e51b815260040161082090611fa9565b6001600160a01b0382165f818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f4a5760405162461bcd60e51b815260040161082090611fa9565b6002600c819055600d55565b6005546001600160a01b03163314610f805760405162461bcd60e51b815260040161082090611fa9565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610fbd5760405162461bcd60e51b815260040161082090611fa9565b6001600160a01b0381166110225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610820565b61102b81611760565b50565b6001600160a01b0383166110905760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610820565b6001600160a01b0382166110f15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610820565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111775760405162461bcd60e51b81526004016108209061202b565b6001600160a01b03821661119d5760405162461bcd60e51b815260040161082090612070565b805f036111b4576111af83835f611907565b505050565b600b5460ff16156114dd576005546001600160a01b038481169116148015906111eb57506005546001600160a01b03838116911614155b80156111ff57506001600160a01b03821615155b801561121657506001600160a01b03821661dead14155b801561122c5750600654600160a01b900460ff16155b156113df57600b54610100900460ff166112c2576001600160a01b0383165f908152600e602052604090205460ff168061127d57506001600160a01b0382165f908152600e602052604090205460ff165b6112c25760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610820565b6001600160a01b0383165f9081526010602052604090205460ff16801561130157506001600160a01b0382165f908152600f602052604090205460ff16155b156113e4576008548111156113765760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610820565b600a546001600160a01b0383165f9081526020819052604090205461139b9083611f96565b11156113df5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610820565b61154d565b6001600160a01b0382165f9081526010602052604090205460ff16801561142357506001600160a01b0383165f908152600f602052604090205460ff16155b15611499576008548111156113df5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610820565b6001600160a01b0382165f908152600f602052604090205460ff166113df57600a546001600160a01b0383165f9081526020819052604090205461139b9083611f96565b6001600160a01b0383165f908152600e602052604090205460ff1615801561151c57506001600160a01b0383165f908152600f602052604090205460ff165b801561153257506001600160a01b03821661dead145b1561154d576006546111af906001600160a01b031682611a59565b305f90815260208190526040902054600954811080159081906115785750600b5462010000900460ff165b801561158e5750600654600160a01b900460ff16155b80156115b157506001600160a01b0384165f9081526010602052604090205460ff165b80156115bf57506009548310155b80156115e357506001600160a01b0385165f908152600e602052604090205460ff16155b801561160757506001600160a01b0384165f908152600e602052604090205460ff16155b15611635576006805460ff60a01b1916600160a01b179055611627611ba4565b6006805460ff60a01b191690555b6006546001600160a01b0386165f908152600e602052604090205460ff600160a01b90920482161591168061168157506001600160a01b0385165f908152600e602052604090205460ff165b1561168957505f5b5f811561174c576001600160a01b0386165f9081526010602052604090205460ff1680156116b857505f600d54115b156116e4576116dd60646116d7600d5488611c2590919063ffffffff16565b90611c37565b905061172e565b6001600160a01b0387165f9081526010602052604090205460ff16801561170c57505f600c54115b1561172e5761172b60646116d7600c5488611c2590919063ffffffff16565b90505b801561173f5761173f873083611907565b61174981866120b3565b94505b611757878787611907565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260106020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b61182f307f00000000000000000000000000000000000000000000000000000000000000008461102e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f806118756005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156118db573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061190091906120c6565b5050505050565b6001600160a01b03831661192d5760405162461bcd60e51b81526004016108209061202b565b6001600160a01b0382166119535760405162461bcd60e51b815260040161082090612070565b6001600160a01b0383165f90815260208190526040902054818110156119ca5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610820565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611a00908490611f96565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a4c91815260200190565b60405180910390a3610e92565b6001600160a01b038216611ab95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610820565b6001600160a01b0382165f9081526020819052604090205481811015611b2c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610820565b6001600160a01b0383165f908152602081905260408120838303905560028054849290611b5a9084906120b3565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b305f9081526020819052604081205490819003611bbe5750565b600954611bcd9061044c6120f1565b811115611be657600954611be39061044c6120f1565b90505b611bef81611c42565b6007546040516001600160a01b03909116904780156108fc02915f818181858888f193505050501580156109c6573d5f803e3d5ffd5b5f611c3082846120f1565b9392505050565b5f611c308284612108565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611c7557611c75612127565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cf1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d159190611fde565b81600181518110611d2857611d28612127565b60200260200101906001600160a01b031690816001600160a01b031681525050611d73307f00000000000000000000000000000000000000000000000000000000000000008461102e565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611dc79085905f9086903090429060040161213b565b5f604051808303815f87803b158015611dde575f80fd5b505af1158015611df0573d5f803e3d5ffd5b505050505050565b5f6020808352835180828501525f5b81811015611e2357858101830151858201604001528201611e07565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461102b575f80fd5b5f60208284031215611e67575f80fd5b8135611c3081611e43565b5f8060408385031215611e83575f80fd5b8235611e8e81611e43565b946020939093013593505050565b5f805f60608486031215611eae575f80fd5b8335611eb981611e43565b92506020840135611ec981611e43565b929592945050506040919091013590565b801515811461102b575f80fd5b5f8060408385031215611ef8575f80fd5b8235611f0381611e43565b91506020830135611f1381611eda565b809150509250929050565b5f8060408385031215611f2f575f80fd5b8235611f3a81611e43565b91506020830135611f1381611e43565b600181811c90821680611f5e57607f821691505b602082108103611f7c57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561078e5761078e611f82565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215611fee575f80fd5b8151611c3081611e43565b5f60208284031215612009575f80fd5b5051919050565b5f60208284031215612020575f80fd5b8151611c3081611eda565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561078e5761078e611f82565b5f805f606084860312156120d8575f80fd5b8351925060208401519150604084015190509250925092565b808202811582820484141761078e5761078e611f82565b5f8261212257634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156121895784516001600160a01b031683529383019391830191600101612164565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122014421fd92226fc64d391505bfcf24dcd3be48b1557c055d718d8c32dace0c71564736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x608060405260043610610220575f3560e01c806380f0647f1161011e578063bc205ad3116100a8578063dd62ed3e1161006d578063dd62ed3e14610642578063e2f4560514610686578063e803cee01461069b578063f2fde38b146106ba578063f8b45b05146106d9575f80fd5b8063bc205ad3146105c7578063c0246668146105e6578063c8c8ebe414610605578063d16166461461061a578063dd2ca4b41461062e575f80fd5b80639e78fb4f116100ee5780639e78fb4f14610529578063a457c2d71461053d578063a9059cbb1461055c578063b62496f51461057b578063bbc0c742146105a9575f80fd5b806380f0647f146104c45780638da5cb5b146104d957806395d89b41146104f65780639a7a23d61461050a575f80fd5b806343d58025116101aa57806370a082311161016f57806370a0823114610428578063715018a61461045c578063751039fc146104725780637571336a146104865780637ca8448a146104a5575f80fd5b806343d580251461038557806349bd5a5e1461039a5780634a62bb65146103b95780634fbee193146103d25780636ddd171314610409575f80fd5b80631694505e116101f05780631694505e146102db57806318160ddd1461030e57806323b872dd1461032c578063313ce5671461034b5780633950935114610366575f80fd5b806303fd2a451461022b57806306fdde031461025d578063078662911461027e578063095ea7b3146102bc575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061024061dead81565b6040516001600160a01b0390911681526020015b60405180910390f35b348015610268575f80fd5b506102716106ee565b6040516102549190611df8565b348015610289575f80fd5b506102ac610298366004611e57565b600f6020525f908152604090205460ff1681565b6040519015158152602001610254565b3480156102c7575f80fd5b506102ac6102d6366004611e72565b61077e565b3480156102e6575f80fd5b506102407f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b348015610319575f80fd5b506002545b604051908152602001610254565b348015610337575f80fd5b506102ac610346366004611e9c565b610794565b348015610356575f80fd5b5060405160128152602001610254565b348015610371575f80fd5b506102ac610380366004611e72565b610841565b348015610390575f80fd5b5061031e600c5481565b3480156103a5575f80fd5b50600654610240906001600160a01b031681565b3480156103c4575f80fd5b50600b546102ac9060ff1681565b3480156103dd575f80fd5b506102ac6103ec366004611e57565b6001600160a01b03165f908152600e602052604090205460ff1690565b348015610414575f80fd5b50600b546102ac9062010000900460ff1681565b348015610433575f80fd5b5061031e610442366004611e57565b6001600160a01b03165f9081526020819052604090205490565b348015610467575f80fd5b5061047061087c565b005b34801561047d575f80fd5b506102ac6108b1565b348015610491575f80fd5b506104706104a0366004611ee7565b6108ed565b3480156104b0575f80fd5b506104706104bf366004611e57565b610941565b3480156104cf575f80fd5b5061031e600d5481565b3480156104e4575f80fd5b506005546001600160a01b0316610240565b348015610501575f80fd5b506102716109ca565b348015610515575f80fd5b50610470610524366004611ee7565b6109d9565b348015610534575f80fd5b50610470610a91565b348015610548575f80fd5b506102ac610557366004611e72565b610c92565b348015610567575f80fd5b506102ac610576366004611e72565b610d2a565b348015610586575f80fd5b506102ac610595366004611e57565b60106020525f908152604090205460ff1681565b3480156105b4575f80fd5b50600b546102ac90610100900460ff1681565b3480156105d2575f80fd5b506104706105e1366004611f1e565b610d36565b3480156105f1575f80fd5b50610470610600366004611ee7565b610e98565b348015610610575f80fd5b5061031e60085481565b348015610625575f80fd5b50610470610f20565b348015610639575f80fd5b50610470610f56565b34801561064d575f80fd5b5061031e61065c366004611f1e565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610691575f80fd5b5061031e60095481565b3480156106a6575f80fd5b50600754610240906001600160a01b031681565b3480156106c5575f80fd5b506104706106d4366004611e57565b610f93565b3480156106e4575f80fd5b5061031e600a5481565b6060600380546106fd90611f4a565b80601f016020809104026020016040519081016040528092919081815260200182805461072990611f4a565b80156107745780601f1061074b57610100808354040283529160200191610774565b820191905f5260205f20905b81548152906001019060200180831161075757829003601f168201915b5050505050905090565b5f61078a33848461102e565b5060015b92915050565b5f6107a0848484611151565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156108295760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610836853385840361102e565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161078a918590610877908690611f96565b61102e565b6005546001600160a01b031633146108a65760405162461bcd60e51b815260040161082090611fa9565b6108af5f611760565b565b6005545f906001600160a01b031633146108dd5760405162461bcd60e51b815260040161082090611fa9565b50600b805460ff19169055600190565b6005546001600160a01b031633146109175760405162461bcd60e51b815260040161082090611fa9565b6001600160a01b03919091165f908152600f60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461096b5760405162461bcd60e51b815260040161082090611fa9565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f81146109b4576040519150601f19603f3d011682016040523d82523d5f602084013e6109b9565b606091505b50509050806109c6575f80fd5b5050565b6060600480546106fd90611f4a565b6005546001600160a01b03163314610a035760405162461bcd60e51b815260040161082090611fa9565b6006546001600160a01b0390811690831603610a875760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610820565b6109c682826117b1565b6005546001600160a01b03163314610abb5760405162461bcd60e51b815260040161082090611fa9565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b17573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b3b9190611fde565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ba6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bca9190611fde565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610c14573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c389190611fde565b600680546001600160a01b0319166001600160a01b03929092169182179055610c629060016108ed565b600654610c79906001600160a01b031660016117b1565b305f908152602081905260409020546108af9047611804565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610d135760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610820565b610d20338585840361102e565b5060019392505050565b5f61078a338484611151565b6005546001600160a01b03163314610d605760405162461bcd60e51b815260040161082090611fa9565b6001600160a01b038216610db65760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610820565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610dfa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e1e9190611ff9565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015610e6e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e929190612010565b50505050565b6005546001600160a01b03163314610ec25760405162461bcd60e51b815260040161082090611fa9565b6001600160a01b0382165f818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f4a5760405162461bcd60e51b815260040161082090611fa9565b6002600c819055600d55565b6005546001600160a01b03163314610f805760405162461bcd60e51b815260040161082090611fa9565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610fbd5760405162461bcd60e51b815260040161082090611fa9565b6001600160a01b0381166110225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610820565b61102b81611760565b50565b6001600160a01b0383166110905760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610820565b6001600160a01b0382166110f15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610820565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111775760405162461bcd60e51b81526004016108209061202b565b6001600160a01b03821661119d5760405162461bcd60e51b815260040161082090612070565b805f036111b4576111af83835f611907565b505050565b600b5460ff16156114dd576005546001600160a01b038481169116148015906111eb57506005546001600160a01b03838116911614155b80156111ff57506001600160a01b03821615155b801561121657506001600160a01b03821661dead14155b801561122c5750600654600160a01b900460ff16155b156113df57600b54610100900460ff166112c2576001600160a01b0383165f908152600e602052604090205460ff168061127d57506001600160a01b0382165f908152600e602052604090205460ff165b6112c25760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610820565b6001600160a01b0383165f9081526010602052604090205460ff16801561130157506001600160a01b0382165f908152600f602052604090205460ff16155b156113e4576008548111156113765760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610820565b600a546001600160a01b0383165f9081526020819052604090205461139b9083611f96565b11156113df5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610820565b61154d565b6001600160a01b0382165f9081526010602052604090205460ff16801561142357506001600160a01b0383165f908152600f602052604090205460ff16155b15611499576008548111156113df5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610820565b6001600160a01b0382165f908152600f602052604090205460ff166113df57600a546001600160a01b0383165f9081526020819052604090205461139b9083611f96565b6001600160a01b0383165f908152600e602052604090205460ff1615801561151c57506001600160a01b0383165f908152600f602052604090205460ff165b801561153257506001600160a01b03821661dead145b1561154d576006546111af906001600160a01b031682611a59565b305f90815260208190526040902054600954811080159081906115785750600b5462010000900460ff165b801561158e5750600654600160a01b900460ff16155b80156115b157506001600160a01b0384165f9081526010602052604090205460ff165b80156115bf57506009548310155b80156115e357506001600160a01b0385165f908152600e602052604090205460ff16155b801561160757506001600160a01b0384165f908152600e602052604090205460ff16155b15611635576006805460ff60a01b1916600160a01b179055611627611ba4565b6006805460ff60a01b191690555b6006546001600160a01b0386165f908152600e602052604090205460ff600160a01b90920482161591168061168157506001600160a01b0385165f908152600e602052604090205460ff165b1561168957505f5b5f811561174c576001600160a01b0386165f9081526010602052604090205460ff1680156116b857505f600d54115b156116e4576116dd60646116d7600d5488611c2590919063ffffffff16565b90611c37565b905061172e565b6001600160a01b0387165f9081526010602052604090205460ff16801561170c57505f600c54115b1561172e5761172b60646116d7600c5488611c2590919063ffffffff16565b90505b801561173f5761173f873083611907565b61174981866120b3565b94505b611757878787611907565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260106020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b61182f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461102e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f806118756005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156118db573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061190091906120c6565b5050505050565b6001600160a01b03831661192d5760405162461bcd60e51b81526004016108209061202b565b6001600160a01b0382166119535760405162461bcd60e51b815260040161082090612070565b6001600160a01b0383165f90815260208190526040902054818110156119ca5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610820565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611a00908490611f96565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a4c91815260200190565b60405180910390a3610e92565b6001600160a01b038216611ab95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610820565b6001600160a01b0382165f9081526020819052604090205481811015611b2c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610820565b6001600160a01b0383165f908152602081905260408120838303905560028054849290611b5a9084906120b3565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b305f9081526020819052604081205490819003611bbe5750565b600954611bcd9061044c6120f1565b811115611be657600954611be39061044c6120f1565b90505b611bef81611c42565b6007546040516001600160a01b03909116904780156108fc02915f818181858888f193505050501580156109c6573d5f803e3d5ffd5b5f611c3082846120f1565b9392505050565b5f611c308284612108565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611c7557611c75612127565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cf1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d159190611fde565b81600181518110611d2857611d28612127565b60200260200101906001600160a01b031690816001600160a01b031681525050611d73307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461102e565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611dc79085905f9086903090429060040161213b565b5f604051808303815f87803b158015611dde575f80fd5b505af1158015611df0573d5f803e3d5ffd5b505050505050565b5f6020808352835180828501525f5b81811015611e2357858101830151858201604001528201611e07565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461102b575f80fd5b5f60208284031215611e67575f80fd5b8135611c3081611e43565b5f8060408385031215611e83575f80fd5b8235611e8e81611e43565b946020939093013593505050565b5f805f60608486031215611eae575f80fd5b8335611eb981611e43565b92506020840135611ec981611e43565b929592945050506040919091013590565b801515811461102b575f80fd5b5f8060408385031215611ef8575f80fd5b8235611f0381611e43565b91506020830135611f1381611eda565b809150509250929050565b5f8060408385031215611f2f575f80fd5b8235611f3a81611e43565b91506020830135611f1381611e43565b600181811c90821680611f5e57607f821691505b602082108103611f7c57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561078e5761078e611f82565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215611fee575f80fd5b8151611c3081611e43565b5f60208284031215612009575f80fd5b5051919050565b5f60208284031215612020575f80fd5b8151611c3081611eda565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561078e5761078e611f82565b5f805f606084860312156120d8575f80fd5b8351925060208401519150604084015190509250925092565b808202811582820484141761078e5761078e611f82565b5f8261212257634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156121895784516001600160a01b031683529383019391830191600101612164565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122014421fd92226fc64d391505bfcf24dcd3be48b1557c055d718d8c32dace0c71564736f6c63430008140033

Deployed Bytecode Sourcemap

31068:10233:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31236:46;;;;;;;;;;;;31275:6;31236:46;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;31236:46:0;;;;;;;;9027:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31794:52::-;;;;;;;;;;-1:-1:-1;31794:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1328:14:1;;1321:22;1303:41;;1291:2;1276:18;31794:52:0;1163:187:1;11194:169:0;;;;;;;;;;-1:-1:-1;11194:169:0;;;;;:::i;:::-;;:::i;31143:51::-;;;;;;;;;;;;;;;10147:108;;;;;;;;;;-1:-1:-1;10235:12:0;;10147:108;;;2056:25:1;;;2044:2;2029:18;10147:108:0;1910:177:1;11845:492:0;;;;;;;;;;-1:-1:-1;11845:492:0;;;;;:::i;:::-;;:::i;9989:93::-;;;;;;;;;;-1:-1:-1;9989:93:0;;10072:2;2695:36:1;;2683:2;2668:18;9989:93:0;2553:184:1;12746:215:0;;;;;;;;;;-1:-1:-1;12746:215:0;;;;;:::i;:::-;;:::i;31589:24::-;;;;;;;;;;;;;;;;31201:28;;;;;;;;;;-1:-1:-1;31201:28:0;;;;-1:-1:-1;;;;;31201:28:0;;;31469:33;;;;;;;;;;-1:-1:-1;31469:33:0;;;;;;;;35499:126;;;;;;;;;;-1:-1:-1;35499:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;35589:28:0;35565:4;35589:28;;;:19;:28;;;;;;;;;35499:126;31549:31;;;;;;;;;;-1:-1:-1;31549:31:0;;;;;;;;;;;10318:127;;;;;;;;;;-1:-1:-1;10318:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10419:18:0;10392:7;10419:18;;;;;;;;;;;;10318:127;2545:103;;;;;;;;;;;;;:::i;:::-;;33994:121;;;;;;;;;;;;;:::i;34123:156::-;;;;;;;;;;-1:-1:-1;34123:156:0;;;;;:::i;:::-;;:::i;41102:196::-;;;;;;;;;;-1:-1:-1;41102:196:0;;;;;:::i;:::-;;:::i;31620:25::-;;;;;;;;;;;;;;;;1894:87;;;;;;;;;;-1:-1:-1;1967:6:0;;-1:-1:-1;;;;;1967:6:0;1894:87;;9246:104;;;;;;;;;;;;;:::i;34991:304::-;;;;;;;;;;-1:-1:-1;34991:304:0;;;;;:::i;:::-;;:::i;34287:393::-;;;;;;;;;;;;;:::i;13464:413::-;;;;;;;;;;-1:-1:-1;13464:413:0;;;;;:::i;:::-;;:::i;10658:175::-;;;;;;;;;;-1:-1:-1;10658:175:0;;;;;:::i;:::-;;:::i;32004:57::-;;;;;;;;;;-1:-1:-1;32004:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31509:33;;;;;;;;;;-1:-1:-1;31509:33:0;;;;;;;;;;;40806:288;;;;;;;;;;-1:-1:-1;40806:288:0;;;;;:::i;:::-;;:::i;34801:182::-;;;;;;;;;;-1:-1:-1;34801:182:0;;;;;:::i;:::-;;:::i;31354:35::-;;;;;;;;;;;;;;;;34688:105;;;;;;;;;;;;;:::i;33828:114::-;;;;;;;;;;;;;:::i;10896:151::-;;;;;;;;;;-1:-1:-1;10896:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11012:18:0;;;10985:7;11012:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10896:151;31396:33;;;;;;;;;;;;;;;;31321:24;;;;;;;;;;-1:-1:-1;31321:24:0;;;;-1:-1:-1;;;;;31321:24:0;;;2803:201;;;;;;;;;;-1:-1:-1;2803:201:0;;;;;:::i;:::-;;:::i;31436:24::-;;;;;;;;;;;;;;;;9027:100;9081:13;9114:5;9107:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9027:100;:::o;11194:169::-;11277:4;11294:39;843:10;11317:7;11326:6;11294:8;:39::i;:::-;-1:-1:-1;11351:4:0;11194:169;;;;;:::o;11845:492::-;11985:4;12002:36;12012:6;12020:9;12031:6;12002:9;:36::i;:::-;-1:-1:-1;;;;;12078:19:0;;12051:24;12078:19;;;:11;:19;;;;;;;;843:10;12078:33;;;;;;;;12130:26;;;;12122:79;;;;-1:-1:-1;;;12122:79:0;;4232:2:1;12122:79:0;;;4214:21:1;4271:2;4251:18;;;4244:30;4310:34;4290:18;;;4283:62;-1:-1:-1;;;4361:18:1;;;4354:38;4409:19;;12122:79:0;;;;;;;;;12237:57;12246:6;843:10;12287:6;12268:16;:25;12237:8;:57::i;:::-;-1:-1:-1;12325:4:0;;11845:492;-1:-1:-1;;;;11845:492:0:o;12746:215::-;843:10;12834:4;12883:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12883:34:0;;;;;;;;;;12834:4;;12851:80;;12874:7;;12883:47;;12920:10;;12883:47;:::i;:::-;12851:8;:80::i;2545:103::-;1967:6;;-1:-1:-1;;;;;1967:6:0;843:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;2610:30:::1;2637:1;2610:18;:30::i;:::-;2545:103::o:0;33994:121::-;1967:6;;34046:4;;-1:-1:-1;;;;;1967:6:0;843:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;-1:-1:-1;34063:14:0::1;:22:::0;;-1:-1:-1;;34063:22:0::1;::::0;;;33994:121;:::o;34123:156::-;1967:6;;-1:-1:-1;;;;;1967:6:0;843:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34236:28:0;;;::::1;;::::0;;;:20:::1;:28;::::0;;;;:35;;-1:-1:-1;;34236:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34123:156::o;41102:196::-;1967:6;;-1:-1:-1;;;;;1967:6:0;843:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;41175:12:::1;41193:6;-1:-1:-1::0;;;;;41193:11:0::1;41226:21;41193:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41174:89;;;41282:7;41274:16;;;::::0;::::1;;41163:135;41102:196:::0;:::o;9246:104::-;9302:13;9335:7;9328:14;;;;;:::i;34991:304::-;1967:6;;-1:-1:-1;;;;;1967:6:0;843:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;35135:13:::1;::::0;-1:-1:-1;;;;;35135:13:0;;::::1;35127:21:::0;;::::1;::::0;35105:128:::1;;;::::0;-1:-1:-1;;;35105:128:0;;5474:2:1;35105:128:0::1;::::0;::::1;5456:21:1::0;5513:2;5493:18;;;5486:30;5552:34;5532:18;;;5525:62;5623:27;5603:18;;;5596:55;5668:19;;35105:128:0::1;5272:421:1::0;35105:128:0::1;35246:41;35275:4;35281:5;35246:28;:41::i;34287:393::-:0;1967:6;;-1:-1:-1;;;;;1967:6:0;843:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;34373:15:::1;-1:-1:-1::0;;;;;34373:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34355:69:0::1;;34433:4;34440:15;-1:-1:-1::0;;;;;34440:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34355:108;::::0;-1:-1:-1;;;;;;34355:108:0::1;::::0;;;;;;-1:-1:-1;;;;;6184:15:1;;;34355:108:0::1;::::0;::::1;6166:34:1::0;6236:15;;6216:18;;;6209:43;6101:18;;34355:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34339:13;:124:::0;;-1:-1:-1;;;;;;34339:124:0::1;-1:-1:-1::0;;;;;34339:124:0;;;::::1;::::0;;::::1;::::0;;34474:55:::1;::::0;-1:-1:-1;34474:25:0::1;:55::i;:::-;34577:13;::::0;34540:58:::1;::::0;-1:-1:-1;;;;;34577:13:0::1;::::0;34540:28:::1;:58::i;:::-;34642:4;10392:7:::0;10419:18;;;;;;;;;;;34611:61:::1;::::0;34650:21:::1;34611:12;:61::i;13464:413::-:0;843:10;13557:4;13601:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13601:34:0;;;;;;;;;;13654:35;;;;13646:85;;;;-1:-1:-1;;;13646:85:0;;6465:2:1;13646:85:0;;;6447:21:1;6504:2;6484:18;;;6477:30;6543:34;6523:18;;;6516:62;-1:-1:-1;;;6594:18:1;;;6587:35;6639:19;;13646:85:0;6263:401:1;13646:85:0;13767:67;843:10;13790:7;13818:15;13799:16;:34;13767:8;:67::i;:::-;-1:-1:-1;13865:4:0;;13464:413;-1:-1:-1;;;13464:413:0:o;10658:175::-;10744:4;10761:42;843:10;10785:9;10796:6;10761:9;:42::i;40806:288::-;1967:6;;-1:-1:-1;;;;;1967:6:0;843:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40901:20:0;::::1;40893:59;;;::::0;-1:-1:-1;;;40893:59:0;;6871:2:1;40893:59:0::1;::::0;::::1;6853:21:1::0;6910:2;6890:18;;;6883:30;6949:28;6929:18;;;6922:56;6995:18;;40893:59:0::1;6669:350:1::0;40893:59:0::1;40990:39;::::0;-1:-1:-1;;;40990:39:0;;41023:4:::1;40990:39;::::0;::::1;160:51:1::0;40963:24:0::1;::::0;-1:-1:-1;;;;;40990:24:0;::::1;::::0;::::1;::::0;133:18:1;;40990:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41040:46;::::0;-1:-1:-1;;;41040:46:0;;-1:-1:-1;;;;;7405:32:1;;;41040:46:0::1;::::0;::::1;7387:51:1::0;7454:18;;;7447:34;;;40963:66:0;;-1:-1:-1;41040:23:0;;::::1;::::0;::::1;::::0;7360:18:1;;41040:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40882:212;40806:288:::0;;:::o;34801:182::-;1967:6;;-1:-1:-1;;;;;1967:6:0;843:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34886:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;34886:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34941:34;;1303:41:1;;;34941:34:0::1;::::0;1276:18:1;34941:34:0::1;;;;;;;34801:182:::0;;:::o;34688:105::-;1967:6;;-1:-1:-1;;;;;1967:6:0;843:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;34759:1:::1;34747:9;:13:::0;;;34771:10:::1;:14:::0;34688:105::o;33828:114::-;1967:6;;-1:-1:-1;;;;;1967:6:0;843:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;33885:13:::1;:20:::0;;-1:-1:-1;;33916:18:0;;;;;33828:114::o;2803:201::-;1967:6;;-1:-1:-1;;;;;1967:6:0;843:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2892:22:0;::::1;2884:73;;;::::0;-1:-1:-1;;;2884:73:0;;7944:2:1;2884:73:0::1;::::0;::::1;7926:21:1::0;7983:2;7963:18;;;7956:30;8022:34;8002:18;;;7995:62;-1:-1:-1;;;8073:18:1;;;8066:36;8119:19;;2884:73:0::1;7742:402:1::0;2884:73:0::1;2968:28;2987:8;2968:18;:28::i;:::-;2803:201:::0;:::o;17148:380::-;-1:-1:-1;;;;;17284:19:0;;17276:68;;;;-1:-1:-1;;;17276:68:0;;8351:2:1;17276:68:0;;;8333:21:1;8390:2;8370:18;;;8363:30;8429:34;8409:18;;;8402:62;-1:-1:-1;;;8480:18:1;;;8473:34;8524:19;;17276:68:0;8149:400:1;17276:68:0;-1:-1:-1;;;;;17363:21:0;;17355:68;;;;-1:-1:-1;;;17355:68:0;;8756:2:1;17355:68:0;;;8738:21:1;8795:2;8775:18;;;8768:30;8834:34;8814:18;;;8807:62;-1:-1:-1;;;8885:18:1;;;8878:32;8927:19;;17355:68:0;8554:398:1;17355:68:0;-1:-1:-1;;;;;17436:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17488:32;;2056:25:1;;;17488:32:0;;2029:18:1;17488:32:0;;;;;;;17148:380;;;:::o;35633:3623::-;-1:-1:-1;;;;;35765:18:0;;35757:68;;;;-1:-1:-1;;;35757:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35844:16:0;;35836:64;;;;-1:-1:-1;;;35836:64:0;;;;;;;:::i;:::-;35917:6;35927:1;35917:11;35913:93;;35945:28;35961:4;35967:2;35971:1;35945:15;:28::i;:::-;35633:3623;;;:::o;35913:93::-;36022:14;;;;36018:1825;;;1967:6;;-1:-1:-1;;;;;36075:15:0;;;1967:6;;36075:15;;;;:49;;-1:-1:-1;1967:6:0;;-1:-1:-1;;;;;36111:13:0;;;1967:6;;36111:13;;36075:49;:86;;;;-1:-1:-1;;;;;;36145:16:0;;;;36075:86;:128;;;;-1:-1:-1;;;;;;36182:21:0;;36196:6;36182:21;;36075:128;:158;;;;-1:-1:-1;36225:8:0;;-1:-1:-1;;;36225:8:0;;;;36224:9;36075:158;36053:1615;;;36273:13;;;;;;;36268:223;;-1:-1:-1;;;;;36345:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;36374:23:0;;;;;;:19;:23;;;;;;;;36345:52;36311:160;;;;-1:-1:-1;;;36311:160:0;;9969:2:1;36311:160:0;;;9951:21:1;10008:2;9988:18;;;9981:30;-1:-1:-1;;;10027:18:1;;;10020:52;10089:18;;36311:160:0;9767:346:1;36311:160:0;-1:-1:-1;;;;;36565:31:0;;;;;;:25;:31;;;;;;;;:81;;;;-1:-1:-1;;;;;;36622:24:0;;;;;;:20;:24;;;;;;;;36621:25;36565:81;36539:1114;;;36733:20;;36723:6;:30;;36689:169;;;;-1:-1:-1;;;36689:169:0;;10320:2:1;36689:169:0;;;10302:21:1;10359:2;10339:18;;;10332:30;10398:34;10378:18;;;10371:62;-1:-1:-1;;;10449:18:1;;;10442:51;10510:19;;36689:169:0;10118:417:1;36689:169:0;36941:9;;-1:-1:-1;;;;;10419:18:0;;10392:7;10419:18;;;;;;;;;;;36915:22;;:6;:22;:::i;:::-;:35;;36881:140;;;;-1:-1:-1;;;36881:140:0;;10742:2:1;36881:140:0;;;10724:21:1;10781:2;10761:18;;;10754:30;-1:-1:-1;;;10800:18:1;;;10793:49;10859:18;;36881:140:0;10540:343:1;36881:140:0;36018:1825;;36539:1114;-1:-1:-1;;;;;37119:29:0;;;;;;:25;:29;;;;;;;;:81;;;;-1:-1:-1;;;;;;37174:26:0;;;;;;:20;:26;;;;;;;;37173:27;37119:81;37093:560;;;37287:20;;37277:6;:30;;37243:170;;;;-1:-1:-1;;;37243:170:0;;11090:2:1;37243:170:0;;;11072:21:1;11129:2;11109:18;;;11102:30;11168:34;11148:18;;;11141:62;-1:-1:-1;;;11219:18:1;;;11212:52;11281:19;;37243:170:0;10888:418:1;37093:560:0;-1:-1:-1;;;;;37444:24:0;;;;;;:20;:24;;;;;;;;37439:214;;37553:9;;-1:-1:-1;;;;;10419:18:0;;10392:7;10419:18;;;;;;;;;;;37527:22;;:6;:22;:::i;36018:1825::-;-1:-1:-1;;;;;37690:25:0;;;;;;:19;:25;;;;;;;;37689:26;:56;;;;-1:-1:-1;;;;;;37719:26:0;;;;;;:20;:26;;;;;;;;37689:56;:70;;;;-1:-1:-1;;;;;;37749:10:0;;31275:6;37749:10;37689:70;37685:158;;;37788:13;;37776:34;;-1:-1:-1;;;;;37788:13:0;37803:6;37776:11;:34::i;37685:158::-;37904:4;37855:28;10419:18;;;;;;;;;;;37962;;37938:42;;;;;;;38011:35;;-1:-1:-1;38035:11:0;;;;;;;38011:35;:61;;;;-1:-1:-1;38064:8:0;;-1:-1:-1;;;38064:8:0;;;;38063:9;38011:61;:107;;;;-1:-1:-1;;;;;;38089:29:0;;;;;;:25;:29;;;;;;;;38011:107;:152;;;;;38145:18;;38135:6;:28;;38011:152;:195;;;;-1:-1:-1;;;;;;38181:25:0;;;;;;:19;:25;;;;;;;;38180:26;38011:195;:236;;;;-1:-1:-1;;;;;;38224:23:0;;;;;;:19;:23;;;;;;;;38223:24;38011:236;37993:368;;;38274:8;:15;;-1:-1:-1;;;;38274:15:0;-1:-1:-1;;;38274:15:0;;;38306:10;:8;:10::i;:::-;38333:8;:16;;-1:-1:-1;;;;38333:16:0;;;37993:368;38389:8;;-1:-1:-1;;;;;38499:25:0;;38373:12;38499:25;;;:19;:25;;;;;;38389:8;-1:-1:-1;;;38389:8:0;;;;;38388:9;;38499:25;;:52;;-1:-1:-1;;;;;;38528:23:0;;;;;;:19;:23;;;;;;;;38499:52;38495:100;;;-1:-1:-1;38578:5:0;38495:100;38607:12;38712:7;38708:495;;;-1:-1:-1;;;;;38764:29:0;;;;;;:25;:29;;;;;;;;:47;;;;;38810:1;38797:10;;:14;38764:47;38760:294;;;38839:31;38866:3;38839:22;38850:10;;38839:6;:10;;:22;;;;:::i;:::-;:26;;:31::i;:::-;38832:38;;38760:294;;;-1:-1:-1;;;;;38932:31:0;;;;;;:25;:31;;;;;;;;:48;;;;;38979:1;38967:9;;:13;38932:48;38928:126;;;39008:30;39034:3;39008:21;39019:9;;39008:6;:10;;:21;;;;:::i;:30::-;39001:37;;38928:126;39074:8;;39070:91;;39103:42;39119:4;39133;39140;39103:15;:42::i;:::-;39177:14;39187:4;39177:14;;:::i;:::-;;;38708:495;39215:33;39231:4;39237:2;39241:6;39215:15;:33::i;:::-;35746:3510;;;;35633:3623;;;:::o;3164:191::-;3257:6;;;-1:-1:-1;;;;;3274:17:0;;;-1:-1:-1;;;;;;3274:17:0;;;;;;;3307:40;;3257:6;;;3274:17;3257:6;;3307:40;;3238:16;;3307:40;3227:128;3164:191;:::o;35303:188::-;-1:-1:-1;;;;;35386:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;35386:39:0;;;;;;;;;;35443:40;;35386:39;;:31;35443:40;;;35303:188;;:::o;39861:513::-;40009:62;40026:4;40041:15;40059:11;40009:8;:62::i;:::-;40114:15;-1:-1:-1;;;;;40114:31:0;;40153:9;40186:4;40206:11;40232:1;40275;40318:7;1967:6;;-1:-1:-1;;;;;1967:6:0;;1894:87;40318:7;40114:252;;;;;;-1:-1:-1;;;;;;40114:252:0;;;-1:-1:-1;;;;;11803:15:1;;;40114:252:0;;;11785:34:1;11835:18;;;11828:34;;;;11878:18;;;11871:34;;;;11921:18;;;11914:34;11985:15;;;11964:19;;;11957:44;40340:15:0;12017:19:1;;;12010:35;11719:19;;40114:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;39861:513;;:::o;14367:733::-;-1:-1:-1;;;;;14507:20:0;;14499:70;;;;-1:-1:-1;;;14499:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14588:23:0;;14580:71;;;;-1:-1:-1;;;14580:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14748:17:0;;14724:21;14748:17;;;;;;;;;;;14784:23;;;;14776:74;;;;-1:-1:-1;;;14776:74:0;;12569:2:1;14776:74:0;;;12551:21:1;12608:2;12588:18;;;12581:30;12647:34;12627:18;;;12620:62;-1:-1:-1;;;12698:18:1;;;12691:36;12744:19;;14776:74:0;12367:402:1;14776:74:0;-1:-1:-1;;;;;14886:17:0;;;:9;:17;;;;;;;;;;;14906:22;;;14886:42;;14950:20;;;;;;;;:30;;14922:6;;14886:9;14950:30;;14922:6;;14950:30;:::i;:::-;;;;;;;;15015:9;-1:-1:-1;;;;;14998:35:0;15007:6;-1:-1:-1;;;;;14998:35:0;;15026:6;14998:35;;;;2056:25:1;;2044:2;2029:18;;1910:177;14998:35:0;;;;;;;;15046:46;35633:3623;16119:591;-1:-1:-1;;;;;16203:21:0;;16195:67;;;;-1:-1:-1;;;16195:67:0;;12976:2:1;16195:67:0;;;12958:21:1;13015:2;12995:18;;;12988:30;13054:34;13034:18;;;13027:62;-1:-1:-1;;;13105:18:1;;;13098:31;13146:19;;16195:67:0;12774:397:1;16195:67:0;-1:-1:-1;;;;;16362:18:0;;16337:22;16362:18;;;;;;;;;;;16399:24;;;;16391:71;;;;-1:-1:-1;;;16391:71:0;;13378:2:1;16391:71:0;;;13360:21:1;13417:2;13397:18;;;13390:30;13456:34;13436:18;;;13429:62;-1:-1:-1;;;13507:18:1;;;13500:32;13549:19;;16391:71:0;13176:398:1;16391:71:0;-1:-1:-1;;;;;16498:18:0;;:9;:18;;;;;;;;;;16519:23;;;16498:44;;16564:12;:22;;16536:6;;16498:9;16564:22;;16536:6;;16564:22;:::i;:::-;;;;-1:-1:-1;;16604:37:0;;2056:25:1;;;16630:1:0;;-1:-1:-1;;;;;16604:37:0;;;;;2044:2:1;2029:18;16604:37:0;;;;;;;35633:3623;;;:::o;40382:416::-;40465:4;40421:23;10419:18;;;;;;;;;;;;40488:20;;;40484:59;;40525:7;40382:416::o;40484:59::-;40577:18;;:25;;40598:4;40577:25;:::i;:::-;40559:15;:43;40555:119;;;40637:18;;:25;;40658:4;40637:25;:::i;:::-;40619:43;;40555:119;40686:33;40703:15;40686:16;:33::i;:::-;40748:9;;40740:50;;-1:-1:-1;;;;;40748:9:0;;;;40768:21;40740:50;;;;;40748:9;40740:50;40748:9;40740:50;40768:21;40748:9;40740:50;;;;;;;;;;;;;;;;;;;22280:98;22338:7;22365:5;22369:1;22365;:5;:::i;:::-;22358:12;22280:98;-1:-1:-1;;;22280:98:0:o;22679:::-;22737:7;22764:5;22768:1;22764;:5;:::i;39264:589::-;39414:16;;;39428:1;39414:16;;;;;;;;39390:21;;39414:16;;;;;;;;;;-1:-1:-1;39414:16:0;39390:40;;39459:4;39441;39446:1;39441:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;39441:23:0;;;-1:-1:-1;;;;;39441:23:0;;;;;39485:15;-1:-1:-1;;;;;39485:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39475:4;39480:1;39475:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;39475:32:0;;;-1:-1:-1;;;;;39475:32:0;;;;;39520:62;39537:4;39552:15;39570:11;39520:8;:62::i;:::-;39621:224;;-1:-1:-1;;;39621:224:0;;-1:-1:-1;;;;;39621:15:0;:66;;;;:224;;39702:11;;39728:1;;39772:4;;39799;;39819:15;;39621:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39319:534;39264:589;:::o;222:548:1:-;334:4;363:2;392;381:9;374:21;424:6;418:13;467:6;462:2;451:9;447:18;440:34;492:1;502:140;516:6;513:1;510:13;502:140;;;611:14;;;607:23;;601:30;577:17;;;596:2;573:26;566:66;531:10;;502:140;;;506:3;691:1;686:2;677:6;666:9;662:22;658:31;651:42;761:2;754;750:7;745:2;737:6;733:15;729:29;718:9;714:45;710:54;702:62;;;;222:548;;;;:::o;775:131::-;-1:-1:-1;;;;;850:31:1;;840:42;;830:70;;896:1;893;886:12;911:247;970:6;1023:2;1011:9;1002:7;998:23;994:32;991:52;;;1039:1;1036;1029:12;991:52;1078:9;1065:23;1097:31;1122:5;1097:31;:::i;1355:315::-;1423:6;1431;1484:2;1472:9;1463:7;1459:23;1455:32;1452:52;;;1500:1;1497;1490:12;1452:52;1539:9;1526:23;1558:31;1583:5;1558:31;:::i;:::-;1608:5;1660:2;1645:18;;;;1632:32;;-1:-1:-1;;;1355:315:1:o;2092:456::-;2169:6;2177;2185;2238:2;2226:9;2217:7;2213:23;2209:32;2206:52;;;2254:1;2251;2244:12;2206:52;2293:9;2280:23;2312:31;2337:5;2312:31;:::i;:::-;2362:5;-1:-1:-1;2419:2:1;2404:18;;2391:32;2432:33;2391:32;2432:33;:::i;:::-;2092:456;;2484:7;;-1:-1:-1;;;2538:2:1;2523:18;;;;2510:32;;2092:456::o;2742:118::-;2828:5;2821:13;2814:21;2807:5;2804:32;2794:60;;2850:1;2847;2840:12;2865:382;2930:6;2938;2991:2;2979:9;2970:7;2966:23;2962:32;2959:52;;;3007:1;3004;2997:12;2959:52;3046:9;3033:23;3065:31;3090:5;3065:31;:::i;:::-;3115:5;-1:-1:-1;3172:2:1;3157:18;;3144:32;3185:30;3144:32;3185:30;:::i;:::-;3234:7;3224:17;;;2865:382;;;;;:::o;3252:388::-;3320:6;3328;3381:2;3369:9;3360:7;3356:23;3352:32;3349:52;;;3397:1;3394;3387:12;3349:52;3436:9;3423:23;3455:31;3480:5;3455:31;:::i;:::-;3505:5;-1:-1:-1;3562:2:1;3547:18;;3534:32;3575:33;3534:32;3575:33;:::i;3645:380::-;3724:1;3720:12;;;;3767;;;3788:61;;3842:4;3834:6;3830:17;3820:27;;3788:61;3895:2;3887:6;3884:14;3864:18;3861:38;3858:161;;3941:10;3936:3;3932:20;3929:1;3922:31;3976:4;3973:1;3966:15;4004:4;4001:1;3994:15;3858:161;;3645:380;;;:::o;4439:127::-;4500:10;4495:3;4491:20;4488:1;4481:31;4531:4;4528:1;4521:15;4555:4;4552:1;4545:15;4571:125;4636:9;;;4657:10;;;4654:36;;;4670:18;;:::i;4701:356::-;4903:2;4885:21;;;4922:18;;;4915:30;4981:34;4976:2;4961:18;;4954:62;5048:2;5033:18;;4701:356::o;5698:251::-;5768:6;5821:2;5809:9;5800:7;5796:23;5792:32;5789:52;;;5837:1;5834;5827:12;5789:52;5869:9;5863:16;5888:31;5913:5;5888:31;:::i;7024:184::-;7094:6;7147:2;7135:9;7126:7;7122:23;7118:32;7115:52;;;7163:1;7160;7153:12;7115:52;-1:-1:-1;7186:16:1;;7024:184;-1:-1:-1;7024:184:1:o;7492:245::-;7559:6;7612:2;7600:9;7591:7;7587:23;7583:32;7580:52;;;7628:1;7625;7618:12;7580:52;7660:9;7654:16;7679:28;7701:5;7679:28;:::i;8957:401::-;9159:2;9141:21;;;9198:2;9178:18;;;9171:30;9237:34;9232:2;9217:18;;9210:62;-1:-1:-1;;;9303:2:1;9288:18;;9281:35;9348:3;9333:19;;8957:401::o;9363:399::-;9565:2;9547:21;;;9604:2;9584:18;;;9577:30;9643:34;9638:2;9623:18;;9616:62;-1:-1:-1;;;9709:2:1;9694:18;;9687:33;9752:3;9737:19;;9363:399::o;11311:128::-;11378:9;;;11399:11;;;11396:37;;;11413:18;;:::i;12056:306::-;12144:6;12152;12160;12213:2;12201:9;12192:7;12188:23;12184:32;12181:52;;;12229:1;12226;12219:12;12181:52;12258:9;12252:16;12242:26;;12308:2;12297:9;12293:18;12287:25;12277:35;;12352:2;12341:9;12337:18;12331:25;12321:35;;12056:306;;;;;:::o;13579:168::-;13652:9;;;13683;;13700:15;;;13694:22;;13680:37;13670:71;;13721:18;;:::i;13752:217::-;13792:1;13818;13808:132;;13862:10;13857:3;13853:20;13850:1;13843:31;13897:4;13894:1;13887:15;13925:4;13922:1;13915:15;13808:132;-1:-1:-1;13954:9:1;;13752:217::o;14106:127::-;14167:10;14162:3;14158:20;14155:1;14148:31;14198:4;14195:1;14188:15;14222:4;14219:1;14212:15;14238:980;14500:4;14548:3;14537:9;14533:19;14579:6;14568:9;14561:25;14605:2;14643:6;14638:2;14627:9;14623:18;14616:34;14686:3;14681:2;14670:9;14666:18;14659:31;14710:6;14745;14739:13;14776:6;14768;14761:22;14814:3;14803:9;14799:19;14792:26;;14853:2;14845:6;14841:15;14827:29;;14874:1;14884:195;14898:6;14895:1;14892:13;14884:195;;;14963:13;;-1:-1:-1;;;;;14959:39:1;14947:52;;15054:15;;;;15019:12;;;;14995:1;14913:9;14884:195;;;-1:-1:-1;;;;;;;15135:32:1;;;;15130:2;15115:18;;15108:60;-1:-1:-1;;;15199:3:1;15184:19;15177:35;15096:3;14238:980;-1:-1:-1;;;14238:980:1:o

Swarm Source

ipfs://14421fd92226fc64d391505bfcf24dcd3be48b1557c055d718d8c32dace0c715
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.