ETH Price: $2,518.96 (+3.19%)

Token

Wooooo! Coin (WOOOOO!)
 

Overview

Max Total Supply

10,000,000,000 WOOOOO!

Holders

58

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
11,386.300028809971935819 WOOOOO!

Value
$0.00
0xd4c8343fca6d881d3134c06afd405f02886679f0
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:
WoooooCoin

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED; 
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


pragma solidity >=0.6.2;

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

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

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

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


pragma solidity >=0.6.2;


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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: WoooooCoinETH.sol

/*
@@@@
 @@@@  @@@@@                               @@@@@@    @@@@@@@%     @@@@@     @@@
 &@@@% @@@@@  @@@ @@@@@@@@    @@@@@@@@   @@@@  @@@ @@@@    @@@  @@@@  @@@   @@@@
  @@@@@@@@@@ @@ &@@@/   @@@ @@@@   @@E@.@@@    @@@@@S@@   @@@@ @@@@  @@@@  @@@L
  @@@@  @@@@@   @@W.   @@@@ @@@   @@@@ @@@@  @@@@@ @@@   @@@@ @@@@  @@@   @@
         @@     @@@@@@@@@   @@@@@@@@(    @@@@@@     @@@@@      @@@@@@    @@
                                                                        @@@
Official Ric Flair Wooooo! Coin
https://wooooo.io
https://woooooenergy.com/
*/

pragma solidity 0.8.17;

interface IFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
    function getPair(address tokenA, address tokenB) external view returns (address pair);
}

