ETH Price: $3,290.41 (+1.50%)
Gas: 2 Gwei

Token

Virtual AI (VIRAI)
 

Overview

Max Total Supply

1,000,000,000 VIRAI

Holders

59

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
2,347,863.356016366 VIRAI

Value
$0.00
0xFD7bD29E1050932829c1FC080eA42D7394C42847
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:
VirtualAI

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-09
*/

/*

Website     : https://virtualai.tech
Twitter     : https://twitter.com/VirtualAI_ETH
Telegram    : https://t.me/VirtualAI_ETH
Discord     : https://discord.com/invite/8GFTWHESYq

*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

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

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

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(uint256 amountA, uint256 reserveA, uint256 reserveB) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

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

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

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

/**
 * @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 decimals places of the token.
     */
    function decimals() external view returns (uint8);

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

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

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

    /**
     * @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) external virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @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) external 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) external virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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) external 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 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) external virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

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

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

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

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

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

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

/**
 * @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 VirtualAI is ERC20, Ownable {
    string private _name = 'Virtual AI';
    string private _symbol = 'VIRAI';
    uint8 private _decimals = 9;
    uint256 private _supply = 1000000000;
    uint256 public taxForLiquidity = 1;
    uint256 public taxForMarketing = 1;

    address public marketingWallet = 0xE6e7805e7923D1978daCeaee5Ec25b6D386E524D;
    address public DEAD = 0x000000000000000000000000000000000000dEaD;
    uint256 public _marketingReserves = 0;
    mapping(address => bool) public _isExcludedFromFee;
    uint256 public numTokensSellToAddToLiquidity = 200000 * 10 ** _decimals;
    uint256 public numTokensSellToAddToETH = 100000 * 10 ** _decimals;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    bool inSwapAndLiquify;

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

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    /**
     * @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() ERC20(_name, _symbol) {
        _mint(msg.sender, (_supply * 10 ** _decimals));

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(
            address(this),
            _uniswapV2Router.WETH()
        );

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[marketingWallet] = 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 override {
        require(from != address(0), 'ERC20: transfer from the zero address');
        require(to != address(0), 'ERC20: transfer to the zero address');
        require(balanceOf(from) >= amount, 'ERC20: transfer amount exceeds balance');

        if ((from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify) {
            if (from != uniswapV2Pair) {
                uint256 contractLiquidityBalance = balanceOf(address(this)) - _marketingReserves;
                if (contractLiquidityBalance >= numTokensSellToAddToLiquidity) {
                    _swapAndLiquify(numTokensSellToAddToLiquidity);
                }
                if ((_marketingReserves) >= numTokensSellToAddToETH) {
                    _swapTokensForETH(numTokensSellToAddToETH);
                    _marketingReserves -= numTokensSellToAddToETH;
                    bool sent = payable(marketingWallet).send(address(this).balance);
                    require(sent, 'Failed to send ETH');
                }
            }

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } else {
                uint256 marketingShare = ((amount * taxForMarketing) / 100);
                uint256 liquidityShare = ((amount * taxForLiquidity) / 100);
                transferAmount = amount - (marketingShare + liquidityShare);
                _marketingReserves += marketingShare;

                super._transfer(from, address(this), (marketingShare + liquidityShare));
            }
            super._transfer(from, to, transferAmount);
        } else {
            super._transfer(from, to, amount);
        }
    }

    function excludeFromFee(address _address, bool _status) external onlyOwner {
        _isExcludedFromFee[_address] = _status;
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 half = (contractTokenBalance / 2);
        uint256 otherHalf = (contractTokenBalance - half);

        uint256 initialBalance = address(this).balance;

        _swapTokensForETH(half);

        uint256 newBalance = (address(this).balance - initialBalance);

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function _swapTokensForETH(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

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

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

        uniswapV2Router.addLiquidityETH{ value: ethAmount }(
            address(this),
            tokenAmount,
            0,
            0,
            marketingWallet,
            block.timestamp
        );
    }

    function setMarketingWallet(address newWallet) public onlyOwner returns (bool) {
        require(newWallet != DEAD, 'LP Pair cannot be the Dead wallet, or 0!');
        require(newWallet != address(0), 'LP Pair cannot be the Dead wallet, or 0!');
        marketingWallet = newWallet;
        return true;
    }

    function setTaxForLiquidityAndMarketing(
        uint256 _taxForLiquidity,
        uint256 _taxForMarketing
    ) public onlyOwner returns (bool) {
        require((_taxForLiquidity + _taxForMarketing) <= 10, 'ERC20: total tax must not be greater than 10%');
        taxForLiquidity = _taxForLiquidity;
        taxForMarketing = _taxForMarketing;

        return true;
    }

    function setNumTokensSellToAddToLiquidity(
        uint256 _numTokensSellToAddToLiquidity,
        uint256 _numTokensSellToAddToETH
    ) public onlyOwner returns (bool) {
        require(_numTokensSellToAddToLiquidity < _supply / 98, 'Cannot liquidate more than 2% of the supply at once!');
        require(_numTokensSellToAddToETH < _supply / 98, 'Cannot liquidate more than 2% of the supply at once!');
        numTokensSellToAddToLiquidity = _numTokensSellToAddToLiquidity * 10 ** _decimals;
        numTokensSellToAddToETH = _numTokensSellToAddToETH * 10 ** _decimals;

        return true;
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokensSellToAddToLiquidity","type":"uint256"},{"internalType":"uint256","name":"_numTokensSellToAddToETH","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"}],"name":"setTaxForLiquidityAndMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526040518060400160405280600a81526020017f5669727475616c20414900000000000000000000000000000000000000000000815250600690816200004a919062000b29565b506040518060400160405280600581526020017f56495241490000000000000000000000000000000000000000000000000000008152506007908162000091919062000b29565b506009600860006101000a81548160ff021916908360ff160217905550633b9aca006009556001600a556001600b5573e6e7805e7923d1978daceaee5ec25b6d386e524d600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600e55600860009054906101000a900460ff16600a6200017b919062000da0565b62030d406200018b919062000df1565b601055600860009054906101000a900460ff16600a620001ac919062000da0565b620186a0620001bc919062000df1565b601155348015620001cc57600080fd5b5060068054620001dc9062000918565b80601f01602080910402602001604051908101604052809291908181526020018280546200020a9062000918565b80156200025b5780601f106200022f576101008083540402835291602001916200025b565b820191906000526020600020905b8154815290600101906020018083116200023d57829003601f168201915b5050505050600780546200026f9062000918565b80601f01602080910402602001604051908101604052809291908181526020018280546200029d9062000918565b8015620002ee5780601f10620002c257610100808354040283529160200191620002ee565b820191906000526020600020905b815481529060010190602001808311620002d057829003601f168201915b5050505050816003908162000304919062000b29565b50806004908162000316919062000b29565b505050620003396200032d6200069c60201b60201c565b620006a460201b60201c565b6200037733600860009054906101000a900460ff16600a6200035c919062000da0565b6009546200036b919062000df1565b6200076a60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000402919062000ea6565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200046a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000490919062000ea6565b6040518363ffffffff1660e01b8152600401620004af92919062000ee9565b6020604051808303816000875af1158015620004cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004f5919062000ea6565b601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506001600f600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062001002565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007dc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007d39062000f77565b60405180910390fd5b8060026000828254620007f0919062000f99565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008a3919062000fe5565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200093157607f821691505b602082108103620009475762000946620008e9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009b17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000972565b620009bd868362000972565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a0a62000a04620009fe84620009d5565b620009df565b620009d5565b9050919050565b6000819050919050565b62000a2683620009e9565b62000a3e62000a358262000a11565b8484546200097f565b825550505050565b600090565b62000a5562000a46565b62000a6281848462000a1b565b505050565b5b8181101562000a8a5762000a7e60008262000a4b565b60018101905062000a68565b5050565b601f82111562000ad95762000aa3816200094d565b62000aae8462000962565b8101602085101562000abe578190505b62000ad662000acd8562000962565b83018262000a67565b50505b505050565b600082821c905092915050565b600062000afe6000198460080262000ade565b1980831691505092915050565b600062000b19838362000aeb565b9150826002028217905092915050565b62000b3482620008af565b67ffffffffffffffff81111562000b505762000b4f620008ba565b5b62000b5c825462000918565b62000b6982828562000a8e565b600060209050601f83116001811462000ba1576000841562000b8c578287015190505b62000b98858262000b0b565b86555062000c08565b601f19841662000bb1866200094d565b60005b8281101562000bdb5784890151825560018201915060208501945060208101905062000bb4565b8683101562000bfb578489015162000bf7601f89168262000aeb565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000c9e5780860481111562000c765762000c7562000c10565b5b600185161562000c865780820291505b808102905062000c968562000c3f565b945062000c56565b94509492505050565b60008262000cb9576001905062000d8c565b8162000cc9576000905062000d8c565b816001811462000ce2576002811462000ced5762000d23565b600191505062000d8c565b60ff84111562000d025762000d0162000c10565b5b8360020a91508482111562000d1c5762000d1b62000c10565b5b5062000d8c565b5060208310610133831016604e8410600b841016171562000d5d5782820a90508381111562000d575762000d5662000c10565b5b62000d8c565b62000d6c848484600162000c4c565b9250905081840481111562000d865762000d8562000c10565b5b81810290505b9392505050565b600060ff82169050919050565b600062000dad82620009d5565b915062000dba8362000d93565b925062000de97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000ca7565b905092915050565b600062000dfe82620009d5565b915062000e0b83620009d5565b925082820262000e1b81620009d5565b9150828204841483151762000e355762000e3462000c10565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e6e8262000e41565b9050919050565b62000e808162000e61565b811462000e8c57600080fd5b50565b60008151905062000ea08162000e75565b92915050565b60006020828403121562000ebf5762000ebe62000e3c565b5b600062000ecf8482850162000e8f565b91505092915050565b62000ee38162000e61565b82525050565b600060408201905062000f00600083018562000ed8565b62000f0f602083018462000ed8565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f5f601f8362000f16565b915062000f6c8262000f27565b602082019050919050565b6000602082019050818103600083015262000f928162000f50565b9050919050565b600062000fa682620009d5565b915062000fb383620009d5565b925082820190508082111562000fce5762000fcd62000c10565b5b92915050565b62000fdf81620009d5565b82525050565b600060208201905062000ffc600083018462000fd4565b92915050565b608051612f8a6200104160003960008181610806015281816118d5015281816119b6015281816119dd01528181611d0f0152611d360152612f8a6000f3fe6080604052600436106101bb5760003560e01c806375f0a874116100ec578063ad16a0cf1161008a578063dd62ed3e11610064578063dd62ed3e1461066f578063df8408fe146106ac578063f2fde38b146106d5578063f345bd85146106fe576101c2565b8063ad16a0cf146105ee578063c0fdea5714610619578063d12a768814610644576101c2565b80638fcc250d116100c65780638fcc250d1461050c57806395d89b4114610549578063a457c2d714610574578063a9059cbb146105b1576101c2565b806375f0a87414610479578063768dc710146104a45780638da5cb5b146104e1576101c2565b806339509351116101595780635d098b38116101335780635d098b38146103ab5780635f7ce6a7146103e857806370a0823114610425578063715018a614610462576101c2565b8063395093511461031857806349bd5a5e14610355578063527ffabd14610380576101c2565b80631694505e116101955780631694505e1461025a57806318160ddd1461028557806323b872dd146102b0578063313ce567146102ed576101c2565b806303fd2a45146101c757806306fdde03146101f2578063095ea7b31461021d576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc610729565b6040516101e99190611e61565b60405180910390f35b3480156101fe57600080fd5b5061020761074f565b6040516102149190611f0c565b60405180910390f35b34801561022957600080fd5b50610244600480360381019061023f9190611f95565b6107e1565b6040516102519190611ff0565b60405180910390f35b34801561026657600080fd5b5061026f610804565b60405161027c919061206a565b60405180910390f35b34801561029157600080fd5b5061029a610828565b6040516102a79190612094565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d291906120af565b610832565b6040516102e49190611ff0565b60405180910390f35b3480156102f957600080fd5b50610302610861565b60405161030f919061211e565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190611f95565b61086a565b60405161034c9190611ff0565b60405180910390f35b34801561036157600080fd5b5061036a6108a1565b6040516103779190611e61565b60405180910390f35b34801561038c57600080fd5b506103956108c7565b6040516103a29190612094565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd9190612139565b6108cd565b6040516103df9190611ff0565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190612166565b610a20565b60405161041c9190611ff0565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190612139565b610a91565b6040516104599190612094565b60405180910390f35b34801561046e57600080fd5b50610477610ad9565b005b34801561048557600080fd5b5061048e610aed565b60405161049b9190611e61565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190612139565b610b13565b6040516104d89190611ff0565b60405180910390f35b3480156104ed57600080fd5b506104f6610b33565b6040516105039190611e61565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e9190612166565b610b5d565b6040516105409190611ff0565b60405180910390f35b34801561055557600080fd5b5061055e610c6b565b60405161056b9190611f0c565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190611f95565b610cfd565b6040516105a89190611ff0565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190611f95565b610d74565b6040516105e59190611ff0565b60405180910390f35b3480156105fa57600080fd5b50610603610d97565b6040516106109190612094565b60405180910390f35b34801561062557600080fd5b5061062e610d9d565b60405161063b9190612094565b60405180910390f35b34801561065057600080fd5b50610659610da3565b6040516106669190612094565b60405180910390f35b34801561067b57600080fd5b50610696600480360381019061069191906121a6565b610da9565b6040516106a39190612094565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce9190612212565b610e30565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190612139565b610e93565b005b34801561070a57600080fd5b50610713610f16565b6040516107209190612094565b60405180910390f35b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606003805461075e90612281565b80601f016020809104026020016040519081016040528092919081815260200182805461078a90612281565b80156107d75780601f106107ac576101008083540402835291602001916107d7565b820191906000526020600020905b8154815290600101906020018083116107ba57829003601f168201915b5050505050905090565b6000806107ec610f1c565b90506107f9818585610f24565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60008061083d610f1c565b905061084a8582856110ed565b610855858585611179565b60019150509392505050565b60006009905090565b600080610875610f1c565b90506108968185856108878589610da9565b61089191906122e1565b610f24565b600191505092915050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b60006108d7611616565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095e90612387565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cd90612387565b60405180910390fd5b81600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000610a2a611616565b600a8284610a3891906122e1565b1115610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7090612419565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ae1611616565b610aeb6000611694565b565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f6020528060005260406000206000915054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610b67611616565b6062600954610b769190612468565b8310610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae9061250b565b60405180910390fd5b6062600954610bc69190612468565b8210610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe9061250b565b60405180910390fd5b600860009054906101000a900460ff16600a610c23919061265e565b83610c2e91906126a9565b601081905550600860009054906101000a900460ff16600a610c50919061265e565b82610c5b91906126a9565b6011819055506001905092915050565b606060048054610c7a90612281565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca690612281565b8015610cf35780601f10610cc857610100808354040283529160200191610cf3565b820191906000526020600020905b815481529060010190602001808311610cd657829003601f168201915b5050505050905090565b600080610d08610f1c565b90506000610d168286610da9565b905083811015610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d529061275d565b60405180910390fd5b610d688286868403610f24565b60019250505092915050565b600080610d7f610f1c565b9050610d8c818585611179565b600191505092915050565b60115481565b600e5481565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e38611616565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610e9b611616565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f01906127ef565b60405180910390fd5b610f1381611694565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a90612881565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff990612913565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110e09190612094565b60405180910390a3505050565b60006110f98484610da9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111735781811015611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c9061297f565b60405180910390fd5b6111728484848403610f24565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df90612a11565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e90612aa3565b60405180910390fd5b8061126184610a91565b10156112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990612b35565b60405180910390fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061134b5750601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156113645750601260149054906101000a900460ff16155b1561160557601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146114bd576000600e546113cc30610a91565b6113d69190612b55565b905060105481106113ed576113ec60105461175a565b5b601154600e54106114bb5761140360115461181b565b601154600e60008282546114179190612b55565b925050819055506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b090612bd5565b60405180910390fd5b505b505b6000600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115605750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561156d578190506115f4565b60006064600b548461157f91906126a9565b6115899190612468565b905060006064600a548561159d91906126a9565b6115a79190612468565b905080826115b591906122e1565b846115c09190612b55565b925081600e60008282546115d491906122e1565b925050819055506115f1863083856115ec91906122e1565b611a8e565b50505b6115ff848483611a8e565b50611611565b611610838383611a8e565b5b505050565b61161e610f1c565b73ffffffffffffffffffffffffffffffffffffffff1661163c610b33565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990612c41565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601260146101000a81548160ff02191690831515021790555060006002826117849190612468565b9050600081836117949190612b55565b905060004790506117a48361181b565b600081476117b29190612b55565b90506117be8382611cee565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618482856040516117f193929190612c61565b60405180910390a1505050506000601260146101000a81548160ff02191690831515021790555050565b6001601260146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561185357611852612c98565b5b6040519080825280602002602001820160405280156118815781602001602082028036833780820191505090505b509050308160008151811061189957611898612cc7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561193e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119629190612d0b565b8160018151811061197657611975612cc7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506119db307f000000000000000000000000000000000000000000000000000000000000000084610f24565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611a3d959493929190612e31565b600060405180830381600087803b158015611a5757600080fd5b505af1158015611a6b573d6000803e3d6000fd5b50505050506000601260146101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af490612a11565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6390612aa3565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990612b35565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ce09190612094565b60405180910390a350505050565b6001601260146101000a81548160ff021916908315150217905550611d34307f000000000000000000000000000000000000000000000000000000000000000084610f24565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401611dbb96959493929190612e8b565b60606040518083038185885af1158015611dd9573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611dfe9190612f01565b5050506000601260146101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e4b82611e20565b9050919050565b611e5b81611e40565b82525050565b6000602082019050611e766000830184611e52565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611eb6578082015181840152602081019050611e9b565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ede82611e7c565b611ee88185611e87565b9350611ef8818560208601611e98565b611f0181611ec2565b840191505092915050565b60006020820190508181036000830152611f268184611ed3565b905092915050565b600080fd5b611f3c81611e40565b8114611f4757600080fd5b50565b600081359050611f5981611f33565b92915050565b6000819050919050565b611f7281611f5f565b8114611f7d57600080fd5b50565b600081359050611f8f81611f69565b92915050565b60008060408385031215611fac57611fab611f2e565b5b6000611fba85828601611f4a565b9250506020611fcb85828601611f80565b9150509250929050565b60008115159050919050565b611fea81611fd5565b82525050565b60006020820190506120056000830184611fe1565b92915050565b6000819050919050565b600061203061202b61202684611e20565b61200b565b611e20565b9050919050565b600061204282612015565b9050919050565b600061205482612037565b9050919050565b61206481612049565b82525050565b600060208201905061207f600083018461205b565b92915050565b61208e81611f5f565b82525050565b60006020820190506120a96000830184612085565b92915050565b6000806000606084860312156120c8576120c7611f2e565b5b60006120d686828701611f4a565b93505060206120e786828701611f4a565b92505060406120f886828701611f80565b9150509250925092565b600060ff82169050919050565b61211881612102565b82525050565b6000602082019050612133600083018461210f565b92915050565b60006020828403121561214f5761214e611f2e565b5b600061215d84828501611f4a565b91505092915050565b6000806040838503121561217d5761217c611f2e565b5b600061218b85828601611f80565b925050602061219c85828601611f80565b9150509250929050565b600080604083850312156121bd576121bc611f2e565b5b60006121cb85828601611f4a565b92505060206121dc85828601611f4a565b9150509250929050565b6121ef81611fd5565b81146121fa57600080fd5b50565b60008135905061220c816121e6565b92915050565b6000806040838503121561222957612228611f2e565b5b600061223785828601611f4a565b9250506020612248858286016121fd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061229957607f821691505b6020821081036122ac576122ab612252565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122ec82611f5f565b91506122f783611f5f565b925082820190508082111561230f5761230e6122b2565b5b92915050565b7f4c5020506169722063616e6e6f742062652074686520446561642077616c6c6560008201527f742c206f72203021000000000000000000000000000000000000000000000000602082015250565b6000612371602883611e87565b915061237c82612315565b604082019050919050565b600060208201905081810360008301526123a081612364565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031302500000000000000000000000000000000000000602082015250565b6000612403602d83611e87565b915061240e826123a7565b604082019050919050565b60006020820190508181036000830152612432816123f6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061247382611f5f565b915061247e83611f5f565b92508261248e5761248d612439565b5b828204905092915050565b7f43616e6e6f74206c6971756964617465206d6f7265207468616e203225206f6660008201527f2074686520737570706c79206174206f6e636521000000000000000000000000602082015250565b60006124f5603483611e87565b915061250082612499565b604082019050919050565b60006020820190508181036000830152612524816124e8565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156125825780860481111561255e5761255d6122b2565b5b600185161561256d5780820291505b808102905061257b8561252b565b9450612542565b94509492505050565b60008261259b5760019050612657565b816125a95760009050612657565b81600181146125bf57600281146125c9576125f8565b6001915050612657565b60ff8411156125db576125da6122b2565b5b8360020a9150848211156125f2576125f16122b2565b5b50612657565b5060208310610133831016604e8410600b841016171561262d5782820a905083811115612628576126276122b2565b5b612657565b61263a8484846001612538565b92509050818404811115612651576126506122b2565b5b81810290505b9392505050565b600061266982611f5f565b915061267483612102565b92506126a17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461258b565b905092915050565b60006126b482611f5f565b91506126bf83611f5f565b92508282026126cd81611f5f565b915082820484148315176126e4576126e36122b2565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612747602583611e87565b9150612752826126eb565b604082019050919050565b600060208201905081810360008301526127768161273a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006127d9602683611e87565b91506127e48261277d565b604082019050919050565b60006020820190508181036000830152612808816127cc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061286b602483611e87565b91506128768261280f565b604082019050919050565b6000602082019050818103600083015261289a8161285e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006128fd602283611e87565b9150612908826128a1565b604082019050919050565b6000602082019050818103600083015261292c816128f0565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612969601d83611e87565b915061297482612933565b602082019050919050565b600060208201905081810360008301526129988161295c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006129fb602583611e87565b9150612a068261299f565b604082019050919050565b60006020820190508181036000830152612a2a816129ee565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612a8d602383611e87565b9150612a9882612a31565b604082019050919050565b60006020820190508181036000830152612abc81612a80565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612b1f602683611e87565b9150612b2a82612ac3565b604082019050919050565b60006020820190508181036000830152612b4e81612b12565b9050919050565b6000612b6082611f5f565b9150612b6b83611f5f565b9250828203905081811115612b8357612b826122b2565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b6000612bbf601283611e87565b9150612bca82612b89565b602082019050919050565b60006020820190508181036000830152612bee81612bb2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c2b602083611e87565b9150612c3682612bf5565b602082019050919050565b60006020820190508181036000830152612c5a81612c1e565b9050919050565b6000606082019050612c766000830186612085565b612c836020830185612085565b612c906040830184612085565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612d0581611f33565b92915050565b600060208284031215612d2157612d20611f2e565b5b6000612d2f84828501612cf6565b91505092915050565b6000819050919050565b6000612d5d612d58612d5384612d38565b61200b565b611f5f565b9050919050565b612d6d81612d42565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612da881611e40565b82525050565b6000612dba8383612d9f565b60208301905092915050565b6000602082019050919050565b6000612dde82612d73565b612de88185612d7e565b9350612df383612d8f565b8060005b83811015612e24578151612e0b8882612dae565b9750612e1683612dc6565b925050600181019050612df7565b5085935050505092915050565b600060a082019050612e466000830188612085565b612e536020830187612d64565b8181036040830152612e658186612dd3565b9050612e746060830185611e52565b612e816080830184612085565b9695505050505050565b600060c082019050612ea06000830189611e52565b612ead6020830188612085565b612eba6040830187612d64565b612ec76060830186612d64565b612ed46080830185611e52565b612ee160a0830184612085565b979650505050505050565b600081519050612efb81611f69565b92915050565b600080600060608486031215612f1a57612f19611f2e565b5b6000612f2886828701612eec565b9350506020612f3986828701612eec565b9250506040612f4a86828701612eec565b915050925092509256fea264697066735822122053f293c178f4c06eb4f1856903b11a3544c2d8c0bd3fe4284ad4169b482bf8b864736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c806375f0a874116100ec578063ad16a0cf1161008a578063dd62ed3e11610064578063dd62ed3e1461066f578063df8408fe146106ac578063f2fde38b146106d5578063f345bd85146106fe576101c2565b8063ad16a0cf146105ee578063c0fdea5714610619578063d12a768814610644576101c2565b80638fcc250d116100c65780638fcc250d1461050c57806395d89b4114610549578063a457c2d714610574578063a9059cbb146105b1576101c2565b806375f0a87414610479578063768dc710146104a45780638da5cb5b146104e1576101c2565b806339509351116101595780635d098b38116101335780635d098b38146103ab5780635f7ce6a7146103e857806370a0823114610425578063715018a614610462576101c2565b8063395093511461031857806349bd5a5e14610355578063527ffabd14610380576101c2565b80631694505e116101955780631694505e1461025a57806318160ddd1461028557806323b872dd146102b0578063313ce567146102ed576101c2565b806303fd2a45146101c757806306fdde03146101f2578063095ea7b31461021d576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc610729565b6040516101e99190611e61565b60405180910390f35b3480156101fe57600080fd5b5061020761074f565b6040516102149190611f0c565b60405180910390f35b34801561022957600080fd5b50610244600480360381019061023f9190611f95565b6107e1565b6040516102519190611ff0565b60405180910390f35b34801561026657600080fd5b5061026f610804565b60405161027c919061206a565b60405180910390f35b34801561029157600080fd5b5061029a610828565b6040516102a79190612094565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d291906120af565b610832565b6040516102e49190611ff0565b60405180910390f35b3480156102f957600080fd5b50610302610861565b60405161030f919061211e565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190611f95565b61086a565b60405161034c9190611ff0565b60405180910390f35b34801561036157600080fd5b5061036a6108a1565b6040516103779190611e61565b60405180910390f35b34801561038c57600080fd5b506103956108c7565b6040516103a29190612094565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd9190612139565b6108cd565b6040516103df9190611ff0565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190612166565b610a20565b60405161041c9190611ff0565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190612139565b610a91565b6040516104599190612094565b60405180910390f35b34801561046e57600080fd5b50610477610ad9565b005b34801561048557600080fd5b5061048e610aed565b60405161049b9190611e61565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190612139565b610b13565b6040516104d89190611ff0565b60405180910390f35b3480156104ed57600080fd5b506104f6610b33565b6040516105039190611e61565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e9190612166565b610b5d565b6040516105409190611ff0565b60405180910390f35b34801561055557600080fd5b5061055e610c6b565b60405161056b9190611f0c565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190611f95565b610cfd565b6040516105a89190611ff0565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190611f95565b610d74565b6040516105e59190611ff0565b60405180910390f35b3480156105fa57600080fd5b50610603610d97565b6040516106109190612094565b60405180910390f35b34801561062557600080fd5b5061062e610d9d565b60405161063b9190612094565b60405180910390f35b34801561065057600080fd5b50610659610da3565b6040516106669190612094565b60405180910390f35b34801561067b57600080fd5b50610696600480360381019061069191906121a6565b610da9565b6040516106a39190612094565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce9190612212565b610e30565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190612139565b610e93565b005b34801561070a57600080fd5b50610713610f16565b6040516107209190612094565b60405180910390f35b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606003805461075e90612281565b80601f016020809104026020016040519081016040528092919081815260200182805461078a90612281565b80156107d75780601f106107ac576101008083540402835291602001916107d7565b820191906000526020600020905b8154815290600101906020018083116107ba57829003601f168201915b5050505050905090565b6000806107ec610f1c565b90506107f9818585610f24565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60008061083d610f1c565b905061084a8582856110ed565b610855858585611179565b60019150509392505050565b60006009905090565b600080610875610f1c565b90506108968185856108878589610da9565b61089191906122e1565b610f24565b600191505092915050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b60006108d7611616565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095e90612387565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cd90612387565b60405180910390fd5b81600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000610a2a611616565b600a8284610a3891906122e1565b1115610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7090612419565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ae1611616565b610aeb6000611694565b565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f6020528060005260406000206000915054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610b67611616565b6062600954610b769190612468565b8310610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae9061250b565b60405180910390fd5b6062600954610bc69190612468565b8210610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe9061250b565b60405180910390fd5b600860009054906101000a900460ff16600a610c23919061265e565b83610c2e91906126a9565b601081905550600860009054906101000a900460ff16600a610c50919061265e565b82610c5b91906126a9565b6011819055506001905092915050565b606060048054610c7a90612281565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca690612281565b8015610cf35780601f10610cc857610100808354040283529160200191610cf3565b820191906000526020600020905b815481529060010190602001808311610cd657829003601f168201915b5050505050905090565b600080610d08610f1c565b90506000610d168286610da9565b905083811015610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d529061275d565b60405180910390fd5b610d688286868403610f24565b60019250505092915050565b600080610d7f610f1c565b9050610d8c818585611179565b600191505092915050565b60115481565b600e5481565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e38611616565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610e9b611616565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f01906127ef565b60405180910390fd5b610f1381611694565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a90612881565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff990612913565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110e09190612094565b60405180910390a3505050565b60006110f98484610da9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111735781811015611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c9061297f565b60405180910390fd5b6111728484848403610f24565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df90612a11565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e90612aa3565b60405180910390fd5b8061126184610a91565b10156112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990612b35565b60405180910390fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061134b5750601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156113645750601260149054906101000a900460ff16155b1561160557601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146114bd576000600e546113cc30610a91565b6113d69190612b55565b905060105481106113ed576113ec60105461175a565b5b601154600e54106114bb5761140360115461181b565b601154600e60008282546114179190612b55565b925050819055506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b090612bd5565b60405180910390fd5b505b505b6000600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115605750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561156d578190506115f4565b60006064600b548461157f91906126a9565b6115899190612468565b905060006064600a548561159d91906126a9565b6115a79190612468565b905080826115b591906122e1565b846115c09190612b55565b925081600e60008282546115d491906122e1565b925050819055506115f1863083856115ec91906122e1565b611a8e565b50505b6115ff848483611a8e565b50611611565b611610838383611a8e565b5b505050565b61161e610f1c565b73ffffffffffffffffffffffffffffffffffffffff1661163c610b33565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990612c41565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601260146101000a81548160ff02191690831515021790555060006002826117849190612468565b9050600081836117949190612b55565b905060004790506117a48361181b565b600081476117b29190612b55565b90506117be8382611cee565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618482856040516117f193929190612c61565b60405180910390a1505050506000601260146101000a81548160ff02191690831515021790555050565b6001601260146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561185357611852612c98565b5b6040519080825280602002602001820160405280156118815781602001602082028036833780820191505090505b509050308160008151811061189957611898612cc7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561193e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119629190612d0b565b8160018151811061197657611975612cc7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506119db307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f24565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611a3d959493929190612e31565b600060405180830381600087803b158015611a5757600080fd5b505af1158015611a6b573d6000803e3d6000fd5b50505050506000601260146101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af490612a11565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6390612aa3565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990612b35565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ce09190612094565b60405180910390a350505050565b6001601260146101000a81548160ff021916908315150217905550611d34307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f24565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401611dbb96959493929190612e8b565b60606040518083038185885af1158015611dd9573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611dfe9190612f01565b5050506000601260146101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e4b82611e20565b9050919050565b611e5b81611e40565b82525050565b6000602082019050611e766000830184611e52565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611eb6578082015181840152602081019050611e9b565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ede82611e7c565b611ee88185611e87565b9350611ef8818560208601611e98565b611f0181611ec2565b840191505092915050565b60006020820190508181036000830152611f268184611ed3565b905092915050565b600080fd5b611f3c81611e40565b8114611f4757600080fd5b50565b600081359050611f5981611f33565b92915050565b6000819050919050565b611f7281611f5f565b8114611f7d57600080fd5b50565b600081359050611f8f81611f69565b92915050565b60008060408385031215611fac57611fab611f2e565b5b6000611fba85828601611f4a565b9250506020611fcb85828601611f80565b9150509250929050565b60008115159050919050565b611fea81611fd5565b82525050565b60006020820190506120056000830184611fe1565b92915050565b6000819050919050565b600061203061202b61202684611e20565b61200b565b611e20565b9050919050565b600061204282612015565b9050919050565b600061205482612037565b9050919050565b61206481612049565b82525050565b600060208201905061207f600083018461205b565b92915050565b61208e81611f5f565b82525050565b60006020820190506120a96000830184612085565b92915050565b6000806000606084860312156120c8576120c7611f2e565b5b60006120d686828701611f4a565b93505060206120e786828701611f4a565b92505060406120f886828701611f80565b9150509250925092565b600060ff82169050919050565b61211881612102565b82525050565b6000602082019050612133600083018461210f565b92915050565b60006020828403121561214f5761214e611f2e565b5b600061215d84828501611f4a565b91505092915050565b6000806040838503121561217d5761217c611f2e565b5b600061218b85828601611f80565b925050602061219c85828601611f80565b9150509250929050565b600080604083850312156121bd576121bc611f2e565b5b60006121cb85828601611f4a565b92505060206121dc85828601611f4a565b9150509250929050565b6121ef81611fd5565b81146121fa57600080fd5b50565b60008135905061220c816121e6565b92915050565b6000806040838503121561222957612228611f2e565b5b600061223785828601611f4a565b9250506020612248858286016121fd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061229957607f821691505b6020821081036122ac576122ab612252565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122ec82611f5f565b91506122f783611f5f565b925082820190508082111561230f5761230e6122b2565b5b92915050565b7f4c5020506169722063616e6e6f742062652074686520446561642077616c6c6560008201527f742c206f72203021000000000000000000000000000000000000000000000000602082015250565b6000612371602883611e87565b915061237c82612315565b604082019050919050565b600060208201905081810360008301526123a081612364565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031302500000000000000000000000000000000000000602082015250565b6000612403602d83611e87565b915061240e826123a7565b604082019050919050565b60006020820190508181036000830152612432816123f6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061247382611f5f565b915061247e83611f5f565b92508261248e5761248d612439565b5b828204905092915050565b7f43616e6e6f74206c6971756964617465206d6f7265207468616e203225206f6660008201527f2074686520737570706c79206174206f6e636521000000000000000000000000602082015250565b60006124f5603483611e87565b915061250082612499565b604082019050919050565b60006020820190508181036000830152612524816124e8565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156125825780860481111561255e5761255d6122b2565b5b600185161561256d5780820291505b808102905061257b8561252b565b9450612542565b94509492505050565b60008261259b5760019050612657565b816125a95760009050612657565b81600181146125bf57600281146125c9576125f8565b6001915050612657565b60ff8411156125db576125da6122b2565b5b8360020a9150848211156125f2576125f16122b2565b5b50612657565b5060208310610133831016604e8410600b841016171561262d5782820a905083811115612628576126276122b2565b5b612657565b61263a8484846001612538565b92509050818404811115612651576126506122b2565b5b81810290505b9392505050565b600061266982611f5f565b915061267483612102565b92506126a17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461258b565b905092915050565b60006126b482611f5f565b91506126bf83611f5f565b92508282026126cd81611f5f565b915082820484148315176126e4576126e36122b2565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612747602583611e87565b9150612752826126eb565b604082019050919050565b600060208201905081810360008301526127768161273a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006127d9602683611e87565b91506127e48261277d565b604082019050919050565b60006020820190508181036000830152612808816127cc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061286b602483611e87565b91506128768261280f565b604082019050919050565b6000602082019050818103600083015261289a8161285e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006128fd602283611e87565b9150612908826128a1565b604082019050919050565b6000602082019050818103600083015261292c816128f0565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612969601d83611e87565b915061297482612933565b602082019050919050565b600060208201905081810360008301526129988161295c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006129fb602583611e87565b9150612a068261299f565b604082019050919050565b60006020820190508181036000830152612a2a816129ee565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612a8d602383611e87565b9150612a9882612a31565b604082019050919050565b60006020820190508181036000830152612abc81612a80565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612b1f602683611e87565b9150612b2a82612ac3565b604082019050919050565b60006020820190508181036000830152612b4e81612b12565b9050919050565b6000612b6082611f5f565b9150612b6b83611f5f565b9250828203905081811115612b8357612b826122b2565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b6000612bbf601283611e87565b9150612bca82612b89565b602082019050919050565b60006020820190508181036000830152612bee81612bb2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c2b602083611e87565b9150612c3682612bf5565b602082019050919050565b60006020820190508181036000830152612c5a81612c1e565b9050919050565b6000606082019050612c766000830186612085565b612c836020830185612085565b612c906040830184612085565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612d0581611f33565b92915050565b600060208284031215612d2157612d20611f2e565b5b6000612d2f84828501612cf6565b91505092915050565b6000819050919050565b6000612d5d612d58612d5384612d38565b61200b565b611f5f565b9050919050565b612d6d81612d42565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612da881611e40565b82525050565b6000612dba8383612d9f565b60208301905092915050565b6000602082019050919050565b6000612dde82612d73565b612de88185612d7e565b9350612df383612d8f565b8060005b83811015612e24578151612e0b8882612dae565b9750612e1683612dc6565b925050600181019050612df7565b5085935050505092915050565b600060a082019050612e466000830188612085565b612e536020830187612d64565b8181036040830152612e658186612dd3565b9050612e746060830185611e52565b612e816080830184612085565b9695505050505050565b600060c082019050612ea06000830189611e52565b612ead6020830188612085565b612eba6040830187612d64565b612ec76060830186612d64565b612ed46080830185611e52565b612ee160a0830184612085565b979650505050505050565b600081519050612efb81611f69565b92915050565b600080600060608486031215612f1a57612f19611f2e565b5b6000612f2886828701612eec565b9350506020612f3986828701612eec565b9250506040612f4a86828701612eec565b915050925092509256fea264697066735822122053f293c178f4c06eb4f1856903b11a3544c2d8c0bd3fe4284ad4169b482bf8b864736f6c63430008110033

Deployed Bytecode Sourcemap

27083:7110:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27451:64;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17305:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19438:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27775:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18393:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20221:263;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18236:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21834:240;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27833:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27326:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32828:315;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33151:383;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17470:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14601:103;;;;;;;;;;;;;:::i;:::-;;27369:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27566:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13953:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33542:611;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17129:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20987:438;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18923:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27701:65;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27522:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27623:71;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18566:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31317:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14859:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27285:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27451:64;;;;;;;;;;;;;:::o;17305:102::-;17361:13;17394:5;17387:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17305:102;:::o;19438:203::-;19523:4;19540:13;19556:12;:10;:12::i;:::-;19540:28;;19579:32;19588:5;19595:7;19604:6;19579:8;:32::i;:::-;19629:4;19622:11;;;19438:203;;;;:::o;27775:51::-;;;:::o;18393:110::-;18456:7;18483:12;;18476:19;;18393:110;:::o;20221:263::-;20320:4;20337:15;20355:12;:10;:12::i;:::-;20337:30;;20378:38;20394:4;20400:7;20409:6;20378:15;:38::i;:::-;20427:27;20437:4;20443:2;20447:6;20427:9;:27::i;:::-;20472:4;20465:11;;;20221:263;;;;;:::o;18236:92::-;18294:5;18319:1;18312:8;;18236:92;:::o;21834:240::-;21924:4;21941:13;21957:12;:10;:12::i;:::-;21941:28;;21980:64;21989:5;21996:7;22033:10;22005:25;22015:5;22022:7;22005:9;:25::i;:::-;:38;;;;:::i;:::-;21980:8;:64::i;:::-;22062:4;22055:11;;;21834:240;;;;:::o;27833:28::-;;;;;;;;;;;;;:::o;27326:34::-;;;;:::o;32828:315::-;32901:4;13839:13;:11;:13::i;:::-;32939:4:::1;;;;;;;;;;;32926:17;;:9;:17;;::::0;32918:70:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;33028:1;33007:23;;:9;:23;;::::0;32999:76:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;33104:9;33086:15;;:27;;;;;;;;;;;;;;;;;;33131:4;33124:11;;32828:315:::0;;;:::o;33151:383::-;33294:4;13839:13;:11;:13::i;:::-;33360:2:::1;33339:16;33320;:35;;;;:::i;:::-;33319:43;;33311:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;33441:16;33423:15;:34;;;;33486:16;33468:15;:34;;;;33522:4;33515:11;;33151:383:::0;;;;:::o;17470:127::-;17544:7;17571:9;:18;17581:7;17571:18;;;;;;;;;;;;;;;;17564:25;;17470:127;;;:::o;14601:103::-;13839:13;:11;:13::i;:::-;14666:30:::1;14693:1;14666:18;:30::i;:::-;14601:103::o:0;27369:75::-;;;;;;;;;;;;;:::o;27566:50::-;;;;;;;;;;;;;;;;;;;;;;:::o;13953:87::-;13999:7;14026:6;;;;;;;;;;;14019:13;;13953:87;:::o;33542:611::-;33709:4;13839:13;:11;:13::i;:::-;33777:2:::1;33767:7;;:12;;;;:::i;:::-;33734:30;:45;33726:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;33892:2;33882:7;;:12;;;;:::i;:::-;33855:24;:39;33847:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;34033:9;;;;;;;;;;;34027:2;:15;;;;:::i;:::-;33994:30;:48;;;;:::i;:::-;33962:29;:80;;;;34112:9;;;;;;;;;;;34106:2;:15;;;;:::i;:::-;34079:24;:42;;;;:::i;:::-;34053:23;:68;;;;34141:4;34134:11;;33542:611:::0;;;;:::o;17129:106::-;17187:13;17220:7;17213:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17129:106;:::o;20987:438::-;21082:4;21099:13;21115:12;:10;:12::i;:::-;21099:28;;21138:24;21165:25;21175:5;21182:7;21165:9;:25::i;:::-;21138:52;;21229:15;21209:16;:35;;21201:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;21322:60;21331:5;21338:7;21366:15;21347:16;:34;21322:8;:60::i;:::-;21413:4;21406:11;;;;20987:438;;;;:::o;18923:195::-;19004:4;19021:13;19037:12;:10;:12::i;:::-;19021:28;;19060;19070:5;19077:2;19081:6;19060:9;:28::i;:::-;19106:4;19099:11;;;18923:195;;;;:::o;27701:65::-;;;;:::o;27522:37::-;;;;:::o;27623:71::-;;;;:::o;18566:151::-;18655:7;18682:11;:18;18694:5;18682:18;;;;;;;;;;;;;;;:27;18701:7;18682:27;;;;;;;;;;;;;;;;18675:34;;18566:151;;;;:::o;31317:132::-;13839:13;:11;:13::i;:::-;31434:7:::1;31403:18;:28;31422:8;31403:28;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;31317:132:::0;;:::o;14859:201::-;13839:13;:11;:13::i;:::-;14968:1:::1;14948:22;;:8;:22;;::::0;14940:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15024:28;15043:8;15024:18;:28::i;:::-;14859:201:::0;:::o;27285:34::-;;;;:::o;12771:98::-;12824:7;12851:10;12844:17;;12771:98;:::o;24109:346::-;24228:1;24211:19;;:5;:19;;;24203:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24309:1;24290:21;;:7;:21;;;24282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24393:6;24363:11;:18;24375:5;24363:18;;;;;;;;;;;;;;;:27;24382:7;24363:27;;;;;;;;;;;;;;;:36;;;;24431:7;24415:32;;24424:5;24415:32;;;24440:6;24415:32;;;;;;:::i;:::-;;;;;;;;24109:346;;;:::o;24746:419::-;24847:24;24874:25;24884:5;24891:7;24874:9;:25::i;:::-;24847:52;;24934:17;24914:16;:37;24910:248;;24996:6;24976:16;:26;;24968:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25080:51;25089:5;25096:7;25124:6;25105:16;:25;25080:8;:51::i;:::-;24910:248;24836:329;24746:419;;;:::o;29497:1812::-;29611:1;29595:18;;:4;:18;;;29587:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29688:1;29674:16;;:2;:16;;;29666:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29768:6;29749:15;29759:4;29749:9;:15::i;:::-;:25;;29741:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;29843:13;;;;;;;;;;;29835:21;;:4;:21;;;:44;;;;29866:13;;;;;;;;;;;29860:19;;:2;:19;;;29835:44;29834:67;;;;;29885:16;;;;;;;;;;;29884:17;29834:67;29830:1472;;;29930:13;;;;;;;;;;;29922:21;;:4;:21;;;29918:681;;29964:32;30026:18;;29999:24;30017:4;29999:9;:24::i;:::-;:45;;;;:::i;:::-;29964:80;;30095:29;;30067:24;:57;30063:152;;30149:46;30165:29;;30149:15;:46::i;:::-;30063:152;30261:23;;30238:18;;30237:47;30233:351;;30309:42;30327:23;;30309:17;:42::i;:::-;30396:23;;30374:18;;:45;;;;;;;:::i;:::-;;;;;;;;30442:9;30462:15;;;;;;;;;;;30454:29;;:52;30484:21;30454:52;;;;;;;;;;;;;;;;;;;;;;;30442:64;;30537:4;30529:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;30286:298;30233:351;29945:654;29918:681;30615:22;30656:18;:24;30675:4;30656:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;30684:18;:22;30703:2;30684:22;;;;;;;;;;;;;;;;;;;;;;;;;30656:50;30652:517;;;30744:6;30727:23;;30652:517;;;30791:22;30846:3;30827:15;;30818:6;:24;;;;:::i;:::-;30817:32;;;;:::i;:::-;30791:59;;30869:22;30924:3;30905:15;;30896:6;:24;;;;:::i;:::-;30895:32;;;;:::i;:::-;30869:59;;30991:14;30974;:31;;;;:::i;:::-;30964:6;:42;;;;:::i;:::-;30947:59;;31047:14;31025:18;;:36;;;;;;;:::i;:::-;;;;;;;;31082:71;31098:4;31112;31137:14;31120;:31;;;;:::i;:::-;31082:15;:71::i;:::-;30772:397;;30652:517;31183:41;31199:4;31205:2;31209:14;31183:15;:41::i;:::-;29903:1333;29830:1472;;;31257:33;31273:4;31279:2;31283:6;31257:15;:33::i;:::-;29830:1472;29497:1812;;;:::o;14118:132::-;14193:12;:10;:12::i;:::-;14182:23;;:7;:5;:7::i;:::-;:23;;;14174:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14118:132::o;15220:191::-;15294:16;15313:6;;;;;;;;;;;15294:25;;15339:8;15330:6;;:17;;;;;;;;;;;;;;;;;;15394:8;15363:40;;15384:8;15363:40;;;;;;;;;;;;15283:128;15220:191;:::o;31457:474::-;28054:4;28035:16;;:23;;;;;;;;;;;;;;;;;;31543:12:::1;31582:1;31559:20;:24;;;;:::i;:::-;31543:41;;31595:17;31639:4;31616:20;:27;;;;:::i;:::-;31595:49;;31657:22;31682:21;31657:46;;31716:23;31734:4;31716:17;:23::i;:::-;31752:18;31798:14;31774:21;:38;;;;:::i;:::-;31752:61;;31826:36;31840:9;31851:10;31826:13;:36::i;:::-;31880:43;31895:4;31901:10;31913:9;31880:43;;;;;;;;:::i;:::-;;;;;;;;31532:399;;;;28100:5:::0;28081:16;;:24;;;;;;;;;;;;;;;;;;31457:474;:::o;31939:488::-;28054:4;28035:16;;:23;;;;;;;;;;;;;;;;;;32018:21:::1;32056:1;32042:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32018:40;;32087:4;32069;32074:1;32069:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;32113:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32103:4;32108:1;32103:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;32148:62;32165:4;32180:15;32198:11;32148:8;:62::i;:::-;32223:15;:66;;;32304:11;32330:1;32346:4;32373;32393:15;32223:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;32007:420;28100:5:::0;28081:16;;:24;;;;;;;;;;;;;;;;;;31939:488;:::o;25173:705::-;25286:1;25270:18;;:4;:18;;;25262:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25363:1;25349:16;;:2;:16;;;25341:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;25418:19;25440:9;:15;25450:4;25440:15;;;;;;;;;;;;;;;;25418:37;;25489:6;25474:11;:21;;25466:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;25606:6;25592:11;:20;25574:9;:15;25584:4;25574:15;;;;;;;;;;;;;;;:38;;;;25809:6;25792:9;:13;25802:2;25792:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;25859:2;25844:26;;25853:4;25844:26;;;25863:6;25844:26;;;;;;:::i;:::-;;;;;;;;25251:627;25173:705;;;:::o;32435:385::-;28054:4;28035:16;;:23;;;;;;;;;;;;;;;;;;32529:62:::1;32546:4;32561:15;32579:11;32529:8;:62::i;:::-;32604:15;:31;;;32644:9;32678:4;32698:11;32724:1;32740::::0;32756:15:::1;;;;;;;;;;;32786;32604:208;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;28100:5:::0;28081:16;;:24;;;;;;;;;;;;;;;;;;32435:385;;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;593:99::-;645:6;679:5;673:12;663:22;;593:99;;;:::o;698:169::-;782:11;816:6;811:3;804:19;856:4;851:3;847:14;832:29;;698:169;;;;:::o;873:246::-;954:1;964:113;978:6;975:1;972:13;964:113;;;1063:1;1058:3;1054:11;1048:18;1044:1;1039:3;1035:11;1028:39;1000:2;997:1;993:10;988:15;;964:113;;;1111:1;1102:6;1097:3;1093:16;1086:27;935:184;873:246;;;:::o;1125:102::-;1166:6;1217:2;1213:7;1208:2;1201:5;1197:14;1193:28;1183:38;;1125:102;;;:::o;1233:377::-;1321:3;1349:39;1382:5;1349:39;:::i;:::-;1404:71;1468:6;1463:3;1404:71;:::i;:::-;1397:78;;1484:65;1542:6;1537:3;1530:4;1523:5;1519:16;1484:65;:::i;:::-;1574:29;1596:6;1574:29;:::i;:::-;1569:3;1565:39;1558:46;;1325:285;1233:377;;;;:::o;1616:313::-;1729:4;1767:2;1756:9;1752:18;1744:26;;1816:9;1810:4;1806:20;1802:1;1791:9;1787:17;1780:47;1844:78;1917:4;1908:6;1844:78;:::i;:::-;1836:86;;1616:313;;;;:::o;2016:117::-;2125:1;2122;2115:12;2262:122;2335:24;2353:5;2335:24;:::i;:::-;2328:5;2325:35;2315:63;;2374:1;2371;2364:12;2315:63;2262:122;:::o;2390:139::-;2436:5;2474:6;2461:20;2452:29;;2490:33;2517:5;2490:33;:::i;:::-;2390:139;;;;:::o;2535:77::-;2572:7;2601:5;2590:16;;2535:77;;;:::o;2618:122::-;2691:24;2709:5;2691:24;:::i;:::-;2684:5;2681:35;2671:63;;2730:1;2727;2720:12;2671:63;2618:122;:::o;2746:139::-;2792:5;2830:6;2817:20;2808:29;;2846:33;2873:5;2846:33;:::i;:::-;2746:139;;;;:::o;2891:474::-;2959:6;2967;3016:2;3004:9;2995:7;2991:23;2987:32;2984:119;;;3022:79;;:::i;:::-;2984:119;3142:1;3167:53;3212:7;3203:6;3192:9;3188:22;3167:53;:::i;:::-;3157:63;;3113:117;3269:2;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3240:118;2891:474;;;;;:::o;3371:90::-;3405:7;3448:5;3441:13;3434:21;3423:32;;3371:90;;;:::o;3467:109::-;3548:21;3563:5;3548:21;:::i;:::-;3543:3;3536:34;3467:109;;:::o;3582:210::-;3669:4;3707:2;3696:9;3692:18;3684:26;;3720:65;3782:1;3771:9;3767:17;3758:6;3720:65;:::i;:::-;3582:210;;;;:::o;3798:60::-;3826:3;3847:5;3840:12;;3798:60;;;:::o;3864:142::-;3914:9;3947:53;3965:34;3974:24;3992:5;3974:24;:::i;:::-;3965:34;:::i;:::-;3947:53;:::i;:::-;3934:66;;3864:142;;;:::o;4012:126::-;4062:9;4095:37;4126:5;4095:37;:::i;:::-;4082:50;;4012:126;;;:::o;4144:152::-;4220:9;4253:37;4284:5;4253:37;:::i;:::-;4240:50;;4144:152;;;:::o;4302:183::-;4415:63;4472:5;4415:63;:::i;:::-;4410:3;4403:76;4302:183;;:::o;4491:274::-;4610:4;4648:2;4637:9;4633:18;4625:26;;4661:97;4755:1;4744:9;4740:17;4731:6;4661:97;:::i;:::-;4491:274;;;;:::o;4771:118::-;4858:24;4876:5;4858:24;:::i;:::-;4853:3;4846:37;4771:118;;:::o;4895:222::-;4988:4;5026:2;5015:9;5011:18;5003:26;;5039:71;5107:1;5096:9;5092:17;5083:6;5039:71;:::i;:::-;4895:222;;;;:::o;5123:619::-;5200:6;5208;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5646:2;5672:53;5717:7;5708:6;5697:9;5693:22;5672:53;:::i;:::-;5662:63;;5617:118;5123:619;;;;;:::o;5748:86::-;5783:7;5823:4;5816:5;5812:16;5801:27;;5748:86;;;:::o;5840:112::-;5923:22;5939:5;5923:22;:::i;:::-;5918:3;5911:35;5840:112;;:::o;5958:214::-;6047:4;6085:2;6074:9;6070:18;6062:26;;6098:67;6162:1;6151:9;6147:17;6138:6;6098:67;:::i;:::-;5958:214;;;;:::o;6178:329::-;6237:6;6286:2;6274:9;6265:7;6261:23;6257:32;6254:119;;;6292:79;;:::i;:::-;6254:119;6412:1;6437:53;6482:7;6473:6;6462:9;6458:22;6437:53;:::i;:::-;6427:63;;6383:117;6178:329;;;;:::o;6513:474::-;6581:6;6589;6638:2;6626:9;6617:7;6613:23;6609:32;6606:119;;;6644:79;;:::i;:::-;6606:119;6764:1;6789:53;6834:7;6825:6;6814:9;6810:22;6789:53;:::i;:::-;6779:63;;6735:117;6891:2;6917:53;6962:7;6953:6;6942:9;6938:22;6917:53;:::i;:::-;6907:63;;6862:118;6513:474;;;;;:::o;6993:::-;7061:6;7069;7118:2;7106:9;7097:7;7093:23;7089:32;7086:119;;;7124:79;;:::i;:::-;7086:119;7244:1;7269:53;7314:7;7305:6;7294:9;7290:22;7269:53;:::i;:::-;7259:63;;7215:117;7371:2;7397:53;7442:7;7433:6;7422:9;7418:22;7397:53;:::i;:::-;7387:63;;7342:118;6993:474;;;;;:::o;7473:116::-;7543:21;7558:5;7543:21;:::i;:::-;7536:5;7533:32;7523:60;;7579:1;7576;7569:12;7523:60;7473:116;:::o;7595:133::-;7638:5;7676:6;7663:20;7654:29;;7692:30;7716:5;7692:30;:::i;:::-;7595:133;;;;:::o;7734:468::-;7799:6;7807;7856:2;7844:9;7835:7;7831:23;7827:32;7824:119;;;7862:79;;:::i;:::-;7824:119;7982:1;8007:53;8052:7;8043:6;8032:9;8028:22;8007:53;:::i;:::-;7997:63;;7953:117;8109:2;8135:50;8177:7;8168:6;8157:9;8153:22;8135:50;:::i;:::-;8125:60;;8080:115;7734:468;;;;;:::o;8208:180::-;8256:77;8253:1;8246:88;8353:4;8350:1;8343:15;8377:4;8374:1;8367:15;8394:320;8438:6;8475:1;8469:4;8465:12;8455:22;;8522:1;8516:4;8512:12;8543:18;8533:81;;8599:4;8591:6;8587:17;8577:27;;8533:81;8661:2;8653:6;8650:14;8630:18;8627:38;8624:84;;8680:18;;:::i;:::-;8624:84;8445:269;8394:320;;;:::o;8720:180::-;8768:77;8765:1;8758:88;8865:4;8862:1;8855:15;8889:4;8886:1;8879:15;8906:191;8946:3;8965:20;8983:1;8965:20;:::i;:::-;8960:25;;8999:20;9017:1;8999:20;:::i;:::-;8994:25;;9042:1;9039;9035:9;9028:16;;9063:3;9060:1;9057:10;9054:36;;;9070:18;;:::i;:::-;9054:36;8906:191;;;;:::o;9103:227::-;9243:34;9239:1;9231:6;9227:14;9220:58;9312:10;9307:2;9299:6;9295:15;9288:35;9103:227;:::o;9336:366::-;9478:3;9499:67;9563:2;9558:3;9499:67;:::i;:::-;9492:74;;9575:93;9664:3;9575:93;:::i;:::-;9693:2;9688:3;9684:12;9677:19;;9336:366;;;:::o;9708:419::-;9874:4;9912:2;9901:9;9897:18;9889:26;;9961:9;9955:4;9951:20;9947:1;9936:9;9932:17;9925:47;9989:131;10115:4;9989:131;:::i;:::-;9981:139;;9708:419;;;:::o;10133:232::-;10273:34;10269:1;10261:6;10257:14;10250:58;10342:15;10337:2;10329:6;10325:15;10318:40;10133:232;:::o;10371:366::-;10513:3;10534:67;10598:2;10593:3;10534:67;:::i;:::-;10527:74;;10610:93;10699:3;10610:93;:::i;:::-;10728:2;10723:3;10719:12;10712:19;;10371:366;;;:::o;10743:419::-;10909:4;10947:2;10936:9;10932:18;10924:26;;10996:9;10990:4;10986:20;10982:1;10971:9;10967:17;10960:47;11024:131;11150:4;11024:131;:::i;:::-;11016:139;;10743:419;;;:::o;11168:180::-;11216:77;11213:1;11206:88;11313:4;11310:1;11303:15;11337:4;11334:1;11327:15;11354:185;11394:1;11411:20;11429:1;11411:20;:::i;:::-;11406:25;;11445:20;11463:1;11445:20;:::i;:::-;11440:25;;11484:1;11474:35;;11489:18;;:::i;:::-;11474:35;11531:1;11528;11524:9;11519:14;;11354:185;;;;:::o;11545:239::-;11685:34;11681:1;11673:6;11669:14;11662:58;11754:22;11749:2;11741:6;11737:15;11730:47;11545:239;:::o;11790:366::-;11932:3;11953:67;12017:2;12012:3;11953:67;:::i;:::-;11946:74;;12029:93;12118:3;12029:93;:::i;:::-;12147:2;12142:3;12138:12;12131:19;;11790:366;;;:::o;12162:419::-;12328:4;12366:2;12355:9;12351:18;12343:26;;12415:9;12409:4;12405:20;12401:1;12390:9;12386:17;12379:47;12443:131;12569:4;12443:131;:::i;:::-;12435:139;;12162:419;;;:::o;12587:102::-;12629:8;12676:5;12673:1;12669:13;12648:34;;12587:102;;;:::o;12695:848::-;12756:5;12763:4;12787:6;12778:15;;12811:5;12802:14;;12825:712;12846:1;12836:8;12833:15;12825:712;;;12941:4;12936:3;12932:14;12926:4;12923:24;12920:50;;;12950:18;;:::i;:::-;12920:50;13000:1;12990:8;12986:16;12983:451;;;13415:4;13408:5;13404:16;13395:25;;12983:451;13465:4;13459;13455:15;13447:23;;13495:32;13518:8;13495:32;:::i;:::-;13483:44;;12825:712;;;12695:848;;;;;;;:::o;13549:1073::-;13603:5;13794:8;13784:40;;13815:1;13806:10;;13817:5;;13784:40;13843:4;13833:36;;13860:1;13851:10;;13862:5;;13833:36;13929:4;13977:1;13972:27;;;;14013:1;14008:191;;;;13922:277;;13972:27;13990:1;13981:10;;13992:5;;;14008:191;14053:3;14043:8;14040:17;14037:43;;;14060:18;;:::i;:::-;14037:43;14109:8;14106:1;14102:16;14093:25;;14144:3;14137:5;14134:14;14131:40;;;14151:18;;:::i;:::-;14131:40;14184:5;;;13922:277;;14308:2;14298:8;14295:16;14289:3;14283:4;14280:13;14276:36;14258:2;14248:8;14245:16;14240:2;14234:4;14231:12;14227:35;14211:111;14208:246;;;14364:8;14358:4;14354:19;14345:28;;14399:3;14392:5;14389:14;14386:40;;;14406:18;;:::i;:::-;14386:40;14439:5;;14208:246;14479:42;14517:3;14507:8;14501:4;14498:1;14479:42;:::i;:::-;14464:57;;;;14553:4;14548:3;14544:14;14537:5;14534:25;14531:51;;;14562:18;;:::i;:::-;14531:51;14611:4;14604:5;14600:16;14591:25;;13549:1073;;;;;;:::o;14628:281::-;14686:5;14710:23;14728:4;14710:23;:::i;:::-;14702:31;;14754:25;14770:8;14754:25;:::i;:::-;14742:37;;14798:104;14835:66;14825:8;14819:4;14798:104;:::i;:::-;14789:113;;14628:281;;;;:::o;14915:410::-;14955:7;14978:20;14996:1;14978:20;:::i;:::-;14973:25;;15012:20;15030:1;15012:20;:::i;:::-;15007:25;;15067:1;15064;15060:9;15089:30;15107:11;15089:30;:::i;:::-;15078:41;;15268:1;15259:7;15255:15;15252:1;15249:22;15229:1;15222:9;15202:83;15179:139;;15298:18;;:::i;:::-;15179:139;14963:362;14915:410;;;;:::o;15331:224::-;15471:34;15467:1;15459:6;15455:14;15448:58;15540:7;15535:2;15527:6;15523:15;15516:32;15331:224;:::o;15561:366::-;15703:3;15724:67;15788:2;15783:3;15724:67;:::i;:::-;15717:74;;15800:93;15889:3;15800:93;:::i;:::-;15918:2;15913:3;15909:12;15902:19;;15561:366;;;:::o;15933:419::-;16099:4;16137:2;16126:9;16122:18;16114:26;;16186:9;16180:4;16176:20;16172:1;16161:9;16157:17;16150:47;16214:131;16340:4;16214:131;:::i;:::-;16206:139;;15933:419;;;:::o;16358:225::-;16498:34;16494:1;16486:6;16482:14;16475:58;16567:8;16562:2;16554:6;16550:15;16543:33;16358:225;:::o;16589:366::-;16731:3;16752:67;16816:2;16811:3;16752:67;:::i;:::-;16745:74;;16828:93;16917:3;16828:93;:::i;:::-;16946:2;16941:3;16937:12;16930:19;;16589:366;;;:::o;16961:419::-;17127:4;17165:2;17154:9;17150:18;17142:26;;17214:9;17208:4;17204:20;17200:1;17189:9;17185:17;17178:47;17242:131;17368:4;17242:131;:::i;:::-;17234:139;;16961:419;;;:::o;17386:223::-;17526:34;17522:1;17514:6;17510:14;17503:58;17595:6;17590:2;17582:6;17578:15;17571:31;17386:223;:::o;17615:366::-;17757:3;17778:67;17842:2;17837:3;17778:67;:::i;:::-;17771:74;;17854:93;17943:3;17854:93;:::i;:::-;17972:2;17967:3;17963:12;17956:19;;17615:366;;;:::o;17987:419::-;18153:4;18191:2;18180:9;18176:18;18168:26;;18240:9;18234:4;18230:20;18226:1;18215:9;18211:17;18204:47;18268:131;18394:4;18268:131;:::i;:::-;18260:139;;17987:419;;;:::o;18412:221::-;18552:34;18548:1;18540:6;18536:14;18529:58;18621:4;18616:2;18608:6;18604:15;18597:29;18412:221;:::o;18639:366::-;18781:3;18802:67;18866:2;18861:3;18802:67;:::i;:::-;18795:74;;18878:93;18967:3;18878:93;:::i;:::-;18996:2;18991:3;18987:12;18980:19;;18639:366;;;:::o;19011:419::-;19177:4;19215:2;19204:9;19200:18;19192:26;;19264:9;19258:4;19254:20;19250:1;19239:9;19235:17;19228:47;19292:131;19418:4;19292:131;:::i;:::-;19284:139;;19011:419;;;:::o;19436:179::-;19576:31;19572:1;19564:6;19560:14;19553:55;19436:179;:::o;19621:366::-;19763:3;19784:67;19848:2;19843:3;19784:67;:::i;:::-;19777:74;;19860:93;19949:3;19860:93;:::i;:::-;19978:2;19973:3;19969:12;19962:19;;19621:366;;;:::o;19993:419::-;20159:4;20197:2;20186:9;20182:18;20174:26;;20246:9;20240:4;20236:20;20232:1;20221:9;20217:17;20210:47;20274:131;20400:4;20274:131;:::i;:::-;20266:139;;19993:419;;;:::o;20418:224::-;20558:34;20554:1;20546:6;20542:14;20535:58;20627:7;20622:2;20614:6;20610:15;20603:32;20418:224;:::o;20648:366::-;20790:3;20811:67;20875:2;20870:3;20811:67;:::i;:::-;20804:74;;20887:93;20976:3;20887:93;:::i;:::-;21005:2;21000:3;20996:12;20989:19;;20648:366;;;:::o;21020:419::-;21186:4;21224:2;21213:9;21209:18;21201:26;;21273:9;21267:4;21263:20;21259:1;21248:9;21244:17;21237:47;21301:131;21427:4;21301:131;:::i;:::-;21293:139;;21020:419;;;:::o;21445:222::-;21585:34;21581:1;21573:6;21569:14;21562:58;21654:5;21649:2;21641:6;21637:15;21630:30;21445:222;:::o;21673:366::-;21815:3;21836:67;21900:2;21895:3;21836:67;:::i;:::-;21829:74;;21912:93;22001:3;21912:93;:::i;:::-;22030:2;22025:3;22021:12;22014:19;;21673:366;;;:::o;22045:419::-;22211:4;22249:2;22238:9;22234:18;22226:26;;22298:9;22292:4;22288:20;22284:1;22273:9;22269:17;22262:47;22326:131;22452:4;22326:131;:::i;:::-;22318:139;;22045:419;;;:::o;22470:225::-;22610:34;22606:1;22598:6;22594:14;22587:58;22679:8;22674:2;22666:6;22662:15;22655:33;22470:225;:::o;22701:366::-;22843:3;22864:67;22928:2;22923:3;22864:67;:::i;:::-;22857:74;;22940:93;23029:3;22940:93;:::i;:::-;23058:2;23053:3;23049:12;23042:19;;22701:366;;;:::o;23073:419::-;23239:4;23277:2;23266:9;23262:18;23254:26;;23326:9;23320:4;23316:20;23312:1;23301:9;23297:17;23290:47;23354:131;23480:4;23354:131;:::i;:::-;23346:139;;23073:419;;;:::o;23498:194::-;23538:4;23558:20;23576:1;23558:20;:::i;:::-;23553:25;;23592:20;23610:1;23592:20;:::i;:::-;23587:25;;23636:1;23633;23629:9;23621:17;;23660:1;23654:4;23651:11;23648:37;;;23665:18;;:::i;:::-;23648:37;23498:194;;;;:::o;23698:168::-;23838:20;23834:1;23826:6;23822:14;23815:44;23698:168;:::o;23872:366::-;24014:3;24035:67;24099:2;24094:3;24035:67;:::i;:::-;24028:74;;24111:93;24200:3;24111:93;:::i;:::-;24229:2;24224:3;24220:12;24213:19;;23872:366;;;:::o;24244:419::-;24410:4;24448:2;24437:9;24433:18;24425:26;;24497:9;24491:4;24487:20;24483:1;24472:9;24468:17;24461:47;24525:131;24651:4;24525:131;:::i;:::-;24517:139;;24244:419;;;:::o;24669:182::-;24809:34;24805:1;24797:6;24793:14;24786:58;24669:182;:::o;24857:366::-;24999:3;25020:67;25084:2;25079:3;25020:67;:::i;:::-;25013:74;;25096:93;25185:3;25096:93;:::i;:::-;25214:2;25209:3;25205:12;25198:19;;24857:366;;;:::o;25229:419::-;25395:4;25433:2;25422:9;25418:18;25410:26;;25482:9;25476:4;25472:20;25468:1;25457:9;25453:17;25446:47;25510:131;25636:4;25510:131;:::i;:::-;25502:139;;25229:419;;;:::o;25654:442::-;25803:4;25841:2;25830:9;25826:18;25818:26;;25854:71;25922:1;25911:9;25907:17;25898:6;25854:71;:::i;:::-;25935:72;26003:2;25992:9;25988:18;25979:6;25935:72;:::i;:::-;26017;26085:2;26074:9;26070:18;26061:6;26017:72;:::i;:::-;25654:442;;;;;;:::o;26102:180::-;26150:77;26147:1;26140:88;26247:4;26244:1;26237:15;26271:4;26268:1;26261:15;26288:180;26336:77;26333:1;26326:88;26433:4;26430:1;26423:15;26457:4;26454:1;26447:15;26474:143;26531:5;26562:6;26556:13;26547:22;;26578:33;26605:5;26578:33;:::i;:::-;26474:143;;;;:::o;26623:351::-;26693:6;26742:2;26730:9;26721:7;26717:23;26713:32;26710:119;;;26748:79;;:::i;:::-;26710:119;26868:1;26893:64;26949:7;26940:6;26929:9;26925:22;26893:64;:::i;:::-;26883:74;;26839:128;26623:351;;;;:::o;26980:85::-;27025:7;27054:5;27043:16;;26980:85;;;:::o;27071:158::-;27129:9;27162:61;27180:42;27189:32;27215:5;27189:32;:::i;:::-;27180:42;:::i;:::-;27162:61;:::i;:::-;27149:74;;27071:158;;;:::o;27235:147::-;27330:45;27369:5;27330:45;:::i;:::-;27325:3;27318:58;27235:147;;:::o;27388:114::-;27455:6;27489:5;27483:12;27473:22;;27388:114;;;:::o;27508:184::-;27607:11;27641:6;27636:3;27629:19;27681:4;27676:3;27672:14;27657:29;;27508:184;;;;:::o;27698:132::-;27765:4;27788:3;27780:11;;27818:4;27813:3;27809:14;27801:22;;27698:132;;;:::o;27836:108::-;27913:24;27931:5;27913:24;:::i;:::-;27908:3;27901:37;27836:108;;:::o;27950:179::-;28019:10;28040:46;28082:3;28074:6;28040:46;:::i;:::-;28118:4;28113:3;28109:14;28095:28;;27950:179;;;;:::o;28135:113::-;28205:4;28237;28232:3;28228:14;28220:22;;28135:113;;;:::o;28284:732::-;28403:3;28432:54;28480:5;28432:54;:::i;:::-;28502:86;28581:6;28576:3;28502:86;:::i;:::-;28495:93;;28612:56;28662:5;28612:56;:::i;:::-;28691:7;28722:1;28707:284;28732:6;28729:1;28726:13;28707:284;;;28808:6;28802:13;28835:63;28894:3;28879:13;28835:63;:::i;:::-;28828:70;;28921:60;28974:6;28921:60;:::i;:::-;28911:70;;28767:224;28754:1;28751;28747:9;28742:14;;28707:284;;;28711:14;29007:3;29000:10;;28408:608;;;28284:732;;;;:::o;29022:831::-;29285:4;29323:3;29312:9;29308:19;29300:27;;29337:71;29405:1;29394:9;29390:17;29381:6;29337:71;:::i;:::-;29418:80;29494:2;29483:9;29479:18;29470:6;29418:80;:::i;:::-;29545:9;29539:4;29535:20;29530:2;29519:9;29515:18;29508:48;29573:108;29676:4;29667:6;29573:108;:::i;:::-;29565:116;;29691:72;29759:2;29748:9;29744:18;29735:6;29691:72;:::i;:::-;29773:73;29841:3;29830:9;29826:19;29817:6;29773:73;:::i;:::-;29022:831;;;;;;;;:::o;29859:807::-;30108:4;30146:3;30135:9;30131:19;30123:27;;30160:71;30228:1;30217:9;30213:17;30204:6;30160:71;:::i;:::-;30241:72;30309:2;30298:9;30294:18;30285:6;30241:72;:::i;:::-;30323:80;30399:2;30388:9;30384:18;30375:6;30323:80;:::i;:::-;30413;30489:2;30478:9;30474:18;30465:6;30413:80;:::i;:::-;30503:73;30571:3;30560:9;30556:19;30547:6;30503:73;:::i;:::-;30586;30654:3;30643:9;30639:19;30630:6;30586:73;:::i;:::-;29859:807;;;;;;;;;:::o;30672:143::-;30729:5;30760:6;30754:13;30745:22;;30776:33;30803:5;30776:33;:::i;:::-;30672:143;;;;:::o;30821:663::-;30909:6;30917;30925;30974:2;30962:9;30953:7;30949:23;30945:32;30942:119;;;30980:79;;:::i;:::-;30942:119;31100:1;31125:64;31181:7;31172:6;31161:9;31157:22;31125:64;:::i;:::-;31115:74;;31071:128;31238:2;31264:64;31320:7;31311:6;31300:9;31296:22;31264:64;:::i;:::-;31254:74;;31209:129;31377:2;31403:64;31459:7;31450:6;31439:9;31435:22;31403:64;:::i;:::-;31393:74;;31348:129;30821:663;;;;;:::o

Swarm Source

ipfs://53f293c178f4c06eb4f1856903b11a3544c2d8c0bd3fe4284ad4169b482bf8b8
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.