ETH Price: $3,303.28 (-0.28%)
Gas: 8 Gwei

Token

Doge Wealth Network (DWN)
 

Overview

Max Total Supply

25,000 DWN

Holders

58

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
156.123 DWN

Value
$0.00
0x753e6ffb22ea2ec23f4de867c13cc9a270f8eda2
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:
DogeWealthNetwork

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*
        By Participating In 
       The Doge Wealth Network 
     You Are Accelerating Your Wealth
With A Strong Network Of Beautiful Souls 

Telegram: https://t.me/DogeWealthNetwork
Twitter: https://twitter.com/Doge_WN
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
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 {}
}

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

interface IWETH {
    function deposit() external payable;

    function withdraw(uint) external;
}

/// @title   DogemWealthNetwork
/// @notice  Doge Wealth Network
contract DogeWealthNetwork is ERC20, Ownable {
    /// STATE VARIABLES ///

    /// @notice Address of UniswapV2Router
    IUniswapV2Router02 public immutable uniswapV2Router;
    /// @notice Address of QWN/ETH LP
    address public immutable uniswapV2Pair;
    /// @notice Burn address
    address public constant deadAddress = address(0xdead);
    /// @notice WETH address
    address public immutable WETH;
    /// @notice QWN treasury
    address public treasury;
    /// @notice Team wallet address
    address public teamWallet;

    bool private swapping;

    /// @notice Bool if trading is active
    bool public tradingActive = false;
    /// @notice Bool if swap is enabled
    bool public swapEnabled = false;
    /// @notice Bool if limits are in effect
    bool public limitsInEffect = true;

    /// @notice Current max wallet amount (If limits in effect)
    uint256 public maxWallet;
    /// @notice Current max transaction amount (If limits in effect)
    uint256 public maxTransactionAmount;
    /// @notice Current percent of supply to swap tokens at (i.e. 5 = 0.05%)
    uint256 public swapPercent;

    /// @notice Current buy side total fees
    uint256 public buyTotalFees;
    /// @notice Current buy side backing fee
    uint256 public buyBackingFee;
    /// @notice Current buy side liquidity fee
    uint256 public buyLiquidityFee;
    /// @notice Current buy side team fee
    uint256 public buyTeamFee;

    /// @notice Current sell side total fees
    uint256 public sellTotalFees;
    /// @notice Current sell side backing fee
    uint256 public sellBackingFee;
    /// @notice Current sell side liquidity fee
    uint256 public sellLiquidityFee;
    /// @notice Current sell side team fee
    uint256 public sellTeamFee;

    /// @notice Current tokens going for backing
    uint256 public tokensForBacking;
    /// @notice Current tokens going for liquidity
    uint256 public tokensForLiquidity;
    /// @notice Current tokens going for tean
    uint256 public tokensForTeam;

    /// MAPPINGS ///

    /// @dev Bool if address is excluded from fees
    mapping(address => bool) private _isExcludedFromFees;

    /// @notice Bool if address is excluded from max transaction amount
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    /// @notice Bool if address is AMM pair
    mapping(address => bool) public automatedMarketMakerPairs;

    /// EVENTS ///

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

    /// CONSTRUCTOR ///

    /// @param _weth  Address of WETH
    constructor(address _weth) ERC20("Doge Wealth Network", "DWN") {
        WETH = _weth;
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        uint256 startingSupply_ = 25000000000000;

        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyBackingFee = 2;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyTeamFee = 2;

        uint256 _sellBackingFee = 2;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellTeamFee = 2;

        maxWallet = 250 * 1e9; // 1%
        maxTransactionAmount = 250 * 1e9; // 1%
        swapPercent = 25; // 0.25%

        buyBackingFee = _buyBackingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTeamFee = _buyTeamFee;
        buyTotalFees = buyBackingFee + buyLiquidityFee + buyTeamFee;

        sellBackingFee = _sellBackingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellBackingFee + sellLiquidityFee + sellTeamFee;

        teamWallet = owner(); // set as team wallet

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

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

        _mint(msg.sender, startingSupply_);
    }

    receive() external payable {}

    /// AMM PAIR ///

    /// @notice       Sets if address is AMM pair
    /// @param pair   Address of pair
    /// @param value  Bool if AMM pair
    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    /// @dev Internal function to set `vlaue` of `pair`
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    /// INTERNAL TRANSFER ///

    /// @dev Internal function to burn `amount` from `account`
    function _burnFrom(address account, uint256 amount) internal {
        uint256 decreasedAllowance_ = allowance(account, msg.sender) - amount;

        _approve(account, msg.sender, decreasedAllowance_);
        _burn(account, amount);
    }

    /// @dev Internal function to transfer - handles fee logic
    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] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount();

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_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] && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / 100;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForBacking += (fees * sellBackingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / 100;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForBacking += (fees * buyBackingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

    /// INTERNAL FUNCTION ///

    /// @dev INTERNAL function to swap `tokenAmount` for ETH
    /// @dev Invoked in `swapBack()`
    function swapTokensForEth(uint256 tokenAmount) internal {
        // 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
        );
    }

    /// @dev INTERNAL function to add `tokenAmount` and `ethAmount` to LP
    /// @dev Invoked in `swapBack()`
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
        // 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
            treasury,
            block.timestamp
        );
    }

    /// @dev INTERNAL function to transfer fees properly
    /// @dev Invoked in `_transfer()`
    function swapBack() internal {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForBacking +
            tokensForTeam;
        bool success;

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

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

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance - liquidityTokens;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForBacking = (ethBalance * tokensForBacking) /
            totalTokensToSwap -
            (tokensForLiquidity / 2);

        uint256 ethForTeam = (ethBalance * tokensForTeam) /
            totalTokensToSwap -
            (tokensForLiquidity / 2);

        uint256 ethForLiquidity = ethBalance - ethForBacking - ethForTeam;

        tokensForLiquidity = 0;
        tokensForBacking = 0;
        tokensForTeam = 0;

        (success, ) = address(teamWallet).call{value: ethForTeam}("");

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

        uint256 _balance = address(this).balance;
        IWETH(WETH).deposit{value: _balance}();
        IERC20(WETH).transfer(treasury, _balance);
    }

    /// VIEW FUNCTION ///

    /// @notice Returns decimals for QWN (9)
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    /// @notice Returns if address is excluded from fees
    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    /// @notice Returns at what percent of supply to swap tokens at
    function swapTokensAtAmount() public view returns (uint256 amount_) {
        amount_ = (totalSupply() * swapPercent) / 10000;
    }

    /// TREASURY FUNCTION ///

    /// @notice         Mint QWN (Only by treasury)
    /// @param account  Address to mint QWN to
    /// @param amount   Amount to mint
    function mint(address account, uint256 amount) external {
        require(msg.sender == treasury, "msg.sender not treasury");
        _mint(account, amount);
    }

    /// USER FUNCTIONS ///

    /// @notice         Burn QWN
    /// @param account  Address to burn QWN from
    /// @param amount   Amount to QWN to burn
    function burnFrom(address account, uint256 amount) external {
        _burnFrom(account, amount);
    }

    /// @notice         Burn QWN
    /// @param amount   Amount to QWN to burn
    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    /// OWNER FUNCTIONS ///

    /// @notice Set address of treasury
    function setTreasury(address _treasury) external onlyOwner {
        treasury = _treasury;
        excludeFromFees(_treasury, true);
        excludeFromMaxTransaction(_treasury, true);
    }

    /// @notice Enable trading - once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    /// @notice Update percent of supply to swap tokens at
    function updateSwapTokensAtPercent(
        uint256 newPercent
    ) external onlyOwner returns (bool) {
        require(
            newPercent >= 1,
            "Swap amount cannot be lower than 0.01% total supply."
        );
        require(
            newPercent <= 50,
            "Swap amount cannot be higher than 0.50% total supply."
        );
        swapPercent = newPercent;
        return true;
    }

    /// @notice Update swap enabled
    /// @dev    Only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    /// @notice Update buy side fees
    function updateBuyFees(
        uint256 _backingFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        buyBackingFee = _backingFee;
        buyLiquidityFee = _liquidityFee;
        buyTeamFee = _teamFee;
        buyTotalFees = buyBackingFee + buyLiquidityFee + buyTeamFee;
        require(buyTotalFees <= 5, "Buy fees must be <= 5.");
    }

    /// @notice Update sell side fees
    function updateSellFees(
        uint256 _backingFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        sellBackingFee = _backingFee;
        sellLiquidityFee = _liquidityFee;
        sellTeamFee = _teamFee;
        sellTotalFees = sellBackingFee + sellLiquidityFee + sellTeamFee;
        require(sellTotalFees <= 5, "Sell fees must be <= 5.");
    }

    /// @notice Set if an address is excluded from fees
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    /// @notice Set if an address is excluded from max transaction
    function excludeFromMaxTransaction(
        address updAds,
        bool isEx
    ) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    /// @notice Update team wallet
    function updateTeamWallet(address newWallet) external onlyOwner {
        emit teamWalletUpdated(newWallet, teamWallet);
        teamWallet = newWallet;
        excludeFromFees(newWallet, true);
        excludeFromMaxTransaction(newWallet, true);
    }

    /// @notice Remove limits in palce
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    /// @notice Withdraw stuck QWN from contract
    function withdrawStuckQWN() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    /// @notice Withdraw stuck token from contract
    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);
    }

    /// @notice Withdraw stuck ETH from contract
    function withdrawStuckEth(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{value: address(this).balance}("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_weth","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyBackingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBackingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBacking","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","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":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_backingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_backingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercent","type":"uint256"}],"name":"updateSwapTokensAtPercent","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckQWN","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"}]

60e06040526007805462ffffff60a81b1916600160b81b1790553480156200002657600080fd5b50604051620036f0380380620036f0833981016040819052620000499162000637565b6040518060400160405280601381526020017f446f6765205765616c7468204e6574776f726b0000000000000000000000000081525060405180604001604052806003815260200162222ba760e91b8152508160039081620000ac91906200070d565b506004620000bb82826200070d565b505050620000d8620000d26200037f60201b60201c565b62000383565b6001600160a01b03811660c052737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b815290516516bcc41e900091839163c45a0155916004808201926020929091908290030181865afa15801562000145573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016b919062000637565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001df919062000637565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200022d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000253919062000637565b6001600160a01b031660a08190526200026e906001620003d5565b643a3529440060088190556009556019600a556002600c8190556001600d819055600e8290558180828180620002a58382620007d9565b620002b19190620007d9565b600b5560108390556011829055601281905580620002d08385620007d9565b620002dc9190620007d9565b600f55600554600780546001600160a01b0319166001600160a01b0390921691821790556200030d90600162000429565b6200031a30600162000429565b6200032961dead600162000429565b62000348620003406005546001600160a01b031690565b6001620004d7565b62000355306001620004d7565b6200036461dead6001620004d7565b6200037033886200054d565b50505050505050505062000801565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620004785760405162461bcd60e51b81526020600482018190526024820152600080516020620036d083398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314620005225760405162461bcd60e51b81526020600482018190526024820152600080516020620036d083398151915260448201526064016200046f565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6001600160a01b038216620005a55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200046f565b8060026000828254620005b99190620007d9565b90915550506001600160a01b03821660009081526020819052604081208054839290620005e8908490620007d9565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b6000602082840312156200064a57600080fd5b81516001600160a01b03811681146200066257600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200069457607f821691505b602082108103620006b557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200063257600081815260208120601f850160051c81016020861015620006e45750805b601f850160051c820191505b818110156200070557828155600101620006f0565b505050505050565b81516001600160401b0381111562000729576200072962000669565b62000741816200073a84546200067f565b84620006bb565b602080601f831160018114620007795760008415620007605750858301515b600019600386901b1c1916600185901b17855562000705565b600085815260208120601f198616915b82811015620007aa5788860151825594840194600190910190840162000789565b5085821015620007c95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620007fb57634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a05160c051612e67620008696000396000818161089d0152818161263301526126cb015260008181610563015261116201526000818161042e015281816127a30152818161285c0152818161289801528181612912015261297a0152612e676000f3fe6080604052600436106103855760003560e01c80637f6bf20a116101d1578063bc205ad311610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610a79578063f637434214610a99578063f8b45b0514610aaf578063fde83a3414610ac557600080fd5b8063dd62ed3e146109e8578063e2f4560514610a2e578063f0f4426014610a43578063f11a24d314610a6357600080fd5b8063c17b5b8c116100dc578063c17b5b8c14610986578063c8c8ebe4146109a6578063d729715f146109bc578063d85ba063146109d257600080fd5b8063bc205ad314610930578063be1512f314610950578063c02466681461096657600080fd5b80639c2e4ac61161016f578063ad5c464811610149578063ad5c46481461088b578063b62496f5146108bf578063ba22abc3146108ef578063bbc0c7421461090f57600080fd5b80639c2e4ac614610835578063a457c2d71461084b578063a9059cbb1461086b57600080fd5b80638da5cb5b116101ab5780638da5cb5b146107c2578063924de9b7146107e057806395d89b41146108005780639a7a23d61461081557600080fd5b80637f6bf20a146107775780638095d5641461078d5780638a8c523c146107ad57600080fd5b80634ac1126a116102b65780636f33037f116102545780637571336a116102235780637571336a146106f757806379cc6790146107175780637ca8448a146107375780637cb332bb1461075757600080fd5b80636f33037f1461068157806370a0823114610697578063715018a6146106cd578063751039fc146106e257600080fd5b80635992704411610290578063599270441461060a57806361d027b31461062a5780636a486a8e1461064a5780636ddd17131461066057600080fd5b80634ac1126a146105a65780634d1ea104146105bc5780634fbee193146105d157600080fd5b806327c8f8351161032357806340c10f19116102fd57806340c10f191461050f57806342966c681461053157806349bd5a5e146105515780634a62bb651461058557600080fd5b806327c8f835146104bd578063313ce567146104d357806339509351146104ef57600080fd5b80631694505e1161035f5780631694505e1461041c57806318160ddd146104685780631a8145bb1461048757806323b872dd1461049d57600080fd5b806306fdde0314610391578063095ea7b3146103bc57806310d5de53146103ec57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610adb565b6040516103b391906129f2565b60405180910390f35b3480156103c857600080fd5b506103dc6103d7366004612a55565b610b6d565b60405190151581526020016103b3565b3480156103f857600080fd5b506103dc610407366004612a81565b60176020526000908152604090205460ff1681565b34801561042857600080fd5b506104507f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103b3565b34801561047457600080fd5b506002545b6040519081526020016103b3565b34801561049357600080fd5b5061047960145481565b3480156104a957600080fd5b506103dc6104b8366004612aa5565b610b84565b3480156104c957600080fd5b5061045061dead81565b3480156104df57600080fd5b50604051600981526020016103b3565b3480156104fb57600080fd5b506103dc61050a366004612a55565b610c33565b34801561051b57600080fd5b5061052f61052a366004612a55565b610c6f565b005b34801561053d57600080fd5b5061052f61054c366004612ae6565b610cd7565b34801561055d57600080fd5b506104507f000000000000000000000000000000000000000000000000000000000000000081565b34801561059157600080fd5b506007546103dc90600160b81b900460ff1681565b3480156105b257600080fd5b50610479600a5481565b3480156105c857600080fd5b5061052f610ce4565b3480156105dd57600080fd5b506103dc6105ec366004612a81565b6001600160a01b031660009081526016602052604090205460ff1690565b34801561061657600080fd5b50600754610450906001600160a01b031681565b34801561063657600080fd5b50600654610450906001600160a01b031681565b34801561065657600080fd5b50610479600f5481565b34801561066c57600080fd5b506007546103dc90600160b01b900460ff1681565b34801561068d57600080fd5b5061047960105481565b3480156106a357600080fd5b506104796106b2366004612a81565b6001600160a01b031660009081526020819052604090205490565b3480156106d957600080fd5b5061052f610e08565b3480156106ee57600080fd5b506103dc610e3e565b34801561070357600080fd5b5061052f610712366004612b0d565b610e7e565b34801561072357600080fd5b5061052f610732366004612a55565b610ed3565b34801561074357600080fd5b5061052f610752366004612a81565b610edd565b34801561076357600080fd5b5061052f610772366004612a81565b610f67565b34801561078357600080fd5b5061047960135481565b34801561079957600080fd5b5061052f6107a8366004612b46565b610ffd565b3480156107b957600080fd5b5061052f61109e565b3480156107ce57600080fd5b506005546001600160a01b0316610450565b3480156107ec57600080fd5b5061052f6107fb366004612b72565b6110df565b34801561080c57600080fd5b506103a6611127565b34801561082157600080fd5b5061052f610830366004612b0d565b611136565b34801561084157600080fd5b50610479600e5481565b34801561085757600080fd5b506103dc610866366004612a55565b611211565b34801561087757600080fd5b506103dc610886366004612a55565b6112aa565b34801561089757600080fd5b506104507f000000000000000000000000000000000000000000000000000000000000000081565b3480156108cb57600080fd5b506103dc6108da366004612a81565b60186020526000908152604090205460ff1681565b3480156108fb57600080fd5b506103dc61090a366004612ae6565b6112b7565b34801561091b57600080fd5b506007546103dc90600160a81b900460ff1681565b34801561093c57600080fd5b5061052f61094b366004612b8f565b6113ca565b34801561095c57600080fd5b50610479600c5481565b34801561097257600080fd5b5061052f610981366004612b0d565b611532565b34801561099257600080fd5b5061052f6109a1366004612b46565b6115bb565b3480156109b257600080fd5b5061047960095481565b3480156109c857600080fd5b5061047960125481565b3480156109de57600080fd5b50610479600b5481565b3480156109f457600080fd5b50610479610a03366004612b8f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a3a57600080fd5b5061047961165e565b348015610a4f57600080fd5b5061052f610a5e366004612a81565b611688565b348015610a6f57600080fd5b50610479600d5481565b348015610a8557600080fd5b5061052f610a94366004612a81565b6116d8565b348015610aa557600080fd5b5061047960115481565b348015610abb57600080fd5b5061047960085481565b348015610ad157600080fd5b5061047960155481565b606060038054610aea90612bbd565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1690612bbd565b8015610b635780601f10610b3857610100808354040283529160200191610b63565b820191906000526020600020905b815481529060010190602001808311610b4657829003601f168201915b5050505050905090565b6000610b7a338484611770565b5060015b92915050565b6000610b91848484611894565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c1b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610c288533858403611770565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b7a918590610c6a908690612c0d565b611770565b6006546001600160a01b03163314610cc95760405162461bcd60e51b815260206004820152601760248201527f6d73672e73656e646572206e6f742074726561737572790000000000000000006044820152606401610c12565b610cd38282611faa565b5050565b610ce13382612089565b50565b6005546001600160a01b03163314610d0e5760405162461bcd60e51b8152600401610c1290612c20565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa158015610d4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d709190612c55565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015610db7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddb9190612c6e565b5060405133904780156108fc02916000818181858888f19350505050158015610cd3573d6000803e3d6000fd5b6005546001600160a01b03163314610e325760405162461bcd60e51b8152600401610c1290612c20565b610e3c60006121d7565b565b6005546000906001600160a01b03163314610e6b5760405162461bcd60e51b8152600401610c1290612c20565b506007805460ff60b81b19169055600190565b6005546001600160a01b03163314610ea85760405162461bcd60e51b8152600401610c1290612c20565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b610cd38282612229565b6005546001600160a01b03163314610f075760405162461bcd60e51b8152600401610c1290612c20565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f54576040519150601f19603f3d011682016040523d82523d6000602084013e610f59565b606091505b5050905080610cd357600080fd5b6005546001600160a01b03163314610f915760405162461bcd60e51b8152600401610c1290612c20565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166890600090a3600780546001600160a01b0319166001600160a01b038316179055610ff2816001611532565b610ce1816001610e7e565b6005546001600160a01b031633146110275760405162461bcd60e51b8152600401610c1290612c20565b600c839055600d829055600e819055806110418385612c0d565b61104b9190612c0d565b600b819055600510156110995760405162461bcd60e51b8152602060048201526016602482015275213abc903332b2b99036bab9ba103132901e1e901a9760511b6044820152606401610c12565b505050565b6005546001600160a01b031633146110c85760405162461bcd60e51b8152600401610c1290612c20565b6007805461ffff60a81b191661010160a81b179055565b6005546001600160a01b031633146111095760405162461bcd60e51b8152600401610c1290612c20565b60078054911515600160b01b0260ff60b01b19909216919091179055565b606060048054610aea90612bbd565b6005546001600160a01b031633146111605760405162461bcd60e51b8152600401610c1290612c20565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036112075760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c12565b610cd3828261226f565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c12565b6112a03385858403611770565b5060019392505050565b6000610b7a338484611894565b6005546000906001600160a01b031633146112e45760405162461bcd60e51b8152600401610c1290612c20565b60018210156113525760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610c12565b60328211156113c15760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015274371018171a9812903a37ba30b61039bab838363c9760591b6064820152608401610c12565b50600a55600190565b6005546001600160a01b031633146113f45760405162461bcd60e51b8152600401610c1290612c20565b6001600160a01b03821661144a5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610c12565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015611491573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b59190612c55565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af1158015611508573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152c9190612c6e565b50505050565b6005546001600160a01b0316331461155c5760405162461bcd60e51b8152600401610c1290612c20565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115e55760405162461bcd60e51b8152600401610c1290612c20565b601083905560118290556012819055806115ff8385612c0d565b6116099190612c0d565b600f819055600510156110995760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610c12565b6000612710600a5461166f60025490565b6116799190612c8b565b6116839190612ca2565b905090565b6005546001600160a01b031633146116b25760405162461bcd60e51b8152600401610c1290612c20565b600680546001600160a01b0319166001600160a01b038316179055610ff2816001611532565b6005546001600160a01b031633146117025760405162461bcd60e51b8152600401610c1290612c20565b6001600160a01b0381166117675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c12565b610ce1816121d7565b6001600160a01b0383166117d25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c12565b6001600160a01b0382166118335760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c12565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166118ba5760405162461bcd60e51b8152600401610c1290612cc4565b6001600160a01b0382166118e05760405162461bcd60e51b8152600401610c1290612d09565b806000036118f457611099838360006122c3565b600754600160b81b900460ff1615611c73576005546001600160a01b0384811691161480159061193257506005546001600160a01b03838116911614155b801561194657506001600160a01b03821615155b801561195d57506001600160a01b03821661dead14155b80156119735750600754600160a01b900460ff16155b15611c7357600754600160a81b900460ff16611a0d576001600160a01b03831660009081526016602052604090205460ff16806119c857506001600160a01b03821660009081526016602052604090205460ff165b611a0d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c12565b6001600160a01b03831660009081526018602052604090205460ff168015611a4e57506001600160a01b03821660009081526017602052604090205460ff16155b15611b3257600954811115611ac35760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c12565b6008546001600160a01b038316600090815260208190526040902054611ae99083612c0d565b1115611b2d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c12565b611c73565b6001600160a01b03821660009081526018602052604090205460ff168015611b7357506001600160a01b03831660009081526017602052604090205460ff16155b15611be957600954811115611b2d5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c12565b6001600160a01b03821660009081526017602052604090205460ff16611c73576008546001600160a01b038316600090815260208190526040902054611c2f9083612c0d565b1115611c735760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c12565b3060009081526020819052604081205490611c8c61165e565b8210159050808015611ca75750600754600160b01b900460ff165b8015611cbd5750600754600160a01b900460ff16155b8015611ce257506001600160a01b03851660009081526018602052604090205460ff16155b8015611d0757506001600160a01b03851660009081526016602052604090205460ff16155b8015611d2c57506001600160a01b03841660009081526016602052604090205460ff16155b15611d5a576007805460ff60a01b1916600160a01b179055611d4c612417565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526016602052604090205460ff600160a01b909204821615911680611da857506001600160a01b03851660009081526016602052604090205460ff165b15611db1575060005b60008115611f96576001600160a01b03861660009081526018602052604090205460ff168015611de357506000600f54115b15611e9b576064600f5486611df89190612c8b565b611e029190612ca2565b9050600f5460115482611e159190612c8b565b611e1f9190612ca2565b60146000828254611e309190612c0d565b9091555050600f54601254611e459083612c8b565b611e4f9190612ca2565b60156000828254611e609190612c0d565b9091555050600f54601054611e759083612c8b565b611e7f9190612ca2565b60136000828254611e909190612c0d565b90915550611f789050565b6001600160a01b03871660009081526018602052604090205460ff168015611ec557506000600b54115b15611f78576064600b5486611eda9190612c8b565b611ee49190612ca2565b9050600b54600d5482611ef79190612c8b565b611f019190612ca2565b60146000828254611f129190612c0d565b9091555050600b54600e54611f279083612c8b565b611f319190612ca2565b60156000828254611f429190612c0d565b9091555050600b54600c54611f579083612c8b565b611f619190612ca2565b60136000828254611f729190612c0d565b90915550505b8015611f8957611f898730836122c3565b611f938186612d4c565b94505b611fa18787876122c3565b50505050505050565b6001600160a01b0382166120005760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610c12565b80600260008282546120129190612c0d565b90915550506001600160a01b0382166000908152602081905260408120805483929061203f908490612c0d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166120e95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610c12565b6001600160a01b0382166000908152602081905260409020548181101561215d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610c12565b6001600160a01b038316600090815260208190526040812083830390556002805484929061218c908490612d4c565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600160209081526040808320338452909152812054612258908390612d4c565b9050612265833383611770565b6110998383612089565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166122e95760405162461bcd60e51b8152600401610c1290612cc4565b6001600160a01b03821661230f5760405162461bcd60e51b8152600401610c1290612d09565b6001600160a01b038316600090815260208190526040902054818110156123875760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c12565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906123be908490612c0d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161240a91815260200190565b60405180910390a361152c565b306000908152602081905260408120549050600060155460135460145461243e9190612c0d565b6124489190612c0d565b90506000821580612457575081155b1561246157505050565b61246961165e565b612474906014612c8b565b8311156124915761248361165e565b61248e906014612c8b565b92505b6000600283601454866124a49190612c8b565b6124ae9190612ca2565b6124b89190612ca2565b905060006124c68286612d4c565b9050476124d28261274c565b60006124de8247612d4c565b9050600060026014546124f19190612ca2565b87601354846125009190612c8b565b61250a9190612ca2565b6125149190612d4c565b9050600060026014546125279190612ca2565b88601554856125369190612c8b565b6125409190612ca2565b61254a9190612d4c565b90506000816125598486612d4c565b6125639190612d4c565b60006014819055601381905560158190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146125c0576040519150601f19603f3d011682016040523d82523d6000602084013e6125c5565b606091505b509098505086158015906125d95750600081115b1561262c576125e8878261290c565b601454604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60004790507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561268c57600080fd5b505af11580156126a0573d6000803e3d6000fd5b505060065460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018690527f0000000000000000000000000000000000000000000000000000000000000000909116935063a9059cbb925060440190506020604051808303816000875af115801561271a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061273e9190612c6e565b505050505050505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061278157612781612d5f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128239190612d75565b8160018151811061283657612836612d5f565b60200260200101906001600160a01b031690816001600160a01b031681525050612881307f000000000000000000000000000000000000000000000000000000000000000084611770565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906128d6908590600090869030904290600401612d92565b600060405180830381600087803b1580156128f057600080fd5b505af1158015612904573d6000803e3d6000fd5b505050505050565b612937307f000000000000000000000000000000000000000000000000000000000000000084611770565b60065460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af11580156129c6573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906129eb9190612e03565b5050505050565b600060208083528351808285015260005b81811015612a1f57858101830151858201604001528201612a03565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ce157600080fd5b60008060408385031215612a6857600080fd5b8235612a7381612a40565b946020939093013593505050565b600060208284031215612a9357600080fd5b8135612a9e81612a40565b9392505050565b600080600060608486031215612aba57600080fd5b8335612ac581612a40565b92506020840135612ad581612a40565b929592945050506040919091013590565b600060208284031215612af857600080fd5b5035919050565b8015158114610ce157600080fd5b60008060408385031215612b2057600080fd5b8235612b2b81612a40565b91506020830135612b3b81612aff565b809150509250929050565b600080600060608486031215612b5b57600080fd5b505081359360208301359350604090920135919050565b600060208284031215612b8457600080fd5b8135612a9e81612aff565b60008060408385031215612ba257600080fd5b8235612bad81612a40565b91506020830135612b3b81612a40565b600181811c90821680612bd157607f821691505b602082108103612bf157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b7e57610b7e612bf7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215612c6757600080fd5b5051919050565b600060208284031215612c8057600080fd5b8151612a9e81612aff565b8082028115828204841417610b7e57610b7e612bf7565b600082612cbf57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b7e57610b7e612bf7565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612d8757600080fd5b8151612a9e81612a40565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612de25784516001600160a01b031683529383019391830191600101612dbd565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612e1857600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122084dd7fa152c65ae688331fd67a2bc0016230ed774a04251a1a57da8d7d08149064736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2

Deployed Bytecode

0x6080604052600436106103855760003560e01c80637f6bf20a116101d1578063bc205ad311610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610a79578063f637434214610a99578063f8b45b0514610aaf578063fde83a3414610ac557600080fd5b8063dd62ed3e146109e8578063e2f4560514610a2e578063f0f4426014610a43578063f11a24d314610a6357600080fd5b8063c17b5b8c116100dc578063c17b5b8c14610986578063c8c8ebe4146109a6578063d729715f146109bc578063d85ba063146109d257600080fd5b8063bc205ad314610930578063be1512f314610950578063c02466681461096657600080fd5b80639c2e4ac61161016f578063ad5c464811610149578063ad5c46481461088b578063b62496f5146108bf578063ba22abc3146108ef578063bbc0c7421461090f57600080fd5b80639c2e4ac614610835578063a457c2d71461084b578063a9059cbb1461086b57600080fd5b80638da5cb5b116101ab5780638da5cb5b146107c2578063924de9b7146107e057806395d89b41146108005780639a7a23d61461081557600080fd5b80637f6bf20a146107775780638095d5641461078d5780638a8c523c146107ad57600080fd5b80634ac1126a116102b65780636f33037f116102545780637571336a116102235780637571336a146106f757806379cc6790146107175780637ca8448a146107375780637cb332bb1461075757600080fd5b80636f33037f1461068157806370a0823114610697578063715018a6146106cd578063751039fc146106e257600080fd5b80635992704411610290578063599270441461060a57806361d027b31461062a5780636a486a8e1461064a5780636ddd17131461066057600080fd5b80634ac1126a146105a65780634d1ea104146105bc5780634fbee193146105d157600080fd5b806327c8f8351161032357806340c10f19116102fd57806340c10f191461050f57806342966c681461053157806349bd5a5e146105515780634a62bb651461058557600080fd5b806327c8f835146104bd578063313ce567146104d357806339509351146104ef57600080fd5b80631694505e1161035f5780631694505e1461041c57806318160ddd146104685780631a8145bb1461048757806323b872dd1461049d57600080fd5b806306fdde0314610391578063095ea7b3146103bc57806310d5de53146103ec57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610adb565b6040516103b391906129f2565b60405180910390f35b3480156103c857600080fd5b506103dc6103d7366004612a55565b610b6d565b60405190151581526020016103b3565b3480156103f857600080fd5b506103dc610407366004612a81565b60176020526000908152604090205460ff1681565b34801561042857600080fd5b506104507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103b3565b34801561047457600080fd5b506002545b6040519081526020016103b3565b34801561049357600080fd5b5061047960145481565b3480156104a957600080fd5b506103dc6104b8366004612aa5565b610b84565b3480156104c957600080fd5b5061045061dead81565b3480156104df57600080fd5b50604051600981526020016103b3565b3480156104fb57600080fd5b506103dc61050a366004612a55565b610c33565b34801561051b57600080fd5b5061052f61052a366004612a55565b610c6f565b005b34801561053d57600080fd5b5061052f61054c366004612ae6565b610cd7565b34801561055d57600080fd5b506104507f0000000000000000000000000b085189c073345a8c4649f63935cbd12199d14881565b34801561059157600080fd5b506007546103dc90600160b81b900460ff1681565b3480156105b257600080fd5b50610479600a5481565b3480156105c857600080fd5b5061052f610ce4565b3480156105dd57600080fd5b506103dc6105ec366004612a81565b6001600160a01b031660009081526016602052604090205460ff1690565b34801561061657600080fd5b50600754610450906001600160a01b031681565b34801561063657600080fd5b50600654610450906001600160a01b031681565b34801561065657600080fd5b50610479600f5481565b34801561066c57600080fd5b506007546103dc90600160b01b900460ff1681565b34801561068d57600080fd5b5061047960105481565b3480156106a357600080fd5b506104796106b2366004612a81565b6001600160a01b031660009081526020819052604090205490565b3480156106d957600080fd5b5061052f610e08565b3480156106ee57600080fd5b506103dc610e3e565b34801561070357600080fd5b5061052f610712366004612b0d565b610e7e565b34801561072357600080fd5b5061052f610732366004612a55565b610ed3565b34801561074357600080fd5b5061052f610752366004612a81565b610edd565b34801561076357600080fd5b5061052f610772366004612a81565b610f67565b34801561078357600080fd5b5061047960135481565b34801561079957600080fd5b5061052f6107a8366004612b46565b610ffd565b3480156107b957600080fd5b5061052f61109e565b3480156107ce57600080fd5b506005546001600160a01b0316610450565b3480156107ec57600080fd5b5061052f6107fb366004612b72565b6110df565b34801561080c57600080fd5b506103a6611127565b34801561082157600080fd5b5061052f610830366004612b0d565b611136565b34801561084157600080fd5b50610479600e5481565b34801561085757600080fd5b506103dc610866366004612a55565b611211565b34801561087757600080fd5b506103dc610886366004612a55565b6112aa565b34801561089757600080fd5b506104507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b3480156108cb57600080fd5b506103dc6108da366004612a81565b60186020526000908152604090205460ff1681565b3480156108fb57600080fd5b506103dc61090a366004612ae6565b6112b7565b34801561091b57600080fd5b506007546103dc90600160a81b900460ff1681565b34801561093c57600080fd5b5061052f61094b366004612b8f565b6113ca565b34801561095c57600080fd5b50610479600c5481565b34801561097257600080fd5b5061052f610981366004612b0d565b611532565b34801561099257600080fd5b5061052f6109a1366004612b46565b6115bb565b3480156109b257600080fd5b5061047960095481565b3480156109c857600080fd5b5061047960125481565b3480156109de57600080fd5b50610479600b5481565b3480156109f457600080fd5b50610479610a03366004612b8f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a3a57600080fd5b5061047961165e565b348015610a4f57600080fd5b5061052f610a5e366004612a81565b611688565b348015610a6f57600080fd5b50610479600d5481565b348015610a8557600080fd5b5061052f610a94366004612a81565b6116d8565b348015610aa557600080fd5b5061047960115481565b348015610abb57600080fd5b5061047960085481565b348015610ad157600080fd5b5061047960155481565b606060038054610aea90612bbd565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1690612bbd565b8015610b635780601f10610b3857610100808354040283529160200191610b63565b820191906000526020600020905b815481529060010190602001808311610b4657829003601f168201915b5050505050905090565b6000610b7a338484611770565b5060015b92915050565b6000610b91848484611894565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c1b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610c288533858403611770565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b7a918590610c6a908690612c0d565b611770565b6006546001600160a01b03163314610cc95760405162461bcd60e51b815260206004820152601760248201527f6d73672e73656e646572206e6f742074726561737572790000000000000000006044820152606401610c12565b610cd38282611faa565b5050565b610ce13382612089565b50565b6005546001600160a01b03163314610d0e5760405162461bcd60e51b8152600401610c1290612c20565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa158015610d4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d709190612c55565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015610db7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddb9190612c6e565b5060405133904780156108fc02916000818181858888f19350505050158015610cd3573d6000803e3d6000fd5b6005546001600160a01b03163314610e325760405162461bcd60e51b8152600401610c1290612c20565b610e3c60006121d7565b565b6005546000906001600160a01b03163314610e6b5760405162461bcd60e51b8152600401610c1290612c20565b506007805460ff60b81b19169055600190565b6005546001600160a01b03163314610ea85760405162461bcd60e51b8152600401610c1290612c20565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b610cd38282612229565b6005546001600160a01b03163314610f075760405162461bcd60e51b8152600401610c1290612c20565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f54576040519150601f19603f3d011682016040523d82523d6000602084013e610f59565b606091505b5050905080610cd357600080fd5b6005546001600160a01b03163314610f915760405162461bcd60e51b8152600401610c1290612c20565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166890600090a3600780546001600160a01b0319166001600160a01b038316179055610ff2816001611532565b610ce1816001610e7e565b6005546001600160a01b031633146110275760405162461bcd60e51b8152600401610c1290612c20565b600c839055600d829055600e819055806110418385612c0d565b61104b9190612c0d565b600b819055600510156110995760405162461bcd60e51b8152602060048201526016602482015275213abc903332b2b99036bab9ba103132901e1e901a9760511b6044820152606401610c12565b505050565b6005546001600160a01b031633146110c85760405162461bcd60e51b8152600401610c1290612c20565b6007805461ffff60a81b191661010160a81b179055565b6005546001600160a01b031633146111095760405162461bcd60e51b8152600401610c1290612c20565b60078054911515600160b01b0260ff60b01b19909216919091179055565b606060048054610aea90612bbd565b6005546001600160a01b031633146111605760405162461bcd60e51b8152600401610c1290612c20565b7f0000000000000000000000000b085189c073345a8c4649f63935cbd12199d1486001600160a01b0316826001600160a01b0316036112075760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c12565b610cd3828261226f565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c12565b6112a03385858403611770565b5060019392505050565b6000610b7a338484611894565b6005546000906001600160a01b031633146112e45760405162461bcd60e51b8152600401610c1290612c20565b60018210156113525760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610c12565b60328211156113c15760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015274371018171a9812903a37ba30b61039bab838363c9760591b6064820152608401610c12565b50600a55600190565b6005546001600160a01b031633146113f45760405162461bcd60e51b8152600401610c1290612c20565b6001600160a01b03821661144a5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610c12565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015611491573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b59190612c55565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af1158015611508573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152c9190612c6e565b50505050565b6005546001600160a01b0316331461155c5760405162461bcd60e51b8152600401610c1290612c20565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115e55760405162461bcd60e51b8152600401610c1290612c20565b601083905560118290556012819055806115ff8385612c0d565b6116099190612c0d565b600f819055600510156110995760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610c12565b6000612710600a5461166f60025490565b6116799190612c8b565b6116839190612ca2565b905090565b6005546001600160a01b031633146116b25760405162461bcd60e51b8152600401610c1290612c20565b600680546001600160a01b0319166001600160a01b038316179055610ff2816001611532565b6005546001600160a01b031633146117025760405162461bcd60e51b8152600401610c1290612c20565b6001600160a01b0381166117675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c12565b610ce1816121d7565b6001600160a01b0383166117d25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c12565b6001600160a01b0382166118335760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c12565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166118ba5760405162461bcd60e51b8152600401610c1290612cc4565b6001600160a01b0382166118e05760405162461bcd60e51b8152600401610c1290612d09565b806000036118f457611099838360006122c3565b600754600160b81b900460ff1615611c73576005546001600160a01b0384811691161480159061193257506005546001600160a01b03838116911614155b801561194657506001600160a01b03821615155b801561195d57506001600160a01b03821661dead14155b80156119735750600754600160a01b900460ff16155b15611c7357600754600160a81b900460ff16611a0d576001600160a01b03831660009081526016602052604090205460ff16806119c857506001600160a01b03821660009081526016602052604090205460ff165b611a0d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c12565b6001600160a01b03831660009081526018602052604090205460ff168015611a4e57506001600160a01b03821660009081526017602052604090205460ff16155b15611b3257600954811115611ac35760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c12565b6008546001600160a01b038316600090815260208190526040902054611ae99083612c0d565b1115611b2d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c12565b611c73565b6001600160a01b03821660009081526018602052604090205460ff168015611b7357506001600160a01b03831660009081526017602052604090205460ff16155b15611be957600954811115611b2d5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c12565b6001600160a01b03821660009081526017602052604090205460ff16611c73576008546001600160a01b038316600090815260208190526040902054611c2f9083612c0d565b1115611c735760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c12565b3060009081526020819052604081205490611c8c61165e565b8210159050808015611ca75750600754600160b01b900460ff165b8015611cbd5750600754600160a01b900460ff16155b8015611ce257506001600160a01b03851660009081526018602052604090205460ff16155b8015611d0757506001600160a01b03851660009081526016602052604090205460ff16155b8015611d2c57506001600160a01b03841660009081526016602052604090205460ff16155b15611d5a576007805460ff60a01b1916600160a01b179055611d4c612417565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526016602052604090205460ff600160a01b909204821615911680611da857506001600160a01b03851660009081526016602052604090205460ff165b15611db1575060005b60008115611f96576001600160a01b03861660009081526018602052604090205460ff168015611de357506000600f54115b15611e9b576064600f5486611df89190612c8b565b611e029190612ca2565b9050600f5460115482611e159190612c8b565b611e1f9190612ca2565b60146000828254611e309190612c0d565b9091555050600f54601254611e459083612c8b565b611e4f9190612ca2565b60156000828254611e609190612c0d565b9091555050600f54601054611e759083612c8b565b611e7f9190612ca2565b60136000828254611e909190612c0d565b90915550611f789050565b6001600160a01b03871660009081526018602052604090205460ff168015611ec557506000600b54115b15611f78576064600b5486611eda9190612c8b565b611ee49190612ca2565b9050600b54600d5482611ef79190612c8b565b611f019190612ca2565b60146000828254611f129190612c0d565b9091555050600b54600e54611f279083612c8b565b611f319190612ca2565b60156000828254611f429190612c0d565b9091555050600b54600c54611f579083612c8b565b611f619190612ca2565b60136000828254611f729190612c0d565b90915550505b8015611f8957611f898730836122c3565b611f938186612d4c565b94505b611fa18787876122c3565b50505050505050565b6001600160a01b0382166120005760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610c12565b80600260008282546120129190612c0d565b90915550506001600160a01b0382166000908152602081905260408120805483929061203f908490612c0d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166120e95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610c12565b6001600160a01b0382166000908152602081905260409020548181101561215d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610c12565b6001600160a01b038316600090815260208190526040812083830390556002805484929061218c908490612d4c565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600160209081526040808320338452909152812054612258908390612d4c565b9050612265833383611770565b6110998383612089565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166122e95760405162461bcd60e51b8152600401610c1290612cc4565b6001600160a01b03821661230f5760405162461bcd60e51b8152600401610c1290612d09565b6001600160a01b038316600090815260208190526040902054818110156123875760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c12565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906123be908490612c0d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161240a91815260200190565b60405180910390a361152c565b306000908152602081905260408120549050600060155460135460145461243e9190612c0d565b6124489190612c0d565b90506000821580612457575081155b1561246157505050565b61246961165e565b612474906014612c8b565b8311156124915761248361165e565b61248e906014612c8b565b92505b6000600283601454866124a49190612c8b565b6124ae9190612ca2565b6124b89190612ca2565b905060006124c68286612d4c565b9050476124d28261274c565b60006124de8247612d4c565b9050600060026014546124f19190612ca2565b87601354846125009190612c8b565b61250a9190612ca2565b6125149190612d4c565b9050600060026014546125279190612ca2565b88601554856125369190612c8b565b6125409190612ca2565b61254a9190612d4c565b90506000816125598486612d4c565b6125639190612d4c565b60006014819055601381905560158190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146125c0576040519150601f19603f3d011682016040523d82523d6000602084013e6125c5565b606091505b509098505086158015906125d95750600081115b1561262c576125e8878261290c565b601454604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60004790507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561268c57600080fd5b505af11580156126a0573d6000803e3d6000fd5b505060065460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018690527f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2909116935063a9059cbb925060440190506020604051808303816000875af115801561271a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061273e9190612c6e565b505050505050505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061278157612781612d5f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128239190612d75565b8160018151811061283657612836612d5f565b60200260200101906001600160a01b031690816001600160a01b031681525050612881307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611770565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906128d6908590600090869030904290600401612d92565b600060405180830381600087803b1580156128f057600080fd5b505af1158015612904573d6000803e3d6000fd5b505050505050565b612937307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611770565b60065460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af11580156129c6573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906129eb9190612e03565b5050505050565b600060208083528351808285015260005b81811015612a1f57858101830151858201604001528201612a03565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ce157600080fd5b60008060408385031215612a6857600080fd5b8235612a7381612a40565b946020939093013593505050565b600060208284031215612a9357600080fd5b8135612a9e81612a40565b9392505050565b600080600060608486031215612aba57600080fd5b8335612ac581612a40565b92506020840135612ad581612a40565b929592945050506040919091013590565b600060208284031215612af857600080fd5b5035919050565b8015158114610ce157600080fd5b60008060408385031215612b2057600080fd5b8235612b2b81612a40565b91506020830135612b3b81612aff565b809150509250929050565b600080600060608486031215612b5b57600080fd5b505081359360208301359350604090920135919050565b600060208284031215612b8457600080fd5b8135612a9e81612aff565b60008060408385031215612ba257600080fd5b8235612bad81612a40565b91506020830135612b3b81612a40565b600181811c90821680612bd157607f821691505b602082108103612bf157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b7e57610b7e612bf7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215612c6757600080fd5b5051919050565b600060208284031215612c8057600080fd5b8151612a9e81612aff565b8082028115828204841417610b7e57610b7e612bf7565b600082612cbf57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b7e57610b7e612bf7565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612d8757600080fd5b8151612a9e81612a40565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612de25784516001600160a01b031683529383019391830191600101612dbd565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612e1857600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122084dd7fa152c65ae688331fd67a2bc0016230ed774a04251a1a57da8d7d08149064736f6c63430008130033

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

000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2

-----Decoded View---------------
Arg [0] : _weth (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2


Deployed Bytecode Sourcemap

24916:18496:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9285:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11518:194;;;;;;;;;;-1:-1:-1;11518:194:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11518:194:0;1023:187:1;27199:63:0;;;;;;;;;;-1:-1:-1;27199:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25043:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;25043:51:0;1467:230:1;10405:108:0;;;;;;;;;;-1:-1:-1;10493:12:0;;10405:108;;;1848:25:1;;;1836:2;1821:18;10405:108:0;1702:177:1;26865:33:0;;;;;;;;;;;;;;;;12194:529;;;;;;;;;;-1:-1:-1;12194:529:0;;;;;:::i;:::-;;:::i;25215:53::-;;;;;;;;;;;;25261:6;25215:53;;38155:92;;;;;;;;;;-1:-1:-1;38155:92:0;;38238:1;2695:36:1;;2683:2;2668:18;38155:92:0;2553:184:1;13132:290:0;;;;;;;;;;-1:-1:-1;13132:290:0;;;;;:::i;:::-;;:::i;38832:166::-;;;;;;;;;;-1:-1:-1;38832:166:0;;;;;:::i;:::-;;:::i;:::-;;39361:83;;;;;;;;;;-1:-1:-1;39361:83:0;;;;;:::i;:::-;;:::i;25140:38::-;;;;;;;;;;;;;;;25710:33;;;;;;;;;;-1:-1:-1;25710:33:0;;;;-1:-1:-1;;;25710:33:0;;;;;;26038:26;;;;;;;;;;;;;;;;42553:254;;;;;;;;;;;;;:::i;38313:126::-;;;;;;;;;;-1:-1:-1;38313:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;38403:28:0;38379:4;38403:28;;;:19;:28;;;;;;;;;38313:126;25438:25;;;;;;;;;;-1:-1:-1;25438:25:0;;;;-1:-1:-1;;;;;25438:25:0;;;25371:23;;;;;;;;;;-1:-1:-1;25371:23:0;;;;-1:-1:-1;;;;;25371:23:0;;;26441:28;;;;;;;;;;;;;;;;25626:31;;;;;;;;;;-1:-1:-1;25626:31:0;;;;-1:-1:-1;;;25626:31:0;;;;;;26523:29;;;;;;;;;;;;;;;;10576:143;;;;;;;;;;-1:-1:-1;10576:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;10693:18:0;10666:7;10693:18;;;;;;;;;;;;10576:143;2681:103;;;;;;;;;;;;;:::i;42374:121::-;;;;;;;;;;;;;:::i;41856:169::-;;;;;;;;;;-1:-1:-1;41856:169:0;;;;;:::i;:::-;;:::i;39167:105::-;;;;;;;;;;-1:-1:-1;39167:105:0;;;;;:::i;:::-;;:::i;43238:171::-;;;;;;;;;;-1:-1:-1;43238:171:0;;;;;:::i;:::-;;:::i;42069:257::-;;;;;;;;;;-1:-1:-1;42069:257:0;;;;;:::i;:::-;;:::i;26775:31::-;;;;;;;;;;;;;;;;40694:391;;;;;;;;;;-1:-1:-1;40694:391:0;;;;;:::i;:::-;;:::i;39798:112::-;;;;;;;;;;;;;:::i;2030:87::-;;;;;;;;;;-1:-1:-1;2103:6:0;;-1:-1:-1;;;;;2103:6:0;2030:87;;40548:100;;;;;;;;;;-1:-1:-1;40548:100:0;;;;;:::i;:::-;;:::i;9504:104::-;;;;;;;;;;;;;:::i;29837:306::-;;;;;;;;;;-1:-1:-1;29837:306:0;;;;;:::i;:::-;;:::i;26361:25::-;;;;;;;;;;;;;;;;13925:475;;;;;;;;;;-1:-1:-1;13925:475:0;;;;;:::i;:::-;;:::i;10932:200::-;;;;;;;;;;-1:-1:-1;10932:200:0;;;;;:::i;:::-;;:::i;25305:29::-;;;;;;;;;;;;;;;27316:57;;;;;;;;;;-1:-1:-1;27316:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;39978:428;;;;;;;;;;-1:-1:-1;39978:428:0;;;;;:::i;:::-;;:::i;25545:33::-;;;;;;;;;;-1:-1:-1;25545:33:0;;;;-1:-1:-1;;;25545:33:0;;;;;;42867:313;;;;;;;;;;-1:-1:-1;42867:313:0;;;;;:::i;:::-;;:::i;26198:28::-;;;;;;;;;;;;;;;;41598:182;;;;;;;;;;-1:-1:-1;41598:182:0;;;;;:::i;:::-;;:::i;41132:401::-;;;;;;;;;;-1:-1:-1;41132:401:0;;;;;:::i;:::-;;:::i;25918:35::-;;;;;;;;;;;;;;;;26690:26;;;;;;;;;;;;;;;;26118:27;;;;;;;;;;;;;;;;11195:176;;;;;;;;;;-1:-1:-1;11195:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;11336:18:0;;;11309:7;11336:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11195:176;38516:134;;;;;;;;;;;;;:::i;39524:194::-;;;;;;;;;;-1:-1:-1;39524:194:0;;;;;:::i;:::-;;:::i;26281:30::-;;;;;;;;;;;;;;;;2939:238;;;;;;;;;;-1:-1:-1;2939:238:0;;;;;:::i;:::-;;:::i;26608:31::-;;;;;;;;;;;;;;;;25817:24;;;;;;;;;;;;;;;;26952:28;;;;;;;;;;;;;;;;9285:100;9339:13;9372:5;9365:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9285:100;:::o;11518:194::-;11626:4;11643:39;952:10;11666:7;11675:6;11643:8;:39::i;:::-;-1:-1:-1;11700:4:0;11518:194;;;;;:::o;12194:529::-;12334:4;12351:36;12361:6;12369:9;12380:6;12351:9;:36::i;:::-;-1:-1:-1;;;;;12427:19:0;;12400:24;12427:19;;;:11;:19;;;;;;;;952:10;12427:33;;;;;;;;12493:26;;;;12471:116;;;;-1:-1:-1;;;12471:116:0;;4984:2:1;12471:116:0;;;4966:21:1;5023:2;5003:18;;;4996:30;5062:34;5042:18;;;5035:62;-1:-1:-1;;;5113:18:1;;;5106:38;5161:19;;12471:116:0;;;;;;;;;12623:57;12632:6;952:10;12673:6;12654:16;:25;12623:8;:57::i;:::-;-1:-1:-1;12711:4:0;;12194:529;-1:-1:-1;;;;12194:529:0:o;13132:290::-;952:10;13245:4;13334:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13334:34:0;;;;;;;;;;13245:4;;13262:130;;13312:7;;13334:47;;13371:10;;13334:47;:::i;:::-;13262:8;:130::i;38832:166::-;38921:8;;-1:-1:-1;;;;;38921:8:0;38907:10;:22;38899:58;;;;-1:-1:-1;;;38899:58:0;;5655:2:1;38899:58:0;;;5637:21:1;5694:2;5674:18;;;5667:30;5733:25;5713:18;;;5706:53;5776:18;;38899:58:0;5453:347:1;38899:58:0;38968:22;38974:7;38983:6;38968:5;:22::i;:::-;38832:166;;:::o;39361:83::-;39411:25;39417:10;39429:6;39411:5;:25::i;:::-;39361:83;:::o;42553:254::-;2103:6;;-1:-1:-1;;;;;2103:6:0;952:10;2250:23;2242:68;;;;-1:-1:-1;;;2242:68:0;;;;;;;:::i;:::-;42629:46:::1;::::0;-1:-1:-1;;;42629:46:0;;42644:4:::1;42629:46;::::0;::::1;1640:51:1::0;;;42611:15:0::1;::::0;42629:31:::1;::::0;1613:18:1;;42629:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42686:51;::::0;-1:-1:-1;;;42686:51:0;;42717:10:::1;42686:51;::::0;::::1;6529::1::0;6596:18;;;6589:34;;;42611:64:0;;-1:-1:-1;42701:4:0::1;::::0;42686:30:::1;::::0;6502:18:1;;42686:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;42748:51:0::1;::::0;42756:10:::1;::::0;42777:21:::1;42748:51:::0;::::1;;;::::0;::::1;::::0;;;42777:21;42756:10;42748:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;2681:103:::0;2103:6;;-1:-1:-1;;;;;2103:6:0;952:10;2250:23;2242:68;;;;-1:-1:-1;;;2242:68:0;;;;;;;:::i;:::-;2746:30:::1;2773:1;2746:18;:30::i;:::-;2681:103::o:0;42374:121::-;2103:6;;42426:4;;-1:-1:-1;;;;;2103:6:0;952:10;2250:23;2242:68;;;;-1:-1:-1;;;2242:68:0;;;;;;;:::i;:::-;-1:-1:-1;42443:14:0::1;:22:::0;;-1:-1:-1;;;;42443:22:0::1;::::0;;;42374:121;:::o;41856:169::-;2103:6;;-1:-1:-1;;;;;2103:6:0;952:10;2250:23;2242:68;;;;-1:-1:-1;;;2242:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41971:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;41971:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41856:169::o;39167:105::-;39238:26;39248:7;39257:6;39238:9;:26::i;43238:171::-;2103:6;;-1:-1:-1;;;;;2103:6:0;952:10;2250:23;2242:68;;;;-1:-1:-1;;;2242:68:0;;;;;;;:::i;:::-;43311:12:::1;43329:6;-1:-1:-1::0;;;;;43329:11:0::1;43348:21;43329:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43310:64;;;43393:7;43385:16;;;::::0;::::1;42069:257:::0;2103:6;;-1:-1:-1;;;;;2103:6:0;952:10;2250:23;2242:68;;;;-1:-1:-1;;;2242:68:0;;;;;;;:::i;:::-;42178:10:::1;::::0;42149:40:::1;::::0;-1:-1:-1;;;;;42178:10:0;;::::1;::::0;42149:40;::::1;::::0;::::1;::::0;42178:10:::1;::::0;42149:40:::1;42200:10;:22:::0;;-1:-1:-1;;;;;;42200:22:0::1;-1:-1:-1::0;;;;;42200:22:0;::::1;;::::0;;42233:32:::1;42200:22:::0;-1:-1:-1;42233:15:0::1;:32::i;:::-;42276:42;42302:9;42313:4;42276:25;:42::i;40694:391::-:0;2103:6;;-1:-1:-1;;;;;2103:6:0;952:10;2250:23;2242:68;;;;-1:-1:-1;;;2242:68:0;;;;;;;:::i;:::-;40843:13:::1;:27:::0;;;40881:15:::1;:31:::0;;;40923:10:::1;:21:::0;;;40936:8;40970:31:::1;40899:13:::0;40859:11;40970:31:::1;:::i;:::-;:44;;;;:::i;:::-;40955:12;:59:::0;;;41049:1:::1;-1:-1:-1::0;41033:17:0::1;41025:52;;;::::0;-1:-1:-1;;;41025:52:0;;7296:2:1;41025:52:0::1;::::0;::::1;7278:21:1::0;7335:2;7315:18;;;7308:30;-1:-1:-1;;;7354:18:1;;;7347:52;7416:18;;41025:52:0::1;7094:346:1::0;41025:52:0::1;40694:391:::0;;;:::o;39798:112::-;2103:6;;-1:-1:-1;;;;;2103:6:0;952:10;2250:23;2242:68;;;;-1:-1:-1;;;2242:68:0;;;;;;;:::i;:::-;39853:13:::1;:20:::0;;-1:-1:-1;;;;39884:18:0;-1:-1:-1;;;39884:18:0;;;39798:112::o;40548:100::-;2103:6;;-1:-1:-1;;;;;2103:6:0;952:10;2250:23;2242:68;;;;-1:-1:-1;;;2242:68:0;;;;;;;:::i;:::-;40619:11:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;40619:21:0::1;-1:-1:-1::0;;;;40619:21:0;;::::1;::::0;;;::::1;::::0;;40548:100::o;9504:104::-;9560:13;9593:7;9586:14;;;;;:::i;29837:306::-;2103:6;;-1:-1:-1;;;;;2103:6:0;952:10;2250:23;2242:68;;;;-1:-1:-1;;;2242:68:0;;;;;;;:::i;:::-;29983:13:::1;-1:-1:-1::0;;;;;29975:21:0::1;:4;-1:-1:-1::0;;;;;29975:21:0::1;::::0;29953:128:::1;;;::::0;-1:-1:-1;;;29953:128:0;;7647:2:1;29953:128:0::1;::::0;::::1;7629:21:1::0;7686:2;7666:18;;;7659:30;7725:34;7705:18;;;7698:62;7796:27;7776:18;;;7769:55;7841:19;;29953:128:0::1;7445:421:1::0;29953:128:0::1;30094:41;30123:4;30129:5;30094:28;:41::i;13925:475::-:0;952:10;14043:4;14087:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14087:34:0;;;;;;;;;;14154:35;;;;14132:122;;;;-1:-1:-1;;;14132:122:0;;8073:2:1;14132:122:0;;;8055:21:1;8112:2;8092:18;;;8085:30;8151:34;8131:18;;;8124:62;-1:-1:-1;;;8202:18:1;;;8195:35;8247:19;;14132:122:0;7871:401:1;14132:122:0;14290:67;952:10;14313:7;14341:15;14322:16;:34;14290:8;:67::i;:::-;-1:-1:-1;14388:4:0;;13925:475;-1:-1:-1;;;13925:475:0:o;10932:200::-;11043:4;11060:42;952:10;11084:9;11095:6;11060:9;:42::i;39978:428::-;2103:6;;40077:4;;-1:-1:-1;;;;;2103:6:0;952:10;2250:23;2242:68;;;;-1:-1:-1;;;2242:68:0;;;;;;;:::i;:::-;40130:1:::1;40116:10;:15;;40094:117;;;::::0;-1:-1:-1;;;40094:117:0;;8479:2:1;40094:117:0::1;::::0;::::1;8461:21:1::0;8518:2;8498:18;;;8491:30;8557:34;8537:18;;;8530:62;-1:-1:-1;;;8608:18:1;;;8601:50;8668:19;;40094:117:0::1;8277:416:1::0;40094:117:0::1;40258:2;40244:10;:16;;40222:119;;;::::0;-1:-1:-1;;;40222:119:0;;8900:2:1;40222:119:0::1;::::0;::::1;8882:21:1::0;8939:2;8919:18;;;8912:30;8978:34;8958:18;;;8951:62;-1:-1:-1;;;9029:18:1;;;9022:51;9090:19;;40222:119:0::1;8698:417:1::0;40222:119:0::1;-1:-1:-1::0;40352:11:0::1;:24:::0;40394:4:::1;::::0;39978:428::o;42867:313::-;2103:6;;-1:-1:-1;;;;;2103:6:0;952:10;2250:23;2242:68;;;;-1:-1:-1;;;2242:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42987:20:0;::::1;42979:59;;;::::0;-1:-1:-1;;;42979:59:0;;9322:2:1;42979:59:0::1;::::0;::::1;9304:21:1::0;9361:2;9341:18;;;9334:30;9400:28;9380:18;;;9373:56;9446:18;;42979:59:0::1;9120:350:1::0;42979:59:0::1;43076:39;::::0;-1:-1:-1;;;43076:39:0;;43109:4:::1;43076:39;::::0;::::1;1640:51:1::0;43049:24:0::1;::::0;-1:-1:-1;;;;;43076:24:0;::::1;::::0;::::1;::::0;1613:18:1;;43076:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43126:46;::::0;-1:-1:-1;;;43126:46:0;;-1:-1:-1;;;;;6547:32:1;;;43126:46:0::1;::::0;::::1;6529:51:1::0;6596:18;;;6589:34;;;43049:66:0;;-1:-1:-1;43126:23:0;;::::1;::::0;::::1;::::0;6502:18:1;;43126:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42968:212;42867:313:::0;;:::o;41598:182::-;2103:6;;-1:-1:-1;;;;;2103:6:0;952:10;2250:23;2242:68;;;;-1:-1:-1;;;2242:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41683:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;41683:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;41738:34;;1163:41:1;;;41738:34:0::1;::::0;1136:18:1;41738:34:0::1;;;;;;;41598:182:::0;;:::o;41132:401::-;2103:6;;-1:-1:-1;;;;;2103:6:0;952:10;2250:23;2242:68;;;;-1:-1:-1;;;2242:68:0;;;;;;;:::i;:::-;41282:14:::1;:28:::0;;;41321:16:::1;:32:::0;;;41364:11:::1;:22:::0;;;41378:8;41413:33:::1;41340:13:::0;41299:11;41413:33:::1;:::i;:::-;:47;;;;:::i;:::-;41397:13;:63:::0;;;41496:1:::1;-1:-1:-1::0;41479:18:0::1;41471:54;;;::::0;-1:-1:-1;;;41471:54:0;;9677:2:1;41471:54:0::1;::::0;::::1;9659:21:1::0;9716:2;9696:18;;;9689:30;9755:25;9735:18;;;9728:53;9798:18;;41471:54:0::1;9475:347:1::0;38516:134:0;38567:15;38637:5;38622:11;;38606:13;10493:12;;;10405:108;38606:13;:27;;;;:::i;:::-;38605:37;;;;:::i;:::-;38595:47;;38516:134;:::o;39524:194::-;2103:6;;-1:-1:-1;;;;;2103:6:0;952:10;2250:23;2242:68;;;;-1:-1:-1;;;2242:68:0;;;;;;;:::i;:::-;39594:8:::1;:20:::0;;-1:-1:-1;;;;;;39594:20:0::1;-1:-1:-1::0;;;;;39594:20:0;::::1;;::::0;;39625:32:::1;39594:20:::0;-1:-1:-1;39625:15:0::1;:32::i;2939:238::-:0;2103:6;;-1:-1:-1;;;;;2103:6:0;952:10;2250:23;2242:68;;;;-1:-1:-1;;;2242:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3042:22:0;::::1;3020:110;;;::::0;-1:-1:-1;;;3020:110:0;;10424:2:1;3020:110:0::1;::::0;::::1;10406:21:1::0;10463:2;10443:18;;;10436:30;10502:34;10482:18;;;10475:62;-1:-1:-1;;;10553:18:1;;;10546:36;10599:19;;3020:110:0::1;10222:402:1::0;3020:110:0::1;3141:28;3160:8;3141:18;:28::i;17708:380::-:0;-1:-1:-1;;;;;17844:19:0;;17836:68;;;;-1:-1:-1;;;17836:68:0;;10831:2:1;17836:68:0;;;10813:21:1;10870:2;10850:18;;;10843:30;10909:34;10889:18;;;10882:62;-1:-1:-1;;;10960:18:1;;;10953:34;11004:19;;17836:68:0;10629:400:1;17836:68:0;-1:-1:-1;;;;;17923:21:0;;17915:68;;;;-1:-1:-1;;;17915:68:0;;11236:2:1;17915:68:0;;;11218:21:1;11275:2;11255:18;;;11248:30;11314:34;11294:18;;;11287:62;-1:-1:-1;;;11365:18:1;;;11358:32;11407:19;;17915:68:0;11034:398:1;17915:68:0;-1:-1:-1;;;;;17996:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18048:32;;1848:25:1;;;18048:32:0;;1821:18:1;18048:32:0;;;;;;;17708:380;;;:::o;30818:3914::-;-1:-1:-1;;;;;30950:18:0;;30942:68;;;;-1:-1:-1;;;30942:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31029:16:0;;31021:64;;;;-1:-1:-1;;;31021:64:0;;;;;;;:::i;:::-;31102:6;31112:1;31102:11;31098:93;;31130:28;31146:4;31152:2;31156:1;31130:15;:28::i;31098:93::-;31207:14;;-1:-1:-1;;;31207:14:0;;;;31203:1694;;;2103:6;;-1:-1:-1;;;;;31260:15:0;;;2103:6;;31260:15;;;;:49;;-1:-1:-1;2103:6:0;;-1:-1:-1;;;;;31296:13:0;;;2103:6;;31296:13;;31260:49;:86;;;;-1:-1:-1;;;;;;31330:16:0;;;;31260:86;:128;;;;-1:-1:-1;;;;;;31367:21:0;;31381:6;31367:21;;31260:128;:158;;;;-1:-1:-1;31410:8:0;;-1:-1:-1;;;31410:8:0;;;;31409:9;31260:158;31238:1648;;;31458:13;;-1:-1:-1;;;31458:13:0;;;;31453:223;;-1:-1:-1;;;;;31530:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;31559:23:0;;;;;;:19;:23;;;;;;;;31530:52;31496:160;;;;-1:-1:-1;;;31496:160:0;;12449:2:1;31496:160:0;;;12431:21:1;12488:2;12468:18;;;12461:30;-1:-1:-1;;;12507:18:1;;;12500:52;12569:18;;31496:160:0;12247:346:1;31496:160:0;-1:-1:-1;;;;;31750:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;31807:35:0;;;;;;:31;:35;;;;;;;;31806:36;31750:92;31724:1147;;;31929:20;;31919:6;:30;;31885:169;;;;-1:-1:-1;;;31885:169:0;;12800:2:1;31885:169:0;;;12782:21:1;12839:2;12819:18;;;12812:30;12878:34;12858:18;;;12851:62;-1:-1:-1;;;12929:18:1;;;12922:51;12990:19;;31885:169:0;12598:417:1;31885:169:0;32137:9;;-1:-1:-1;;;;;10693:18:0;;10666:7;10693:18;;;;;;;;;;;32111:22;;:6;:22;:::i;:::-;:35;;32077:140;;;;-1:-1:-1;;;32077:140:0;;13222:2:1;32077:140:0;;;13204:21:1;13261:2;13241:18;;;13234:30;-1:-1:-1;;;13280:18:1;;;13273:49;13339:18;;32077:140:0;13020:343:1;32077:140:0;31724:1147;;;-1:-1:-1;;;;;32315:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;32370:37:0;;;;;;:31;:37;;;;;;;;32369:38;32315:92;32289:582;;;32494:20;;32484:6;:30;;32450:170;;;;-1:-1:-1;;;32450:170:0;;13570:2:1;32450:170:0;;;13552:21:1;13609:2;13589:18;;;13582:30;13648:34;13628:18;;;13621:62;-1:-1:-1;;;13699:18:1;;;13692:52;13761:19;;32450:170:0;13368:418:1;32289:582:0;-1:-1:-1;;;;;32651:35:0;;;;;;:31;:35;;;;;;;;32646:225;;32771:9;;-1:-1:-1;;;;;10693:18:0;;10666:7;10693:18;;;;;;;;;;;32745:22;;:6;:22;:::i;:::-;:35;;32711:140;;;;-1:-1:-1;;;32711:140:0;;13222:2:1;32711:140:0;;;13204:21:1;13261:2;13241:18;;;13234:30;-1:-1:-1;;;13280:18:1;;;13273:49;13339:18;;32711:140:0;13020:343:1;32711:140:0;32958:4;32909:28;10693:18;;;;;;;;;;;;33016:20;:18;:20::i;:::-;32992;:44;;32977:59;;33067:7;:35;;;;-1:-1:-1;33091:11:0;;-1:-1:-1;;;33091:11:0;;;;33067:35;:61;;;;-1:-1:-1;33120:8:0;;-1:-1:-1;;;33120:8:0;;;;33119:9;33067:61;:110;;;;-1:-1:-1;;;;;;33146:31:0;;;;;;:25;:31;;;;;;;;33145:32;33067:110;:153;;;;-1:-1:-1;;;;;;33195:25:0;;;;;;:19;:25;;;;;;;;33194:26;33067:153;:194;;;;-1:-1:-1;;;;;;33238:23:0;;;;;;:19;:23;;;;;;;;33237:24;33067:194;33049:326;;;33288:8;:15;;-1:-1:-1;;;;33288:15:0;-1:-1:-1;;;33288:15:0;;;33320:10;:8;:10::i;:::-;33347:8;:16;;-1:-1:-1;;;;33347:16:0;;;33049:326;33403:8;;-1:-1:-1;;;;;33513:25:0;;33387:12;33513:25;;;:19;:25;;;;;;33403:8;-1:-1:-1;;;33403:8:0;;;;;33402:9;;33513:25;;:52;;-1:-1:-1;;;;;;33542:23:0;;;;;;:19;:23;;;;;;;;33513:52;33509:100;;;-1:-1:-1;33592:5:0;33509:100;33621:12;33726:7;33722:957;;;-1:-1:-1;;;;;33778:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;33827:1;33811:13;;:17;33778:50;33774:756;;;33883:3;33866:13;;33857:6;:22;;;;:::i;:::-;33856:30;;;;:::i;:::-;33849:37;;33955:13;;33935:16;;33928:4;:23;;;;:::i;:::-;33927:41;;;;:::i;:::-;33905:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;34027:13:0;;34012:11;;34005:18;;:4;:18;:::i;:::-;34004:36;;;;:::i;:::-;33987:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;34105:13:0;;34087:14;;34080:21;;:4;:21;:::i;:::-;34079:39;;;;:::i;:::-;34059:16;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;33774:756:0;;-1:-1:-1;33774:756:0;;-1:-1:-1;;;;;34180:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;34230:1;34215:12;;:16;34180:51;34176:354;;;34285:3;34269:12;;34260:6;:21;;;;:::i;:::-;34259:29;;;;:::i;:::-;34252:36;;34356:12;;34337:15;;34330:4;:22;;;;:::i;:::-;34329:39;;;;:::i;:::-;34307:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;34426:12:0;;34412:10;;34405:17;;:4;:17;:::i;:::-;34404:34;;;;:::i;:::-;34387:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;34502:12:0;;34485:13;;34478:20;;:4;:20;:::i;:::-;34477:37;;;;:::i;:::-;34457:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;34176:354:0;34550:8;;34546:91;;34579:42;34595:4;34609;34616;34579:15;:42::i;:::-;34653:14;34663:4;34653:14;;:::i;:::-;;;33722:957;34691:33;34707:4;34713:2;34717:6;34691:15;:33::i;:::-;30931:3801;;;;30818:3914;;;:::o;15947:399::-;-1:-1:-1;;;;;16031:21:0;;16023:65;;;;-1:-1:-1;;;16023:65:0;;14126:2:1;16023:65:0;;;14108:21:1;14165:2;14145:18;;;14138:30;14204:33;14184:18;;;14177:61;14255:18;;16023:65:0;13924:355:1;16023:65:0;16179:6;16163:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16196:18:0;;:9;:18;;;;;;;;;;:28;;16218:6;;16196:9;:28;;16218:6;;16196:28;:::i;:::-;;;;-1:-1:-1;;16240:37:0;;1848:25:1;;;-1:-1:-1;;;;;16240:37:0;;;16257:1;;16240:37;;1836:2:1;1821:18;16240:37:0;;;;;;;38832:166;;:::o;16679:591::-;-1:-1:-1;;;;;16763:21:0;;16755:67;;;;-1:-1:-1;;;16755:67:0;;14486:2:1;16755:67:0;;;14468:21:1;14525:2;14505:18;;;14498:30;14564:34;14544:18;;;14537:62;-1:-1:-1;;;14615:18:1;;;14608:31;14656:19;;16755:67:0;14284:397:1;16755:67:0;-1:-1:-1;;;;;16922:18:0;;16897:22;16922:18;;;;;;;;;;;16959:24;;;;16951:71;;;;-1:-1:-1;;;16951:71:0;;14888:2:1;16951:71:0;;;14870:21:1;14927:2;14907:18;;;14900:30;14966:34;14946:18;;;14939:62;-1:-1:-1;;;15017:18:1;;;15010:32;15059:19;;16951:71:0;14686:398:1;16951:71:0;-1:-1:-1;;;;;17058:18:0;;:9;:18;;;;;;;;;;17079:23;;;17058:44;;17124:12;:22;;17096:6;;17058:9;17124:22;;17096:6;;17124:22;:::i;:::-;;;;-1:-1:-1;;17164:37:0;;1848:25:1;;;17190:1:0;;-1:-1:-1;;;;;17164:37:0;;;;;1836:2:1;1821:18;17164:37:0;;;;;;;40694:391;;;:::o;3337:191::-;3430:6;;;-1:-1:-1;;;;;3447:17:0;;;-1:-1:-1;;;;;;3447:17:0;;;;;;;3480:40;;3430:6;;;3447:17;3430:6;;3480:40;;3411:16;;3480:40;3400:128;3337:191;:::o;30501:245::-;-1:-1:-1;;;;;11336:18:0;;30573:27;11336:18;;;:11;:18;;;;;;;;30622:10;11336:27;;;;;;;;30603:39;;30636:6;;30603:39;:::i;:::-;30573:69;;30655:50;30664:7;30673:10;30685:19;30655:8;:50::i;:::-;30716:22;30722:7;30731:6;30716:5;:22::i;30208:188::-;-1:-1:-1;;;;;30291:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;30291:39:0;;;;;;;;;;30348:40;;30291:39;;:31;30348:40;;;30208:188;;:::o;14890:770::-;-1:-1:-1;;;;;15030:20:0;;15022:70;;;;-1:-1:-1;;;15022:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15111:23:0;;15103:71;;;;-1:-1:-1;;;15103:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15271:17:0;;15247:21;15271:17;;;;;;;;;;;15321:23;;;;15299:111;;;;-1:-1:-1;;;15299:111:0;;15291:2:1;15299:111:0;;;15273:21:1;15330:2;15310:18;;;15303:30;15369:34;15349:18;;;15342:62;-1:-1:-1;;;15420:18:1;;;15413:36;15466:19;;15299:111:0;15089:402:1;15299:111:0;-1:-1:-1;;;;;15446:17:0;;;:9;:17;;;;;;;;;;;15466:22;;;15446:42;;15510:20;;;;;;;;:30;;15482:6;;15446:9;15510:30;;15482:6;;15510:30;:::i;:::-;;;;;;;;15575:9;-1:-1:-1;;;;;15558:35:0;15567:6;-1:-1:-1;;;;;15558:35:0;;15586:6;15558:35;;;;1848:25:1;;1836:2;1821:18;;1702:177;15558:35:0;;;;;;;;15606:46;40694:391;36204:1868;36288:4;36244:23;10693:18;;;;;;;;;;;36244:50;;36305:25;36399:13;;36367:16;;36333:18;;:50;;;;:::i;:::-;:79;;;;:::i;:::-;36305:107;-1:-1:-1;36423:12:0;36452:20;;;:46;;-1:-1:-1;36476:22:0;;36452:46;36448:85;;;36515:7;;;36204:1868::o;36448:85::-;36567:20;:18;:20::i;:::-;:25;;36590:2;36567:25;:::i;:::-;36549:15;:43;36545:119;;;36627:20;:18;:20::i;:::-;:25;;36650:2;36627:25;:::i;:::-;36609:43;;36545:119;36725:23;36838:1;36805:17;36770:18;;36752:15;:36;;;;:::i;:::-;36751:71;;;;:::i;:::-;:88;;;;:::i;:::-;36725:114;-1:-1:-1;36850:26:0;36879:33;36725:114;36879:15;:33;:::i;:::-;36850:62;-1:-1:-1;36953:21:0;36987:36;36850:62;36987:16;:36::i;:::-;37036:18;37057:41;37081:17;37057:21;:41;:::i;:::-;37036:62;;37111:21;37237:1;37216:18;;:22;;;;:::i;:::-;37182:17;37149:16;;37136:10;:29;;;;:::i;:::-;37135:64;;;;:::i;:::-;:104;;;;:::i;:::-;37111:128;;37252:18;37372:1;37351:18;;:22;;;;:::i;:::-;37317:17;37287:13;;37274:10;:26;;;;:::i;:::-;37273:61;;;;:::i;:::-;:101;;;;:::i;:::-;37252:122;-1:-1:-1;37387:23:0;37252:122;37413:26;37426:13;37413:10;:26;:::i;:::-;:39;;;;:::i;:::-;37486:1;37465:18;:22;;;37498:16;:20;;;37529:13;:17;;;37581:10;;37573:47;;37387:65;;-1:-1:-1;;;;;;37581:10:0;;37605;;37573:47;37486:1;37573:47;37605:10;37581;37573:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37559:61:0;;-1:-1:-1;;37637:19:0;;;;;:42;;;37678:1;37660:15;:19;37637:42;37633:278;;;37696:46;37709:15;37726;37696:12;:46::i;:::-;37866:18;;37762:137;;;15698:25:1;;;15754:2;15739:18;;15732:34;;;15782:18;;;15775:34;;;;37762:137:0;;;;;;15686:2:1;37762:137:0;;;37633:278;37923:16;37942:21;37923:40;;37980:4;-1:-1:-1;;;;;37974:19:0;;38001:8;37974:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38045:8:0;;38023:41;;-1:-1:-1;;;38023:41:0;;-1:-1:-1;;;;;38045:8:0;;;38023:41;;;6529:51:1;6596:18;;;6589:34;;;38030:4:0;38023:21;;;;-1:-1:-1;38023:21:0;;-1:-1:-1;6502:18:1;;;-1:-1:-1;38023:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36233:1839;;;;;;;;;;;36204:1868::o;34873:590::-;35024:16;;;35038:1;35024:16;;;;;;;;35000:21;;35024:16;;;;;;;;;;-1:-1:-1;35024:16:0;35000:40;;35069:4;35051;35056:1;35051:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;35051:23:0;;;-1:-1:-1;;;;;35051:23:0;;;;;35095:15;-1:-1:-1;;;;;35095:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35085:4;35090:1;35085:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;35085:32:0;;;-1:-1:-1;;;;;35085:32:0;;;;;35130:62;35147:4;35162:15;35180:11;35130:8;:62::i;:::-;35231:224;;-1:-1:-1;;;35231:224:0;;-1:-1:-1;;;;;35231:15:0;:66;;;;:224;;35312:11;;35338:1;;35382:4;;35409;;35429:15;;35231:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34929:534;34873:590;:::o;35584:515::-;35733:62;35750:4;35765:15;35783:11;35733:8;:62::i;:::-;36042:8;;35838:253;;-1:-1:-1;;;35838:253:0;;35910:4;35838:253;;;17666:34:1;17716:18;;;17709:34;;;35956:1:0;17759:18:1;;;17752:34;;;17802:18;;;17795:34;-1:-1:-1;;;;;36042:8:0;;;17845:19:1;;;17838:44;36065:15:0;17898:19:1;;;17891:35;35838:15:0;:31;;;;;;35877:9;;17600:19:1;;35838:253:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;35584:515;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;:::-;1451:5;1215:247;-1:-1:-1;;;1215:247:1:o;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2742:180::-;2801:6;2854:2;2842:9;2833:7;2829:23;2825:32;2822:52;;;2870:1;2867;2860:12;2822:52;-1:-1:-1;2893:23:1;;2742:180;-1:-1:-1;2742:180:1:o;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:316::-;3514:6;3522;3530;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;-1:-1:-1;;3622:23:1;;;3692:2;3677:18;;3664:32;;-1:-1:-1;3743:2:1;3728:18;;;3715:32;;3437:316;-1:-1:-1;3437:316:1:o;3758:241::-;3814:6;3867:2;3855:9;3846:7;3842:23;3838:32;3835:52;;;3883:1;3880;3873:12;3835:52;3922:9;3909:23;3941:28;3963:5;3941:28;:::i;4004:388::-;4072:6;4080;4133:2;4121:9;4112:7;4108:23;4104:32;4101:52;;;4149:1;4146;4139:12;4101:52;4188:9;4175:23;4207:31;4232:5;4207:31;:::i;:::-;4257:5;-1:-1:-1;4314:2:1;4299:18;;4286:32;4327:33;4286:32;4327:33;:::i;4397:380::-;4476:1;4472:12;;;;4519;;;4540:61;;4594:4;4586:6;4582:17;4572:27;;4540:61;4647:2;4639:6;4636:14;4616:18;4613:38;4610:161;;4693:10;4688:3;4684:20;4681:1;4674:31;4728:4;4725:1;4718:15;4756:4;4753:1;4746:15;4610:161;;4397:380;;;:::o;5191:127::-;5252:10;5247:3;5243:20;5240:1;5233:31;5283:4;5280:1;5273:15;5307:4;5304:1;5297:15;5323:125;5388:9;;;5409:10;;;5406:36;;;5422:18;;:::i;5805:356::-;6007:2;5989:21;;;6026:18;;;6019:30;6085:34;6080:2;6065:18;;6058:62;6152:2;6137:18;;5805:356::o;6166:184::-;6236:6;6289:2;6277:9;6268:7;6264:23;6260:32;6257:52;;;6305:1;6302;6295:12;6257:52;-1:-1:-1;6328:16:1;;6166:184;-1:-1:-1;6166:184:1:o;6634:245::-;6701:6;6754:2;6742:9;6733:7;6729:23;6725:32;6722:52;;;6770:1;6767;6760:12;6722:52;6802:9;6796:16;6821:28;6843:5;6821:28;:::i;9827:168::-;9900:9;;;9931;;9948:15;;;9942:22;;9928:37;9918:71;;9969:18;;:::i;10000:217::-;10040:1;10066;10056:132;;10110:10;10105:3;10101:20;10098:1;10091:31;10145:4;10142:1;10135:15;10173:4;10170:1;10163:15;10056:132;-1:-1:-1;10202:9:1;;10000:217::o;11437:401::-;11639:2;11621:21;;;11678:2;11658:18;;;11651:30;11717:34;11712:2;11697:18;;11690:62;-1:-1:-1;;;11783:2:1;11768:18;;11761:35;11828:3;11813:19;;11437:401::o;11843:399::-;12045:2;12027:21;;;12084:2;12064:18;;;12057:30;12123:34;12118:2;12103:18;;12096:62;-1:-1:-1;;;12189:2:1;12174:18;;12167:33;12232:3;12217:19;;11843:399::o;13791:128::-;13858:9;;;13879:11;;;13876:37;;;13893:18;;:::i;15952:127::-;16013:10;16008:3;16004:20;16001:1;15994:31;16044:4;16041:1;16034:15;16068:4;16065:1;16058:15;16084:251;16154:6;16207:2;16195:9;16186:7;16182:23;16178:32;16175:52;;;16223:1;16220;16213:12;16175:52;16255:9;16249:16;16274:31;16299:5;16274:31;:::i;16340:980::-;16602:4;16650:3;16639:9;16635:19;16681:6;16670:9;16663:25;16707:2;16745:6;16740:2;16729:9;16725:18;16718:34;16788:3;16783:2;16772:9;16768:18;16761:31;16812:6;16847;16841:13;16878:6;16870;16863:22;16916:3;16905:9;16901:19;16894:26;;16955:2;16947:6;16943:15;16929:29;;16976:1;16986:195;17000:6;16997:1;16994:13;16986:195;;;17065:13;;-1:-1:-1;;;;;17061:39:1;17049:52;;17156:15;;;;17121:12;;;;17097:1;17015:9;16986:195;;;-1:-1:-1;;;;;;;17237:32:1;;;;17232:2;17217:18;;17210:60;-1:-1:-1;;;17301:3:1;17286:19;17279:35;17198:3;16340:980;-1:-1:-1;;;16340:980:1:o;17937:306::-;18025:6;18033;18041;18094:2;18082:9;18073:7;18069:23;18065:32;18062:52;;;18110:1;18107;18100:12;18062:52;18139:9;18133:16;18123:26;;18189:2;18178:9;18174:18;18168:25;18158:35;;18233:2;18222:9;18218:18;18212:25;18202:35;;17937:306;;;;;:::o

Swarm Source

ipfs://84dd7fa152c65ae688331fd67a2bc0016230ed774a04251a1a57da8d7d081490
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.