interface IPair {
    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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
}
//ERC20 is the same as BEP20
contract WoooooCoin is ERC20, Ownable, ReentrancyGuard  {
    bool private process;
    bool public LP_STATE;
    bool public autoLiquidity;
    bool public autoTreasury;
    bool public autoLiquifyLevel;

    uint256 public immutable supply;
    bool public blocker;
    bool public autoLiquify;
    uint256 public liquifyLevel;
    uint256 public slippage;
    uint256 public liquidationRatio;
    uint256 public liquidationValue;
    uint256 public impactLevel;

    struct Max {
        uint256 addr;
        uint256 sell;
        uint256 buy;
    }
    Max public max;

    mapping (address => bool) public exempt;
    mapping (address => bool) public deny;
    mapping (address => bool) public isInvestor;
    mapping (address => uint256) public vested;
    mapping (address => address) public payouts;
    mapping (address => bool) public hasPayout;
    mapping (address => bool) public soldout;
    mapping (address => uint256) public sold;
    address[] public vestedKey;
    uint32 public out;

    IUniswapV2Router02 public router;
    address public pair;
    address public currency;
    address public ROUTER;
    address public PAIR;
    address public CURRENCY;

    struct Fee {
        uint256 treasury;
        uint256 lp;
    }

    Fee public sendFee;
    Fee public buyFee;
    Fee public sellFee;
    Fee public vestedFee;

    struct OPS {
        uint256 L1;
        uint256 marketing;
        uint256 RicFlair;
        uint256 network;
    }
    OPS public ops;

    struct POOL {
        uint256 lp;
        uint256 L1;
        uint256 marketing;
        uint256 RicFlair;
        uint256 network;
    }
    POOL public pool;

    struct TXN {
        address marketing;
        address RicFlair;
        address network;
    }
    TXN public txn;

    event WoooooEvent(string str);

    modifier Process() {
        if (!process) {
            process = true;
            _;
            process = false;
        }
    }
    modifier validAddress(address _address) {
        require(_address != address(0), "Invalid address");
        _;
    }
    modifier limitFees(Fee memory fees) {
        require(fees.treasury + fees.lp <= 250, "Cannot exceed 25%");
        _;
    }

    constructor() ERC20("Wooooo! Coin", "WOOOOO!") payable {
        supply = 10_000_000_000 * 1e18;
        liquifyLevel = 200_000 * 1e18;
        impactLevel = 0.05 ether; // Default of 5%
        slippage=1;

        max.addr = 250_000_000 * 1e18;
        max.buy  = 100_000_000 * 1e18;
        max.sell = 50_000_000 * 1e18;

        sendFee = Fee(20,0);  // Treasury = 2%  | LP = 0%
        buyFee  = Fee(50,10); // Treasury = 6% | LP = 1%
        sellFee = Fee(50,10); // Treasury = 6% | LP = 1%
        vestedFee = Fee(35,15); // Treasury = 3.5% | LP = 1.5%

        txn.marketing = 0xD8B4df10F9ae893E51514db9e58084B3465A23A6; // Marketing Fees
        txn.RicFlair = 0xE1145542a7749C13303f1E42BcD676D43709c449; //Royalty Fees
        txn.network = 0x6132620eFe52A851508Cf0a779D343F5914ba843; //Network
        CURRENCY = 0xdAC17F958D2ee523a2206206994597C13D831ec7;  // USDT Contract
        ROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // Uniswap Router

        router = IUniswapV2Router02(ROUTER);
        PAIR   = router.WETH();
        pair   = IFactory(router.factory()).createPair(address(this), PAIR);
        currency = IFactory(router.factory()).getPair(CURRENCY, PAIR);
        liquidationRatio = 150;
        autoLiquifyLevel = true;
        autoLiquidity = true;
        autoTreasury = true;
        ops = OPS( 428, 285, 72, 143 );
        blocker=true;

        exempt[address(this)] = true;
        exempt[PAIR] = true;
        exempt[ROUTER] = true;
        exempt[msg.sender] = true;

        _mint(msg.sender,supply);
        emit WoooooEvent("Wooooo!");
    }

    receive() external payable {}

    function setRouter(address addr)external onlyOwner{
        ROUTER = addr;
        router = IUniswapV2Router02(ROUTER);
        PAIR   = router.WETH();
    }
    function setTokenPair()external onlyOwner{
        pair   = IFactory(router.factory()).createPair(address(this), PAIR);
    }
    function setLiquifyTreshhold(uint256 tokens, bool state, uint32 ratio, uint256 value, uint256 level) external onlyOwner {
        liquifyLevel = tokens*1e18;
        autoLiquifyLevel = state;
        liquidationRatio  = ratio;
        liquidationValue = value;
        impactLevel = level;
        emit WoooooEvent("Updated.Liquify.Level");
    }
    function setSlippage(uint256 amount) external onlyOwner{
        slippage=amount;
    }
    function setAutoLiquidity(bool state) external onlyOwner {
        autoLiquidity = state;
    }
    function setAutoTreasury(bool state) external onlyOwner {
        autoTreasury = state;
    }
    function setTaxes(Fee memory fees) external onlyOwner limitFees(fees){
        sendFee = fees;
        emit WoooooEvent("Updated.Fees.Send");
    }
    function setSellTaxes(Fee memory fees) external onlyOwner limitFees(fees){
        sellFee = fees;
        emit WoooooEvent("Updated.Fees.Sell");
    }
    function setBuyTaxes(Fee memory fees) external onlyOwner limitFees(fees){
        buyFee = fees;
        emit WoooooEvent("Updated.Fees.Buy");
    }
    function setMarketing(address addr) external onlyOwner validAddress(addr) {
        txn.marketing = addr;
    }
    function setRicFlair(address addr) external onlyOwner validAddress(addr){
        txn.RicFlair = addr;
    }
    function setNetwork(address addr) external onlyOwner validAddress(addr){
        txn.network = addr;
    }
    function addInvestor(address addr, uint256 tokens)external onlyOwner validAddress(addr){
        require(!LP_STATE, "L1.Investors.Already.Enabled");
        vested[addr]=tokens;
        vestedKey.push(addr);
        isInvestor[addr]=true;
    }
    function addPayouts(address investor,address addr)external onlyOwner validAddress(addr){
        require(!LP_STATE, "L1.Investors.Already.Enabled");
        payouts[investor]=addr;
        hasPayout[investor]=true;
    }
    function setCurrency(address addr) external onlyOwner validAddress(addr){
        CURRENCY = addr;
    }
    function setCurrencyPair() external onlyOwner{
        currency = IFactory(router.factory()).getPair(CURRENCY, PAIR);
    }
    function setAutoLiquify(bool state) external onlyOwner{
        autoLiquify = state;
    }
    function setBlocker(bool state) external onlyOwner{
        blocker = state;
    }
    function launch() external onlyOwner{
        require(!LP_STATE, "Trading.Already.Launched");
        LP_STATE = true;
        emit WoooooEvent("Wooooo!");
    }
    function renounceOwnership() public view override onlyOwner {
        revert("Ownership cannot be renounced in this contract");
    }
    function recover() public onlyOwner {
        uint256 amount = address(this).balance;
        payout(payable(msg.sender), amount);
    }
    function Wooooo() public view returns (string memory) {
        string[5] memory options = [
        "Wooooo!",
        "In order to be the man, you have to beat the man.",
        "I'm Ric Flair! The Stylin', profilin', limousine riding, jet flying, kiss-stealing, wheelin' n' dealin' son of a gun!",
        "If you don't like it, learn to *love* it!",
        "Harley Race is a great wrestler, a great champion, and a master technician. I learned something new every time I wrestled him. One of the all-time greats"
        ];
        bytes32 randomHash = keccak256(abi.encodePacked(block.timestamp, uint256(1)));
        uint256 randomIndex = uint256(randomHash) % options.length;
        return options[randomIndex];
    }
    function getReserves(address addr)public view returns(uint256, uint256){
        (uint256 token0, uint256 token1,) = IPair(addr).getReserves();
        if(token0>token1){
            return(token1,token0);
        }else{
            return(token0,token1);
        }
    }
    function priceETH() public view returns (uint256) {
        (uint256 token0, uint256 token1) = getReserves(currency);
        return ((token0 * 1e18) / token1)*1e12;
        //return ((token1 * 1e18) / token0);
    }
    function priceInETH() public view returns (uint256) {
        (uint256 token0, uint256 token1) = getReserves(pair);
        return (token0 * 1e18) / token1;
    }
    function priceUSD() public view returns (uint256) {
        return (priceInETH() * priceETH()) / 1e18;
    }
    function totalLiquidity()public view returns(uint256){
        (uint256 token0, ) = getReserves(pair);
        return (token0 * priceETH()) / 1e18;
    }
    function accumulatedValue()public view returns(uint256){
        uint256 tokens = balanceOf(address(this));
        return (tokens * priceUSD()) / 1e18;
    }
    function priceImpact(uint256 TOKENS) public view returns (uint256) {
        uint256 value = (TOKENS * priceUSD()) / 1e18;
        uint256 available = totalLiquidity();
        uint256 impact = (value*1e18) / available;
        return impact;
    }
    function dynamicLiquidityLevel() public view returns (uint256) {
        uint256 pooled = accumulatedValue();
        uint256 value = (pooled*liquidationRatio)/1000;
        uint256 liquidateTokens = (value*1e18)/priceUSD();
        return liquidateTokens;
    }
    function tokenQuote(uint256 amount) public view returns (uint256) {
        uint256 tokens = (amount*1e18)/priceUSD();
        return tokens;
    }
    function checkLiquidity()public view returns(uint256[2] memory){
        (uint256 token0, uint256 token1 ) = getReserves(pair);
        uint256[2] memory res;
        res[0] = token0;
        res[1] = token1;
        return res;
    }
    function _transfer(address sender,address recipient,uint256 amount) internal override  validAddress(sender) validAddress(recipient){
        require(amount != 0, "Must.Not.Be.Zero");
        require(!deny[recipient], "Snipe.Attacker.Not.Permitted");
        if(LP_STATE){
            if(sender == pair && !exempt[recipient] && !process){
                require(amount <= max.buy, "Amount.Buy.Exceeded");
                require(balanceOf(recipient) + amount <= max.addr, "Balance.Exceeded");
            }
            if(sender != pair && !exempt[recipient] && !exempt[sender] && !process){
                require(amount <= max.sell, "Amount.Sell.Exceeded");
                if(recipient != pair){
                    require(balanceOf(recipient) + amount <= max.addr, "Balance.Exceeded");
                }
            }
        }else{
            if(!exempt[recipient] && !exempt[sender]){
                deny[recipient]=true;
            }
        }
        uint256 fee; 
        if (process || exempt[sender] || exempt[recipient]) fee = 0;
        else if(recipient == pair){
            fee = sellFee.treasury + sellFee.lp;
            if(vested[sender]!=0){
                vestedSell(sender,amount);
                fee = vestedFee.treasury + vestedFee.lp;
            }
        }else if(sender == pair){
            if (!blocker && isInvestor[recipient]) {
                revert("L1.Investor.Cannot.Buy");
            }
            fee = buyFee.treasury + buyFee.lp ;
            emit WoooooEvent("Wooooo!");
        }else{
            if(!blocker && isInvestor[recipient]){
                revert("L1.Investor.Cannot.Receieve");
            }
            if(vested[sender]!=0){ vestedSell(sender,amount);}
            fee = sendFee.lp;
        }
        uint256 fees = (amount * fee) / 1000;
        if(autoLiquify){
            if(LP_STATE && sender != pair && fee !=0 && !exempt[sender] && !exempt[recipient]) liquidate(recipient);
        }
        super._transfer(sender, recipient, amount - fees);
        if(fee!=0){
            super._transfer(sender, address(this), fees);
        }
    }
    function payout(address recipient, uint256 amount) internal nonReentrant{
        (bool success, ) = payable(recipient).call{value: amount}("");
        require(success, "Transfer failed");
    }
    function vestedSell(address seller,uint256 amount)private{
        sold[seller]+=amount; //Track vested tokens being sold
        if(sold[seller]==vested[seller]){
            soldout[seller]=true;
            out+=1;
            if(out>=vestedKey.length){
                ops = OPS( 0, 500, 125, 250 );
            }
        }
    }
    function estimateEthOut(uint256 TOKENS) private view returns (uint256) {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();
        uint[] memory amounts = router.getAmountsOut(TOKENS, path);
        return amounts[1];
    }
    function liquidityAdd(uint256 _tokens, uint256 _pair) private {
        if(autoLiquidity){
            if(_pair > 0){
                _approve(address(this), address(router), _tokens);
                router.addLiquidityETH{ value: _pair }(address(this), _tokens, 0, 0, owner(), block.timestamp);
            }
        }
    }
    function liquify(uint256 TOKENS) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();
        _approve(address(this), address(router), TOKENS);

        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            TOKENS,
            0,
            path,
            address(this),
            block.timestamp 
        );
    }
    function liquidationImpact() public view returns(uint256){
        uint256 tokens = balanceOf(address(this));
        uint256 tokenLevel = liquifyLevel;
        if(autoLiquifyLevel){
            tokenLevel = dynamicLiquidityLevel();
            if(liquidationValue!=0){
                tokenLevel = tokenQuote(liquidationValue);
            }
            if (tokens >= tokenLevel) {
                if(tokenLevel > 1){
                    tokens = tokenLevel;
                }
                return priceImpact(tokens);
            }
        }
        return 0;
    }
    function liquidate(address seller) private Process {
        uint256 tokens = balanceOf(address(this));
        uint256 tokenLevel = liquifyLevel;
        if(autoLiquifyLevel){
            tokenLevel = dynamicLiquidityLevel();
            if(liquidationValue!=0){
                tokenLevel = tokenQuote(liquidationValue);
            }
        }
        if (tokens >= tokenLevel) {
            if(tokenLevel > 1){
                tokens = tokenLevel;
            }
            uint256 impact = priceImpact(tokens);

            if(impact<impactLevel){
                uint256 initial = address(this).balance;
                uint256 LP_TOKENS = (tokens * 62) / 1000;
                liquify(tokens-LP_TOKENS);

                uint256 current = address(this).balance - initial;
                uint256 PAIR_TOKENS = estimateEthOut(LP_TOKENS);
                if(current>PAIR_TOKENS){
                    liquidityAdd( LP_TOKENS, PAIR_TOKENS );

                    uint256 amount = address(this).balance - current;
                    treasuryTransfer((amount*900)/1000,seller);
                    emit WoooooEvent("Token.Liquidation.Complete");
                }
            }
        }
    }
    function triggerLiquidation() external onlyOwner{
        liquidate(msg.sender);
    }
    function treasuryTransfer(uint256 amount, address seller) private {
        if (autoTreasury) {
            uint32 len = uint32(vestedKey.length);
            if (len != 0 && ops.L1 != 0) {
                uint256 L1 = (amount * ops.L1) / 1000;
                uint256 totalShares;
                address[] memory exclude = new address[](len);
                uint256 excludeCount = 0;
                for (uint32 i = 0; i < len;) {
                    uint256 vestedMin = vested[vestedKey[i]] / 4;
                    uint256 bal = balanceOf(vestedKey[i]);
                    if (vestedKey[i] != seller && bal >= vestedMin) {
                        totalShares += bal;
                    } else {
                        exclude[excludeCount] = vestedKey[i];
                        excludeCount++;
                    }
                unchecked{
                    i++;
                }
                }
                for (uint32 i = 0; i < len;) {
                    address investor = vestedKey[i];
                    if (!contains(exclude, investor, excludeCount)) {
                        uint256 div = (balanceOf(investor) * 1000) / totalShares;
                        uint256 payment = (div * L1) / 1000;
                        if (hasPayout[investor]) {
                            payout(payouts[investor], payment);
                        } else {
                            payout(investor, payment);
                        }
                    }
                unchecked{
                    i++;
                }
                }
            }
            payout(txn.marketing, (amount * ops.marketing) / 1000);
            payout(txn.RicFlair, (amount * ops.RicFlair) / 1000);
            payout(txn.network, (amount * ops.network) / 1000);
        } else {
            payout(owner(), amount);
        }
        emit WoooooEvent("Payouts.Complete");
    }
    function contains(address[] memory array, address target, uint256 length) internal pure returns (bool) {
        for (uint256 i = 0; i < length; i++) {
            if (array[i] == target) {
                return true;
            }
        }
        return false;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":false,"internalType":"string","name":"str","type":"string"}],"name":"WoooooEvent","type":"event"},{"inputs":[],"name":"CURRENCY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LP_STATE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAIR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROUTER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Wooooo","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accumulatedValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"addInvestor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"investor","type":"address"},{"internalType":"address","name":"addr","type":"address"}],"name":"addPayouts","outputs":[],"stateMutability":"nonpayable","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":[],"name":"autoLiquidity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"autoLiquify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"autoLiquifyLevel","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"autoTreasury","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blocker","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"treasury","type":"uint256"},{"internalType":"uint256","name":"lp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkLiquidity","outputs":[{"internalType":"uint256[2]","name":"","type":"uint256[2]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"deny","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dynamicLiquidityLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"exempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasPayout","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"impactLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"","type":"address"}],"name":"isInvestor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidationImpact","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidationRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidationValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquifyLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max","outputs":[{"internalType":"uint256","name":"addr","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"buy","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ops","outputs":[{"internalType":"uint256","name":"L1","type":"uint256"},{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"RicFlair","type":"uint256"},{"internalType":"uint256","name":"network","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"out","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"payouts","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pool","outputs":[{"internalType":"uint256","name":"lp","type":"uint256"},{"internalType":"uint256","name":"L1","type":"uint256"},{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"RicFlair","type":"uint256"},{"internalType":"uint256","name":"network","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"TOKENS","type":"uint256"}],"name":"priceImpact","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceInETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceUSD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recover","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"treasury","type":"uint256"},{"internalType":"uint256","name":"lp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sendFee","outputs":[{"internalType":"uint256","name":"treasury","type":"uint256"},{"internalType":"uint256","name":"lp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setAutoLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setAutoLiquify","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setAutoTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setBlocker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"treasury","type":"uint256"},{"internalType":"uint256","name":"lp","type":"uint256"}],"internalType":"struct WoooooCoin.Fee","name":"fees","type":"tuple"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setCurrency","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setCurrencyPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bool","name":"state","type":"bool"},{"internalType":"uint32","name":"ratio","type":"uint32"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"level","type":"uint256"}],"name":"setLiquifyTreshhold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setMarketing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setNetwork","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setRicFlair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"treasury","type":"uint256"},{"internalType":"uint256","name":"lp","type":"uint256"}],"internalType":"struct WoooooCoin.Fee","name":"fees","type":"tuple"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSlippage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"treasury","type":"uint256"},{"internalType":"uint256","name":"lp","type":"uint256"}],"internalType":"struct WoooooCoin.Fee","name":"fees","type":"tuple"}],"name":"setTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setTokenPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"slippage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"sold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"soldout","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"tokenQuote","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"triggerLiquidation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txn","outputs":[{"internalType":"address","name":"marketing","type":"address"},{"internalType":"address","name":"RicFlair","type":"address"},{"internalType":"address","name":"network","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"vested","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vestedFee","outputs":[{"internalType":"uint256","name":"treasury","type":"uint256"},{"internalType":"uint256","name":"lp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"vestedKey","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

600c60a09081526b2bb7b7b7b7b7909021b7b4b760a11b60c052610120604052600760e090815266574f4f4f4f4f2160c81b61010052600362000043838262000794565b50600462000052828262000794565b5050506200006f62000069620005cf60201b60201c565b620005d3565b600160068190556b204fce5e3e25026110000000608052692a5a058fc295ed00000060085566b1a2bc2ec50000600c556009556acecb8f27f4200f3a000000600d556a52b7d2dcc80cd2e4000000600f9081556a295be96e64066972000000600e55604080518082018252601480825260006020928301819052601f919091558155815180830183526032808252600a918301829052602181905560228290558351808501855281815283018290526023818155602492909255835180850185528281528301859052602591909155602693909355603080546001600160a01b031990811673d8b4df10f9ae893e51514db9e58084b3465a23a61790915560318054821673e1145542a7749c13303f1e42bcd676d43709c44917905583548116736132620efe52a851508cf0a779d343f5914ba84317909355601e8054841673dac17f958d2ee523a2206206994597c13d831ec7179055601c8054909316737a250d5630b4cf539739df2c5dacb4c659f2488d1790925560198054777a250d5630b4cf539739df2c5dacb4c659f2488d00000000600160201b600160c01b0319909116179081905581516315ab88c960e31b815291516401000000009091046001600160a01b03169263ad5c464892600481810193918290030181865afa1580156200025f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000285919062000860565b601d80546001600160a01b0319166001600160a01b039283161790556019546040805163c45a015560e01b815290516401000000009092049092169163c45a01559160048083019260209291908290030181865afa158015620002ec573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000312919062000860565b601d546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af115801562000364573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200038a919062000860565b601a80546001600160a01b0319166001600160a01b039283161790556019546040805163c45a015560e01b815290516401000000009092049092169163c45a01559160048083019260209291908290030181865afa158015620003f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000417919062000860565b601e54601d5460405163e6a4390560e01b81526001600160a01b039283166004820152908216602482015291169063e6a4390590604401602060405180830381865afa1580156200046c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000492919062000860565b601b80546001600160a01b0319166001600160a01b039283161790556096600a556007805460408051608080820183526101ac80835261011d60208085018290526048858701819052608f6060909601869052602793909355602891909155602991909155602a9290925565ffffffff00001990931665010101010000179093553060009081526010909352808320805460ff199081166001908117909255601d54861685528285208054821683179055601c549095168452818420805486168217905533808552919093208054909416909217909255905162000577919062000625565b7f2da9dde0d44bab521b0abb38f42383a3675cd9b35b0bdddececedf05f54d8210604051620005c190602080825260079082015266576f6f6f6f6f2160c81b604082015260600190565b60405180910390a1620008ba565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620006805760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000694919062000892565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200071b57607f821691505b6020821081036200073c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006eb57600081815260208120601f850160051c810160208610156200076b5750805b601f850160051c820191505b818110156200078c5782815560010162000777565b505050505050565b81516001600160401b03811115620007b057620007b0620006f0565b620007c881620007c1845462000706565b8462000742565b602080601f831160018114620008005760008415620007e75750858301515b600019600386901b1c1916600185901b1785556200078c565b600085815260208120601f198616915b82811015620008315788860151825594840194600190910190840162000810565b5085821015620008505787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200087357600080fd5b81516001600160a01b03811681146200088b57600080fd5b9392505050565b80820180821115620008b457634e487b7160e01b600052601160045260246000fd5b92915050565b608051613f4f620008d660003960006104cd0152613f4f6000f3fe6080604052600436106104985760003560e01c80638b0414d511610260578063c0d7865511610144578063daf250a9116100c1578063ec20b45711610085578063ec20b45714610eda578063f0fa55a914610efa578063f1320af214610f1a578063f2fde38b14610f4a578063f536121914610f6a578063f887ea4014610f8a57600080fd5b8063daf250a914610e12578063dd62ed3e14610e42578063e0747b3314610e62578063e5a6b10f14610e77578063e70abe9214610e9757600080fd5b8063ced968aa11610108578063ced968aa14610d69578063cee2a9cf14610d8a578063d65bed9a14610dba578063d82c52d614610dda578063d93510f714610dfc57600080fd5b8063c0d7865514610cdf578063c38ad27314610cff578063c618e59914610d14578063c6a9eb5b14610d34578063ce74602414610d5457600080fd5b8063a8aa1b31116101dd578063af22795a116101a1578063af22795a14610bf9578063b2a1449b14610c0f578063b4a44b1614610c41578063b69dc15d14610c71578063b96c31ae14610c9e578063be0ba8d214610cbe57600080fd5b8063a8aa1b3114610b5d578063a9059cbb14610b7d578063ac68112314610b9d578063ace3a8a714610bbe578063ae39279f14610bde57600080fd5b806395d89b411161022457806395d89b4114610ab85780639c52a7f114610acd578063a1d7114214610afd578063a457c2d714610b1d578063a887429a14610b3d57600080fd5b80638b0414d514610a265780638da5cb5b14610a46578063922530bb14610a6457806393a408d714610a8457806393a63dbe14610a9957600080fd5b8063313ce567116103875780635ab8b36b116103045780637102b728116102c85780637102b7281461097a578063715018a6146109a7578063722c016f146109bc57806380a4280d146109d157806384061853146109e6578063856bd30b14610a0657600080fd5b80635ab8b36b146108b55780635d55e5a3146108ca57806365bcfbe7146108ea5780636ac5db191461092057806370a082311461095a57600080fd5b80633e99c1e41161034b5780633e99c1e41461082a578063470624021461084a57806347a0ed501461086557806352dc21d71461087a57806357c8b0311461089a57600080fd5b8063313ce5671461078b57806332fe7b26146107a757806339509351146107df5780633bddb4e5146107ff5780633e032a3b1461081457600080fd5b80631cff1cd01161041557806329b1b081116103d957806329b1b081146106ae5780632b14ca56146106cf5780632ccd47ca146106ff5780632f7f1175146107565780632f84c3911461076b57600080fd5b80631cff1cd01461062357806323b872dd1461064357806324263616146106635780632576e65a14610683578063283d43d61461069957600080fd5b8063123c8e611161045c578063123c8e611461057457806315770f921461059457806316f0115b146105a95780631775765f146105f857806318160ddd1461060e57600080fd5b806301339c21146104a4578063047fc9aa146104bb57806306fdde0314610502578063095ea7b31461052457806311beac701461055457600080fd5b3661049f57005b600080fd5b3480156104b057600080fd5b506104b9610fb1565b005b3480156104c757600080fd5b506104ef7f000000000000000000000000000000000000000000000000000000000000000081565b6040519081526020015b60405180910390f35b34801561050e57600080fd5b50610517611067565b6040516104f9919061379f565b34801561053057600080fd5b5061054461053f366004613802565b6110f9565b60405190151581526020016104f9565b34801561056057600080fd5b506104b961056f366004613843565b611113565b34801561058057600080fd5b506104b961058f366004613870565b611137565b3480156105a057600080fd5b506104ef6111d7565b3480156105b557600080fd5b50602b54602c54602d54602e54602f546105d0949392919085565b604080519586526020860194909452928401919091526060830152608082015260a0016104f9565b34801561060457600080fd5b506104ef600a5481565b34801561061a57600080fd5b506002546104ef565b34801561062f57600080fd5b506104b961063e366004613907565b61121f565b34801561064f57600080fd5b5061054461065e366004613956565b6112b6565b34801561066f57600080fd5b506104b961067e366004613843565b6112dc565b34801561068f57600080fd5b506104ef600b5481565b3480156106a557600080fd5b506104ef611304565b3480156106ba57600080fd5b50600754610544906301000000900460ff1681565b3480156106db57600080fd5b506023546024546106ea919082565b604080519283526020830191909152016104f9565b34801561070b57600080fd5b5060305460315460325461072c926001600160a01b03908116928116911683565b604080516001600160a01b03948516815292841660208401529216918101919091526060016104f9565b34801561076257600080fd5b506104ef61135e565b34801561077757600080fd5b506104b9610786366004613997565b6113a3565b34801561079757600080fd5b50604051601281526020016104f9565b3480156107b357600080fd5b50601c546107c7906001600160a01b031681565b6040516001600160a01b0390911681526020016104f9565b3480156107eb57600080fd5b506105446107fa366004613802565b6113f5565b34801561080b57600080fd5b506104b9611417565b34801561082057600080fd5b506104ef60095481565b34801561083657600080fd5b506106ea610845366004613997565b61142a565b34801561085657600080fd5b506021546022546106ea919082565b34801561087157600080fd5b506104b96114c4565b34801561088657600080fd5b506007546105449062010000900460ff1681565b3480156108a657600080fd5b506025546026546106ea919082565b3480156108c157600080fd5b506105176115da565b3480156108d657600080fd5b506104ef6108e53660046139b4565b6116ed565b3480156108f657600080fd5b506107c7610905366004613997565b6014602052600090815260409020546001600160a01b031681565b34801561092c57600080fd5b50600d54600e54600f5461093f92919083565b604080519384526020840192909252908201526060016104f9565b34801561096657600080fd5b506104ef610975366004613997565b611714565b34801561098657600080fd5b506104ef610995366004613997565b60136020526000908152604090205481565b3480156109b357600080fd5b506104b961172f565b3480156109c857600080fd5b506104ef611796565b3480156109dd57600080fd5b506104b9611803565b3480156109f257600080fd5b506104ef610a013660046139b4565b61191c565b348015610a1257600080fd5b506104b9610a213660046139cd565b61197a565b348015610a3257600080fd5b506104b9610a41366004613997565b611a49565b348015610a5257600080fd5b506005546001600160a01b03166107c7565b348015610a7057600080fd5b506104b9610a7f366004613997565b611a9b565b348015610a9057600080fd5b506104ef611aed565b348015610aa557600080fd5b5060075461054490610100900460ff1681565b348015610ac457600080fd5b50610517611b21565b348015610ad957600080fd5b50610544610ae8366004613997565b60116020526000908152604090205460ff1681565b348015610b0957600080fd5b506104b9610b18366004613997565b611b30565b348015610b2957600080fd5b50610544610b38366004613802565b611b82565b348015610b4957600080fd5b506107c7610b583660046139b4565b611c08565b348015610b6957600080fd5b50601a546107c7906001600160a01b031681565b348015610b8957600080fd5b50610544610b98366004613802565b611c32565b348015610ba957600080fd5b5060075461054490600160201b900460ff1681565b348015610bca57600080fd5b50601d546107c7906001600160a01b031681565b348015610bea57600080fd5b50601f546020546106ea919082565b348015610c0557600080fd5b506104ef60085481565b348015610c1b57600080fd5b50601954610c2c9063ffffffff1681565b60405163ffffffff90911681526020016104f9565b348015610c4d57600080fd5b50610544610c5c366004613997565b60156020526000908152604090205460ff1681565b348015610c7d57600080fd5b506104ef610c8c366004613997565b60176020526000908152604090205481565b348015610caa57600080fd5b506104b9610cb9366004613907565b611c40565b348015610cca57600080fd5b5060075461054490600160281b900460ff1681565b348015610ceb57600080fd5b506104b9610cfa366004613997565b611ccc565b348015610d0b57600080fd5b506104ef611d9b565b348015610d2057600080fd5b506104b9610d2f366004613907565b611de8565b348015610d4057600080fd5b506104b9610d4f366004613843565b611e74565b348015610d6057600080fd5b506104b9611e9a565b348015610d7557600080fd5b5060075461054490600160301b900460ff1681565b348015610d9657600080fd5b50610544610da5366004613997565b60126020526000908152604090205460ff1681565b348015610dc657600080fd5b506104b9610dd5366004613843565b611eb0565b348015610de657600080fd5b50610def611ed9565b6040516104f99190613a06565b348015610e0857600080fd5b506104ef600c5481565b348015610e1e57600080fd5b50610544610e2d366004613997565b60166020526000908152604090205460ff1681565b348015610e4e57600080fd5b506104ef610e5d3660046139cd565b611f14565b348015610e6e57600080fd5b506104ef611f3f565b348015610e8357600080fd5b50601b546107c7906001600160a01b031681565b348015610ea357600080fd5b50602754602854602954602a54610eba9392919084565b6040805194855260208501939093529183015260608201526080016104f9565b348015610ee657600080fd5b506104b9610ef5366004613802565b611f5e565b348015610f0657600080fd5b506104b9610f153660046139b4565b61205c565b348015610f2657600080fd5b50610544610f35366004613997565b60106020526000908152604090205460ff1681565b348015610f5657600080fd5b506104b9610f65366004613997565b612069565b348015610f7657600080fd5b50601e546107c7906001600160a01b031681565b348015610f9657600080fd5b506019546107c790600160201b90046001600160a01b031681565b610fb96120df565b600754610100900460ff16156110165760405162461bcd60e51b815260206004820152601860248201527f54726164696e672e416c72656164792e4c61756e63686564000000000000000060448201526064015b60405180910390fd5b6007805461ff001916610100179055604051600080516020613e078339815191529061105d90602080825260079082015266576f6f6f6f6f2160c81b604082015260600190565b60405180910390a1565b60606003805461107690613a37565b80601f01602080910402602001604051908101604052809291908181526020018280546110a290613a37565b80156110ef5780601f106110c4576101008083540402835291602001916110ef565b820191906000526020600020905b8154815290600101906020018083116110d257829003601f168201915b5050505050905090565b600033611107818585612139565b60019150505b92915050565b61111b6120df565b60078054911515620100000262ff000019909216919091179055565b61113f6120df565b61115185670de0b6b3a7640000613a87565b60085560078054851515600160201b0264ff000000001990911617905563ffffffff8316600a55600b829055600c819055604051600080516020613e07833981519152906111c890602080825260159082015274155c19185d19590b931a5c5d5a599e4b93195d995b605a1b604082015260600190565b60405180910390a15050505050565b601a5460009081906111f1906001600160a01b031661142a565b509050670de0b6b3a7640000611205611d9b565b61120f9083613a87565b6112199190613ab4565b91505090565b6112276120df565b8060fa8160200151826000015161123e9190613ac8565b111561125c5760405162461bcd60e51b815260040161100d90613adb565b81516021556020820151602255604051600080516020613e07833981519152906112aa9060208082526010908201526f557064617465642e466565732e42757960801b604082015260600190565b60405180910390a15050565b6000336112c485828561225d565b6112cf8585856122d7565b60019150505b9392505050565b6112e46120df565b60078054911515600160281b0265ff000000000019909216919091179055565b60008061130f611f3f565b905060006103e8600a54836113249190613a87565b61132e9190613ab4565b9050600061133a611aed565b61134c83670de0b6b3a7640000613a87565b6113569190613ab4565b949350505050565b601a546000908190819061137a906001600160a01b031661142a565b90925090508061139283670de0b6b3a7640000613a87565b61139c9190613ab4565b9250505090565b6113ab6120df565b806001600160a01b0381166113d25760405162461bcd60e51b815260040161100d90613b06565b50601e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000336111078185856114088383611f14565b6114129190613ac8565b612139565b61141f6120df565b6114283361299a565b565b600080600080846001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa15801561146e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114929190613b46565b506001600160701b031691506001600160701b03169150808211156114ba5794909350915050565b9094909350915050565b6114cc6120df565b601960049054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561151f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115439190613b8d565b601d546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015611594573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115b89190613b8d565b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b606060006040518060a0016040528060405180604001604052806007815260200166576f6f6f6f6f2160c81b8152508152602001604051806060016040528060318152602001613e506031913981526020016040518060a0016040528060758152602001613d92607591398152602001604051806060016040528060298152602001613e276029913981526020016040518060c0016040528060998152602001613e8160999139815250905060004260016040516020016116a5929190918252602082015260400190565b60408051601f198184030181529190528051602090910120905060006116cc600583613baa565b90508281600581106116e0576116e0613bbe565b6020020151935050505090565b6000806116f8611aed565b61170a84670de0b6b3a7640000613a87565b6112d59190613ab4565b6001600160a01b031660009081526020819052604090205490565b6117376120df565b60405162461bcd60e51b815260206004820152602e60248201527f4f776e6572736869702063616e6e6f742062652072656e6f756e63656420696e60448201526d081d1a1a5cc818dbdb9d1c9858dd60921b606482015260840161100d565b6000806117a230611714565b60085460075491925090600160201b900460ff16156117fa576117c3611304565b9050600b546000146117dd576117da600b546116ed565b90505b8082106117fa5760018111156117f1578091505b61139c8261191c565b60009250505090565b61180b6120df565b601960049054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561185e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118829190613b8d565b601e54601d5460405163e6a4390560e01b81526001600160a01b039283166004820152908216602482015291169063e6a4390590604401602060405180830381865afa1580156118d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118fa9190613b8d565b601b80546001600160a01b0319166001600160a01b0392909216919091179055565b600080670de0b6b3a7640000611930611aed565b61193a9085613a87565b6119449190613ab4565b905060006119506111d7565b905060008161196784670de0b6b3a7640000613a87565b6119719190613ab4565b95945050505050565b6119826120df565b806001600160a01b0381166119a95760405162461bcd60e51b815260040161100d90613b06565b600754610100900460ff1615611a015760405162461bcd60e51b815260206004820152601c60248201527f4c312e496e766573746f72732e416c72656164792e456e61626c656400000000604482015260640161100d565b506001600160a01b03918216600090815260146020908152604080832080546001600160a01b031916949095169390931790935560159092529020805460ff19166001179055565b611a516120df565b806001600160a01b038116611a785760405162461bcd60e51b815260040161100d90613b06565b50603080546001600160a01b0319166001600160a01b0392909216919091179055565b611aa36120df565b806001600160a01b038116611aca5760405162461bcd60e51b815260040161100d90613b06565b50603180546001600160a01b0319166001600160a01b0392909216919091179055565b6000670de0b6b3a7640000611b00611d9b565b611b0861135e565b611b129190613a87565b611b1c9190613ab4565b905090565b60606004805461107690613a37565b611b386120df565b806001600160a01b038116611b5f5760405162461bcd60e51b815260040161100d90613b06565b50603280546001600160a01b0319166001600160a01b0392909216919091179055565b60003381611b908286611f14565b905083811015611bf05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161100d565b611bfd8286868403612139565b506001949350505050565b60188181548110611c1857600080fd5b6000918252602090912001546001600160a01b0316905081565b6000336111078185856122d7565b611c486120df565b8060fa81602001518260000151611c5f9190613ac8565b1115611c7d5760405162461bcd60e51b815260040161100d90613adb565b8151601f556020808301519055604051600080516020613e07833981519152906112aa90602080825260119082015270155c19185d19590b9199595ccb94d95b99607a1b604082015260600190565b611cd46120df565b601c80546001600160a01b0319166001600160a01b0383811691821790925560198054640100000000600160c01b031916600160201b9283021790819055604080516315ab88c960e31b81529051929091049092169163ad5c46489160048083019260209291908290030181865afa158015611d54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d789190613b8d565b601d80546001600160a01b0319166001600160a01b039290921691909117905550565b601b5460009081908190611db7906001600160a01b031661142a565b909250905080611dcf83670de0b6b3a7640000613a87565b611dd99190613ab4565b61139c9064e8d4a51000613a87565b611df06120df565b8060fa81602001518260000151611e079190613ac8565b1115611e255760405162461bcd60e51b815260040161100d90613adb565b81516023556020820151602455604051600080516020613e07833981519152906112aa90602080825260119082015270155c19185d19590b9199595ccb94d95b1b607a1b604082015260600190565b611e7c6120df565b6007805491151563010000000263ff00000019909216919091179055565b611ea26120df565b47611ead3382612b1b565b50565b611eb86120df565b60078054911515600160301b0266ff00000000000019909216919091179055565b611ee1613781565b601a546000908190611efb906001600160a01b031661142a565b91509150611f07613781565b9182526020820152919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600080611f4b30611714565b9050670de0b6b3a7640000611205611aed565b611f666120df565b816001600160a01b038116611f8d5760405162461bcd60e51b815260040161100d90613b06565b600754610100900460ff1615611fe55760405162461bcd60e51b815260206004820152601c60248201527f4c312e496e766573746f72732e416c72656164792e456e61626c656400000000604482015260640161100d565b506001600160a01b039091166000818152601360209081526040808320949094556018805460018181019092557fb13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e0180546001600160a01b031916851790559282526012905291909120805460ff19169091179055565b6120646120df565b600955565b6120716120df565b6001600160a01b0381166120d65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161100d565b611ead81612bc7565b6005546001600160a01b031633146114285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161100d565b6001600160a01b03831661219b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161100d565b6001600160a01b0382166121fc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161100d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006122698484611f14565b905060001981146122d157818110156122c45760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161100d565b6122d18484848403612139565b50505050565b826001600160a01b0381166122fe5760405162461bcd60e51b815260040161100d90613b06565b826001600160a01b0381166123255760405162461bcd60e51b815260040161100d90613b06565b826000036123685760405162461bcd60e51b815260206004820152601060248201526f4d7573742e4e6f742e42652e5a65726f60801b604482015260640161100d565b6001600160a01b03841660009081526011602052604090205460ff16156123d15760405162461bcd60e51b815260206004820152601c60248201527f536e6970652e41747461636b65722e4e6f742e5065726d697474656400000000604482015260640161100d565b600754610100900460ff16156125f657601a546001600160a01b03868116911614801561241757506001600160a01b03841660009081526010602052604090205460ff16155b8015612426575060075460ff16155b156124cb57600f548311156124735760405162461bcd60e51b8152602060048201526013602482015272105b5bdd5b9d0b909d5e4b915e18d959591959606a1b604482015260640161100d565b600d548361248086611714565b61248a9190613ac8565b11156124cb5760405162461bcd60e51b815260206004820152601060248201526f10985b185b98d94b915e18d95959195960821b604482015260640161100d565b601a546001600160a01b0386811691161480159061250257506001600160a01b03841660009081526010602052604090205460ff16155b801561252757506001600160a01b03851660009081526010602052604090205460ff16155b8015612536575060075460ff16155b156125f157600e548311156125845760405162461bcd60e51b8152602060048201526014602482015273105b5bdd5b9d0b94d95b1b0b915e18d95959195960621b604482015260640161100d565b601a546001600160a01b038581169116146125f157600d54836125a686611714565b6125b09190613ac8565b11156125f15760405162461bcd60e51b815260206004820152601060248201526f10985b185b98d94b915e18d95959195960821b604482015260640161100d565b612661565b6001600160a01b03841660009081526010602052604090205460ff1615801561263857506001600160a01b03851660009081526010602052604090205460ff16155b15612661576001600160a01b0384166000908152601160205260409020805460ff191660011790555b60075460009060ff168061268d57506001600160a01b03861660009081526010602052604090205460ff165b806126b057506001600160a01b03851660009081526010602052604090205460ff165b156126bd575060006128b6565b601a546001600160a01b0390811690861603612726576024546023546126e39190613ac8565b6001600160a01b038716600090815260136020526040902054909150156127215761270e8685612c19565b60265460255461271e9190613ac8565b90505b6128b6565b601a546001600160a01b039081169087160361280a57600754600160281b900460ff1615801561276e57506001600160a01b03851660009081526012602052604090205460ff165b156127b45760405162461bcd60e51b81526020600482015260166024820152754c312e496e766573746f722e43616e6e6f742e42757960501b604482015260640161100d565b6022546021546127c49190613ac8565b9050600080516020613e078339815191526040516127fd90602080825260079082015266576f6f6f6f6f2160c81b604082015260600190565b60405180910390a16128b6565b600754600160281b900460ff1615801561283c57506001600160a01b03851660009081526012602052604090205460ff165b156128895760405162461bcd60e51b815260206004820152601b60248201527f4c312e496e766573746f722e43616e6e6f742e52656365696576650000000000604482015260640161100d565b6001600160a01b038616600090815260136020526040902054156128b1576128b18685612c19565b506020545b60006103e86128c58387613a87565b6128cf9190613ab4565b600754909150600160301b900460ff161561296c57600754610100900460ff1680156129095750601a546001600160a01b03888116911614155b801561291457508115155b801561293957506001600160a01b03871660009081526010602052604090205460ff16155b801561295e57506001600160a01b03861660009081526010602052604090205460ff16155b1561296c5761296c8661299a565b612980878761297b8489613bd4565b612d1d565b811561299157612991873083612d1d565b50505050505050565b60075460ff16611ead576007805460ff1916600117905560006129bc30611714565b60085460075491925090600160201b900460ff16156129f7576129dd611304565b9050600b546000146129f7576129f4600b546116ed565b90505b808210612b0c576001811115612a0b578091505b6000612a168361191c565b9050600c54811015612b0a574760006103e8612a3386603e613a87565b612a3d9190613ab4565b9050612a51612a4c8287613bd4565b612ec1565b6000612a5d8347613bd4565b90506000612a6a83613042565b905080821115612b0557612a7e83826131db565b6000612a8a8347613bd4565b9050612aae6103e8612a9e83610384613a87565b612aa89190613ab4565b8a6132d6565b600080516020613e07833981519152604051612afb906020808252601a908201527f546f6b656e2e4c69717569646174696f6e2e436f6d706c657465000000000000604082015260600190565b60405180910390a1505b505050505b505b50506007805460ff1916905550565b612b236136c3565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612b70576040519150601f19603f3d011682016040523d82523d6000602084013e612b75565b606091505b5050905080612bb85760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015260640161100d565b50612bc36001600655565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526017602052604081208054839290612c41908490613ac8565b90915550506001600160a01b03821660009081526013602090815260408083205460179092529091205403612bc3576001600160a01b0382166000908152601660205260408120805460ff191660019081179091556019805491929091612caf90849063ffffffff16613be7565b82546101009290920a63ffffffff818102199093169183160217909155601854601954909116109050612bc3576040805160808101825260008082526101f460208301819052607d93830184905260fa6060909301839052602791909155602855602991909155602a555050565b6001600160a01b038316612d815760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161100d565b6001600160a01b038216612de35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161100d565b6001600160a01b03831660009081526020819052604090205481811015612e5b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161100d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36122d1565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612ef657612ef6613bbe565b60200260200101906001600160a01b031690816001600160a01b031681525050601960049054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f8d9190613b8d565b81600181518110612fa057612fa0613bbe565b6001600160a01b039283166020918202929092010152601954612fcd913091600160201b90041684612139565b60195460405163791ac94760e01b8152600160201b9091046001600160a01b03169063791ac9479061300c908590600090869030904290600401613c4f565b600060405180830381600087803b15801561302657600080fd5b505af115801561303a573d6000803e3d6000fd5b505050505050565b60408051600280825260608201835260009283929190602083019080368337019050509050308160008151811061307b5761307b613bbe565b60200260200101906001600160a01b031690816001600160a01b031681525050601960049054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156130ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131129190613b8d565b8160018151811061312557613125613bbe565b6001600160a01b03928316602091820292909201015260195460405163d06ca61f60e01b8152600092600160201b9092049091169063d06ca61f906131709087908690600401613c8b565b600060405180830381865afa15801561318d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526131b59190810190613ca4565b9050806001815181106131ca576131ca613bbe565b602002602001015192505050919050565b60075462010000900460ff1615612bc3578015612bc357601954613211903090600160201b90046001600160a01b031684612139565b6019546001600160a01b03600160201b9091041663f305d7198230856000806132426005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156132aa573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906132cf9190613d4a565b5050505050565b6007546301000000900460ff16156136685760185463ffffffff811615801590613301575060275415155b156135ed576027546000906103e89061331a9086613a87565b6133249190613ab4565b90506000808363ffffffff1667ffffffffffffffff811115613348576133486138c0565b604051908082528060200260200182016040528015613371578160200160208202803683370190505b5090506000805b8563ffffffff168163ffffffff1610156134ed57600060046013600060188563ffffffff16815481106133ad576133ad613bbe565b60009182526020808320909101546001600160a01b031683528201929092526040019020546133dc9190613ab4565b9050600061341660188463ffffffff16815481106133fc576133fc613bbe565b6000918252602090912001546001600160a01b0316611714565b9050886001600160a01b031660188463ffffffff168154811061343b5761343b613bbe565b6000918252602090912001546001600160a01b03161480159061345e5750818110155b156134745761346d8187613ac8565b95506134e3565b60188363ffffffff168154811061348d5761348d613bbe565b9060005260206000200160009054906101000a90046001600160a01b03168585815181106134bd576134bd613bbe565b6001600160a01b0390921660209283029190910190910152836134df81613d78565b9450505b5050600101613378565b5060005b8563ffffffff168163ffffffff1610156135e757600060188263ffffffff168154811061352057613520613bbe565b6000918252602090912001546001600160a01b0316905061354284828561371c565b6135de5760008561355283611714565b61355e906103e8613a87565b6135689190613ab4565b905060006103e86135798984613a87565b6135839190613ab4565b6001600160a01b03841660009081526015602052604090205490915060ff16156135d1576001600160a01b038084166000908152601460205260409020546135cc911682612b1b565b6135db565b6135db8382612b1b565b50505b506001016134f1565b50505050505b60305460285461361e916001600160a01b0316906103e89061360f9087613a87565b6136199190613ab4565b612b1b565b603154602954613640916001600160a01b0316906103e89061360f9087613a87565b603254602a54613662916001600160a01b0316906103e89061360f9087613a87565b50613683565b61368361367d6005546001600160a01b031690565b83612b1b565b600080516020613e078339815191526040516112aa9060208082526010908201526f5061796f7574732e436f6d706c65746560801b604082015260600190565b6002600654036137155760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161100d565b6002600655565b6000805b8281101561377657836001600160a01b031685828151811061374457613744613bbe565b60200260200101516001600160a01b0316036137645760019150506112d5565b8061376e81613d78565b915050613720565b506000949350505050565b60405180604001604052806002906020820280368337509192915050565b600060208083528351808285015260005b818110156137cc578581018301518582016040015282016137b0565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611ead57600080fd5b6000806040838503121561381557600080fd5b8235613820816137ed565b946020939093013593505050565b8035801515811461383e57600080fd5b919050565b60006020828403121561385557600080fd5b6112d58261382e565b63ffffffff81168114611ead57600080fd5b600080600080600060a0868803121561388857600080fd5b853594506138986020870161382e565b935060408601356138a88161385e565b94979396509394606081013594506080013592915050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156138ff576138ff6138c0565b604052919050565b60006040828403121561391957600080fd5b6040516040810181811067ffffffffffffffff8211171561393c5761393c6138c0565b604052823581526020928301359281019290925250919050565b60008060006060848603121561396b57600080fd5b8335613976816137ed565b92506020840135613986816137ed565b929592945050506040919091013590565b6000602082840312156139a957600080fd5b81356112d5816137ed565b6000602082840312156139c657600080fd5b5035919050565b600080604083850312156139e057600080fd5b82356139eb816137ed565b915060208301356139fb816137ed565b809150509250929050565b60408101818360005b6002811015613a2e578151835260209283019290910190600101613a0f565b50505092915050565b600181811c90821680613a4b57607f821691505b602082108103613a6b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761110d5761110d613a71565b634e487b7160e01b600052601260045260246000fd5b600082613ac357613ac3613a9e565b500490565b8082018082111561110d5761110d613a71565b60208082526011908201527043616e6e6f74206578636565642032352560781b604082015260600190565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b80516001600160701b038116811461383e57600080fd5b600080600060608486031215613b5b57600080fd5b613b6484613b2f565b9250613b7260208501613b2f565b91506040840151613b828161385e565b809150509250925092565b600060208284031215613b9f57600080fd5b81516112d5816137ed565b600082613bb957613bb9613a9e565b500690565b634e487b7160e01b600052603260045260246000fd5b8181038181111561110d5761110d613a71565b63ffffffff818116838216019080821115613c0457613c04613a71565b5092915050565b600081518084526020808501945080840160005b83811015613c445781516001600160a01b031687529582019590820190600101613c1f565b509495945050505050565b85815284602082015260a060408201526000613c6e60a0830186613c0b565b6001600160a01b0394909416606083015250608001529392505050565b8281526040602082015260006113566040830184613c0b565b60006020808385031215613cb757600080fd5b825167ffffffffffffffff80821115613ccf57600080fd5b818501915085601f830112613ce357600080fd5b815181811115613cf557613cf56138c0565b8060051b9150613d068483016138d6565b8181529183018401918481019088841115613d2057600080fd5b938501935b83851015613d3e57845182529385019390850190613d25565b98975050505050505050565b600080600060608486031215613d5f57600080fd5b8351925060208401519150604084015190509250925092565b600060018201613d8a57613d8a613a71565b506001019056fe49276d2052696320466c6169722120546865205374796c696e272c2070726f66696c696e272c206c696d6f7573696e6520726964696e672c206a657420666c79696e672c206b6973732d737465616c696e672c20776865656c696e27206e27206465616c696e2720736f6e206f6620612067756e212da9dde0d44bab521b0abb38f42383a3675cd9b35b0bdddececedf05f54d8210496620796f7520646f6e2774206c696b652069742c206c6561726e20746f202a6c6f76652a20697421496e206f7264657220746f20626520746865206d616e2c20796f75206861766520746f206265617420746865206d616e2e4861726c6579205261636520697320612067726561742077726573746c65722c2061206772656174206368616d70696f6e2c20616e642061206d617374657220746563686e696369616e2e2049206c6561726e656420736f6d657468696e67206e65772065766572792074696d6520492077726573746c65642068696d2e204f6e65206f662074686520616c6c2d74696d6520677265617473a26469706673582212205ad1bed1c8d3c1044f2a9466f04f136c3916a0bf28d789a090f4588fc1eb56e464736f6c63430008110033

Deployed Bytecode

0x6080604052600436106104985760003560e01c80638b0414d511610260578063c0d7865511610144578063daf250a9116100c1578063ec20b45711610085578063ec20b45714610eda578063f0fa55a914610efa578063f1320af214610f1a578063f2fde38b14610f4a578063f536121914610f6a578063f887ea4014610f8a57600080fd5b8063daf250a914610e12578063dd62ed3e14610e42578063e0747b3314610e62578063e5a6b10f14610e77578063e70abe9214610e9757600080fd5b8063ced968aa11610108578063ced968aa14610d69578063cee2a9cf14610d8a578063d65bed9a14610dba578063d82c52d614610dda578063d93510f714610dfc57600080fd5b8063c0d7865514610cdf578063c38ad27314610cff578063c618e59914610d14578063c6a9eb5b14610d34578063ce74602414610d5457600080fd5b8063a8aa1b31116101dd578063af22795a116101a1578063af22795a14610bf9578063b2a1449b14610c0f578063b4a44b1614610c41578063b69dc15d14610c71578063b96c31ae14610c9e578063be0ba8d214610cbe57600080fd5b8063a8aa1b3114610b5d578063a9059cbb14610b7d578063ac68112314610b9d578063ace3a8a714610bbe578063ae39279f14610bde57600080fd5b806395d89b411161022457806395d89b4114610ab85780639c52a7f114610acd578063a1d7114214610afd578063a457c2d714610b1d578063a887429a14610b3d57600080fd5b80638b0414d514610a265780638da5cb5b14610a46578063922530bb14610a6457806393a408d714610a8457806393a63dbe14610a9957600080fd5b8063313ce567116103875780635ab8b36b116103045780637102b728116102c85780637102b7281461097a578063715018a6146109a7578063722c016f146109bc57806380a4280d146109d157806384061853146109e6578063856bd30b14610a0657600080fd5b80635ab8b36b146108b55780635d55e5a3146108ca57806365bcfbe7146108ea5780636ac5db191461092057806370a082311461095a57600080fd5b80633e99c1e41161034b5780633e99c1e41461082a578063470624021461084a57806347a0ed501461086557806352dc21d71461087a57806357c8b0311461089a57600080fd5b8063313ce5671461078b57806332fe7b26146107a757806339509351146107df5780633bddb4e5146107ff5780633e032a3b1461081457600080fd5b80631cff1cd01161041557806329b1b081116103d957806329b1b081146106ae5780632b14ca56146106cf5780632ccd47ca146106ff5780632f7f1175146107565780632f84c3911461076b57600080fd5b80631cff1cd01461062357806323b872dd1461064357806324263616146106635780632576e65a14610683578063283d43d61461069957600080fd5b8063123c8e611161045c578063123c8e611461057457806315770f921461059457806316f0115b146105a95780631775765f146105f857806318160ddd1461060e57600080fd5b806301339c21146104a4578063047fc9aa146104bb57806306fdde0314610502578063095ea7b31461052457806311beac701461055457600080fd5b3661049f57005b600080fd5b3480156104b057600080fd5b506104b9610fb1565b005b3480156104c757600080fd5b506104ef7f0000000000000000000000000000000000000000204fce5e3e2502611000000081565b6040519081526020015b60405180910390f35b34801561050e57600080fd5b50610517611067565b6040516104f9919061379f565b34801561053057600080fd5b5061054461053f366004613802565b6110f9565b60405190151581526020016104f9565b34801561056057600080fd5b506104b961056f366004613843565b611113565b34801561058057600080fd5b506104b961058f366004613870565b611137565b3480156105a057600080fd5b506104ef6111d7565b3480156105b557600080fd5b50602b54602c54602d54602e54602f546105d0949392919085565b604080519586526020860194909452928401919091526060830152608082015260a0016104f9565b34801561060457600080fd5b506104ef600a5481565b34801561061a57600080fd5b506002546104ef565b34801561062f57600080fd5b506104b961063e366004613907565b61121f565b34801561064f57600080fd5b5061054461065e366004613956565b6112b6565b34801561066f57600080fd5b506104b961067e366004613843565b6112dc565b34801561068f57600080fd5b506104ef600b5481565b3480156106a557600080fd5b506104ef611304565b3480156106ba57600080fd5b50600754610544906301000000900460ff1681565b3480156106db57600080fd5b506023546024546106ea919082565b604080519283526020830191909152016104f9565b34801561070b57600080fd5b5060305460315460325461072c926001600160a01b03908116928116911683565b604080516001600160a01b03948516815292841660208401529216918101919091526060016104f9565b34801561076257600080fd5b506104ef61135e565b34801561077757600080fd5b506104b9610786366004613997565b6113a3565b34801561079757600080fd5b50604051601281526020016104f9565b3480156107b357600080fd5b50601c546107c7906001600160a01b031681565b6040516001600160a01b0390911681526020016104f9565b3480156107eb57600080fd5b506105446107fa366004613802565b6113f5565b34801561080b57600080fd5b506104b9611417565b34801561082057600080fd5b506104ef60095481565b34801561083657600080fd5b506106ea610845366004613997565b61142a565b34801561085657600080fd5b506021546022546106ea919082565b34801561087157600080fd5b506104b96114c4565b34801561088657600080fd5b506007546105449062010000900460ff1681565b3480156108a657600080fd5b506025546026546106ea919082565b3480156108c157600080fd5b506105176115da565b3480156108d657600080fd5b506104ef6108e53660046139b4565b6116ed565b3480156108f657600080fd5b506107c7610905366004613997565b6014602052600090815260409020546001600160a01b031681565b34801561092c57600080fd5b50600d54600e54600f5461093f92919083565b604080519384526020840192909252908201526060016104f9565b34801561096657600080fd5b506104ef610975366004613997565b611714565b34801561098657600080fd5b506104ef610995366004613997565b60136020526000908152604090205481565b3480156109b357600080fd5b506104b961172f565b3480156109c857600080fd5b506104ef611796565b3480156109dd57600080fd5b506104b9611803565b3480156109f257600080fd5b506104ef610a013660046139b4565b61191c565b348015610a1257600080fd5b506104b9610a213660046139cd565b61197a565b348015610a3257600080fd5b506104b9610a41366004613997565b611a49565b348015610a5257600080fd5b506005546001600160a01b03166107c7565b348015610a7057600080fd5b506104b9610a7f366004613997565b611a9b565b348015610a9057600080fd5b506104ef611aed565b348015610aa557600080fd5b5060075461054490610100900460ff1681565b348015610ac457600080fd5b50610517611b21565b348015610ad957600080fd5b50610544610ae8366004613997565b60116020526000908152604090205460ff1681565b348015610b0957600080fd5b506104b9610b18366004613997565b611b30565b348015610b2957600080fd5b50610544610b38366004613802565b611b82565b348015610b4957600080fd5b506107c7610b583660046139b4565b611c08565b348015610b6957600080fd5b50601a546107c7906001600160a01b031681565b348015610b8957600080fd5b50610544610b98366004613802565b611c32565b348015610ba957600080fd5b5060075461054490600160201b900460ff1681565b348015610bca57600080fd5b50601d546107c7906001600160a01b031681565b348015610bea57600080fd5b50601f546020546106ea919082565b348015610c0557600080fd5b506104ef60085481565b348015610c1b57600080fd5b50601954610c2c9063ffffffff1681565b60405163ffffffff90911681526020016104f9565b348015610c4d57600080fd5b50610544610c5c366004613997565b60156020526000908152604090205460ff1681565b348015610c7d57600080fd5b506104ef610c8c366004613997565b60176020526000908152604090205481565b348015610caa57600080fd5b506104b9610cb9366004613907565b611c40565b348015610cca57600080fd5b5060075461054490600160281b900460ff1681565b348015610ceb57600080fd5b506104b9610cfa366004613997565b611ccc565b348015610d0b57600080fd5b506104ef611d9b565b348015610d2057600080fd5b506104b9610d2f366004613907565b611de8565b348015610d4057600080fd5b506104b9610d4f366004613843565b611e74565b348015610d6057600080fd5b506104b9611e9a565b348015610d7557600080fd5b5060075461054490600160301b900460ff1681565b348015610d9657600080fd5b50610544610da5366004613997565b60126020526000908152604090205460ff1681565b348015610dc657600080fd5b506104b9610dd5366004613843565b611eb0565b348015610de657600080fd5b50610def611ed9565b6040516104f99190613a06565b348015610e0857600080fd5b506104ef600c5481565b348015610e1e57600080fd5b50610544610e2d366004613997565b60166020526000908152604090205460ff1681565b348015610e4e57600080fd5b506104ef610e5d3660046139cd565b611f14565b348015610e6e57600080fd5b506104ef611f3f565b348015610e8357600080fd5b50601b546107c7906001600160a01b031681565b348015610ea357600080fd5b50602754602854602954602a54610eba9392919084565b6040805194855260208501939093529183015260608201526080016104f9565b348015610ee657600080fd5b506104b9610ef5366004613802565b611f5e565b348015610f0657600080fd5b506104b9610f153660046139b4565b61205c565b348015610f2657600080fd5b50610544610f35366004613997565b60106020526000908152604090205460ff1681565b348015610f5657600080fd5b506104b9610f65366004613997565b612069565b348015610f7657600080fd5b50601e546107c7906001600160a01b031681565b348015610f9657600080fd5b506019546107c790600160201b90046001600160a01b031681565b610fb96120df565b600754610100900460ff16156110165760405162461bcd60e51b815260206004820152601860248201527f54726164696e672e416c72656164792e4c61756e63686564000000000000000060448201526064015b60405180910390fd5b6007805461ff001916610100179055604051600080516020613e078339815191529061105d90602080825260079082015266576f6f6f6f6f2160c81b604082015260600190565b60405180910390a1565b60606003805461107690613a37565b80601f01602080910402602001604051908101604052809291908181526020018280546110a290613a37565b80156110ef5780601f106110c4576101008083540402835291602001916110ef565b820191906000526020600020905b8154815290600101906020018083116110d257829003601f168201915b5050505050905090565b600033611107818585612139565b60019150505b92915050565b61111b6120df565b60078054911515620100000262ff000019909216919091179055565b61113f6120df565b61115185670de0b6b3a7640000613a87565b60085560078054851515600160201b0264ff000000001990911617905563ffffffff8316600a55600b829055600c819055604051600080516020613e07833981519152906111c890602080825260159082015274155c19185d19590b931a5c5d5a599e4b93195d995b605a1b604082015260600190565b60405180910390a15050505050565b601a5460009081906111f1906001600160a01b031661142a565b509050670de0b6b3a7640000611205611d9b565b61120f9083613a87565b6112199190613ab4565b91505090565b6112276120df565b8060fa8160200151826000015161123e9190613ac8565b111561125c5760405162461bcd60e51b815260040161100d90613adb565b81516021556020820151602255604051600080516020613e07833981519152906112aa9060208082526010908201526f557064617465642e466565732e42757960801b604082015260600190565b60405180910390a15050565b6000336112c485828561225d565b6112cf8585856122d7565b60019150505b9392505050565b6112e46120df565b60078054911515600160281b0265ff000000000019909216919091179055565b60008061130f611f3f565b905060006103e8600a54836113249190613a87565b61132e9190613ab4565b9050600061133a611aed565b61134c83670de0b6b3a7640000613a87565b6113569190613ab4565b949350505050565b601a546000908190819061137a906001600160a01b031661142a565b90925090508061139283670de0b6b3a7640000613a87565b61139c9190613ab4565b9250505090565b6113ab6120df565b806001600160a01b0381166113d25760405162461bcd60e51b815260040161100d90613b06565b50601e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000336111078185856114088383611f14565b6114129190613ac8565b612139565b61141f6120df565b6114283361299a565b565b600080600080846001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa15801561146e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114929190613b46565b506001600160701b031691506001600160701b03169150808211156114ba5794909350915050565b9094909350915050565b6114cc6120df565b601960049054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561151f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115439190613b8d565b601d546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015611594573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115b89190613b8d565b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b606060006040518060a0016040528060405180604001604052806007815260200166576f6f6f6f6f2160c81b8152508152602001604051806060016040528060318152602001613e506031913981526020016040518060a0016040528060758152602001613d92607591398152602001604051806060016040528060298152602001613e276029913981526020016040518060c0016040528060998152602001613e8160999139815250905060004260016040516020016116a5929190918252602082015260400190565b60408051601f198184030181529190528051602090910120905060006116cc600583613baa565b90508281600581106116e0576116e0613bbe565b6020020151935050505090565b6000806116f8611aed565b61170a84670de0b6b3a7640000613a87565b6112d59190613ab4565b6001600160a01b031660009081526020819052604090205490565b6117376120df565b60405162461bcd60e51b815260206004820152602e60248201527f4f776e6572736869702063616e6e6f742062652072656e6f756e63656420696e60448201526d081d1a1a5cc818dbdb9d1c9858dd60921b606482015260840161100d565b6000806117a230611714565b60085460075491925090600160201b900460ff16156117fa576117c3611304565b9050600b546000146117dd576117da600b546116ed565b90505b8082106117fa5760018111156117f1578091505b61139c8261191c565b60009250505090565b61180b6120df565b601960049054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561185e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118829190613b8d565b601e54601d5460405163e6a4390560e01b81526001600160a01b039283166004820152908216602482015291169063e6a4390590604401602060405180830381865afa1580156118d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118fa9190613b8d565b601b80546001600160a01b0319166001600160a01b0392909216919091179055565b600080670de0b6b3a7640000611930611aed565b61193a9085613a87565b6119449190613ab4565b905060006119506111d7565b905060008161196784670de0b6b3a7640000613a87565b6119719190613ab4565b95945050505050565b6119826120df565b806001600160a01b0381166119a95760405162461bcd60e51b815260040161100d90613b06565b600754610100900460ff1615611a015760405162461bcd60e51b815260206004820152601c60248201527f4c312e496e766573746f72732e416c72656164792e456e61626c656400000000604482015260640161100d565b506001600160a01b03918216600090815260146020908152604080832080546001600160a01b031916949095169390931790935560159092529020805460ff19166001179055565b611a516120df565b806001600160a01b038116611a785760405162461bcd60e51b815260040161100d90613b06565b50603080546001600160a01b0319166001600160a01b0392909216919091179055565b611aa36120df565b806001600160a01b038116611aca5760405162461bcd60e51b815260040161100d90613b06565b50603180546001600160a01b0319166001600160a01b0392909216919091179055565b6000670de0b6b3a7640000611b00611d9b565b611b0861135e565b611b129190613a87565b611b1c9190613ab4565b905090565b60606004805461107690613a37565b611b386120df565b806001600160a01b038116611b5f5760405162461bcd60e51b815260040161100d90613b06565b50603280546001600160a01b0319166001600160a01b0392909216919091179055565b60003381611b908286611f14565b905083811015611bf05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161100d565b611bfd8286868403612139565b506001949350505050565b60188181548110611c1857600080fd5b6000918252602090912001546001600160a01b0316905081565b6000336111078185856122d7565b611c486120df565b8060fa81602001518260000151611c5f9190613ac8565b1115611c7d5760405162461bcd60e51b815260040161100d90613adb565b8151601f556020808301519055604051600080516020613e07833981519152906112aa90602080825260119082015270155c19185d19590b9199595ccb94d95b99607a1b604082015260600190565b611cd46120df565b601c80546001600160a01b0319166001600160a01b0383811691821790925560198054640100000000600160c01b031916600160201b9283021790819055604080516315ab88c960e31b81529051929091049092169163ad5c46489160048083019260209291908290030181865afa158015611d54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d789190613b8d565b601d80546001600160a01b0319166001600160a01b039290921691909117905550565b601b5460009081908190611db7906001600160a01b031661142a565b909250905080611dcf83670de0b6b3a7640000613a87565b611dd99190613ab4565b61139c9064e8d4a51000613a87565b611df06120df565b8060fa81602001518260000151611e079190613ac8565b1115611e255760405162461bcd60e51b815260040161100d90613adb565b81516023556020820151602455604051600080516020613e07833981519152906112aa90602080825260119082015270155c19185d19590b9199595ccb94d95b1b607a1b604082015260600190565b611e7c6120df565b6007805491151563010000000263ff00000019909216919091179055565b611ea26120df565b47611ead3382612b1b565b50565b611eb86120df565b60078054911515600160301b0266ff00000000000019909216919091179055565b611ee1613781565b601a546000908190611efb906001600160a01b031661142a565b91509150611f07613781565b9182526020820152919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600080611f4b30611714565b9050670de0b6b3a7640000611205611aed565b611f666120df565b816001600160a01b038116611f8d5760405162461bcd60e51b815260040161100d90613b06565b600754610100900460ff1615611fe55760405162461bcd60e51b815260206004820152601c60248201527f4c312e496e766573746f72732e416c72656164792e456e61626c656400000000604482015260640161100d565b506001600160a01b039091166000818152601360209081526040808320949094556018805460018181019092557fb13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e0180546001600160a01b031916851790559282526012905291909120805460ff19169091179055565b6120646120df565b600955565b6120716120df565b6001600160a01b0381166120d65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161100d565b611ead81612bc7565b6005546001600160a01b031633146114285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161100d565b6001600160a01b03831661219b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161100d565b6001600160a01b0382166121fc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161100d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006122698484611f14565b905060001981146122d157818110156122c45760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161100d565b6122d18484848403612139565b50505050565b826001600160a01b0381166122fe5760405162461bcd60e51b815260040161100d90613b06565b826001600160a01b0381166123255760405162461bcd60e51b815260040161100d90613b06565b826000036123685760405162461bcd60e51b815260206004820152601060248201526f4d7573742e4e6f742e42652e5a65726f60801b604482015260640161100d565b6001600160a01b03841660009081526011602052604090205460ff16156123d15760405162461bcd60e51b815260206004820152601c60248201527f536e6970652e41747461636b65722e4e6f742e5065726d697474656400000000604482015260640161100d565b600754610100900460ff16156125f657601a546001600160a01b03868116911614801561241757506001600160a01b03841660009081526010602052604090205460ff16155b8015612426575060075460ff16155b156124cb57600f548311156124735760405162461bcd60e51b8152602060048201526013602482015272105b5bdd5b9d0b909d5e4b915e18d959591959606a1b604482015260640161100d565b600d548361248086611714565b61248a9190613ac8565b11156124cb5760405162461bcd60e51b815260206004820152601060248201526f10985b185b98d94b915e18d95959195960821b604482015260640161100d565b601a546001600160a01b0386811691161480159061250257506001600160a01b03841660009081526010602052604090205460ff16155b801561252757506001600160a01b03851660009081526010602052604090205460ff16155b8015612536575060075460ff16155b156125f157600e548311156125845760405162461bcd60e51b8152602060048201526014602482015273105b5bdd5b9d0b94d95b1b0b915e18d95959195960621b604482015260640161100d565b601a546001600160a01b038581169116146125f157600d54836125a686611714565b6125b09190613ac8565b11156125f15760405162461bcd60e51b815260206004820152601060248201526f10985b185b98d94b915e18d95959195960821b604482015260640161100d565b612661565b6001600160a01b03841660009081526010602052604090205460ff1615801561263857506001600160a01b03851660009081526010602052604090205460ff16155b15612661576001600160a01b0384166000908152601160205260409020805460ff191660011790555b60075460009060ff168061268d57506001600160a01b03861660009081526010602052604090205460ff165b806126b057506001600160a01b03851660009081526010602052604090205460ff165b156126bd575060006128b6565b601a546001600160a01b0390811690861603612726576024546023546126e39190613ac8565b6001600160a01b038716600090815260136020526040902054909150156127215761270e8685612c19565b60265460255461271e9190613ac8565b90505b6128b6565b601a546001600160a01b039081169087160361280a57600754600160281b900460ff1615801561276e57506001600160a01b03851660009081526012602052604090205460ff165b156127b45760405162461bcd60e51b81526020600482015260166024820152754c312e496e766573746f722e43616e6e6f742e42757960501b604482015260640161100d565b6022546021546127c49190613ac8565b9050600080516020613e078339815191526040516127fd90602080825260079082015266576f6f6f6f6f2160c81b604082015260600190565b60405180910390a16128b6565b600754600160281b900460ff1615801561283c57506001600160a01b03851660009081526012602052604090205460ff165b156128895760405162461bcd60e51b815260206004820152601b60248201527f4c312e496e766573746f722e43616e6e6f742e52656365696576650000000000604482015260640161100d565b6001600160a01b038616600090815260136020526040902054156128b1576128b18685612c19565b506020545b60006103e86128c58387613a87565b6128cf9190613ab4565b600754909150600160301b900460ff161561296c57600754610100900460ff1680156129095750601a546001600160a01b03888116911614155b801561291457508115155b801561293957506001600160a01b03871660009081526010602052604090205460ff16155b801561295e57506001600160a01b03861660009081526010602052604090205460ff16155b1561296c5761296c8661299a565b612980878761297b8489613bd4565b612d1d565b811561299157612991873083612d1d565b50505050505050565b60075460ff16611ead576007805460ff1916600117905560006129bc30611714565b60085460075491925090600160201b900460ff16156129f7576129dd611304565b9050600b546000146129f7576129f4600b546116ed565b90505b808210612b0c576001811115612a0b578091505b6000612a168361191c565b9050600c54811015612b0a574760006103e8612a3386603e613a87565b612a3d9190613ab4565b9050612a51612a4c8287613bd4565b612ec1565b6000612a5d8347613bd4565b90506000612a6a83613042565b905080821115612b0557612a7e83826131db565b6000612a8a8347613bd4565b9050612aae6103e8612a9e83610384613a87565b612aa89190613ab4565b8a6132d6565b600080516020613e07833981519152604051612afb906020808252601a908201527f546f6b656e2e4c69717569646174696f6e2e436f6d706c657465000000000000604082015260600190565b60405180910390a1505b505050505b505b50506007805460ff1916905550565b612b236136c3565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612b70576040519150601f19603f3d011682016040523d82523d6000602084013e612b75565b606091505b5050905080612bb85760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015260640161100d565b50612bc36001600655565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526017602052604081208054839290612c41908490613ac8565b90915550506001600160a01b03821660009081526013602090815260408083205460179092529091205403612bc3576001600160a01b0382166000908152601660205260408120805460ff191660019081179091556019805491929091612caf90849063ffffffff16613be7565b82546101009290920a63ffffffff818102199093169183160217909155601854601954909116109050612bc3576040805160808101825260008082526101f460208301819052607d93830184905260fa6060909301839052602791909155602855602991909155602a555050565b6001600160a01b038316612d815760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161100d565b6001600160a01b038216612de35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161100d565b6001600160a01b03831660009081526020819052604090205481811015612e5b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161100d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36122d1565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612ef657612ef6613bbe565b60200260200101906001600160a01b031690816001600160a01b031681525050601960049054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f8d9190613b8d565b81600181518110612fa057612fa0613bbe565b6001600160a01b039283166020918202929092010152601954612fcd913091600160201b90041684612139565b60195460405163791ac94760e01b8152600160201b9091046001600160a01b03169063791ac9479061300c908590600090869030904290600401613c4f565b600060405180830381600087803b15801561302657600080fd5b505af115801561303a573d6000803e3d6000fd5b505050505050565b60408051600280825260608201835260009283929190602083019080368337019050509050308160008151811061307b5761307b613bbe565b60200260200101906001600160a01b031690816001600160a01b031681525050601960049054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156130ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131129190613b8d565b8160018151811061312557613125613bbe565b6001600160a01b03928316602091820292909201015260195460405163d06ca61f60e01b8152600092600160201b9092049091169063d06ca61f906131709087908690600401613c8b565b600060405180830381865afa15801561318d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526131b59190810190613ca4565b9050806001815181106131ca576131ca613bbe565b602002602001015192505050919050565b60075462010000900460ff1615612bc3578015612bc357601954613211903090600160201b90046001600160a01b031684612139565b6019546001600160a01b03600160201b9091041663f305d7198230856000806132426005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156132aa573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906132cf9190613d4a565b5050505050565b6007546301000000900460ff16156136685760185463ffffffff811615801590613301575060275415155b156135ed576027546000906103e89061331a9086613a87565b6133249190613ab4565b90506000808363ffffffff1667ffffffffffffffff811115613348576133486138c0565b604051908082528060200260200182016040528015613371578160200160208202803683370190505b5090506000805b8563ffffffff168163ffffffff1610156134ed57600060046013600060188563ffffffff16815481106133ad576133ad613bbe565b60009182526020808320909101546001600160a01b031683528201929092526040019020546133dc9190613ab4565b9050600061341660188463ffffffff16815481106133fc576133fc613bbe565b6000918252602090912001546001600160a01b0316611714565b9050886001600160a01b031660188463ffffffff168154811061343b5761343b613bbe565b6000918252602090912001546001600160a01b03161480159061345e5750818110155b156134745761346d8187613ac8565b95506134e3565b60188363ffffffff168154811061348d5761348d613bbe565b9060005260206000200160009054906101000a90046001600160a01b03168585815181106134bd576134bd613bbe565b6001600160a01b0390921660209283029190910190910152836134df81613d78565b9450505b5050600101613378565b5060005b8563ffffffff168163ffffffff1610156135e757600060188263ffffffff168154811061352057613520613bbe565b6000918252602090912001546001600160a01b0316905061354284828561371c565b6135de5760008561355283611714565b61355e906103e8613a87565b6135689190613ab4565b905060006103e86135798984613a87565b6135839190613ab4565b6001600160a01b03841660009081526015602052604090205490915060ff16156135d1576001600160a01b038084166000908152601460205260409020546135cc911682612b1b565b6135db565b6135db8382612b1b565b50505b506001016134f1565b50505050505b60305460285461361e916001600160a01b0316906103e89061360f9087613a87565b6136199190613ab4565b612b1b565b603154602954613640916001600160a01b0316906103e89061360f9087613a87565b603254602a54613662916001600160a01b0316906103e89061360f9087613a87565b50613683565b61368361367d6005546001600160a01b031690565b83612b1b565b600080516020613e078339815191526040516112aa9060208082526010908201526f5061796f7574732e436f6d706c65746560801b604082015260600190565b6002600654036137155760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161100d565b6002600655565b6000805b8281101561377657836001600160a01b031685828151811061374457613744613bbe565b60200260200101516001600160a01b0316036137645760019150506112d5565b8061376e81613d78565b915050613720565b506000949350505050565b60405180604001604052806002906020820280368337509192915050565b600060208083528351808285015260005b818110156137cc578581018301518582016040015282016137b0565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611ead57600080fd5b6000806040838503121561381557600080fd5b8235613820816137ed565b946020939093013593505050565b8035801515811461383e57600080fd5b919050565b60006020828403121561385557600080fd5b6112d58261382e565b63ffffffff81168114611ead57600080fd5b600080600080600060a0868803121561388857600080fd5b853594506138986020870161382e565b935060408601356138a88161385e565b94979396509394606081013594506080013592915050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156138ff576138ff6138c0565b604052919050565b60006040828403121561391957600080fd5b6040516040810181811067ffffffffffffffff8211171561393c5761393c6138c0565b604052823581526020928301359281019290925250919050565b60008060006060848603121561396b57600080fd5b8335613976816137ed565b92506020840135613986816137ed565b929592945050506040919091013590565b6000602082840312156139a957600080fd5b81356112d5816137ed565b6000602082840312156139c657600080fd5b5035919050565b600080604083850312156139e057600080fd5b82356139eb816137ed565b915060208301356139fb816137ed565b809150509250929050565b60408101818360005b6002811015613a2e578151835260209283019290910190600101613a0f565b50505092915050565b600181811c90821680613a4b57607f821691505b602082108103613a6b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761110d5761110d613a71565b634e487b7160e01b600052601260045260246000fd5b600082613ac357613ac3613a9e565b500490565b8082018082111561110d5761110d613a71565b60208082526011908201527043616e6e6f74206578636565642032352560781b604082015260600190565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b80516001600160701b038116811461383e57600080fd5b600080600060608486031215613b5b57600080fd5b613b6484613b2f565b9250613b7260208501613b2f565b91506040840151613b828161385e565b809150509250925092565b600060208284031215613b9f57600080fd5b81516112d5816137ed565b600082613bb957613bb9613a9e565b500690565b634e487b7160e01b600052603260045260246000fd5b8181038181111561110d5761110d613a71565b63ffffffff818116838216019080821115613c0457613c04613a71565b5092915050565b600081518084526020808501945080840160005b83811015613c445781516001600160a01b031687529582019590820190600101613c1f565b509495945050505050565b85815284602082015260a060408201526000613c6e60a0830186613c0b565b6001600160a01b0394909416606083015250608001529392505050565b8281526040602082015260006113566040830184613c0b565b60006020808385031215613cb757600080fd5b825167ffffffffffffffff80821115613ccf57600080fd5b818501915085601f830112613ce357600080fd5b815181811115613cf557613cf56138c0565b8060051b9150613d068483016138d6565b8181529183018401918481019088841115613d2057600080fd5b938501935b83851015613d3e57845182529385019390850190613d25565b98975050505050505050565b600080600060608486031215613d5f57600080fd5b8351925060208401519150604084015190509250925092565b600060018201613d8a57613d8a613a71565b506001019056fe49276d2052696320466c6169722120546865205374796c696e272c2070726f66696c696e272c206c696d6f7573696e6520726964696e672c206a657420666c79696e672c206b6973732d737465616c696e672c20776865656c696e27206e27206465616c696e2720736f6e206f6620612067756e212da9dde0d44bab521b0abb38f42383a3675cd9b35b0bdddececedf05f54d8210496620796f7520646f6e2774206c696b652069742c206c6561726e20746f202a6c6f76652a20697421496e206f7264657220746f20626520746865206d616e2c20796f75206861766520746f206265617420746865206d616e2e4861726c6579205261636520697320612067726561742077726573746c65722c2061206772656174206368616d70696f6e2c20616e642061206d617374657220746563686e696369616e2e2049206c6561726e656420736f6d657468696e67206e65772065766572792074696d6520492077726573746c65642068696d2e204f6e65206f662074686520616c6c2d74696d6520677265617473a26469706673582212205ad1bed1c8d3c1044f2a9466f04f136c3916a0bf28d789a090f4588fc1eb56e464736f6c63430008110033

Deployed Bytecode Sourcemap

29907:17854:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36574:165;;;;;;;;;;;;;:::i;:::-;;30124:31;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;30124:31:0;;;;;;;;17410:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;19761:201::-;;;;;;;;;;-1:-1:-1;19761:201:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;19761:201:0;1205:187:1;34632:97:0;;;;;;;;;;-1:-1:-1;34632:97:0;;;;;:::i;:::-;;:::i;34178:353::-;;;;;;;;;;-1:-1:-1;34178:353:0;;;;;:::i;:::-;;:::i;38572:156::-;;;;;;;;;;;;;:::i;31608:16::-;;;;;;;;;;-1:-1:-1;31608:16:0;;;;;;;;;;;;;;;;;;;;;;2656:25:1;;;2712:2;2697:18;;2690:34;;;;2740:18;;;2733:34;;;;2798:2;2783:18;;2776:34;2841:3;2826:19;;2819:35;2643:3;2628:19;31608:16:0;2397:463:1;30282:31:0;;;;;;;;;;;;;;;;18530:108;;;;;;;;;;-1:-1:-1;18618:12:0;;18530:108;;35152:151;;;;;;;;;;-1:-1:-1;35152:151:0;;;;;:::i;:::-;;:::i;20542:295::-;;;;;;;;;;-1:-1:-1;20542:295:0;;;;;:::i;:::-;;:::i;36484:84::-;;;;;;;;;;-1:-1:-1;36484:84:0;;;;;:::i;:::-;;:::i;30320:31::-;;;;;;;;;;;;;;;;39160:267;;;;;;;;;;;;;:::i;30056:24::-;;;;;;;;;;-1:-1:-1;30056:24:0;;;;;;;;;;;31255:18;;;;;;;;;;-1:-1:-1;31255:18:0;;;;;;;;;;;;;4417:25:1;;;4473:2;4458:18;;4451:34;;;;4390:18;31255::0;4243:248:1;31739:14:0;;;;;;;;;;-1:-1:-1;31739:14:0;;;;;;;;-1:-1:-1;;;;;31739:14:0;;;;;;;;;;;;;;-1:-1:-1;;;;;4754:15:1;;;4736:34;;4806:15;;;4801:2;4786:18;;4779:43;4858:15;;4838:18;;;4831:43;;;;4686:2;4671:18;31739:14:0;4496:384:1;38285:165:0;;;;;;;;;;;;;:::i;36143:106::-;;;;;;;;;;-1:-1:-1;36143:106:0;;;;;:::i;:::-;;:::i;18372:93::-;;;;;;;;;;-1:-1:-1;18372:93:0;;18455:2;5279:36:1;;5267:2;5252:18;18372:93:0;5137:184:1;31045:21:0;;;;;;;;;;-1:-1:-1;31045:21:0;;;;-1:-1:-1;;;;;31045:21:0;;;;;;-1:-1:-1;;;;;5490:32:1;;;5472:51;;5460:2;5445:18;31045:21:0;5326:203:1;21246:238:0;;;;;;;;;;-1:-1:-1;21246:238:0;;;;;:::i;:::-;;:::i;45442:88::-;;;;;;;;;;;;;:::i;30252:23::-;;;;;;;;;;;;;;;;37775:278;;;;;;;;;;-1:-1:-1;37775:278:0;;;;;:::i;:::-;;:::i;31231:17::-;;;;;;;;;;-1:-1:-1;31231:17:0;;;;;;;;;34045:127;;;;;;;;;;;;;:::i;30024:25::-;;;;;;;;;;-1:-1:-1;30024:25:0;;;;;;;;;;;31280:20;;;;;;;;;;-1:-1:-1;31280:20:0;;;;;;;;;37031:738;;;;;;;;;;;;;:::i;39433:150::-;;;;;;;;;;-1:-1:-1;39433:150:0;;;;;:::i;:::-;;:::i;30698:43::-;;;;;;;;;;-1:-1:-1;30698:43:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;30698:43:0;;;30486:14;;;;;;;;;;-1:-1:-1;30486:14:0;;;;;;;;;;;;;;;;5921:25:1;;;5977:2;5962:18;;5955:34;;;;6005:18;;;5998:34;5909:2;5894:18;30486:14:0;5719:319:1;18701:127:0;;;;;;;;;;-1:-1:-1;18701:127:0;;;;;:::i;:::-;;:::i;30649:42::-;;;;;;;;;;-1:-1:-1;30649:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;36745:135;;;;;;;;;;;;;:::i;43619:585::-;;;;;;;;;;;;;:::i;36255:125::-;;;;;;;;;;;;;:::i;38901:253::-;;;;;;;;;;-1:-1:-1;38901:253:0;;;;;:::i;:::-;;:::i;35913:224::-;;;;;;;;;;-1:-1:-1;35913:224:0;;;;;:::i;:::-;;:::i;35309:113::-;;;;;;;;;;-1:-1:-1;35309:113:0;;;;;:::i;:::-;;:::i;10187:87::-;;;;;;;;;;-1:-1:-1;10260:6:0;;-1:-1:-1;;;;;10260:6:0;10187:87;;35428:110;;;;;;;;;;-1:-1:-1;35428:110:0;;;;;:::i;:::-;;:::i;38456:::-;;;;;;;;;;;;;:::i;29997:20::-;;;;;;;;;;-1:-1:-1;29997:20:0;;;;;;;;;;;17629:104;;;;;;;;;;;;;:::i;30555:37::-;;;;;;;;;;-1:-1:-1;30555:37:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;35544:108;;;;;;;;;;-1:-1:-1;35544:108:0;;;;;:::i;:::-;;:::i;21987:436::-;;;;;;;;;;-1:-1:-1;21987:436:0;;;;;:::i;:::-;;:::i;30891:26::-;;;;;;;;;;-1:-1:-1;30891:26:0;;;;;:::i;:::-;;:::i;30989:19::-;;;;;;;;;;-1:-1:-1;30989:19:0;;;;-1:-1:-1;;;;;30989:19:0;;;19034:193;;;;;;;;;;-1:-1:-1;19034:193:0;;;;;:::i;:::-;;:::i;30087:28::-;;;;;;;;;;-1:-1:-1;30087:28:0;;;;-1:-1:-1;;;30087:28:0;;;;;;31073:19;;;;;;;;;;-1:-1:-1;31073:19:0;;;;-1:-1:-1;;;;;31073:19:0;;;31206:18;;;;;;;;;;-1:-1:-1;31206:18:0;;;;;;;;;30218:27;;;;;;;;;;;;;;;;30924:17;;;;;;;;;;-1:-1:-1;30924:17:0;;;;;;;;;;;6610:10:1;6598:23;;;6580:42;;6568:2;6553:18;30924:17:0;6436:192:1;30748:42:0;;;;;;;;;;-1:-1:-1;30748:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30844:40;;;;;;;;;;-1:-1:-1;30844:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;34836:150;;;;;;;;;;-1:-1:-1;34836:150:0;;;;;:::i;:::-;;:::i;30162:19::-;;;;;;;;;;-1:-1:-1;30162:19:0;;;;-1:-1:-1;;;30162:19:0;;;;;;33878:161;;;;;;;;;;-1:-1:-1;33878:161:0;;;;;:::i;:::-;;:::i;38059:220::-;;;;;;;;;;;;;:::i;34992:154::-;;;;;;;;;;-1:-1:-1;34992:154:0;;;;;:::i;:::-;;:::i;34735:95::-;;;;;;;;;;-1:-1:-1;34735:95:0;;;;;:::i;:::-;;:::i;36886:139::-;;;;;;;;;;;;;:::i;30188:23::-;;;;;;;;;;-1:-1:-1;30188:23:0;;;;-1:-1:-1;;;30188:23:0;;;;;;30599:43;;;;;;;;;;-1:-1:-1;30599:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36386:92;;;;;;;;;;-1:-1:-1;36386:92:0;;;;;:::i;:::-;;:::i;39589:240::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30358:26::-;;;;;;;;;;;;;;;;30797:40;;;;;;;;;;-1:-1:-1;30797:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;19290:151;;;;;;;;;;-1:-1:-1;19290:151:0;;;;;:::i;:::-;;:::i;38734:161::-;;;;;;;;;;;;;:::i;31015:23::-;;;;;;;;;;-1:-1:-1;31015:23:0;;;;-1:-1:-1;;;;;31015:23:0;;;31436:14;;;;;;;;;;-1:-1:-1;31436:14:0;;;;;;;;;;;;;;;;;;;7363:25:1;;;7419:2;7404:18;;7397:34;;;;7447:18;;;7440:34;7505:2;7490:18;;7483:34;7350:3;7335:19;31436:14:0;7132:391:1;35658:249:0;;;;;;;;;;-1:-1:-1;35658:249:0;;;;;:::i;:::-;;:::i;34537:89::-;;;;;;;;;;-1:-1:-1;34537:89:0;;;;;:::i;:::-;;:::i;30509:39::-;;;;;;;;;;-1:-1:-1;30509:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;11093:201;;;;;;;;;;-1:-1:-1;11093:201:0;;;;;:::i;:::-;;:::i;31099:23::-;;;;;;;;;;-1:-1:-1;31099:23:0;;;;-1:-1:-1;;;;;31099:23:0;;;30950:32;;;;;;;;;;-1:-1:-1;30950:32:0;;;;-1:-1:-1;;;30950:32:0;;-1:-1:-1;;;;;30950:32:0;;;36574:165;10073:13;:11;:13::i;:::-;36630:8:::1;::::0;::::1;::::0;::::1;;;36629:9;36621:46;;;::::0;-1:-1:-1;;;36621:46:0;;7964:2:1;36621:46:0::1;::::0;::::1;7946:21:1::0;8003:2;7983:18;;;7976:30;8042:26;8022:18;;;8015:54;8086:18;;36621:46:0::1;;;;;;;;;36678:8;:15:::0;;-1:-1:-1;;36678:15:0::1;;;::::0;;36709:22:::1;::::0;-1:-1:-1;;;;;;;;;;;36709:22:0;::::1;::::0;8317:2:1;8299:21;;;8356:1;8336:18;;;8329:29;-1:-1:-1;;;8389:2:1;8374:18;;8367:37;8436:2;8421:18;;8115:330;36709:22:0::1;;;;;;;;36574:165::o:0;17410:100::-;17464:13;17497:5;17490:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17410:100;:::o;19761:201::-;19844:4;8818:10;19900:32;8818:10;19916:7;19925:6;19900:8;:32::i;:::-;19950:4;19943:11;;;19761:201;;;;;:::o;34632:97::-;10073:13;:11;:13::i;:::-;34700::::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;34700:21:0;;::::1;::::0;;;::::1;::::0;;34632:97::o;34178:353::-;10073:13;:11;:13::i;:::-;34324:11:::1;:6:::0;34331:4:::1;34324:11;:::i;:::-;34309:12;:26:::0;34346:16:::1;:24:::0;;;::::1;;-1:-1:-1::0;;;34346:24:0::1;-1:-1:-1::0;;34346:24:0;;::::1;;::::0;;34381:25:::1;::::0;::::1;:16;:25:::0;34417:16:::1;:24:::0;;;34452:11:::1;:19:::0;;;34487:36:::1;::::0;-1:-1:-1;;;;;;;;;;;34487:36:0;::::1;::::0;9342:2:1;9324:21;;;9381:2;9361:18;;;9354:30;-1:-1:-1;;;9415:2:1;9400:18;;9393:51;9476:2;9461:18;;9140:345;34487:36:0::1;;;;;;;;34178:353:::0;;;;;:::o;38572:156::-;38669:4;;38617:7;;;;38657:17;;-1:-1:-1;;;;;38669:4:0;38657:11;:17::i;:::-;38636:38;;;38716:4;38702:10;:8;:10::i;:::-;38693:19;;:6;:19;:::i;:::-;38692:28;;;;:::i;:::-;38685:35;;;38572:156;:::o;35152:151::-;10073:13;:11;:13::i;:::-;35219:4:::1;32153:3;32142:4;:7;;;32126:4;:13;;;:23;;;;:::i;:::-;:30;;32118:60;;;;-1:-1:-1::0;;;32118:60:0::1;;;;;;;:::i;:::-;35235:13:::0;;:6:::2;:13:::0;::::2;::::0;::::2;::::0;;;35264:31:::2;::::0;-1:-1:-1;;;;;;;;;;;35264:31:0;::::2;::::0;10425:2:1;10407:21;;;10464:2;10444:18;;;10437:30;-1:-1:-1;;;10498:2:1;10483:18;;10476:46;10554:2;10539:18;;10223:340;35264:31:0::2;;;;;;;;10097:1:::1;35152:151:::0;:::o;20542:295::-;20673:4;8818:10;20731:38;20747:4;8818:10;20762:6;20731:15;:38::i;:::-;20780:27;20790:4;20796:2;20800:6;20780:9;:27::i;:::-;20825:4;20818:11;;;20542:295;;;;;;:::o;36484:84::-;10073:13;:11;:13::i;:::-;36545:7:::1;:15:::0;;;::::1;;-1:-1:-1::0;;;36545:15:0::1;-1:-1:-1::0;;36545:15:0;;::::1;::::0;;;::::1;::::0;;36484:84::o;39160:267::-;39214:7;39234:14;39251:18;:16;:18::i;:::-;39234:35;;39280:13;39322:4;39304:16;;39297:6;:23;;;;:::i;:::-;39296:30;;;;:::i;:::-;39280:46;;39337:23;39376:10;:8;:10::i;:::-;39364;:5;39370:4;39364:10;:::i;:::-;39363:23;;;;:::i;:::-;39337:49;39160:267;-1:-1:-1;;;;39160:267:0:o;38285:165::-;38395:4;;38328:7;;;;;;38383:17;;-1:-1:-1;;;;;38395:4:0;38383:11;:17::i;:::-;38348:52;;-1:-1:-1;38348:52:0;-1:-1:-1;38348:52:0;38419:13;38348:52;38428:4;38419:13;:::i;:::-;38418:24;;;;:::i;:::-;38411:31;;;;38285:165;:::o;36143:106::-;10073:13;:11;:13::i;:::-;36210:4;-1:-1:-1;;;;;32003:22:0;::::1;31995:50;;;;-1:-1:-1::0;;;31995:50:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;36226:8:0::2;:15:::0;;-1:-1:-1;;;;;;36226:15:0::2;-1:-1:-1::0;;;;;36226:15:0;;;::::2;::::0;;;::::2;::::0;;36143:106::o;21246:238::-;21334:4;8818:10;21390:64;8818:10;21406:7;21443:10;21415:25;8818:10;21406:7;21415:9;:25::i;:::-;:38;;;;:::i;:::-;21390:8;:64::i;45442:88::-;10073:13;:11;:13::i;:::-;45501:21:::1;45511:10;45501:9;:21::i;:::-;45442:88::o:0;37775:278::-;37829:7;37838;37858:14;37874;37899:4;-1:-1:-1;;;;;37893:23:0;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37857:61;-1:-1:-1;;;;;37857:61:0;;;-1:-1:-1;;;;;37857:61:0;;;37939:6;37932;:13;37929:117;;;37968:6;37975;;-1:-1:-1;37775:278:0;-1:-1:-1;;37775:278:0:o;37929:117::-;38020:6;;38027;;-1:-1:-1;37775:278:0;-1:-1:-1;;37775:278:0:o;34045:127::-;10073:13;:11;:13::i;:::-;34115:6:::1;;;;;;;;;-1:-1:-1::0;;;;;34115:6:0::1;-1:-1:-1::0;;;;;34115:14:0::1;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34159:4;::::0;34106:58:::1;::::0;-1:-1:-1;;;34106:58:0;;34152:4:::1;34106:58;::::0;::::1;11997:34:1::0;-1:-1:-1;;;;;34159:4:0;;::::1;12047:18:1::0;;;12040:43;34106:37:0;::::1;::::0;::::1;::::0;11932:18:1;;34106:58:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34097:4;:67:::0;;-1:-1:-1;;;;;;34097:67:0::1;-1:-1:-1::0;;;;;34097:67:0;;;::::1;::::0;;;::::1;::::0;;34045:127::o;37031:738::-;37070:13;37096:24;:470;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;37096:470:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37577:18;37625:15;37650:1;37608:45;;;;;;;;12251:19:1;;;12295:2;12286:12;;12279:28;12332:2;12323:12;;12094:247;37608:45:0;;;;-1:-1:-1;;37608:45:0;;;;;;;;;37598:56;;37608:45;37598:56;;;;;-1:-1:-1;37665:19:0;37687:36;37709:14;37598:56;37687:36;:::i;:::-;37665:58;;37741:7;37749:11;37741:20;;;;;;;:::i;:::-;;;;;37734:27;;;;;37031:738;:::o;39433:150::-;39490:7;39510:14;39541:10;:8;:10::i;:::-;39528:11;:6;39535:4;39528:11;:::i;:::-;39527:24;;;;:::i;18701:127::-;-1:-1:-1;;;;;18802:18:0;18775:7;18802:18;;;;;;;;;;;;18701:127::o;36745:135::-;10073:13;:11;:13::i;:::-;36816:56:::1;::::0;-1:-1:-1;;;36816:56:0;;12797:2:1;36816:56:0::1;::::0;::::1;12779:21:1::0;12836:2;12816:18;;;12809:30;12875:34;12855:18;;;12848:62;-1:-1:-1;;;12926:18:1;;;12919:44;12980:19;;36816:56:0::1;12595:410:1::0;43619:585:0;43668:7;43687:14;43704:24;43722:4;43704:9;:24::i;:::-;43760:12;;43786:16;;43687:41;;-1:-1:-1;43760:12:0;-1:-1:-1;;;43786:16:0;;;;43783:395;;;43831:23;:21;:23::i;:::-;43818:36;;43872:16;;43890:1;43872:19;43869:99;;43924:28;43935:16;;43924:10;:28::i;:::-;43911:41;;43869:99;43996:10;43986:6;:20;43982:185;;44043:1;44030:10;:14;44027:80;;;44077:10;44068:19;;44027:80;44132:19;44144:6;44132:11;:19::i;43982:185::-;44195:1;44188:8;;;;43619:585;:::o;36255:125::-;10073:13;:11;:13::i;:::-;36331:6:::1;;;;;;;;;-1:-1:-1::0;;;;;36331:6:0::1;-1:-1:-1::0;;;;;36331:14:0::1;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36357:8;::::0;36367:4:::1;::::0;36322:50:::1;::::0;-1:-1:-1;;;36322:50:0;;-1:-1:-1;;;;;36357:8:0;;::::1;36322:50;::::0;::::1;11997:34:1::0;36367:4:0;;::::1;12047:18:1::0;;;12040:43;36322:34:0;::::1;::::0;::::1;::::0;11932:18:1;;36322:50:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36311:8;:61:::0;;-1:-1:-1;;;;;;36311:61:0::1;-1:-1:-1::0;;;;;36311:61:0;;;::::1;::::0;;;::::1;::::0;;36255:125::o;38901:253::-;38959:7;38979:13;39019:4;39005:10;:8;:10::i;:::-;38996:19;;:6;:19;:::i;:::-;38995:28;;;;:::i;:::-;38979:44;;39034:17;39054:16;:14;:16::i;:::-;39034:36;-1:-1:-1;39081:14:0;39034:36;39099:10;:5;39105:4;39099:10;:::i;:::-;39098:24;;;;:::i;:::-;39081:41;38901:253;-1:-1:-1;;;;;38901:253:0:o;35913:224::-;10073:13;:11;:13::i;:::-;35995:4;-1:-1:-1;;;;;32003:22:0;::::1;31995:50;;;;-1:-1:-1::0;;;31995:50:0::1;;;;;;;:::i;:::-;36020:8:::2;::::0;::::2;::::0;::::2;;;36019:9;36011:50;;;::::0;-1:-1:-1;;;36011:50:0;;13212:2:1;36011:50:0::2;::::0;::::2;13194:21:1::0;13251:2;13231:18;;;13224:30;13290;13270:18;;;13263:58;13338:18;;36011:50:0::2;13010:352:1::0;36011:50:0::2;-1:-1:-1::0;;;;;;36072:17:0;;::::2;;::::0;;;:7:::2;:17;::::0;;;;;;;:22;;-1:-1:-1;;;;;;36072:22:0::2;::::0;;;::::2;::::0;;;::::2;::::0;;;36105:9:::2;:19:::0;;;;;:24;;-1:-1:-1;;36105:24:0::2;-1:-1:-1::0;36105:24:0::2;::::0;;35913:224::o;35309:113::-;10073:13;:11;:13::i;:::-;35377:4;-1:-1:-1;;;;;32003:22:0;::::1;31995:50;;;;-1:-1:-1::0;;;31995:50:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;35394:3:0::2;:20:::0;;-1:-1:-1;;;;;;35394:20:0::2;-1:-1:-1::0;;;;;35394:20:0;;;::::2;::::0;;;::::2;::::0;;35309:113::o;35428:110::-;10073:13;:11;:13::i;:::-;35495:4;-1:-1:-1;;;;;32003:22:0;::::1;31995:50;;;;-1:-1:-1::0;;;31995:50:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;35511:12:0;:19;;-1:-1:-1;;;;;;35511:19:0::2;-1:-1:-1::0;;;;;35511:19:0;;;::::2;::::0;;;::::2;::::0;;35428:110::o;38456:::-;38497:7;38554:4;38540:10;:8;:10::i;:::-;38525:12;:10;:12::i;:::-;:25;;;;:::i;:::-;38524:34;;;;:::i;:::-;38517:41;;38456:110;:::o;17629:104::-;17685:13;17718:7;17711:14;;;;;:::i;35544:108::-;10073:13;:11;:13::i;:::-;35610:4;-1:-1:-1;;;;;32003:22:0;::::1;31995:50;;;;-1:-1:-1::0;;;31995:50:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;35626:11:0;:18;;-1:-1:-1;;;;;;35626:18:0::2;-1:-1:-1::0;;;;;35626:18:0;;;::::2;::::0;;;::::2;::::0;;35544:108::o;21987:436::-;22080:4;8818:10;22080:4;22163:25;8818:10;22180:7;22163:9;:25::i;:::-;22136:52;;22227:15;22207:16;:35;;22199:85;;;;-1:-1:-1;;;22199:85:0;;13569:2:1;22199:85:0;;;13551:21:1;13608:2;13588:18;;;13581:30;13647:34;13627:18;;;13620:62;-1:-1:-1;;;13698:18:1;;;13691:35;13743:19;;22199:85:0;13367:401:1;22199:85:0;22320:60;22329:5;22336:7;22364:15;22345:16;:34;22320:8;:60::i;:::-;-1:-1:-1;22411:4:0;;21987:436;-1:-1:-1;;;;21987:436:0:o;30891:26::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30891:26:0;;-1:-1:-1;30891:26:0;:::o;19034:193::-;19113:4;8818:10;19169:28;8818:10;19186:2;19190:6;19169:9;:28::i;34836:150::-;10073:13;:11;:13::i;:::-;34900:4:::1;32153:3;32142:4;:7;;;32126:4;:13;;;:23;;;;:::i;:::-;:30;;32118:60;;;;-1:-1:-1::0;;;32118:60:0::1;;;;;;;:::i;:::-;34916:14:::0;;:7:::2;:14:::0;::::2;::::0;;::::2;::::0;;;34946:32:::2;::::0;-1:-1:-1;;;;;;;;;;;34946:32:0;::::2;::::0;13975:2:1;13957:21;;;14014:2;13994:18;;;13987:30;-1:-1:-1;;;14048:2:1;14033:18;;14026:47;14105:2;14090:18;;13773:341;33878:161:0;10073:13;:11;:13::i;:::-;33939:6:::1;:13:::0;;-1:-1:-1;;;;;;33939:13:0::1;-1:-1:-1::0;;;;;33939:13:0;;::::1;::::0;;::::1;::::0;;;33963:6:::1;:35:::0;;-1:-1:-1;;;;;;33963:35:0::1;-1:-1:-1::0;;;33963:35:0;;::::1;;::::0;;;;34018:13:::1;::::0;;-1:-1:-1;;;34018:13:0;;;;:6;;;::::1;::::0;;::::1;::::0;:11:::1;::::0;33963:6:::1;34018:13:::0;;::::1;::::0;::::1;::::0;;;;;;;;:6;:13:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34009:4;:22:::0;;-1:-1:-1;;;;;;34009:22:0::1;-1:-1:-1::0;;;;;34009:22:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;33878:161:0:o;38059:220::-;38167:8;;38100:7;;;;;;38155:21;;-1:-1:-1;;;;;38167:8:0;38155:11;:21::i;:::-;38120:56;;-1:-1:-1;38120:56:0;-1:-1:-1;38120:56:0;38196:13;38120:56;38205:4;38196:13;:::i;:::-;38195:24;;;;:::i;:::-;38194:31;;38221:4;38194:31;:::i;34992:154::-;10073:13;:11;:13::i;:::-;35060:4:::1;32153:3;32142:4;:7;;;32126:4;:13;;;:23;;;;:::i;:::-;:30;;32118:60;;;;-1:-1:-1::0;;;32118:60:0::1;;;;;;;:::i;:::-;35076:14:::0;;:7:::2;:14:::0;::::2;::::0;::::2;::::0;;;35106:32:::2;::::0;-1:-1:-1;;;;;;;;;;;35106:32:0;::::2;::::0;14321:2:1;14303:21;;;14360:2;14340:18;;;14333:30;-1:-1:-1;;;14394:2:1;14379:18;;14372:47;14451:2;14436:18;;14119:341;34735:95:0;10073:13;:11;:13::i;:::-;34802:12:::1;:20:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;34802:20:0;;::::1;::::0;;;::::1;::::0;;34735:95::o;36886:139::-;10073:13;:11;:13::i;:::-;36950:21:::1;36982:35;36997:10;36950:21:::0;36982:6:::1;:35::i;:::-;36922:103;36886:139::o:0;36386:92::-;10073:13;:11;:13::i;:::-;36451:11:::1;:19:::0;;;::::1;;-1:-1:-1::0;;;36451:19:0::1;-1:-1:-1::0;;36451:19:0;;::::1;::::0;;;::::1;::::0;;36386:92::o;39589:240::-;39634:17;;:::i;:::-;39711:4;;39664:14;;;;39699:17;;-1:-1:-1;;;;;39711:4:0;39699:11;:17::i;:::-;39663:53;;;;39727:21;;:::i;:::-;39759:15;;;:6;39785;;:15;39759:3;39818;-1:-1:-1;39589:240:0:o;19290:151::-;-1:-1:-1;;;;;19406:18:0;;;19379:7;19406:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19290:151::o;38734:161::-;38781:7;38800:14;38817:24;38835:4;38817:9;:24::i;:::-;38800:41;;38883:4;38869:10;:8;:10::i;35658:249::-;10073:13;:11;:13::i;:::-;35740:4;-1:-1:-1;;;;;32003:22:0;::::1;31995:50;;;;-1:-1:-1::0;;;31995:50:0::1;;;;;;;:::i;:::-;35765:8:::2;::::0;::::2;::::0;::::2;;;35764:9;35756:50;;;::::0;-1:-1:-1;;;35756:50:0;;13212:2:1;35756:50:0::2;::::0;::::2;13194:21:1::0;13251:2;13231:18;;;13224:30;13290;13270:18;;;13263:58;13338:18;;35756:50:0::2;13010:352:1::0;35756:50:0::2;-1:-1:-1::0;;;;;;35817:12:0;;::::2;;::::0;;;:6:::2;:12;::::0;;;;;;;:19;;;;35847:9:::2;:20:::0;;::::2;::::0;;::::2;::::0;;;;::::2;::::0;;-1:-1:-1;;;;;;35847:20:0::2;::::0;::::2;::::0;;35878:16;;;:10:::2;:16:::0;;;;;;:21;;-1:-1:-1;;35878:21:0::2;::::0;;::::2;::::0;;35658:249::o;34537:89::-;10073:13;:11;:13::i;:::-;34603:8:::1;:15:::0;34537:89::o;11093:201::-;10073:13;:11;:13::i;:::-;-1:-1:-1;;;;;11182:22:0;::::1;11174:73;;;::::0;-1:-1:-1;;;11174:73:0;;14667:2:1;11174:73:0::1;::::0;::::1;14649:21:1::0;14706:2;14686:18;;;14679:30;14745:34;14725:18;;;14718:62;-1:-1:-1;;;14796:18:1;;;14789:36;14842:19;;11174:73:0::1;14465:402:1::0;11174:73:0::1;11258:28;11277:8;11258:18;:28::i;10352:132::-:0;10260:6;;-1:-1:-1;;;;;10260:6:0;8818:10;10416:23;10408:68;;;;-1:-1:-1;;;10408:68:0;;15074:2:1;10408:68:0;;;15056:21:1;;;15093:18;;;15086:30;15152:34;15132:18;;;15125:62;15204:18;;10408:68:0;14872:356:1;26014:380:0;-1:-1:-1;;;;;26150:19:0;;26142:68;;;;-1:-1:-1;;;26142:68:0;;15435:2:1;26142:68:0;;;15417:21:1;15474:2;15454:18;;;15447:30;15513:34;15493:18;;;15486:62;-1:-1:-1;;;15564:18:1;;;15557:34;15608:19;;26142:68:0;15233:400:1;26142:68:0;-1:-1:-1;;;;;26229:21:0;;26221:68;;;;-1:-1:-1;;;26221:68:0;;15840:2:1;26221:68:0;;;15822:21:1;15879:2;15859:18;;;15852:30;15918:34;15898:18;;;15891:62;-1:-1:-1;;;15969:18:1;;;15962:32;16011:19;;26221:68:0;15638:398:1;26221:68:0;-1:-1:-1;;;;;26302:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;26354:32;;160:25:1;;;26354:32:0;;133:18:1;26354:32:0;;;;;;;26014:380;;;:::o;26685:453::-;26820:24;26847:25;26857:5;26864:7;26847:9;:25::i;:::-;26820:52;;-1:-1:-1;;26887:16:0;:37;26883:248;;26969:6;26949:16;:26;;26941:68;;;;-1:-1:-1;;;26941:68:0;;16243:2:1;26941:68:0;;;16225:21:1;16282:2;16262:18;;;16255:30;16321:31;16301:18;;;16294:59;16370:18;;26941:68:0;16041:353:1;26941:68:0;27053:51;27062:5;27069:7;27097:6;27078:16;:25;27053:8;:51::i;:::-;26809:329;26685:453;;;:::o;39835:2157::-;39935:6;-1:-1:-1;;;;;32003:22:0;;31995:50;;;;-1:-1:-1;;;31995:50:0;;;;;;;:::i;:::-;39956:9;-1:-1:-1;;;;;32003:22:0;::::1;31995:50;;;;-1:-1:-1::0;;;31995:50:0::1;;;;;;;:::i;:::-;39985:6:::2;39995:1;39985:11:::0;39977:40:::2;;;::::0;-1:-1:-1;;;39977:40:0;;16601:2:1;39977:40:0::2;::::0;::::2;16583:21:1::0;16640:2;16620:18;;;16613:30;-1:-1:-1;;;16659:18:1;;;16652:46;16715:18;;39977:40:0::2;16399:340:1::0;39977:40:0::2;-1:-1:-1::0;;;;;40037:15:0;::::2;;::::0;;;:4:::2;:15;::::0;;;;;::::2;;40036:16;40028:57;;;::::0;-1:-1:-1;;;40028:57:0;;16946:2:1;40028:57:0::2;::::0;::::2;16928:21:1::0;16985:2;16965:18;;;16958:30;17024;17004:18;;;16997:58;17072:18;;40028:57:0::2;16744:352:1::0;40028:57:0::2;40099:8;::::0;::::2;::::0;::::2;;;40096:712;;;40136:4;::::0;-1:-1:-1;;;;;40126:14:0;;::::2;40136:4:::0;::::2;40126:14;:36:::0;::::2;;;-1:-1:-1::0;;;;;;40145:17:0;::::2;;::::0;;;:6:::2;:17;::::0;;;;;::::2;;40144:18;40126:36;:48;;;;-1:-1:-1::0;40167:7:0::2;::::0;::::2;;40166:8;40126:48;40123:225;;;40212:7:::0;;40202:17;::::2;;40194:49;;;::::0;-1:-1:-1;;;40194:49:0;;17303:2:1;40194:49:0::2;::::0;::::2;17285:21:1::0;17342:2;17322:18;;;17315:30;-1:-1:-1;;;17361:18:1;;;17354:49;17420:18;;40194:49:0::2;17101:343:1::0;40194:49:0::2;40303:3;:8:::0;40293:6;40270:20:::2;40280:9:::0;40270::::2;:20::i;:::-;:29;;;;:::i;:::-;:41;;40262:70;;;::::0;-1:-1:-1;;;40262:70:0;;17651:2:1;40262:70:0::2;::::0;::::2;17633:21:1::0;17690:2;17670:18;;;17663:30;-1:-1:-1;;;17709:18:1;;;17702:46;17765:18;;40262:70:0::2;17449:340:1::0;40262:70:0::2;40375:4;::::0;-1:-1:-1;;;;;40365:14:0;;::::2;40375:4:::0;::::2;40365:14;::::0;::::2;::::0;:36:::2;;-1:-1:-1::0;;;;;;40384:17:0;::::2;;::::0;;;:6:::2;:17;::::0;;;;;::::2;;40383:18;40365:36;:55;;;;-1:-1:-1::0;;;;;;40406:14:0;::::2;;::::0;;;:6:::2;:14;::::0;;;;;::::2;;40405:15;40365:55;:67;;;;-1:-1:-1::0;40425:7:0::2;::::0;::::2;;40424:8;40365:67;40362:309;;;40470:8:::0;;40460:18;::::2;;40452:51;;;::::0;-1:-1:-1;;;40452:51:0;;17996:2:1;40452:51:0::2;::::0;::::2;17978:21:1::0;18035:2;18015:18;;;18008:30;-1:-1:-1;;;18054:18:1;;;18047:50;18114:18;;40452:51:0::2;17794:344:1::0;40452:51:0::2;40538:4;::::0;-1:-1:-1;;;;;40525:17:0;;::::2;40538:4:::0;::::2;40525:17;40522:134;;40607:3;:8:::0;40597:6;40574:20:::2;40584:9:::0;40574::::2;:20::i;:::-;:29;;;;:::i;:::-;:41;;40566:70;;;::::0;-1:-1:-1;;;40566:70:0;;17651:2:1;40566:70:0::2;::::0;::::2;17633:21:1::0;17690:2;17670:18;;;17663:30;-1:-1:-1;;;17709:18:1;;;17702:46;17765:18;;40566:70:0::2;17449:340:1::0;40566:70:0::2;40096:712;;;-1:-1:-1::0;;;;;40705:17:0;::::2;;::::0;;;:6:::2;:17;::::0;;;;;::::2;;40704:18;:37:::0;::::2;;;-1:-1:-1::0;;;;;;40727:14:0;::::2;;::::0;;;:6:::2;:14;::::0;;;;;::::2;;40726:15;40704:37;40701:96;;;-1:-1:-1::0;;;;;40761:15:0;::::2;;::::0;;;:4:::2;:15;::::0;;;;:20;;-1:-1:-1;;40761:20:0::2;40777:4;40761:20;::::0;;40701:96:::2;40845:7;::::0;40818:11:::2;::::0;40845:7:::2;;::::0;:25:::2;;-1:-1:-1::0;;;;;;40856:14:0;::::2;;::::0;;;:6:::2;:14;::::0;;;;;::::2;;40845:25;:46;;;-1:-1:-1::0;;;;;;40874:17:0;::::2;;::::0;;;:6:::2;:17;::::0;;;;;::::2;;40845:46;40841:791;;;-1:-1:-1::0;40899:1:0::2;40841:791;;;40932:4;::::0;-1:-1:-1;;;;;40932:4:0;;::::2;40919:17:::0;;::::2;::::0;40916:716:::2;;40977:10:::0;;:7:::2;40958:16:::0;:29:::2;::::0;40977:10;40958:29:::2;:::i;:::-;-1:-1:-1::0;;;;;41005:14:0;::::2;;::::0;;;:6:::2;:14;::::0;;;;;40952:35;;-1:-1:-1;41005:17:0;41002:139:::2;;41042:25;41053:6;41060;41042:10;:25::i;:::-;41113:12:::0;;:9:::2;41092:18:::0;:33:::2;::::0;41113:12;41092:33:::2;:::i;:::-;41086:39;;41002:139;40916:716;;;41170:4;::::0;-1:-1:-1;;;;;41170:4:0;;::::2;41160:14:::0;;::::2;::::0;41157:475:::2;;41195:7;::::0;-1:-1:-1;;;41195:7:0;::::2;;;41194:8;:33:::0;::::2;;;-1:-1:-1::0;;;;;;41206:21:0;::::2;;::::0;;;:10:::2;:21;::::0;;;;;::::2;;41194:33;41190:106;;;41248:32;::::0;-1:-1:-1;;;41248:32:0;;18345:2:1;41248:32:0::2;::::0;::::2;18327:21:1::0;18384:2;18364:18;;;18357:30;-1:-1:-1;;;18403:18:1;;;18396:52;18465:18;;41248:32:0::2;18143:346:1::0;41190:106:0::2;41334:9:::0;;:6:::2;41316:15:::0;:27:::2;::::0;41334:9;41316:27:::2;:::i;:::-;41310:33;;-1:-1:-1::0;;;;;;;;;;;41364:22:0::2;;;;8317:2:1::0;8299:21;;;8356:1;8336:18;;;8329:29;-1:-1:-1;;;8389:2:1;8374:18;;8367:37;8436:2;8421:18;;8115:330;41364:22:0::2;;;;;;;;41157:475;;;41421:7;::::0;-1:-1:-1;;;41421:7:0;::::2;;;41420:8;:33:::0;::::2;;;-1:-1:-1::0;;;;;;41432:21:0;::::2;;::::0;;;:10:::2;:21;::::0;;;;;::::2;;41420:33;41417:109;;;41473:37;::::0;-1:-1:-1;;;41473:37:0;;18696:2:1;41473:37:0::2;::::0;::::2;18678:21:1::0;18735:2;18715:18;;;18708:30;18774:29;18754:18;;;18747:57;18821:18;;41473:37:0::2;18494:351:1::0;41417:109:0::2;-1:-1:-1::0;;;;;41543:14:0;::::2;;::::0;;;:6:::2;:14;::::0;;;;;:17;41540:50:::2;;41563:25;41574:6;41581;41563:10;:25::i;:::-;-1:-1:-1::0;41610:10:0;;41157:475:::2;41642:12;41674:4;41658:12;41667:3:::0;41658:6;:12:::2;:::i;:::-;41657:21;;;;:::i;:::-;41692:11;::::0;41642:36;;-1:-1:-1;;;;41692:11:0;::::2;;;41689:145;;;41722:8;::::0;::::2;::::0;::::2;;;:26:::0;::::2;;;-1:-1:-1::0;41744:4:0::2;::::0;-1:-1:-1;;;;;41734:14:0;;::::2;41744:4:::0;::::2;41734:14;;41722:26;:37;;;;-1:-1:-1::0;41752:7:0;;::::2;41722:37;:56;;;;-1:-1:-1::0;;;;;;41764:14:0;::::2;;::::0;;;:6:::2;:14;::::0;;;;;::::2;;41763:15;41722:56;:78;;;;-1:-1:-1::0;;;;;;41783:17:0;::::2;;::::0;;;:6:::2;:17;::::0;;;;;::::2;;41782:18;41722:78;41719:103;;;41802:20;41812:9;41802;:20::i;:::-;41844:49;41860:6:::0;41868:9;41879:13:::2;41888:4:::0;41879:6;:13:::2;:::i;:::-;41844:15;:49::i;:::-;41907:6:::0;;41904:81:::2;;41929:44;41945:6;41961:4;41968;41929:15;:44::i;:::-;39966:2026;;32056:1:::1;39835:2157:::0;;;;:::o;44210:1226::-;31835:7;;;;31830:101;;31859:7;:14;;-1:-1:-1;;31859:14:0;31869:4;31859:14;;;:7;44289:24:::1;44307:4;44289:9;:24::i;:::-;44345:12;::::0;44371:16:::1;::::0;44272:41;;-1:-1:-1;44345:12:0;-1:-1:-1;;;44371:16:0;::::1;;;44368:196;;;44416:23;:21;:23::i;:::-;44403:36;;44457:16;;44475:1;44457:19;44454:99;;44509:28;44520:16;;44509:10;:28::i;:::-;44496:41;;44454:99;44588:10;44578:6;:20;44574:855;;44631:1;44618:10;:14;44615:72;;;44661:10;44652:19;;44615:72;44701:14;44718:19;44730:6;44718:11;:19::i;:::-;44701:36;;44764:11;;44757:6;:18;44754:664;;;44813:21;44795:15;44889:4;44874:11;:6:::0;44883:2:::1;44874:11;:::i;:::-;44873:20;;;;:::i;:::-;44853:40:::0;-1:-1:-1;44912:25:0::1;44920:16;44853:40:::0;44920:6;:16:::1;:::i;:::-;44912:7;:25::i;:::-;44958:15;44976:31;45000:7:::0;44976:21:::1;:31;:::i;:::-;44958:49;;45026:19;45048:25;45063:9;45048:14;:25::i;:::-;45026:47;;45103:11;45095:7;:19;45092:311;;;45138:38;45152:9;45163:11;45138:12;:38::i;:::-;45201:14;45218:31;45242:7:::0;45218:21:::1;:31;:::i;:::-;45201:48:::0;-1:-1:-1;45272:42:0::1;45302:4;45290:10;45201:48:::0;45297:3:::1;45290:10;:::i;:::-;45289:17;;;;:::i;:::-;45307:6;45272:16;:42::i;:::-;-1:-1:-1::0;;;;;;;;;;;45342:41:0::1;;;;19185:2:1::0;19167:21;;;19224:2;19204:18;;;19197:30;19263:28;19258:2;19243:18;;19236:56;19324:2;19309:18;;18983:350;45342:41:0::1;;;;;;;;45115:288;45092:311;44776:642;;;;44754:664;44600:829;44574:855;-1:-1:-1::0;;31904:7:0;:15;;-1:-1:-1;;31904:15:0;;;44210:1226;:::o;41998:198::-;2379:21;:19;:21::i;:::-;42082:12:::1;42108:9;-1:-1:-1::0;;;;;42100:23:0::1;42131:6;42100:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42081:61;;;42161:7;42153:35;;;::::0;-1:-1:-1;;;42153:35:0;;19750:2:1;42153:35:0::1;::::0;::::1;19732:21:1::0;19789:2;19769:18;;;19762:30;-1:-1:-1;;;19808:18:1;;;19801:45;19863:18;;42153:35:0::1;19548:339:1::0;42153:35:0::1;42070:126;2423:20:::0;1816:1;2943:7;:22;2760:213;2423:20;41998:198;;:::o;11454:191::-;11547:6;;;-1:-1:-1;;;;;11564:17:0;;;-1:-1:-1;;;;;;11564:17:0;;;;;;;11597:40;;11547:6;;;11564:17;11547:6;;11597:40;;11528:16;;11597:40;11517:128;11454:191;:::o;42202:342::-;-1:-1:-1;;;;;42270:12:0;;;;;;:4;:12;;;;;:20;;42284:6;;42270:12;:20;;42284:6;;42270:20;:::i;:::-;;;;-1:-1:-1;;;;;;;42351:14:0;;;;;;:6;:14;;;;;;;;;42337:4;:12;;;;;;;:28;42334:203;;-1:-1:-1;;;;;42381:15:0;;;;;;:7;:15;;;;;:20;;-1:-1:-1;;42381:20:0;42397:4;42381:20;;;;;;42416:3;:6;;42397:4;;42416:3;;:6;;42397:4;;42416:6;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;42445:9;:16;42440:3;;;;;:21;;-1:-1:-1;42437:89:0;;42487:23;;;;;;;;-1:-1:-1;42487:23:0;;;42495:3;42487:23;;;;;;42500:3;42487:23;;;;;;42505:3;42487:23;;;;;;;42481:3;:29;;;;;;;;;;;;;42202:342;;:::o;22893:840::-;-1:-1:-1;;;;;23024:18:0;;23016:68;;;;-1:-1:-1;;;23016:68:0;;20271:2:1;23016:68:0;;;20253:21:1;20310:2;20290:18;;;20283:30;20349:34;20329:18;;;20322:62;-1:-1:-1;;;20400:18:1;;;20393:35;20445:19;;23016:68:0;20069:401:1;23016:68:0;-1:-1:-1;;;;;23103:16:0;;23095:64;;;;-1:-1:-1;;;23095:64:0;;20677:2:1;23095:64:0;;;20659:21:1;20716:2;20696:18;;;20689:30;20755:34;20735:18;;;20728:62;-1:-1:-1;;;20806:18:1;;;20799:33;20849:19;;23095:64:0;20475:399:1;23095:64:0;-1:-1:-1;;;;;23245:15:0;;23223:19;23245:15;;;;;;;;;;;23279:21;;;;23271:72;;;;-1:-1:-1;;;23271:72:0;;21081:2:1;23271:72:0;;;21063:21:1;21120:2;21100:18;;;21093:30;21159:34;21139:18;;;21132:62;-1:-1:-1;;;21210:18:1;;;21203:36;21256:19;;23271:72:0;20879:402:1;23271:72:0;-1:-1:-1;;;;;23379:15:0;;;:9;:15;;;;;;;;;;;23397:20;;;23379:38;;23597:13;;;;;;;;;;:23;;;;;;23649:26;;160:25:1;;;23597:13:0;;23649:26;;133:18:1;23649:26:0;;;;;;;23688:37;27738:125;43190:423;43266:16;;;43280:1;43266:16;;;;;;;;43242:21;;43266:16;;;;;;;;;;-1:-1:-1;43266:16:0;43242:40;;43311:4;43293;43298:1;43293:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;43293:23:0;;;-1:-1:-1;;;;;43293:23:0;;;;;43337:6;;;;;;;;;-1:-1:-1;;;;;43337:6:0;-1:-1:-1;;;;;43337:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43327:4;43332:1;43327:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;43327:23:0;;;:7;;;;;;;;;:23;43393:6;;43361:48;;43378:4;;-1:-1:-1;;;43393:6:0;;;43402;43361:8;:48::i;:::-;43422:6;;:183;;-1:-1:-1;;;43422:183:0;;-1:-1:-1;;;43422:6:0;;;-1:-1:-1;;;;;43422:6:0;;:57;;:183;;43494:6;;43515:1;;43531:4;;43558;;43578:15;;43422:6;:183;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43231:382;43190:423;:::o;42550:295::-;42656:16;;;42670:1;42656:16;;;;;;;;42612:7;;;;42656:16;42670:1;42656:16;;;;;;;;;;-1:-1:-1;42656:16:0;42632:40;;42701:4;42683;42688:1;42683:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;42683:23:0;;;-1:-1:-1;;;;;42683:23:0;;;;;42727:6;;;;;;;;;-1:-1:-1;;;;;42727:6:0;-1:-1:-1;;;;;42727:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42717:4;42722:1;42717:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;42717:23:0;;;:7;;;;;;;;;:23;42775:6;;:34;;-1:-1:-1;;;42775:34:0;;42751:21;;-1:-1:-1;;;42775:6:0;;;;;;;:20;;:34;;42796:6;;42804:4;;42775:6;:34;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;42775:34:0;;;;;;;;;;;;:::i;:::-;42751:58;;42827:7;42835:1;42827:10;;;;;;;;:::i;:::-;;;;;;;42820:17;;;;42550:295;;;:::o;42851:333::-;42927:13;;;;;;;42924:253;;;42959:9;;42956:210;;43020:6;;42988:49;;43005:4;;-1:-1:-1;;;43020:6:0;;-1:-1:-1;;;;;43020:6:0;43029:7;42988:8;:49::i;:::-;43056:6;;-1:-1:-1;;;;;;;;43056:6:0;;;;:22;43087:5;43103:4;43110:7;43119:1;;43125:7;10260:6;;-1:-1:-1;;;;;10260:6:0;;10187:87;43125:7;43056:94;;;;;;-1:-1:-1;;;;;;43056:94:0;;;-1:-1:-1;;;;;23976:15:1;;;43056:94:0;;;23958:34:1;24008:18;;;24001:34;;;;24051:18;;;24044:34;;;;24094:18;;;24087:34;24158:15;;;24137:19;;;24130:44;43134:15:0;24190:19:1;;;24183:35;23892:19;;43056:94:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42851:333;;:::o;45536:1937::-;45617:12;;;;;;;45613:1806;;;45666:9;:16;45702:8;;;;;;;:23;;-1:-1:-1;45714:3:0;:6;:11;;45702:23;45698:1453;;;45769:3;:6;45746:10;;45779:4;;45760:15;;:6;:15;:::i;:::-;45759:24;;;;:::i;:::-;45746:37;;45802:19;45840:24;45881:3;45867:18;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45867:18:0;;45840:45;;45904:20;45952:8;45947:522;45970:3;45966:7;;:1;:7;;;45947:522;;;45999:17;46042:1;46019:6;:20;46026:9;46036:1;46026:12;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;46026:12:0;46019:20;;;;;;;;;;;;;:24;;;;:::i;:::-;45999:44;;46066:11;46080:23;46090:9;46100:1;46090:12;;;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;46090:12:0;46080:9;:23::i;:::-;46066:37;;46146:6;-1:-1:-1;;;;;46130:22:0;:9;46140:1;46130:12;;;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;46130:12:0;:22;;;;:42;;;46163:9;46156:3;:16;;46130:42;46126:251;;;46201:18;46216:3;46201:18;;:::i;:::-;;;46126:251;;;46300:9;46310:1;46300:12;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46300:12:0;46276:7;46284:12;46276:21;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46276:36:0;;;:21;;;;;;;;;;;:36;46339:14;;;;:::i;:::-;;;;46126:251;-1:-1:-1;;46427:3:0;;45947:522;;;;46492:8;46487:649;46510:3;46506:7;;:1;:7;;;46487:649;;;46539:16;46558:9;46568:1;46558:12;;;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;46558:12:0;;-1:-1:-1;46598:41:0;46607:7;46558:12;46626;46598:8;:41::i;:::-;46593:451;;46668:11;46713;46683:19;46693:8;46683:9;:19::i;:::-;:26;;46705:4;46683:26;:::i;:::-;46682:42;;;;:::i;:::-;46668:56;-1:-1:-1;46751:15:0;46782:4;46770:8;46776:2;46668:56;46770:8;:::i;:::-;46769:17;;;;:::i;:::-;-1:-1:-1;;;;;46817:19:0;;;;;;:9;:19;;;;;;46751:35;;-1:-1:-1;46817:19:0;;46813:208;;;-1:-1:-1;;;;;46876:17:0;;;;;;;:7;:17;;;;;;46869:34;;46876:17;46895:7;46869:6;:34::i;:::-;46813:208;;;46968:25;46975:8;46985:7;46968:6;:25::i;:::-;46641:403;;46593:451;-1:-1:-1;47094:3:0;;46487:649;;;;45727:1424;;;;45698:1453;47172:3;:13;47197;;47165:54;;-1:-1:-1;;;;;47172:13:0;;47214:4;;47188:22;;:6;:22;:::i;:::-;47187:31;;;;:::i;:::-;47165:6;:54::i;:::-;47241:12;;47265;;47234:52;;-1:-1:-1;;;;;47241:12:0;;47281:4;;47256:21;;:6;:21;:::i;47234:52::-;47308:11;;47331;;47301:50;;-1:-1:-1;;;;;47308:11:0;;47346:4;;47322:20;;:6;:20;:::i;47301:50::-;45631:1732;45613:1806;;;47384:23;47391:7;10260:6;;-1:-1:-1;;;;;10260:6:0;;10187:87;47391:7;47400:6;47384;:23::i;:::-;-1:-1:-1;;;;;;;;;;;47434:31:0;;;;24882:2:1;24864:21;;;24921:2;24901:18;;;24894:30;-1:-1:-1;;;24955:2:1;24940:18;;24933:46;25011:2;24996:18;;24680:340;2459:293:0;1860:1;2593:7;;:19;2585:63;;;;-1:-1:-1;;;2585:63:0;;25227:2:1;2585:63:0;;;25209:21:1;25266:2;25246:18;;;25239:30;25305:33;25285:18;;;25278:61;25356:18;;2585:63:0;25025:355:1;2585:63:0;1860:1;2726:7;:18;2459:293::o;47479:277::-;47576:4;;47593:133;47617:6;47613:1;:10;47593:133;;;47661:6;-1:-1:-1;;;;;47649:18:0;:5;47655:1;47649:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;47649:18:0;;47645:70;;47695:4;47688:11;;;;;47645:70;47625:3;;;;:::i;:::-;;;;47593:133;;;-1:-1:-1;47743:5:0;;47479:277;-1:-1:-1;;;;47479:277:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;:::o;196:548:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;885:315;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1397:160::-;1462:20;;1518:13;;1511:21;1501:32;;1491:60;;1547:1;1544;1537:12;1491:60;1397:160;;;:::o;1562:180::-;1618:6;1671:2;1659:9;1650:7;1646:23;1642:32;1639:52;;;1687:1;1684;1677:12;1639:52;1710:26;1726:9;1710:26;:::i;1747:121::-;1832:10;1825:5;1821:22;1814:5;1811:33;1801:61;;1858:1;1855;1848:12;1873:519;1964:6;1972;1980;1988;1996;2049:3;2037:9;2028:7;2024:23;2020:33;2017:53;;;2066:1;2063;2056:12;2017:53;2102:9;2089:23;2079:33;;2131:35;2162:2;2151:9;2147:18;2131:35;:::i;:::-;2121:45;;2216:2;2205:9;2201:18;2188:32;2229:30;2253:5;2229:30;:::i;:::-;1873:519;;;;-1:-1:-1;2278:5:1;;2330:2;2315:18;;2302:32;;-1:-1:-1;2381:3:1;2366:19;2353:33;;1873:519;-1:-1:-1;;1873:519:1:o;2865:127::-;2926:10;2921:3;2917:20;2914:1;2907:31;2957:4;2954:1;2947:15;2981:4;2978:1;2971:15;2997:275;3068:2;3062:9;3133:2;3114:13;;-1:-1:-1;;3110:27:1;3098:40;;3168:18;3153:34;;3189:22;;;3150:62;3147:88;;;3215:18;;:::i;:::-;3251:2;3244:22;2997:275;;-1:-1:-1;2997:275:1:o;3277:500::-;3357:6;3410:2;3398:9;3389:7;3385:23;3381:32;3378:52;;;3426:1;3423;3416:12;3378:52;3459:2;3453:9;3501:2;3493:6;3489:15;3570:6;3558:10;3555:22;3534:18;3522:10;3519:34;3516:62;3513:88;;;3581:18;;:::i;:::-;3617:2;3610:22;3656:23;;3641:39;;3741:2;3726:18;;;3713:32;3696:15;;;3689:57;;;;-1:-1:-1;3648:6:1;3277:500;-1:-1:-1;3277:500:1:o;3782:456::-;3859:6;3867;3875;3928:2;3916:9;3907:7;3903:23;3899:32;3896:52;;;3944:1;3941;3934:12;3896:52;3983:9;3970:23;4002:31;4027:5;4002:31;:::i;:::-;4052:5;-1:-1:-1;4109:2:1;4094:18;;4081:32;4122:33;4081:32;4122:33;:::i;:::-;3782:456;;4174:7;;-1:-1:-1;;;4228:2:1;4213:18;;;;4200:32;;3782:456::o;4885:247::-;4944:6;4997:2;4985:9;4976:7;4972:23;4968:32;4965:52;;;5013:1;5010;5003:12;4965:52;5052:9;5039:23;5071:31;5096:5;5071:31;:::i;5534:180::-;5593:6;5646:2;5634:9;5625:7;5621:23;5617:32;5614:52;;;5662:1;5659;5652:12;5614:52;-1:-1:-1;5685:23:1;;5534:180;-1:-1:-1;5534:180:1:o;6043:388::-;6111:6;6119;6172:2;6160:9;6151:7;6147:23;6143:32;6140:52;;;6188:1;6185;6178:12;6140:52;6227:9;6214:23;6246:31;6271:5;6246:31;:::i;:::-;6296:5;-1:-1:-1;6353:2:1;6338:18;;6325:32;6366:33;6325:32;6366:33;:::i;:::-;6418:7;6408:17;;;6043:388;;;;;:::o;6633:494::-;6813:2;6798:18;;6802:9;6893:6;6771:4;6927:194;6941:4;6938:1;6935:11;6927:194;;;7000:13;;6988:26;;7037:4;7061:12;;;;7096:15;;;;6961:1;6954:9;6927:194;;;6931:3;;;6633:494;;;;:::o;8450:380::-;8529:1;8525:12;;;;8572;;;8593:61;;8647:4;8639:6;8635:17;8625:27;;8593:61;8700:2;8692:6;8689:14;8669:18;8666:38;8663:161;;8746:10;8741:3;8737:20;8734:1;8727:31;8781:4;8778:1;8771:15;8809:4;8806:1;8799:15;8663:161;;8450:380;;;:::o;8835:127::-;8896:10;8891:3;8887:20;8884:1;8877:31;8927:4;8924:1;8917:15;8951:4;8948:1;8941:15;8967:168;9040:9;;;9071;;9088:15;;;9082:22;;9068:37;9058:71;;9109:18;;:::i;9490:127::-;9551:10;9546:3;9542:20;9539:1;9532:31;9582:4;9579:1;9572:15;9606:4;9603:1;9596:15;9622:120;9662:1;9688;9678:35;;9693:18;;:::i;:::-;-1:-1:-1;9727:9:1;;9622:120::o;9747:125::-;9812:9;;;9833:10;;;9830:36;;;9846:18;;:::i;9877:341::-;10079:2;10061:21;;;10118:2;10098:18;;;10091:30;-1:-1:-1;;;10152:2:1;10137:18;;10130:47;10209:2;10194:18;;9877:341::o;10568:339::-;10770:2;10752:21;;;10809:2;10789:18;;;10782:30;-1:-1:-1;;;10843:2:1;10828:18;;10821:45;10898:2;10883:18;;10568:339::o;10912:188::-;10991:13;;-1:-1:-1;;;;;11033:42:1;;11023:53;;11013:81;;11090:1;11087;11080:12;11105:419;11192:6;11200;11208;11261:2;11249:9;11240:7;11236:23;11232:32;11229:52;;;11277:1;11274;11267:12;11229:52;11300:40;11330:9;11300:40;:::i;:::-;11290:50;;11359:49;11404:2;11393:9;11389:18;11359:49;:::i;:::-;11349:59;;11451:2;11440:9;11436:18;11430:25;11464:30;11488:5;11464:30;:::i;:::-;11513:5;11503:15;;;11105:419;;;;;:::o;11529:251::-;11599:6;11652:2;11640:9;11631:7;11627:23;11623:32;11620:52;;;11668:1;11665;11658:12;11620:52;11700:9;11694:16;11719:31;11744:5;11719:31;:::i;12346:112::-;12378:1;12404;12394:35;;12409:18;;:::i;:::-;-1:-1:-1;12443:9:1;;12346:112::o;12463:127::-;12524:10;12519:3;12515:20;12512:1;12505:31;12555:4;12552:1;12545:15;12579:4;12576:1;12569:15;18850:128;18917:9;;;18938:11;;;18935:37;;;18952:18;;:::i;19892:172::-;19959:10;19989;;;20001;;;19985:27;;20024:11;;;20021:37;;;20038:18;;:::i;:::-;20021:37;19892:172;;;;:::o;21286:461::-;21339:3;21377:5;21371:12;21404:6;21399:3;21392:19;21430:4;21459:2;21454:3;21450:12;21443:19;;21496:2;21489:5;21485:14;21517:1;21527:195;21541:6;21538:1;21535:13;21527:195;;;21606:13;;-1:-1:-1;;;;;21602:39:1;21590:52;;21662:12;;;;21697:15;;;;21638:1;21556:9;21527:195;;;-1:-1:-1;21738:3:1;;21286:461;-1:-1:-1;;;;;21286:461:1:o;21752:582::-;22051:6;22040:9;22033:25;22094:6;22089:2;22078:9;22074:18;22067:34;22137:3;22132:2;22121:9;22117:18;22110:31;22014:4;22158:57;22210:3;22199:9;22195:19;22187:6;22158:57;:::i;:::-;-1:-1:-1;;;;;22251:32:1;;;;22246:2;22231:18;;22224:60;-1:-1:-1;22315:3:1;22300:19;22293:35;22150:65;21752:582;-1:-1:-1;;;21752:582:1:o;22339:332::-;22546:6;22535:9;22528:25;22589:2;22584;22573:9;22569:18;22562:30;22509:4;22609:56;22661:2;22650:9;22646:18;22638:6;22609:56;:::i;22676:936::-;22771:6;22802:2;22845;22833:9;22824:7;22820:23;22816:32;22813:52;;;22861:1;22858;22851:12;22813:52;22894:9;22888:16;22923:18;22964:2;22956:6;22953:14;22950:34;;;22980:1;22977;22970:12;22950:34;23018:6;23007:9;23003:22;22993:32;;23063:7;23056:4;23052:2;23048:13;23044:27;23034:55;;23085:1;23082;23075:12;23034:55;23114:2;23108:9;23136:2;23132;23129:10;23126:36;;;23142:18;;:::i;:::-;23188:2;23185:1;23181:10;23171:20;;23211:28;23235:2;23231;23227:11;23211:28;:::i;:::-;23273:15;;;23343:11;;;23339:20;;;23304:12;;;;23371:19;;;23368:39;;;23403:1;23400;23393:12;23368:39;23427:11;;;;23447:135;23463:6;23458:3;23455:15;23447:135;;;23529:10;;23517:23;;23480:12;;;;23560;;;;23447:135;;;23601:5;22676:936;-1:-1:-1;;;;;;;;22676:936:1:o;24229:306::-;24317:6;24325;24333;24386:2;24374:9;24365:7;24361:23;24357:32;24354:52;;;24402:1;24399;24392:12;24354:52;24431:9;24425:16;24415:26;;24481:2;24470:9;24466:18;24460:25;24450:35;;24525:2;24514:9;24510:18;24504:25;24494:35;;24229:306;;;;;:::o;24540:135::-;24579:3;24600:17;;;24597:43;;24620:18;;:::i;:::-;-1:-1:-1;24667:1:1;24656:13;;24540:135::o

Swarm Source

ipfs://5ad1bed1c8d3c1044f2a9466f04f136c3916a0bf28d789a090f4588fc1eb56e4
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.