ETH Price: $3,387.75 (-1.72%)
Gas: 1 Gwei

Token

Zaraki Inu ($Eleventh)
 

Overview

Max Total Supply

1,000,000 $Eleventh

Holders

141

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
749.610646849049128055 $Eleventh

Value
$0.00
0x0d5da38c9ec77c50c1aad5e58341338882299e82
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:
ZarakiInu

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 2022-10-28
*/

// Telegram: https://t.me/ZarakiinuERC

// 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 createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

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

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

    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 name of the token.
     */
    function name() external view virtual override returns (string memory) {
        return _name;
    }

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

    /**
     * @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 ZarakiInu is ERC20, Ownable {
    // TOKENOMICS START ==========================================================>
    string private _name = "Zaraki Inu";
    string private _symbol = "$Eleventh";
    uint8 private _decimals = 18;
    uint256 private _supply = 1000000;
    uint256 public taxForLiquidity = 2;
    uint256 public taxForMarketing = 23;
    uint256 public maxTxAmount = 2 * 10**_decimals;
    uint256 public maxWalletAmount = 2 * 10**_decimals;
    address public marketingWallet = 0xd271B02ebC9222872540160688C68b9642714b09;
    // TOKENOMICS END ============================================================>

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private _numTokensSellToAddToLiquidity = 2500 * 10**_decimals;
    uint256 private _numTokensSellToAddToETH = 1000 * 10**_decimals;
    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 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 override returns (uint8) {
        return _decimals;
    }

    /**
     * @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 {
                require(
                    amount <= maxTxAmount,
                    "ERC20: transfer amount exceeds the max transaction amount"
                );
                if (from == uniswapV2Pair) {
                    require(
                        (amount + balanceOf(to)) <= maxWalletAmount,
                        "ERC20: balance amount exceeded max wallet amount limit"
                    );
                }

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

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

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

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

        return true;
    }

    function changeMarketingWallet(address newWallet)
        public
        onlyOwner
        returns (bool)
    {
        marketingWallet = newWallet;
        return true;
    }

    function changeMaxTxAmount(uint256 _maxTxAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxTxAmount = _maxTxAmount;

        return true;
    }

    function changeMaxWalletAmount(uint256 _maxWalletAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxWalletAmount = _maxWalletAmount;

        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":[{"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":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"}],"name":"changeTaxForLiquidityAndMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"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"}]

60c06040526040518060400160405280600a81526020017f5a6172616b6920496e7500000000000000000000000000000000000000000000815250600690816200004a919062000b34565b506040518060400160405280600981526020017f24456c6576656e746800000000000000000000000000000000000000000000008152506007908162000091919062000b34565b506012600860006101000a81548160ff021916908360ff160217905550620f42406009556002600a556017600b55600860009054906101000a900460ff16600a620000dd919062000dab565b6002620000eb919062000dfc565b600c55600860009054906101000a900460ff16600a6200010c919062000dab565b60026200011a919062000dfc565b600d5573d271b02ebc9222872540160688c68b9642714b09600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600f55600860009054906101000a900460ff16600a62000195919062000dab565b6109c4620001a4919062000dfc565b601155600860009054906101000a900460ff16600a620001c5919062000dab565b6103e8620001d4919062000dfc565b601255348015620001e457600080fd5b5060068054620001f49062000923565b80601f0160208091040260200160405190810160405280929190818152602001828054620002229062000923565b8015620002735780601f10620002475761010080835404028352916020019162000273565b820191906000526020600020905b8154815290600101906020018083116200025557829003601f168201915b505050505060078054620002879062000923565b80601f0160208091040260200160405190810160405280929190818152602001828054620002b59062000923565b8015620003065780601f10620002da5761010080835404028352916020019162000306565b820191906000526020600020905b815481529060010190602001808311620002e857829003601f168201915b505050505081600390816200031c919062000b34565b5080600490816200032e919062000b34565b5050506200035162000345620006a760201b60201c565b620006af60201b60201c565b6200038f33600860009054906101000a900460ff16600a62000374919062000dab565b60095462000383919062000dfc565b6200077560201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200041a919062000eb1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000482573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a8919062000eb1565b6040518363ffffffff1660e01b8152600401620004c792919062000ef4565b6020604051808303816000875af1158015620004e7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200050d919062000eb1565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060016010600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160106000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550506200100d565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007de9062000f82565b60405180910390fd5b8060026000828254620007fb919062000fa4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008ae919062000ff0565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200093c57607f821691505b602082108103620009525762000951620008f4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009bc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200097d565b620009c886836200097d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a1562000a0f62000a0984620009e0565b620009ea565b620009e0565b9050919050565b6000819050919050565b62000a3183620009f4565b62000a4962000a408262000a1c565b8484546200098a565b825550505050565b600090565b62000a6062000a51565b62000a6d81848462000a26565b505050565b5b8181101562000a955762000a8960008262000a56565b60018101905062000a73565b5050565b601f82111562000ae45762000aae8162000958565b62000ab9846200096d565b8101602085101562000ac9578190505b62000ae162000ad8856200096d565b83018262000a72565b50505b505050565b600082821c905092915050565b600062000b096000198460080262000ae9565b1980831691505092915050565b600062000b24838362000af6565b9150826002028217905092915050565b62000b3f82620008ba565b67ffffffffffffffff81111562000b5b5762000b5a620008c5565b5b62000b67825462000923565b62000b7482828562000a99565b600060209050601f83116001811462000bac576000841562000b97578287015190505b62000ba3858262000b16565b86555062000c13565b601f19841662000bbc8662000958565b60005b8281101562000be65784890151825560018201915060208501945060208101905062000bbf565b8683101562000c06578489015162000c02601f89168262000af6565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000ca95780860481111562000c815762000c8062000c1b565b5b600185161562000c915780820291505b808102905062000ca18562000c4a565b945062000c61565b94509492505050565b60008262000cc4576001905062000d97565b8162000cd4576000905062000d97565b816001811462000ced576002811462000cf85762000d2e565b600191505062000d97565b60ff84111562000d0d5762000d0c62000c1b565b5b8360020a91508482111562000d275762000d2662000c1b565b5b5062000d97565b5060208310610133831016604e8410600b841016171562000d685782820a90508381111562000d625762000d6162000c1b565b5b62000d97565b62000d77848484600162000c57565b9250905081840481111562000d915762000d9062000c1b565b5b81810290505b9392505050565b600060ff82169050919050565b600062000db882620009e0565b915062000dc58362000d9e565b925062000df47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000cb2565b905092915050565b600062000e0982620009e0565b915062000e1683620009e0565b925082820262000e2681620009e0565b9150828204841483151762000e405762000e3f62000c1b565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e798262000e4c565b9050919050565b62000e8b8162000e6c565b811462000e9757600080fd5b50565b60008151905062000eab8162000e80565b92915050565b60006020828403121562000eca5762000ec962000e47565b5b600062000eda8482850162000e9a565b91505092915050565b62000eee8162000e6c565b82525050565b600060408201905062000f0b600083018562000ee3565b62000f1a602083018462000ee3565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f6a601f8362000f21565b915062000f778262000f32565b602082019050919050565b6000602082019050818103600083015262000f9d8162000f5b565b9050919050565b600062000fb182620009e0565b915062000fbe83620009e0565b925082820190508082111562000fd95762000fd862000c1b565b5b92915050565b62000fea81620009e0565b82525050565b600060208201905062001007600083018462000fdf565b92915050565b60805160a051612b5e62001072600039600081816107bb01528181610f5801528181610fad0152818161101b015261126201526000818161071001528181611674015281816117550152818161177c01528181611abb0152611ae20152612b5e6000f3fe60806040526004361061016a5760003560e01c806375f0a874116100d1578063a9059cbb1161008a578063bb85c6d111610064578063bb85c6d11461058b578063dd62ed3e146105c8578063f2fde38b14610605578063f345bd851461062e57610171565b8063a9059cbb146104e6578063aa4bde2814610523578063af8af6901461054e57610171565b806375f0a874146103c057806381bfdcca146103eb5780638c0b5e22146104285780638da5cb5b1461045357806395d89b411461047e578063a457c2d7146104a957610171565b80633950935111610123578063395093511461029c57806349bd5a5e146102d9578063527ffabd14610304578063677daa571461032f57806370a082311461036c578063715018a6146103a957610171565b806306fdde0314610176578063095ea7b3146101a15780631694505e146101de57806318160ddd1461020957806323b872dd14610234578063313ce5671461027157610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b610659565b6040516101989190611c41565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c39190611cfc565b6106eb565b6040516101d59190611d57565b60405180910390f35b3480156101ea57600080fd5b506101f361070e565b6040516102009190611dd1565b60405180910390f35b34801561021557600080fd5b5061021e610732565b60405161022b9190611dfb565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190611e16565b61073c565b6040516102689190611d57565b60405180910390f35b34801561027d57600080fd5b5061028661076b565b6040516102939190611e85565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be9190611cfc565b610782565b6040516102d09190611d57565b60405180910390f35b3480156102e557600080fd5b506102ee6107b9565b6040516102fb9190611eaf565b60405180910390f35b34801561031057600080fd5b506103196107dd565b6040516103269190611dfb565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190611eca565b6107e3565b6040516103639190611d57565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190611ef7565b6107fd565b6040516103a09190611dfb565b60405180910390f35b3480156103b557600080fd5b506103be610845565b005b3480156103cc57600080fd5b506103d5610859565b6040516103e29190611eaf565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d9190611eca565b61087f565b60405161041f9190611d57565b60405180910390f35b34801561043457600080fd5b5061043d610899565b60405161044a9190611dfb565b60405180910390f35b34801561045f57600080fd5b5061046861089f565b6040516104759190611eaf565b60405180910390f35b34801561048a57600080fd5b506104936108c9565b6040516104a09190611c41565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190611cfc565b61095b565b6040516104dd9190611d57565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190611cfc565b6109d2565b60405161051a9190611d57565b60405180910390f35b34801561052f57600080fd5b506105386109f5565b6040516105459190611dfb565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190611f24565b6109fb565b6040516105829190611d57565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190611ef7565b610a6c565b6040516105bf9190611d57565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190611f64565b610ac0565b6040516105fc9190611dfb565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190611ef7565b610b47565b005b34801561063a57600080fd5b50610643610bca565b6040516106509190611dfb565b60405180910390f35b60606003805461066890611fd3565b80601f016020809104026020016040519081016040528092919081815260200182805461069490611fd3565b80156106e15780601f106106b6576101008083540402835291602001916106e1565b820191906000526020600020905b8154815290600101906020018083116106c457829003601f168201915b5050505050905090565b6000806106f6610bd0565b9050610703818585610bd8565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600080610747610bd0565b9050610754858285610da1565b61075f858585610e2d565b60019150509392505050565b6000600860009054906101000a900460ff16905090565b60008061078d610bd0565b90506107ae81858561079f8589610ac0565b6107a99190612033565b610bd8565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5481565b60006107ed6113b5565b81600c8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61084d6113b5565b6108576000611433565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006108896113b5565b81600d8190555060019050919050565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108d890611fd3565b80601f016020809104026020016040519081016040528092919081815260200182805461090490611fd3565b80156109515780601f1061092657610100808354040283529160200191610951565b820191906000526020600020905b81548152906001019060200180831161093457829003601f168201915b5050505050905090565b600080610966610bd0565b905060006109748286610ac0565b9050838110156109b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b0906120d9565b60405180910390fd5b6109c68286868403610bd8565b60019250505092915050565b6000806109dd610bd0565b90506109ea818585610e2d565b600191505092915050565b600d5481565b6000610a056113b5565b60648284610a139190612033565b1115610a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4b9061216b565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b6000610a766113b5565b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b4f6113b5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb5906121fd565b60405180910390fd5b610bc781611433565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e9061228f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90612321565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d949190611dfb565b60405180910390a3505050565b6000610dad8484610ac0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e275781811015610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e109061238d565b60405180910390fd5b610e268484848403610bd8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e939061241f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f02906124b1565b60405180910390fd5b80610f15846107fd565b1015610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d90612543565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610ffb57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156110145750601360009054906101000a900460ff16155b156113a4577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461116b576000600f5461107a306107fd565b6110849190612563565b9050601154811061109b5761109a6011546114f9565b5b601254600f5410611169576110b16012546115ba565b601254600f60008282546110c59190612563565b925050819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050905080611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e906125e3565b60405180910390fd5b505b505b6000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061120e5750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561121b57819050611393565b600c54821115611260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125790612675565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361130c57600d546112bf846107fd565b836112ca9190612033565b111561130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290612707565b60405180910390fd5b5b60006064600b548461131e9190612727565b6113289190612798565b905060006064600a548561133c9190612727565b6113469190612798565b905080826113549190612033565b8461135f9190612563565b925081600f60008282546113739190612033565b925050819055506113908630838561138b9190612033565b61183a565b50505b61139e84848361183a565b506113b0565b6113af83838361183a565b5b505050565b6113bd610bd0565b73ffffffffffffffffffffffffffffffffffffffff166113db61089f565b73ffffffffffffffffffffffffffffffffffffffff1614611431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142890612815565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601360006101000a81548160ff02191690831515021790555060006002826115239190612798565b9050600081836115339190612563565b90506000479050611543836115ba565b600081476115519190612563565b905061155d8382611a9a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161159093929190612835565b60405180910390a1505050506000601360006101000a81548160ff02191690831515021790555050565b6001601360006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156115f2576115f161286c565b5b6040519080825280602002602001820160405280156116205781602001602082028036833780820191505090505b50905030816000815181106116385761163761289b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061170191906128df565b816001815181106117155761171461289b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061177a307f000000000000000000000000000000000000000000000000000000000000000084610bd8565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c426117c99190612033565b6040518663ffffffff1660e01b81526004016117e9959493929190612a05565b600060405180830381600087803b15801561180357600080fd5b505af1158015611817573d6000803e3d6000fd5b50505050506000601360006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a09061241f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190f906124b1565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561199e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199590612543565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a8c9190611dfb565b60405180910390a350505050565b6001601360006101000a81548160ff021916908315150217905550611ae0307f000000000000000000000000000000000000000000000000000000000000000084610bd8565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611b2a61089f565b426040518863ffffffff1660e01b8152600401611b4c96959493929190612a5f565b60606040518083038185885af1158015611b6a573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611b8f9190612ad5565b5050506000601360006101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611beb578082015181840152602081019050611bd0565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c1382611bb1565b611c1d8185611bbc565b9350611c2d818560208601611bcd565b611c3681611bf7565b840191505092915050565b60006020820190508181036000830152611c5b8184611c08565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c9382611c68565b9050919050565b611ca381611c88565b8114611cae57600080fd5b50565b600081359050611cc081611c9a565b92915050565b6000819050919050565b611cd981611cc6565b8114611ce457600080fd5b50565b600081359050611cf681611cd0565b92915050565b60008060408385031215611d1357611d12611c63565b5b6000611d2185828601611cb1565b9250506020611d3285828601611ce7565b9150509250929050565b60008115159050919050565b611d5181611d3c565b82525050565b6000602082019050611d6c6000830184611d48565b92915050565b6000819050919050565b6000611d97611d92611d8d84611c68565b611d72565b611c68565b9050919050565b6000611da982611d7c565b9050919050565b6000611dbb82611d9e565b9050919050565b611dcb81611db0565b82525050565b6000602082019050611de66000830184611dc2565b92915050565b611df581611cc6565b82525050565b6000602082019050611e106000830184611dec565b92915050565b600080600060608486031215611e2f57611e2e611c63565b5b6000611e3d86828701611cb1565b9350506020611e4e86828701611cb1565b9250506040611e5f86828701611ce7565b9150509250925092565b600060ff82169050919050565b611e7f81611e69565b82525050565b6000602082019050611e9a6000830184611e76565b92915050565b611ea981611c88565b82525050565b6000602082019050611ec46000830184611ea0565b92915050565b600060208284031215611ee057611edf611c63565b5b6000611eee84828501611ce7565b91505092915050565b600060208284031215611f0d57611f0c611c63565b5b6000611f1b84828501611cb1565b91505092915050565b60008060408385031215611f3b57611f3a611c63565b5b6000611f4985828601611ce7565b9250506020611f5a85828601611ce7565b9150509250929050565b60008060408385031215611f7b57611f7a611c63565b5b6000611f8985828601611cb1565b9250506020611f9a85828601611cb1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611feb57607f821691505b602082108103611ffe57611ffd611fa4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061203e82611cc6565b915061204983611cc6565b925082820190508082111561206157612060612004565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006120c3602583611bbc565b91506120ce82612067565b604082019050919050565b600060208201905081810360008301526120f2816120b6565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b6000612155602d83611bbc565b9150612160826120f9565b604082019050919050565b6000602082019050818103600083015261218481612148565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006121e7602683611bbc565b91506121f28261218b565b604082019050919050565b60006020820190508181036000830152612216816121da565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612279602483611bbc565b91506122848261221d565b604082019050919050565b600060208201905081810360008301526122a88161226c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061230b602283611bbc565b9150612316826122af565b604082019050919050565b6000602082019050818103600083015261233a816122fe565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612377601d83611bbc565b915061238282612341565b602082019050919050565b600060208201905081810360008301526123a68161236a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612409602583611bbc565b9150612414826123ad565b604082019050919050565b60006020820190508181036000830152612438816123fc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061249b602383611bbc565b91506124a68261243f565b604082019050919050565b600060208201905081810360008301526124ca8161248e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061252d602683611bbc565b9150612538826124d1565b604082019050919050565b6000602082019050818103600083015261255c81612520565b9050919050565b600061256e82611cc6565b915061257983611cc6565b925082820390508181111561259157612590612004565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b60006125cd601283611bbc565b91506125d882612597565b602082019050919050565b600060208201905081810360008301526125fc816125c0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b600061265f603983611bbc565b915061266a82612603565b604082019050919050565b6000602082019050818103600083015261268e81612652565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b60006126f1603683611bbc565b91506126fc82612695565b604082019050919050565b60006020820190508181036000830152612720816126e4565b9050919050565b600061273282611cc6565b915061273d83611cc6565b925082820261274b81611cc6565b9150828204841483151761276257612761612004565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006127a382611cc6565b91506127ae83611cc6565b9250826127be576127bd612769565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127ff602083611bbc565b915061280a826127c9565b602082019050919050565b6000602082019050818103600083015261282e816127f2565b9050919050565b600060608201905061284a6000830186611dec565b6128576020830185611dec565b6128646040830184611dec565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506128d981611c9a565b92915050565b6000602082840312156128f5576128f4611c63565b5b6000612903848285016128ca565b91505092915050565b6000819050919050565b600061293161292c6129278461290c565b611d72565b611cc6565b9050919050565b61294181612916565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61297c81611c88565b82525050565b600061298e8383612973565b60208301905092915050565b6000602082019050919050565b60006129b282612947565b6129bc8185612952565b93506129c783612963565b8060005b838110156129f85781516129df8882612982565b97506129ea8361299a565b9250506001810190506129cb565b5085935050505092915050565b600060a082019050612a1a6000830188611dec565b612a276020830187612938565b8181036040830152612a3981866129a7565b9050612a486060830185611ea0565b612a556080830184611dec565b9695505050505050565b600060c082019050612a746000830189611ea0565b612a816020830188611dec565b612a8e6040830187612938565b612a9b6060830186612938565b612aa86080830185611ea0565b612ab560a0830184611dec565b979650505050505050565b600081519050612acf81611cd0565b92915050565b600080600060608486031215612aee57612aed611c63565b5b6000612afc86828701612ac0565b9350506020612b0d86828701612ac0565b9250506040612b1e86828701612ac0565b915050925092509256fea2646970667358221220b57e37b4affc565e6d62f4f55a2f1f2adf405c6496772c0312f9d73054bf293b64736f6c63430008110033

Deployed Bytecode

0x60806040526004361061016a5760003560e01c806375f0a874116100d1578063a9059cbb1161008a578063bb85c6d111610064578063bb85c6d11461058b578063dd62ed3e146105c8578063f2fde38b14610605578063f345bd851461062e57610171565b8063a9059cbb146104e6578063aa4bde2814610523578063af8af6901461054e57610171565b806375f0a874146103c057806381bfdcca146103eb5780638c0b5e22146104285780638da5cb5b1461045357806395d89b411461047e578063a457c2d7146104a957610171565b80633950935111610123578063395093511461029c57806349bd5a5e146102d9578063527ffabd14610304578063677daa571461032f57806370a082311461036c578063715018a6146103a957610171565b806306fdde0314610176578063095ea7b3146101a15780631694505e146101de57806318160ddd1461020957806323b872dd14610234578063313ce5671461027157610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b610659565b6040516101989190611c41565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c39190611cfc565b6106eb565b6040516101d59190611d57565b60405180910390f35b3480156101ea57600080fd5b506101f361070e565b6040516102009190611dd1565b60405180910390f35b34801561021557600080fd5b5061021e610732565b60405161022b9190611dfb565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190611e16565b61073c565b6040516102689190611d57565b60405180910390f35b34801561027d57600080fd5b5061028661076b565b6040516102939190611e85565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be9190611cfc565b610782565b6040516102d09190611d57565b60405180910390f35b3480156102e557600080fd5b506102ee6107b9565b6040516102fb9190611eaf565b60405180910390f35b34801561031057600080fd5b506103196107dd565b6040516103269190611dfb565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190611eca565b6107e3565b6040516103639190611d57565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190611ef7565b6107fd565b6040516103a09190611dfb565b60405180910390f35b3480156103b557600080fd5b506103be610845565b005b3480156103cc57600080fd5b506103d5610859565b6040516103e29190611eaf565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d9190611eca565b61087f565b60405161041f9190611d57565b60405180910390f35b34801561043457600080fd5b5061043d610899565b60405161044a9190611dfb565b60405180910390f35b34801561045f57600080fd5b5061046861089f565b6040516104759190611eaf565b60405180910390f35b34801561048a57600080fd5b506104936108c9565b6040516104a09190611c41565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190611cfc565b61095b565b6040516104dd9190611d57565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190611cfc565b6109d2565b60405161051a9190611d57565b60405180910390f35b34801561052f57600080fd5b506105386109f5565b6040516105459190611dfb565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190611f24565b6109fb565b6040516105829190611d57565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190611ef7565b610a6c565b6040516105bf9190611d57565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190611f64565b610ac0565b6040516105fc9190611dfb565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190611ef7565b610b47565b005b34801561063a57600080fd5b50610643610bca565b6040516106509190611dfb565b60405180910390f35b60606003805461066890611fd3565b80601f016020809104026020016040519081016040528092919081815260200182805461069490611fd3565b80156106e15780601f106106b6576101008083540402835291602001916106e1565b820191906000526020600020905b8154815290600101906020018083116106c457829003601f168201915b5050505050905090565b6000806106f6610bd0565b9050610703818585610bd8565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600080610747610bd0565b9050610754858285610da1565b61075f858585610e2d565b60019150509392505050565b6000600860009054906101000a900460ff16905090565b60008061078d610bd0565b90506107ae81858561079f8589610ac0565b6107a99190612033565b610bd8565b600191505092915050565b7f0000000000000000000000003dace77369da05b9cabdd57ea783b242e36ea4dd81565b600b5481565b60006107ed6113b5565b81600c8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61084d6113b5565b6108576000611433565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006108896113b5565b81600d8190555060019050919050565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108d890611fd3565b80601f016020809104026020016040519081016040528092919081815260200182805461090490611fd3565b80156109515780601f1061092657610100808354040283529160200191610951565b820191906000526020600020905b81548152906001019060200180831161093457829003601f168201915b5050505050905090565b600080610966610bd0565b905060006109748286610ac0565b9050838110156109b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b0906120d9565b60405180910390fd5b6109c68286868403610bd8565b60019250505092915050565b6000806109dd610bd0565b90506109ea818585610e2d565b600191505092915050565b600d5481565b6000610a056113b5565b60648284610a139190612033565b1115610a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4b9061216b565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b6000610a766113b5565b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b4f6113b5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb5906121fd565b60405180910390fd5b610bc781611433565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e9061228f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90612321565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d949190611dfb565b60405180910390a3505050565b6000610dad8484610ac0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e275781811015610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e109061238d565b60405180910390fd5b610e268484848403610bd8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e939061241f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f02906124b1565b60405180910390fd5b80610f15846107fd565b1015610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d90612543565b60405180910390fd5b7f0000000000000000000000003dace77369da05b9cabdd57ea783b242e36ea4dd73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610ffb57507f0000000000000000000000003dace77369da05b9cabdd57ea783b242e36ea4dd73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156110145750601360009054906101000a900460ff16155b156113a4577f0000000000000000000000003dace77369da05b9cabdd57ea783b242e36ea4dd73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461116b576000600f5461107a306107fd565b6110849190612563565b9050601154811061109b5761109a6011546114f9565b5b601254600f5410611169576110b16012546115ba565b601254600f60008282546110c59190612563565b925050819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050905080611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e906125e3565b60405180910390fd5b505b505b6000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061120e5750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561121b57819050611393565b600c54821115611260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125790612675565b60405180910390fd5b7f0000000000000000000000003dace77369da05b9cabdd57ea783b242e36ea4dd73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361130c57600d546112bf846107fd565b836112ca9190612033565b111561130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290612707565b60405180910390fd5b5b60006064600b548461131e9190612727565b6113289190612798565b905060006064600a548561133c9190612727565b6113469190612798565b905080826113549190612033565b8461135f9190612563565b925081600f60008282546113739190612033565b925050819055506113908630838561138b9190612033565b61183a565b50505b61139e84848361183a565b506113b0565b6113af83838361183a565b5b505050565b6113bd610bd0565b73ffffffffffffffffffffffffffffffffffffffff166113db61089f565b73ffffffffffffffffffffffffffffffffffffffff1614611431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142890612815565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601360006101000a81548160ff02191690831515021790555060006002826115239190612798565b9050600081836115339190612563565b90506000479050611543836115ba565b600081476115519190612563565b905061155d8382611a9a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161159093929190612835565b60405180910390a1505050506000601360006101000a81548160ff02191690831515021790555050565b6001601360006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156115f2576115f161286c565b5b6040519080825280602002602001820160405280156116205781602001602082028036833780820191505090505b50905030816000815181106116385761163761289b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061170191906128df565b816001815181106117155761171461289b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061177a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610bd8565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c426117c99190612033565b6040518663ffffffff1660e01b81526004016117e9959493929190612a05565b600060405180830381600087803b15801561180357600080fd5b505af1158015611817573d6000803e3d6000fd5b50505050506000601360006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a09061241f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190f906124b1565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561199e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199590612543565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a8c9190611dfb565b60405180910390a350505050565b6001601360006101000a81548160ff021916908315150217905550611ae0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610bd8565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611b2a61089f565b426040518863ffffffff1660e01b8152600401611b4c96959493929190612a5f565b60606040518083038185885af1158015611b6a573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611b8f9190612ad5565b5050506000601360006101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611beb578082015181840152602081019050611bd0565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c1382611bb1565b611c1d8185611bbc565b9350611c2d818560208601611bcd565b611c3681611bf7565b840191505092915050565b60006020820190508181036000830152611c5b8184611c08565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c9382611c68565b9050919050565b611ca381611c88565b8114611cae57600080fd5b50565b600081359050611cc081611c9a565b92915050565b6000819050919050565b611cd981611cc6565b8114611ce457600080fd5b50565b600081359050611cf681611cd0565b92915050565b60008060408385031215611d1357611d12611c63565b5b6000611d2185828601611cb1565b9250506020611d3285828601611ce7565b9150509250929050565b60008115159050919050565b611d5181611d3c565b82525050565b6000602082019050611d6c6000830184611d48565b92915050565b6000819050919050565b6000611d97611d92611d8d84611c68565b611d72565b611c68565b9050919050565b6000611da982611d7c565b9050919050565b6000611dbb82611d9e565b9050919050565b611dcb81611db0565b82525050565b6000602082019050611de66000830184611dc2565b92915050565b611df581611cc6565b82525050565b6000602082019050611e106000830184611dec565b92915050565b600080600060608486031215611e2f57611e2e611c63565b5b6000611e3d86828701611cb1565b9350506020611e4e86828701611cb1565b9250506040611e5f86828701611ce7565b9150509250925092565b600060ff82169050919050565b611e7f81611e69565b82525050565b6000602082019050611e9a6000830184611e76565b92915050565b611ea981611c88565b82525050565b6000602082019050611ec46000830184611ea0565b92915050565b600060208284031215611ee057611edf611c63565b5b6000611eee84828501611ce7565b91505092915050565b600060208284031215611f0d57611f0c611c63565b5b6000611f1b84828501611cb1565b91505092915050565b60008060408385031215611f3b57611f3a611c63565b5b6000611f4985828601611ce7565b9250506020611f5a85828601611ce7565b9150509250929050565b60008060408385031215611f7b57611f7a611c63565b5b6000611f8985828601611cb1565b9250506020611f9a85828601611cb1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611feb57607f821691505b602082108103611ffe57611ffd611fa4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061203e82611cc6565b915061204983611cc6565b925082820190508082111561206157612060612004565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006120c3602583611bbc565b91506120ce82612067565b604082019050919050565b600060208201905081810360008301526120f2816120b6565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b6000612155602d83611bbc565b9150612160826120f9565b604082019050919050565b6000602082019050818103600083015261218481612148565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006121e7602683611bbc565b91506121f28261218b565b604082019050919050565b60006020820190508181036000830152612216816121da565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612279602483611bbc565b91506122848261221d565b604082019050919050565b600060208201905081810360008301526122a88161226c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061230b602283611bbc565b9150612316826122af565b604082019050919050565b6000602082019050818103600083015261233a816122fe565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612377601d83611bbc565b915061238282612341565b602082019050919050565b600060208201905081810360008301526123a68161236a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612409602583611bbc565b9150612414826123ad565b604082019050919050565b60006020820190508181036000830152612438816123fc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061249b602383611bbc565b91506124a68261243f565b604082019050919050565b600060208201905081810360008301526124ca8161248e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061252d602683611bbc565b9150612538826124d1565b604082019050919050565b6000602082019050818103600083015261255c81612520565b9050919050565b600061256e82611cc6565b915061257983611cc6565b925082820390508181111561259157612590612004565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b60006125cd601283611bbc565b91506125d882612597565b602082019050919050565b600060208201905081810360008301526125fc816125c0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b600061265f603983611bbc565b915061266a82612603565b604082019050919050565b6000602082019050818103600083015261268e81612652565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b60006126f1603683611bbc565b91506126fc82612695565b604082019050919050565b60006020820190508181036000830152612720816126e4565b9050919050565b600061273282611cc6565b915061273d83611cc6565b925082820261274b81611cc6565b9150828204841483151761276257612761612004565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006127a382611cc6565b91506127ae83611cc6565b9250826127be576127bd612769565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127ff602083611bbc565b915061280a826127c9565b602082019050919050565b6000602082019050818103600083015261282e816127f2565b9050919050565b600060608201905061284a6000830186611dec565b6128576020830185611dec565b6128646040830184611dec565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506128d981611c9a565b92915050565b6000602082840312156128f5576128f4611c63565b5b6000612903848285016128ca565b91505092915050565b6000819050919050565b600061293161292c6129278461290c565b611d72565b611cc6565b9050919050565b61294181612916565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61297c81611c88565b82525050565b600061298e8383612973565b60208301905092915050565b6000602082019050919050565b60006129b282612947565b6129bc8185612952565b93506129c783612963565b8060005b838110156129f85781516129df8882612982565b97506129ea8361299a565b9250506001810190506129cb565b5085935050505092915050565b600060a082019050612a1a6000830188611dec565b612a276020830187612938565b8181036040830152612a3981866129a7565b9050612a486060830185611ea0565b612a556080830184611dec565b9695505050505050565b600060c082019050612a746000830189611ea0565b612a816020830188611dec565b612a8e6040830187612938565b612a9b6060830186612938565b612aa86080830185611ea0565b612ab560a0830184611dec565b979650505050505050565b600081519050612acf81611cd0565b92915050565b600080600060608486031215612aee57612aed611c63565b5b6000612afc86828701612ac0565b9350506020612b0d86828701612ac0565b9250506040612b1e86828701612ac0565b915050925092509256fea2646970667358221220b57e37b4affc565e6d62f4f55a2f1f2adf405c6496772c0312f9d73054bf293b64736f6c63430008110033

Deployed Bytecode Sourcemap

28187:8393:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17680:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20180:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28838:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19044:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21004:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31013:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22720:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28896:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28517:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36152:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18070:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15164:103;;;;;;;;;;;;;:::i;:::-;;28669:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36342:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28559:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14516:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17901:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21804:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19624:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28612:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35530:424;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35962:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19217:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15422:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28476:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17680:102;17736:13;17769:5;17762:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17680:102;:::o;20180:244::-;20301:4;20323:13;20339:12;:10;:12::i;:::-;20323:28;;20362:32;20371:5;20378:7;20387:6;20362:8;:32::i;:::-;20412:4;20405:11;;;20180:244;;;;:::o;28838:51::-;;;:::o;19044:110::-;19107:7;19134:12;;19127:19;;19044:110;:::o;21004:297::-;21137:4;21154:15;21172:12;:10;:12::i;:::-;21154:30;;21195:38;21211:4;21217:7;21226:6;21195:15;:38::i;:::-;21244:27;21254:4;21260:2;21264:6;21244:9;:27::i;:::-;21289:4;21282:11;;;21004:297;;;;;:::o;31013:92::-;31063:5;31088:9;;;;;;;;;;;31081:16;;31013:92;:::o;22720:272::-;22837:4;22859:13;22875:12;:10;:12::i;:::-;22859:28;;22898:64;22907:5;22914:7;22951:10;22923:25;22933:5;22940:7;22923:9;:25::i;:::-;:38;;;;:::i;:::-;22898:8;:64::i;:::-;22980:4;22973:11;;;22720:272;;;;:::o;28896:38::-;;;:::o;28517:35::-;;;;:::o;36152:182::-;36254:4;14402:13;:11;:13::i;:::-;36290:12:::1;36276:11;:26;;;;36322:4;36315:11;;36152:182:::0;;;:::o;18070:177::-;18189:7;18221:9;:18;18231:7;18221:18;;;;;;;;;;;;;;;;18214:25;;18070:177;;;:::o;15164:103::-;14402:13;:11;:13::i;:::-;15229:30:::1;15256:1;15229:18;:30::i;:::-;15164:103::o:0;28669:75::-;;;;;;;;;;;;;:::o;36342:198::-;36452:4;14402:13;:11;:13::i;:::-;36492:16:::1;36474:15;:34;;;;36528:4;36521:11;;36342:198:::0;;;:::o;28559:46::-;;;;:::o;14516:87::-;14562:7;14589:6;;;;;;;;;;;14582:13;;14516:87;:::o;17901:106::-;17959:13;17992:7;17985:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17901:106;:::o;21804:507::-;21926:4;21948:13;21964:12;:10;:12::i;:::-;21948:28;;21987:24;22014:25;22024:5;22031:7;22014:9;:25::i;:::-;21987:52;;22092:15;22072:16;:35;;22050:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;22208:60;22217:5;22224:7;22252:15;22233:16;:34;22208:8;:60::i;:::-;22299:4;22292:11;;;;21804:507;;;;:::o;19624:236::-;19741:4;19763:13;19779:12;:10;:12::i;:::-;19763:28;;19802;19812:5;19819:2;19823:6;19802:9;:28::i;:::-;19848:4;19841:11;;;19624:236;;;;:::o;28612:50::-;;;;:::o;35530:424::-;35676:4;14402:13;:11;:13::i;:::-;35756:3:::1;35735:16;35716;:35;;;;:::i;:::-;35715:44;;35693:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;35861:16;35843:15;:34;;;;35906:16;35888:15;:34;;;;35942:4;35935:11;;35530:424:::0;;;;:::o;35962:182::-;36065:4;14402:13;:11;:13::i;:::-;36105:9:::1;36087:15;;:27;;;;;;;;;;;;;;;;;;36132:4;36125:11;;35962:182:::0;;;:::o;19217:201::-;19351:7;19383:11;:18;19395:5;19383:18;;;;;;;;;;;;;;;:27;19402:7;19383:27;;;;;;;;;;;;;;;;19376:34;;19217:201;;;;:::o;15422:238::-;14402:13;:11;:13::i;:::-;15545:1:::1;15525:22;;:8;:22;;::::0;15503:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15624:28;15643:8;15624:18;:28::i;:::-;15422:238:::0;:::o;28476:34::-;;;;:::o;13309:98::-;13362:7;13389:10;13382:17;;13309:98;:::o;25027:380::-;25180:1;25163:19;;:5;:19;;;25155:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25261:1;25242:21;;:7;:21;;;25234:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25345:6;25315:11;:18;25327:5;25315:18;;;;;;;;;;;;;;;:27;25334:7;25315:27;;;;;;;;;;;;;;;:36;;;;25383:7;25367:32;;25376:5;25367:32;;;25392:6;25367:32;;;;;;:::i;:::-;;;;;;;;25027:380;;;:::o;25698:502::-;25833:24;25860:25;25870:5;25877:7;25860:9;:25::i;:::-;25833:52;;25920:17;25900:16;:37;25896:297;;26000:6;25980:16;:26;;25954:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;26115:51;26124:5;26131:7;26159:6;26140:16;:25;26115:8;:51::i;:::-;25896:297;25822:378;25698:502;;;:::o;31583:2547::-;31731:1;31715:18;;:4;:18;;;31707:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31808:1;31794:16;;:2;:16;;;31786:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31902:6;31883:15;31893:4;31883:9;:15::i;:::-;:25;;31861:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;32014:13;32006:21;;:4;:21;;;:44;;;;32037:13;32031:19;;:2;:19;;;32006:44;32005:67;;;;;32056:16;;;;;;;;;;;32055:17;32005:67;31987:2136;;;32111:13;32103:21;;:4;:21;;;32099:795;;32145:32;32228:18;;32180:24;32198:4;32180:9;:24::i;:::-;:66;;;;:::i;:::-;32145:101;;32319:30;;32291:24;:58;32265:194;;32392:47;32408:30;;32392:15;:47::i;:::-;32265:194;32505:24;;32482:18;;32481:48;32477:402;;32554:43;32572:24;;32554:17;:43::i;:::-;32642:24;;32620:18;;:46;;;;;;;:::i;:::-;;;;;;;;32689:9;32709:15;;;;;;;;;;;32701:29;;:100;32757:21;32701:100;;;;;;;;;;;;;;;;;;;;;;;32689:112;;32832:4;32824:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;32531:348;32477:402;32126:768;32099:795;32910:22;32951:18;:24;32970:4;32951:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;32979:18;:22;32998:2;32979:22;;;;;;;;;;;;;;;;;;;;;;;;;32951:50;32947:1043;;;33039:6;33022:23;;32947:1043;;;33126:11;;33116:6;:21;;33086:152;;;;;;;;;;;;:::i;:::-;;;;;;;;;33269:13;33261:21;;:4;:21;;;33257:253;;33369:15;;33351:13;33361:2;33351:9;:13::i;:::-;33342:6;:22;;;;:::i;:::-;33341:43;;33307:183;;;;;;;;;;;;:::i;:::-;;;;;;;;;33257:253;33530:22;33585:3;33566:15;;33557:6;:24;;;;:::i;:::-;33556:32;;;;:::i;:::-;33530:59;;33608:22;33663:3;33644:15;;33635:6;:24;;;;:::i;:::-;33634:32;;;;:::i;:::-;33608:59;;33730:14;33713;:31;;;;:::i;:::-;33703:6;:42;;;;:::i;:::-;33686:59;;33786:14;33764:18;;:36;;;;;;;:::i;:::-;;;;;;;;33821:153;33859:4;33894;33940:14;33923;:31;;;;:::i;:::-;33821:15;:153::i;:::-;33067:923;;32947:1043;34004:41;34020:4;34026:2;34030:14;34004:15;:41::i;:::-;32084:1973;31987:2136;;;34078:33;34094:4;34100:2;34104:6;34078:15;:33::i;:::-;31987:2136;31583:2547;;;:::o;14681:132::-;14756:12;:10;:12::i;:::-;14745:23;;:7;:5;:7::i;:::-;:23;;;14737:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14681:132::o;15820:191::-;15894:16;15913:6;;;;;;;;;;;15894:25;;15939:8;15930:6;;:17;;;;;;;;;;;;;;;;;;15994:8;15963:40;;15984:8;15963:40;;;;;;;;;;;;15883:128;15820:191;:::o;34138:474::-;29410:4;29391:16;;:23;;;;;;;;;;;;;;;;;;34224:12:::1;34263:1;34240:20;:24;;;;:::i;:::-;34224:41;;34276:17;34320:4;34297:20;:27;;;;:::i;:::-;34276:49;;34338:22;34363:21;34338:46;;34397:23;34415:4;34397:17;:23::i;:::-;34433:18;34479:14;34455:21;:38;;;;:::i;:::-;34433:61;;34507:36;34521:9;34532:10;34507:13;:36::i;:::-;34561:43;34576:4;34582:10;34594:9;34561:43;;;;;;;;:::i;:::-;;;;;;;;34213:399;;;;29456:5:::0;29437:16;;:24;;;;;;;;;;;;;;;;;;34138:474;:::o;34620:496::-;29410:4;29391:16;;:23;;;;;;;;;;;;;;;;;;34699:21:::1;34737:1;34723:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34699:40;;34768:4;34750;34755:1;34750:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;34794:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34784:4;34789:1;34784:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;34829:62;34846:4;34861:15;34879:11;34829:8;:62::i;:::-;34904:15;:66;;;34985:11;35011:1;35027:4;35054;35093:3;35075:15;:21;;;;:::i;:::-;34904:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;34688:428;29456:5:::0;29437:16;;:24;;;;;;;;;;;;;;;;;;34620:496;:::o;26208:776::-;26355:1;26339:18;;:4;:18;;;26331:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26432:1;26418:16;;:2;:16;;;26410:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;26487:19;26509:9;:15;26519:4;26509:15;;;;;;;;;;;;;;;;26487:37;;26572:6;26557:11;:21;;26535:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;26712:6;26698:11;:20;26680:9;:15;26690:4;26680:15;;;;;;;;;;;;;;;:38;;;;26915:6;26898:9;:13;26908:2;26898:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;26965:2;26950:26;;26959:4;26950:26;;;26969:6;26950:26;;;;;;:::i;:::-;;;;;;;;26320:664;26208:776;;;:::o;35124:398::-;29410:4;29391:16;;:23;;;;;;;;;;;;;;;;;;35241:62:::1;35258:4;35273:15;35291:11;35241:8;:62::i;:::-;35316:15;:31;;;35355:9;35388:4;35408:11;35434:1;35450::::0;35466:7:::1;:5;:7::i;:::-;35488:15;35316:198;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;29456:5:::0;29437:16;;:24;;;;;;;;;;;;;;;;;;35124:398;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:152::-;3868:9;3901:37;3932:5;3901:37;:::i;:::-;3888:50;;3792:152;;;:::o;3950:183::-;4063:63;4120:5;4063:63;:::i;:::-;4058:3;4051:76;3950:183;;:::o;4139:274::-;4258:4;4296:2;4285:9;4281:18;4273:26;;4309:97;4403:1;4392:9;4388:17;4379:6;4309:97;:::i;:::-;4139:274;;;;:::o;4419:118::-;4506:24;4524:5;4506:24;:::i;:::-;4501:3;4494:37;4419:118;;:::o;4543:222::-;4636:4;4674:2;4663:9;4659:18;4651:26;;4687:71;4755:1;4744:9;4740:17;4731:6;4687:71;:::i;:::-;4543:222;;;;:::o;4771:619::-;4848:6;4856;4864;4913:2;4901:9;4892:7;4888:23;4884:32;4881:119;;;4919:79;;:::i;:::-;4881:119;5039:1;5064:53;5109:7;5100:6;5089:9;5085:22;5064:53;:::i;:::-;5054:63;;5010:117;5166:2;5192:53;5237:7;5228:6;5217:9;5213:22;5192:53;:::i;:::-;5182:63;;5137:118;5294:2;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5265:118;4771:619;;;;;:::o;5396:86::-;5431:7;5471:4;5464:5;5460:16;5449:27;;5396:86;;;:::o;5488:112::-;5571:22;5587:5;5571:22;:::i;:::-;5566:3;5559:35;5488:112;;:::o;5606:214::-;5695:4;5733:2;5722:9;5718:18;5710:26;;5746:67;5810:1;5799:9;5795:17;5786:6;5746:67;:::i;:::-;5606:214;;;;:::o;5826:118::-;5913:24;5931:5;5913:24;:::i;:::-;5908:3;5901:37;5826:118;;:::o;5950:222::-;6043:4;6081:2;6070:9;6066:18;6058:26;;6094:71;6162:1;6151:9;6147:17;6138:6;6094:71;:::i;:::-;5950:222;;;;:::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:::-;6572:6;6621:2;6609:9;6600:7;6596:23;6592:32;6589:119;;;6627:79;;:::i;:::-;6589:119;6747:1;6772:53;6817:7;6808:6;6797:9;6793:22;6772:53;:::i;:::-;6762:63;;6718:117;6513:329;;;;:::o;6848:474::-;6916:6;6924;6973:2;6961:9;6952:7;6948:23;6944:32;6941:119;;;6979:79;;:::i;:::-;6941:119;7099:1;7124:53;7169:7;7160:6;7149:9;7145:22;7124:53;:::i;:::-;7114:63;;7070:117;7226:2;7252:53;7297:7;7288:6;7277:9;7273:22;7252:53;:::i;:::-;7242:63;;7197:118;6848:474;;;;;:::o;7328:::-;7396:6;7404;7453:2;7441:9;7432:7;7428:23;7424:32;7421:119;;;7459:79;;:::i;:::-;7421:119;7579:1;7604:53;7649:7;7640:6;7629:9;7625:22;7604:53;:::i;:::-;7594:63;;7550:117;7706:2;7732:53;7777:7;7768:6;7757:9;7753:22;7732:53;:::i;:::-;7722:63;;7677:118;7328:474;;;;;:::o;7808:180::-;7856:77;7853:1;7846:88;7953:4;7950:1;7943:15;7977:4;7974:1;7967:15;7994:320;8038:6;8075:1;8069:4;8065:12;8055:22;;8122:1;8116:4;8112:12;8143:18;8133:81;;8199:4;8191:6;8187:17;8177:27;;8133:81;8261:2;8253:6;8250:14;8230:18;8227:38;8224:84;;8280:18;;:::i;:::-;8224:84;8045:269;7994:320;;;:::o;8320:180::-;8368:77;8365:1;8358:88;8465:4;8462:1;8455:15;8489:4;8486:1;8479:15;8506:191;8546:3;8565:20;8583:1;8565:20;:::i;:::-;8560:25;;8599:20;8617:1;8599:20;:::i;:::-;8594:25;;8642:1;8639;8635:9;8628:16;;8663:3;8660:1;8657:10;8654:36;;;8670:18;;:::i;:::-;8654:36;8506:191;;;;:::o;8703:224::-;8843:34;8839:1;8831:6;8827:14;8820:58;8912:7;8907:2;8899:6;8895:15;8888:32;8703:224;:::o;8933:366::-;9075:3;9096:67;9160:2;9155:3;9096:67;:::i;:::-;9089:74;;9172:93;9261:3;9172:93;:::i;:::-;9290:2;9285:3;9281:12;9274:19;;8933:366;;;:::o;9305:419::-;9471:4;9509:2;9498:9;9494:18;9486:26;;9558:9;9552:4;9548:20;9544:1;9533:9;9529:17;9522:47;9586:131;9712:4;9586:131;:::i;:::-;9578:139;;9305:419;;;:::o;9730:232::-;9870:34;9866:1;9858:6;9854:14;9847:58;9939:15;9934:2;9926:6;9922:15;9915:40;9730:232;:::o;9968:366::-;10110:3;10131:67;10195:2;10190:3;10131:67;:::i;:::-;10124:74;;10207:93;10296:3;10207:93;:::i;:::-;10325:2;10320:3;10316:12;10309:19;;9968:366;;;:::o;10340:419::-;10506:4;10544:2;10533:9;10529:18;10521:26;;10593:9;10587:4;10583:20;10579:1;10568:9;10564:17;10557:47;10621:131;10747:4;10621:131;:::i;:::-;10613:139;;10340:419;;;:::o;10765:225::-;10905:34;10901:1;10893:6;10889:14;10882:58;10974:8;10969:2;10961:6;10957:15;10950:33;10765:225;:::o;10996:366::-;11138:3;11159:67;11223:2;11218:3;11159:67;:::i;:::-;11152:74;;11235:93;11324:3;11235:93;:::i;:::-;11353:2;11348:3;11344:12;11337:19;;10996:366;;;:::o;11368:419::-;11534:4;11572:2;11561:9;11557:18;11549:26;;11621:9;11615:4;11611:20;11607:1;11596:9;11592:17;11585:47;11649:131;11775:4;11649:131;:::i;:::-;11641:139;;11368:419;;;:::o;11793:223::-;11933:34;11929:1;11921:6;11917:14;11910:58;12002:6;11997:2;11989:6;11985:15;11978:31;11793:223;:::o;12022:366::-;12164:3;12185:67;12249:2;12244:3;12185:67;:::i;:::-;12178:74;;12261:93;12350:3;12261:93;:::i;:::-;12379:2;12374:3;12370:12;12363:19;;12022:366;;;:::o;12394:419::-;12560:4;12598:2;12587:9;12583:18;12575:26;;12647:9;12641:4;12637:20;12633:1;12622:9;12618:17;12611:47;12675:131;12801:4;12675:131;:::i;:::-;12667:139;;12394:419;;;:::o;12819:221::-;12959:34;12955:1;12947:6;12943:14;12936:58;13028:4;13023:2;13015:6;13011:15;13004:29;12819:221;:::o;13046:366::-;13188:3;13209:67;13273:2;13268:3;13209:67;:::i;:::-;13202:74;;13285:93;13374:3;13285:93;:::i;:::-;13403:2;13398:3;13394:12;13387:19;;13046:366;;;:::o;13418:419::-;13584:4;13622:2;13611:9;13607:18;13599:26;;13671:9;13665:4;13661:20;13657:1;13646:9;13642:17;13635:47;13699:131;13825:4;13699:131;:::i;:::-;13691:139;;13418:419;;;:::o;13843:179::-;13983:31;13979:1;13971:6;13967:14;13960:55;13843:179;:::o;14028:366::-;14170:3;14191:67;14255:2;14250:3;14191:67;:::i;:::-;14184:74;;14267:93;14356:3;14267:93;:::i;:::-;14385:2;14380:3;14376:12;14369:19;;14028:366;;;:::o;14400:419::-;14566:4;14604:2;14593:9;14589:18;14581:26;;14653:9;14647:4;14643:20;14639:1;14628:9;14624:17;14617:47;14681:131;14807:4;14681:131;:::i;:::-;14673:139;;14400:419;;;:::o;14825:224::-;14965:34;14961:1;14953:6;14949:14;14942:58;15034:7;15029:2;15021:6;15017:15;15010:32;14825:224;:::o;15055:366::-;15197:3;15218:67;15282:2;15277:3;15218:67;:::i;:::-;15211:74;;15294:93;15383:3;15294:93;:::i;:::-;15412:2;15407:3;15403:12;15396:19;;15055:366;;;:::o;15427:419::-;15593:4;15631:2;15620:9;15616:18;15608:26;;15680:9;15674:4;15670:20;15666:1;15655:9;15651:17;15644:47;15708:131;15834:4;15708:131;:::i;:::-;15700:139;;15427:419;;;:::o;15852:222::-;15992:34;15988:1;15980:6;15976:14;15969:58;16061:5;16056:2;16048:6;16044:15;16037:30;15852:222;:::o;16080:366::-;16222:3;16243:67;16307:2;16302:3;16243:67;:::i;:::-;16236:74;;16319:93;16408:3;16319:93;:::i;:::-;16437:2;16432:3;16428:12;16421:19;;16080:366;;;:::o;16452:419::-;16618:4;16656:2;16645:9;16641:18;16633:26;;16705:9;16699:4;16695:20;16691:1;16680:9;16676:17;16669:47;16733:131;16859:4;16733:131;:::i;:::-;16725:139;;16452:419;;;:::o;16877:225::-;17017:34;17013:1;17005:6;17001:14;16994:58;17086:8;17081:2;17073:6;17069:15;17062:33;16877:225;:::o;17108:366::-;17250:3;17271:67;17335:2;17330:3;17271:67;:::i;:::-;17264:74;;17347:93;17436:3;17347:93;:::i;:::-;17465:2;17460:3;17456:12;17449:19;;17108:366;;;:::o;17480:419::-;17646:4;17684:2;17673:9;17669:18;17661:26;;17733:9;17727:4;17723:20;17719:1;17708:9;17704:17;17697:47;17761:131;17887:4;17761:131;:::i;:::-;17753:139;;17480:419;;;:::o;17905:194::-;17945:4;17965:20;17983:1;17965:20;:::i;:::-;17960:25;;17999:20;18017:1;17999:20;:::i;:::-;17994:25;;18043:1;18040;18036:9;18028:17;;18067:1;18061:4;18058:11;18055:37;;;18072:18;;:::i;:::-;18055:37;17905:194;;;;:::o;18105:168::-;18245:20;18241:1;18233:6;18229:14;18222:44;18105:168;:::o;18279:366::-;18421:3;18442:67;18506:2;18501:3;18442:67;:::i;:::-;18435:74;;18518:93;18607:3;18518:93;:::i;:::-;18636:2;18631:3;18627:12;18620:19;;18279:366;;;:::o;18651:419::-;18817:4;18855:2;18844:9;18840:18;18832:26;;18904:9;18898:4;18894:20;18890:1;18879:9;18875:17;18868:47;18932:131;19058:4;18932:131;:::i;:::-;18924:139;;18651:419;;;:::o;19076:244::-;19216:34;19212:1;19204:6;19200:14;19193:58;19285:27;19280:2;19272:6;19268:15;19261:52;19076:244;:::o;19326:366::-;19468:3;19489:67;19553:2;19548:3;19489:67;:::i;:::-;19482:74;;19565:93;19654:3;19565:93;:::i;:::-;19683:2;19678:3;19674:12;19667:19;;19326:366;;;:::o;19698:419::-;19864:4;19902:2;19891:9;19887:18;19879:26;;19951:9;19945:4;19941:20;19937:1;19926:9;19922:17;19915:47;19979:131;20105:4;19979:131;:::i;:::-;19971:139;;19698:419;;;:::o;20123:241::-;20263:34;20259:1;20251:6;20247:14;20240:58;20332:24;20327:2;20319:6;20315:15;20308:49;20123:241;:::o;20370:366::-;20512:3;20533:67;20597:2;20592:3;20533:67;:::i;:::-;20526:74;;20609:93;20698:3;20609:93;:::i;:::-;20727:2;20722:3;20718:12;20711:19;;20370:366;;;:::o;20742:419::-;20908:4;20946:2;20935:9;20931:18;20923:26;;20995:9;20989:4;20985:20;20981:1;20970:9;20966:17;20959:47;21023:131;21149:4;21023:131;:::i;:::-;21015:139;;20742:419;;;:::o;21167:410::-;21207:7;21230:20;21248:1;21230:20;:::i;:::-;21225:25;;21264:20;21282:1;21264:20;:::i;:::-;21259:25;;21319:1;21316;21312:9;21341:30;21359:11;21341:30;:::i;:::-;21330:41;;21520:1;21511:7;21507:15;21504:1;21501:22;21481:1;21474:9;21454:83;21431:139;;21550:18;;:::i;:::-;21431:139;21215:362;21167:410;;;;:::o;21583:180::-;21631:77;21628:1;21621:88;21728:4;21725:1;21718:15;21752:4;21749:1;21742:15;21769:185;21809:1;21826:20;21844:1;21826:20;:::i;:::-;21821:25;;21860:20;21878:1;21860:20;:::i;:::-;21855:25;;21899:1;21889:35;;21904:18;;:::i;:::-;21889:35;21946:1;21943;21939:9;21934:14;;21769:185;;;;:::o;21960:182::-;22100:34;22096:1;22088:6;22084:14;22077:58;21960:182;:::o;22148:366::-;22290:3;22311:67;22375:2;22370:3;22311:67;:::i;:::-;22304:74;;22387:93;22476:3;22387:93;:::i;:::-;22505:2;22500:3;22496:12;22489:19;;22148:366;;;:::o;22520:419::-;22686:4;22724:2;22713:9;22709:18;22701:26;;22773:9;22767:4;22763:20;22759:1;22748:9;22744:17;22737:47;22801:131;22927:4;22801:131;:::i;:::-;22793:139;;22520:419;;;:::o;22945:442::-;23094:4;23132:2;23121:9;23117:18;23109:26;;23145:71;23213:1;23202:9;23198:17;23189:6;23145:71;:::i;:::-;23226:72;23294:2;23283:9;23279:18;23270:6;23226:72;:::i;:::-;23308;23376:2;23365:9;23361:18;23352:6;23308:72;:::i;:::-;22945:442;;;;;;:::o;23393:180::-;23441:77;23438:1;23431:88;23538:4;23535:1;23528:15;23562:4;23559:1;23552:15;23579:180;23627:77;23624:1;23617:88;23724:4;23721:1;23714:15;23748:4;23745:1;23738:15;23765:143;23822:5;23853:6;23847:13;23838:22;;23869:33;23896:5;23869:33;:::i;:::-;23765:143;;;;:::o;23914:351::-;23984:6;24033:2;24021:9;24012:7;24008:23;24004:32;24001:119;;;24039:79;;:::i;:::-;24001:119;24159:1;24184:64;24240:7;24231:6;24220:9;24216:22;24184:64;:::i;:::-;24174:74;;24130:128;23914:351;;;;:::o;24271:85::-;24316:7;24345:5;24334:16;;24271:85;;;:::o;24362:158::-;24420:9;24453:61;24471:42;24480:32;24506:5;24480:32;:::i;:::-;24471:42;:::i;:::-;24453:61;:::i;:::-;24440:74;;24362:158;;;:::o;24526:147::-;24621:45;24660:5;24621:45;:::i;:::-;24616:3;24609:58;24526:147;;:::o;24679:114::-;24746:6;24780:5;24774:12;24764:22;;24679:114;;;:::o;24799:184::-;24898:11;24932:6;24927:3;24920:19;24972:4;24967:3;24963:14;24948:29;;24799:184;;;;:::o;24989:132::-;25056:4;25079:3;25071:11;;25109:4;25104:3;25100:14;25092:22;;24989:132;;;:::o;25127:108::-;25204:24;25222:5;25204:24;:::i;:::-;25199:3;25192:37;25127:108;;:::o;25241:179::-;25310:10;25331:46;25373:3;25365:6;25331:46;:::i;:::-;25409:4;25404:3;25400:14;25386:28;;25241:179;;;;:::o;25426:113::-;25496:4;25528;25523:3;25519:14;25511:22;;25426:113;;;:::o;25575:732::-;25694:3;25723:54;25771:5;25723:54;:::i;:::-;25793:86;25872:6;25867:3;25793:86;:::i;:::-;25786:93;;25903:56;25953:5;25903:56;:::i;:::-;25982:7;26013:1;25998:284;26023:6;26020:1;26017:13;25998:284;;;26099:6;26093:13;26126:63;26185:3;26170:13;26126:63;:::i;:::-;26119:70;;26212:60;26265:6;26212:60;:::i;:::-;26202:70;;26058:224;26045:1;26042;26038:9;26033:14;;25998:284;;;26002:14;26298:3;26291:10;;25699:608;;;25575:732;;;;:::o;26313:831::-;26576:4;26614:3;26603:9;26599:19;26591:27;;26628:71;26696:1;26685:9;26681:17;26672:6;26628:71;:::i;:::-;26709:80;26785:2;26774:9;26770:18;26761:6;26709:80;:::i;:::-;26836:9;26830:4;26826:20;26821:2;26810:9;26806:18;26799:48;26864:108;26967:4;26958:6;26864:108;:::i;:::-;26856:116;;26982:72;27050:2;27039:9;27035:18;27026:6;26982:72;:::i;:::-;27064:73;27132:3;27121:9;27117:19;27108:6;27064:73;:::i;:::-;26313:831;;;;;;;;:::o;27150:807::-;27399:4;27437:3;27426:9;27422:19;27414:27;;27451:71;27519:1;27508:9;27504:17;27495:6;27451:71;:::i;:::-;27532:72;27600:2;27589:9;27585:18;27576:6;27532:72;:::i;:::-;27614:80;27690:2;27679:9;27675:18;27666:6;27614:80;:::i;:::-;27704;27780:2;27769:9;27765:18;27756:6;27704:80;:::i;:::-;27794:73;27862:3;27851:9;27847:19;27838:6;27794:73;:::i;:::-;27877;27945:3;27934:9;27930:19;27921:6;27877:73;:::i;:::-;27150:807;;;;;;;;;:::o;27963:143::-;28020:5;28051:6;28045:13;28036:22;;28067:33;28094:5;28067:33;:::i;:::-;27963:143;;;;:::o;28112:663::-;28200:6;28208;28216;28265:2;28253:9;28244:7;28240:23;28236:32;28233:119;;;28271:79;;:::i;:::-;28233:119;28391:1;28416:64;28472:7;28463:6;28452:9;28448:22;28416:64;:::i;:::-;28406:74;;28362:128;28529:2;28555:64;28611:7;28602:6;28591:9;28587:22;28555:64;:::i;:::-;28545:74;;28500:129;28668:2;28694:64;28750:7;28741:6;28730:9;28726:22;28694:64;:::i;:::-;28684:74;;28639:129;28112:663;;;;;:::o

Swarm Source

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