ETH Price: $3,620.91 (+5.82%)

Token

Oda Nobunaka (NOBU)
 

Overview

Max Total Supply

100,000,000 NOBU

Holders

38

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
constitutoor.eth
Balance
990,000 NOBU

Value
$0.00
0x4d1adf22e6862b48a0bd18a943fda3c121d6866e
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:
OdaNobunaga

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

// SPDX-License-Identifier: MIT

/*
Oda Nobunaga Launching on ETH $NOBU
https://t.me/OdaNobunagaETHPortal

*/

pragma solidity 0.8.17;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

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

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

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(from, to, amount);
    }
}

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract OdaNobunaga is ERC20, Ownable {
    // TOKENOMICS START ==========================================================>
    string private _name = "Oda Nobunaka";
    string private _symbol = "NOBU";
    uint8 private _decimals = 9;
    uint256 private _supply = 100000000;
    uint256 public taxForLiquidity = 0;
    uint256 public taxForMarketing = 0;
    uint256 public maxTxAmount = 2000000 * 10**_decimals;
    uint256 public maxWalletAmount = 2000000 * 10**_decimals;
    // TOKENOMICS END ============================================================>

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private _numTokensSellToAddToLiquidity = 500000 * 10**_decimals;
    uint256 private _numTokensSellToAddToETH = 200000 * 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;
    }

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

            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 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":"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":[],"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":"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"}]

60c06040526040518060400160405280600c81526020017f4f6461204e6f62756e616b610000000000000000000000000000000000000000815250600690816200004a919062000a6c565b506040518060400160405280600481526020017f4e4f4255000000000000000000000000000000000000000000000000000000008152506007908162000091919062000a6c565b506009600860006101000a81548160ff021916908360ff1602179055506305f5e1006009556000600a556000600b55600860009054906101000a900460ff16600a620000de919062000ce3565b621e8480620000ee919062000d34565b600c55600860009054906101000a900460ff16600a6200010f919062000ce3565b621e84806200011f919062000d34565b600d556000600e55600860009054906101000a900460ff16600a62000145919062000ce3565b6207a12062000155919062000d34565b601055600860009054906101000a900460ff16600a62000176919062000ce3565b62030d4062000186919062000d34565b6011553480156200019657600080fd5b5060068054620001a6906200085b565b80601f0160208091040260200160405190810160405280929190818152602001828054620001d4906200085b565b8015620002255780601f10620001f95761010080835404028352916020019162000225565b820191906000526020600020905b8154815290600101906020018083116200020757829003601f168201915b50505050506007805462000239906200085b565b80601f016020809104026020016040519081016040528092919081815260200182805462000267906200085b565b8015620002b85780601f106200028c57610100808354040283529160200191620002b8565b820191906000526020600020905b8154815290600101906020018083116200029a57829003601f168201915b50505050508160039081620002ce919062000a6c565b508060049081620002e0919062000a6c565b50505062000303620002f7620005df60201b60201c565b620005e760201b60201c565b6200034133600860009054906101000a900460ff16600a62000326919062000ce3565b60095462000335919062000d34565b620006ad60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003a6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003cc919062000de9565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000434573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200045a919062000de9565b6040518363ffffffff1660e01b81526004016200047992919062000e2c565b6020604051808303816000875af115801562000499573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004bf919062000de9565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506001600f600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062000f45565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200071f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007169062000eba565b60405180910390fd5b806002600082825462000733919062000edc565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620007e6919062000f28565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200087457607f821691505b6020821081036200088a57620008896200082c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008f47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008b5565b620009008683620008b5565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200094d62000947620009418462000918565b62000922565b62000918565b9050919050565b6000819050919050565b62000969836200092c565b62000981620009788262000954565b848454620008c2565b825550505050565b600090565b6200099862000989565b620009a58184846200095e565b505050565b5b81811015620009cd57620009c16000826200098e565b600181019050620009ab565b5050565b601f82111562000a1c57620009e68162000890565b620009f184620008a5565b8101602085101562000a01578190505b62000a1962000a1085620008a5565b830182620009aa565b50505b505050565b600082821c905092915050565b600062000a416000198460080262000a21565b1980831691505092915050565b600062000a5c838362000a2e565b9150826002028217905092915050565b62000a7782620007f2565b67ffffffffffffffff81111562000a935762000a92620007fd565b5b62000a9f82546200085b565b62000aac828285620009d1565b600060209050601f83116001811462000ae4576000841562000acf578287015190505b62000adb858262000a4e565b86555062000b4b565b601f19841662000af48662000890565b60005b8281101562000b1e5784890151825560018201915060208501945060208101905062000af7565b8683101562000b3e578489015162000b3a601f89168262000a2e565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000be15780860481111562000bb95762000bb862000b53565b5b600185161562000bc95780820291505b808102905062000bd98562000b82565b945062000b99565b94509492505050565b60008262000bfc576001905062000ccf565b8162000c0c576000905062000ccf565b816001811462000c25576002811462000c305762000c66565b600191505062000ccf565b60ff84111562000c455762000c4462000b53565b5b8360020a91508482111562000c5f5762000c5e62000b53565b5b5062000ccf565b5060208310610133831016604e8410600b841016171562000ca05782820a90508381111562000c9a5762000c9962000b53565b5b62000ccf565b62000caf848484600162000b8f565b9250905081840481111562000cc95762000cc862000b53565b5b81810290505b9392505050565b600060ff82169050919050565b600062000cf08262000918565b915062000cfd8362000cd6565b925062000d2c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000bea565b905092915050565b600062000d418262000918565b915062000d4e8362000918565b925082820262000d5e8162000918565b9150828204841483151762000d785762000d7762000b53565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000db18262000d84565b9050919050565b62000dc38162000da4565b811462000dcf57600080fd5b50565b60008151905062000de38162000db8565b92915050565b60006020828403121562000e025762000e0162000d7f565b5b600062000e128482850162000dd2565b91505092915050565b62000e268162000da4565b82525050565b600060408201905062000e43600083018562000e1b565b62000e52602083018462000e1b565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ea2601f8362000e59565b915062000eaf8262000e6a565b602082019050919050565b6000602082019050818103600083015262000ed58162000e93565b9050919050565b600062000ee98262000918565b915062000ef68362000918565b925082820190508082111562000f115762000f1062000b53565b5b92915050565b62000f228162000918565b82525050565b600060208201905062000f3f600083018462000f17565b92915050565b60805160a0516127b562000faa600039600081816106d701528181610d8901528181610dde01528181610e4c0152610ff701526000818161063a01528181611409015281816114ea0152818161151101528181611850015261187701526127b56000f3fe6080604052600436106101395760003560e01c8063715018a6116100ab578063a457c2d71161006f578063a457c2d71461044d578063a9059cbb1461048a578063aa4bde28146104c7578063dd62ed3e146104f2578063f2fde38b1461052f578063f345bd851461055857610140565b8063715018a61461037857806381bfdcca1461038f5780638c0b5e22146103cc5780638da5cb5b146103f757806395d89b411461042257610140565b8063313ce567116100fd578063313ce56714610240578063395093511461026b57806349bd5a5e146102a8578063527ffabd146102d3578063677daa57146102fe57806370a082311461033b57610140565b806306fdde0314610145578063095ea7b3146101705780631694505e146101ad57806318160ddd146101d857806323b872dd1461020357610140565b3661014057005b600080fd5b34801561015157600080fd5b5061015a610583565b60405161016791906119d6565b60405180910390f35b34801561017c57600080fd5b5061019760048036038101906101929190611a91565b610615565b6040516101a49190611aec565b60405180910390f35b3480156101b957600080fd5b506101c2610638565b6040516101cf9190611b66565b60405180910390f35b3480156101e457600080fd5b506101ed61065c565b6040516101fa9190611b90565b60405180910390f35b34801561020f57600080fd5b5061022a60048036038101906102259190611bab565b610666565b6040516102379190611aec565b60405180910390f35b34801561024c57600080fd5b50610255610695565b6040516102629190611c1a565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d9190611a91565b61069e565b60405161029f9190611aec565b60405180910390f35b3480156102b457600080fd5b506102bd6106d5565b6040516102ca9190611c44565b60405180910390f35b3480156102df57600080fd5b506102e86106f9565b6040516102f59190611b90565b60405180910390f35b34801561030a57600080fd5b5061032560048036038101906103209190611c5f565b6106ff565b6040516103329190611aec565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d9190611c8c565b610719565b60405161036f9190611b90565b60405180910390f35b34801561038457600080fd5b5061038d610761565b005b34801561039b57600080fd5b506103b660048036038101906103b19190611c5f565b610775565b6040516103c39190611aec565b60405180910390f35b3480156103d857600080fd5b506103e161078f565b6040516103ee9190611b90565b60405180910390f35b34801561040357600080fd5b5061040c610795565b6040516104199190611c44565b60405180910390f35b34801561042e57600080fd5b506104376107bf565b60405161044491906119d6565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f9190611a91565b610851565b6040516104819190611aec565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac9190611a91565b6108c8565b6040516104be9190611aec565b60405180910390f35b3480156104d357600080fd5b506104dc6108eb565b6040516104e99190611b90565b60405180910390f35b3480156104fe57600080fd5b5061051960048036038101906105149190611cb9565b6108f1565b6040516105269190611b90565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190611c8c565b610978565b005b34801561056457600080fd5b5061056d6109fb565b60405161057a9190611b90565b60405180910390f35b60606003805461059290611d28565b80601f01602080910402602001604051908101604052809291908181526020018280546105be90611d28565b801561060b5780601f106105e05761010080835404028352916020019161060b565b820191906000526020600020905b8154815290600101906020018083116105ee57829003601f168201915b5050505050905090565b600080610620610a01565b905061062d818585610a09565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600080610671610a01565b905061067e858285610bd2565b610689858585610c5e565b60019150509392505050565b60006009905090565b6000806106a9610a01565b90506106ca8185856106bb85896108f1565b6106c59190611d88565b610a09565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5481565b600061070961114a565b81600c8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61076961114a565b61077360006111c8565b565b600061077f61114a565b81600d8190555060019050919050565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107ce90611d28565b80601f01602080910402602001604051908101604052809291908181526020018280546107fa90611d28565b80156108475780601f1061081c57610100808354040283529160200191610847565b820191906000526020600020905b81548152906001019060200180831161082a57829003601f168201915b5050505050905090565b60008061085c610a01565b9050600061086a82866108f1565b9050838110156108af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a690611e2e565b60405180910390fd5b6108bc8286868403610a09565b60019250505092915050565b6000806108d3610a01565b90506108e0818585610c5e565b600191505092915050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61098061114a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e690611ec0565b60405180910390fd5b6109f8816111c8565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f90611f52565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade90611fe4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bc59190611b90565b60405180910390a3505050565b6000610bde84846108f1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c585781811015610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190612050565b60405180910390fd5b610c578484848403610a09565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc4906120e2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390612174565b60405180910390fd5b80610d4684610719565b1015610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e90612206565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610e2c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015610e455750601260009054906101000a900460ff16155b15611139577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610f00576000600e54610eab30610719565b610eb59190612226565b90506010548110610ecc57610ecb60105461128e565b5b601154600e5410610efe57610ee260115461134f565b601154600e6000828254610ef69190612226565b925050819055505b505b6000600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610fa35750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610fb057819050611128565b600c54821115610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec906122cc565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036110a157600d5461105484610719565b8361105f9190611d88565b11156110a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110979061235e565b60405180910390fd5b5b60006064600b54846110b3919061237e565b6110bd91906123ef565b905060006064600a54856110d1919061237e565b6110db91906123ef565b905080826110e99190611d88565b846110f49190612226565b925081600e60008282546111089190611d88565b92505081905550611125863083856111209190611d88565b6115cf565b50505b6111338484836115cf565b50611145565b6111448383836115cf565b5b505050565b611152610a01565b73ffffffffffffffffffffffffffffffffffffffff16611170610795565b73ffffffffffffffffffffffffffffffffffffffff16146111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd9061246c565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601260006101000a81548160ff02191690831515021790555060006002826112b891906123ef565b9050600081836112c89190612226565b905060004790506112d88361134f565b600081476112e69190612226565b90506112f2838261182f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618482856040516113259392919061248c565b60405180910390a1505050506000601260006101000a81548160ff02191690831515021790555050565b6001601260006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611387576113866124c3565b5b6040519080825280602002602001820160405280156113b55781602001602082028036833780820191505090505b50905030816000815181106113cd576113cc6124f2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611472573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114969190612536565b816001815181106114aa576114a96124f2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061150f307f000000000000000000000000000000000000000000000000000000000000000084610a09565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c4261155e9190611d88565b6040518663ffffffff1660e01b815260040161157e95949392919061265c565b600060405180830381600087803b15801561159857600080fd5b505af11580156115ac573d6000803e3d6000fd5b50505050506000601260006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361163e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611635906120e2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a490612174565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172a90612206565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118219190611b90565b60405180910390a350505050565b6001601260006101000a81548160ff021916908315150217905550611875307f000000000000000000000000000000000000000000000000000000000000000084610a09565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806118bf610795565b426040518863ffffffff1660e01b81526004016118e1969594939291906126b6565b60606040518083038185885af11580156118ff573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611924919061272c565b5050506000601260006101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611980578082015181840152602081019050611965565b60008484015250505050565b6000601f19601f8301169050919050565b60006119a882611946565b6119b28185611951565b93506119c2818560208601611962565b6119cb8161198c565b840191505092915050565b600060208201905081810360008301526119f0818461199d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a28826119fd565b9050919050565b611a3881611a1d565b8114611a4357600080fd5b50565b600081359050611a5581611a2f565b92915050565b6000819050919050565b611a6e81611a5b565b8114611a7957600080fd5b50565b600081359050611a8b81611a65565b92915050565b60008060408385031215611aa857611aa76119f8565b5b6000611ab685828601611a46565b9250506020611ac785828601611a7c565b9150509250929050565b60008115159050919050565b611ae681611ad1565b82525050565b6000602082019050611b016000830184611add565b92915050565b6000819050919050565b6000611b2c611b27611b22846119fd565b611b07565b6119fd565b9050919050565b6000611b3e82611b11565b9050919050565b6000611b5082611b33565b9050919050565b611b6081611b45565b82525050565b6000602082019050611b7b6000830184611b57565b92915050565b611b8a81611a5b565b82525050565b6000602082019050611ba56000830184611b81565b92915050565b600080600060608486031215611bc457611bc36119f8565b5b6000611bd286828701611a46565b9350506020611be386828701611a46565b9250506040611bf486828701611a7c565b9150509250925092565b600060ff82169050919050565b611c1481611bfe565b82525050565b6000602082019050611c2f6000830184611c0b565b92915050565b611c3e81611a1d565b82525050565b6000602082019050611c596000830184611c35565b92915050565b600060208284031215611c7557611c746119f8565b5b6000611c8384828501611a7c565b91505092915050565b600060208284031215611ca257611ca16119f8565b5b6000611cb084828501611a46565b91505092915050565b60008060408385031215611cd057611ccf6119f8565b5b6000611cde85828601611a46565b9250506020611cef85828601611a46565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611d4057607f821691505b602082108103611d5357611d52611cf9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d9382611a5b565b9150611d9e83611a5b565b9250828201905080821115611db657611db5611d59565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e18602583611951565b9150611e2382611dbc565b604082019050919050565b60006020820190508181036000830152611e4781611e0b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611eaa602683611951565b9150611eb582611e4e565b604082019050919050565b60006020820190508181036000830152611ed981611e9d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611f3c602483611951565b9150611f4782611ee0565b604082019050919050565b60006020820190508181036000830152611f6b81611f2f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611fce602283611951565b9150611fd982611f72565b604082019050919050565b60006020820190508181036000830152611ffd81611fc1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061203a601d83611951565b915061204582612004565b602082019050919050565b600060208201905081810360008301526120698161202d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006120cc602583611951565b91506120d782612070565b604082019050919050565b600060208201905081810360008301526120fb816120bf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061215e602383611951565b915061216982612102565b604082019050919050565b6000602082019050818103600083015261218d81612151565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006121f0602683611951565b91506121fb82612194565b604082019050919050565b6000602082019050818103600083015261221f816121e3565b9050919050565b600061223182611a5b565b915061223c83611a5b565b925082820390508181111561225457612253611d59565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006122b6603983611951565b91506122c18261225a565b604082019050919050565b600060208201905081810360008301526122e5816122a9565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612348603683611951565b9150612353826122ec565b604082019050919050565b600060208201905081810360008301526123778161233b565b9050919050565b600061238982611a5b565b915061239483611a5b565b92508282026123a281611a5b565b915082820484148315176123b9576123b8611d59565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006123fa82611a5b565b915061240583611a5b565b925082612415576124146123c0565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612456602083611951565b915061246182612420565b602082019050919050565b6000602082019050818103600083015261248581612449565b9050919050565b60006060820190506124a16000830186611b81565b6124ae6020830185611b81565b6124bb6040830184611b81565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061253081611a2f565b92915050565b60006020828403121561254c5761254b6119f8565b5b600061255a84828501612521565b91505092915050565b6000819050919050565b600061258861258361257e84612563565b611b07565b611a5b565b9050919050565b6125988161256d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6125d381611a1d565b82525050565b60006125e583836125ca565b60208301905092915050565b6000602082019050919050565b60006126098261259e565b61261381856125a9565b935061261e836125ba565b8060005b8381101561264f57815161263688826125d9565b9750612641836125f1565b925050600181019050612622565b5085935050505092915050565b600060a0820190506126716000830188611b81565b61267e602083018761258f565b818103604083015261269081866125fe565b905061269f6060830185611c35565b6126ac6080830184611b81565b9695505050505050565b600060c0820190506126cb6000830189611c35565b6126d86020830188611b81565b6126e5604083018761258f565b6126f2606083018661258f565b6126ff6080830185611c35565b61270c60a0830184611b81565b979650505050505050565b60008151905061272681611a65565b92915050565b600080600060608486031215612745576127446119f8565b5b600061275386828701612717565b935050602061276486828701612717565b925050604061277586828701612717565b915050925092509256fea2646970667358221220f07759149ff96d2754657047cf2f63996302d5cb788be900b99e1d59438e4a8964736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101395760003560e01c8063715018a6116100ab578063a457c2d71161006f578063a457c2d71461044d578063a9059cbb1461048a578063aa4bde28146104c7578063dd62ed3e146104f2578063f2fde38b1461052f578063f345bd851461055857610140565b8063715018a61461037857806381bfdcca1461038f5780638c0b5e22146103cc5780638da5cb5b146103f757806395d89b411461042257610140565b8063313ce567116100fd578063313ce56714610240578063395093511461026b57806349bd5a5e146102a8578063527ffabd146102d3578063677daa57146102fe57806370a082311461033b57610140565b806306fdde0314610145578063095ea7b3146101705780631694505e146101ad57806318160ddd146101d857806323b872dd1461020357610140565b3661014057005b600080fd5b34801561015157600080fd5b5061015a610583565b60405161016791906119d6565b60405180910390f35b34801561017c57600080fd5b5061019760048036038101906101929190611a91565b610615565b6040516101a49190611aec565b60405180910390f35b3480156101b957600080fd5b506101c2610638565b6040516101cf9190611b66565b60405180910390f35b3480156101e457600080fd5b506101ed61065c565b6040516101fa9190611b90565b60405180910390f35b34801561020f57600080fd5b5061022a60048036038101906102259190611bab565b610666565b6040516102379190611aec565b60405180910390f35b34801561024c57600080fd5b50610255610695565b6040516102629190611c1a565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d9190611a91565b61069e565b60405161029f9190611aec565b60405180910390f35b3480156102b457600080fd5b506102bd6106d5565b6040516102ca9190611c44565b60405180910390f35b3480156102df57600080fd5b506102e86106f9565b6040516102f59190611b90565b60405180910390f35b34801561030a57600080fd5b5061032560048036038101906103209190611c5f565b6106ff565b6040516103329190611aec565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d9190611c8c565b610719565b60405161036f9190611b90565b60405180910390f35b34801561038457600080fd5b5061038d610761565b005b34801561039b57600080fd5b506103b660048036038101906103b19190611c5f565b610775565b6040516103c39190611aec565b60405180910390f35b3480156103d857600080fd5b506103e161078f565b6040516103ee9190611b90565b60405180910390f35b34801561040357600080fd5b5061040c610795565b6040516104199190611c44565b60405180910390f35b34801561042e57600080fd5b506104376107bf565b60405161044491906119d6565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f9190611a91565b610851565b6040516104819190611aec565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac9190611a91565b6108c8565b6040516104be9190611aec565b60405180910390f35b3480156104d357600080fd5b506104dc6108eb565b6040516104e99190611b90565b60405180910390f35b3480156104fe57600080fd5b5061051960048036038101906105149190611cb9565b6108f1565b6040516105269190611b90565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190611c8c565b610978565b005b34801561056457600080fd5b5061056d6109fb565b60405161057a9190611b90565b60405180910390f35b60606003805461059290611d28565b80601f01602080910402602001604051908101604052809291908181526020018280546105be90611d28565b801561060b5780601f106105e05761010080835404028352916020019161060b565b820191906000526020600020905b8154815290600101906020018083116105ee57829003601f168201915b5050505050905090565b600080610620610a01565b905061062d818585610a09565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600080610671610a01565b905061067e858285610bd2565b610689858585610c5e565b60019150509392505050565b60006009905090565b6000806106a9610a01565b90506106ca8185856106bb85896108f1565b6106c59190611d88565b610a09565b600191505092915050565b7f00000000000000000000000037dfc187a80263194c5b157975a3d82590f5e9a981565b600b5481565b600061070961114a565b81600c8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61076961114a565b61077360006111c8565b565b600061077f61114a565b81600d8190555060019050919050565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107ce90611d28565b80601f01602080910402602001604051908101604052809291908181526020018280546107fa90611d28565b80156108475780601f1061081c57610100808354040283529160200191610847565b820191906000526020600020905b81548152906001019060200180831161082a57829003601f168201915b5050505050905090565b60008061085c610a01565b9050600061086a82866108f1565b9050838110156108af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a690611e2e565b60405180910390fd5b6108bc8286868403610a09565b60019250505092915050565b6000806108d3610a01565b90506108e0818585610c5e565b600191505092915050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61098061114a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e690611ec0565b60405180910390fd5b6109f8816111c8565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f90611f52565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade90611fe4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bc59190611b90565b60405180910390a3505050565b6000610bde84846108f1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c585781811015610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190612050565b60405180910390fd5b610c578484848403610a09565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc4906120e2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390612174565b60405180910390fd5b80610d4684610719565b1015610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e90612206565b60405180910390fd5b7f00000000000000000000000037dfc187a80263194c5b157975a3d82590f5e9a973ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610e2c57507f00000000000000000000000037dfc187a80263194c5b157975a3d82590f5e9a973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015610e455750601260009054906101000a900460ff16155b15611139577f00000000000000000000000037dfc187a80263194c5b157975a3d82590f5e9a973ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610f00576000600e54610eab30610719565b610eb59190612226565b90506010548110610ecc57610ecb60105461128e565b5b601154600e5410610efe57610ee260115461134f565b601154600e6000828254610ef69190612226565b925050819055505b505b6000600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610fa35750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610fb057819050611128565b600c54821115610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec906122cc565b60405180910390fd5b7f00000000000000000000000037dfc187a80263194c5b157975a3d82590f5e9a973ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036110a157600d5461105484610719565b8361105f9190611d88565b11156110a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110979061235e565b60405180910390fd5b5b60006064600b54846110b3919061237e565b6110bd91906123ef565b905060006064600a54856110d1919061237e565b6110db91906123ef565b905080826110e99190611d88565b846110f49190612226565b925081600e60008282546111089190611d88565b92505081905550611125863083856111209190611d88565b6115cf565b50505b6111338484836115cf565b50611145565b6111448383836115cf565b5b505050565b611152610a01565b73ffffffffffffffffffffffffffffffffffffffff16611170610795565b73ffffffffffffffffffffffffffffffffffffffff16146111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd9061246c565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601260006101000a81548160ff02191690831515021790555060006002826112b891906123ef565b9050600081836112c89190612226565b905060004790506112d88361134f565b600081476112e69190612226565b90506112f2838261182f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618482856040516113259392919061248c565b60405180910390a1505050506000601260006101000a81548160ff02191690831515021790555050565b6001601260006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611387576113866124c3565b5b6040519080825280602002602001820160405280156113b55781602001602082028036833780820191505090505b50905030816000815181106113cd576113cc6124f2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611472573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114969190612536565b816001815181106114aa576114a96124f2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061150f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610a09565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c4261155e9190611d88565b6040518663ffffffff1660e01b815260040161157e95949392919061265c565b600060405180830381600087803b15801561159857600080fd5b505af11580156115ac573d6000803e3d6000fd5b50505050506000601260006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361163e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611635906120e2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a490612174565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172a90612206565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118219190611b90565b60405180910390a350505050565b6001601260006101000a81548160ff021916908315150217905550611875307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610a09565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806118bf610795565b426040518863ffffffff1660e01b81526004016118e1969594939291906126b6565b60606040518083038185885af11580156118ff573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611924919061272c565b5050506000601260006101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611980578082015181840152602081019050611965565b60008484015250505050565b6000601f19601f8301169050919050565b60006119a882611946565b6119b28185611951565b93506119c2818560208601611962565b6119cb8161198c565b840191505092915050565b600060208201905081810360008301526119f0818461199d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a28826119fd565b9050919050565b611a3881611a1d565b8114611a4357600080fd5b50565b600081359050611a5581611a2f565b92915050565b6000819050919050565b611a6e81611a5b565b8114611a7957600080fd5b50565b600081359050611a8b81611a65565b92915050565b60008060408385031215611aa857611aa76119f8565b5b6000611ab685828601611a46565b9250506020611ac785828601611a7c565b9150509250929050565b60008115159050919050565b611ae681611ad1565b82525050565b6000602082019050611b016000830184611add565b92915050565b6000819050919050565b6000611b2c611b27611b22846119fd565b611b07565b6119fd565b9050919050565b6000611b3e82611b11565b9050919050565b6000611b5082611b33565b9050919050565b611b6081611b45565b82525050565b6000602082019050611b7b6000830184611b57565b92915050565b611b8a81611a5b565b82525050565b6000602082019050611ba56000830184611b81565b92915050565b600080600060608486031215611bc457611bc36119f8565b5b6000611bd286828701611a46565b9350506020611be386828701611a46565b9250506040611bf486828701611a7c565b9150509250925092565b600060ff82169050919050565b611c1481611bfe565b82525050565b6000602082019050611c2f6000830184611c0b565b92915050565b611c3e81611a1d565b82525050565b6000602082019050611c596000830184611c35565b92915050565b600060208284031215611c7557611c746119f8565b5b6000611c8384828501611a7c565b91505092915050565b600060208284031215611ca257611ca16119f8565b5b6000611cb084828501611a46565b91505092915050565b60008060408385031215611cd057611ccf6119f8565b5b6000611cde85828601611a46565b9250506020611cef85828601611a46565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611d4057607f821691505b602082108103611d5357611d52611cf9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d9382611a5b565b9150611d9e83611a5b565b9250828201905080821115611db657611db5611d59565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e18602583611951565b9150611e2382611dbc565b604082019050919050565b60006020820190508181036000830152611e4781611e0b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611eaa602683611951565b9150611eb582611e4e565b604082019050919050565b60006020820190508181036000830152611ed981611e9d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611f3c602483611951565b9150611f4782611ee0565b604082019050919050565b60006020820190508181036000830152611f6b81611f2f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611fce602283611951565b9150611fd982611f72565b604082019050919050565b60006020820190508181036000830152611ffd81611fc1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061203a601d83611951565b915061204582612004565b602082019050919050565b600060208201905081810360008301526120698161202d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006120cc602583611951565b91506120d782612070565b604082019050919050565b600060208201905081810360008301526120fb816120bf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061215e602383611951565b915061216982612102565b604082019050919050565b6000602082019050818103600083015261218d81612151565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006121f0602683611951565b91506121fb82612194565b604082019050919050565b6000602082019050818103600083015261221f816121e3565b9050919050565b600061223182611a5b565b915061223c83611a5b565b925082820390508181111561225457612253611d59565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006122b6603983611951565b91506122c18261225a565b604082019050919050565b600060208201905081810360008301526122e5816122a9565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612348603683611951565b9150612353826122ec565b604082019050919050565b600060208201905081810360008301526123778161233b565b9050919050565b600061238982611a5b565b915061239483611a5b565b92508282026123a281611a5b565b915082820484148315176123b9576123b8611d59565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006123fa82611a5b565b915061240583611a5b565b925082612415576124146123c0565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612456602083611951565b915061246182612420565b602082019050919050565b6000602082019050818103600083015261248581612449565b9050919050565b60006060820190506124a16000830186611b81565b6124ae6020830185611b81565b6124bb6040830184611b81565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061253081611a2f565b92915050565b60006020828403121561254c5761254b6119f8565b5b600061255a84828501612521565b91505092915050565b6000819050919050565b600061258861258361257e84612563565b611b07565b611a5b565b9050919050565b6125988161256d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6125d381611a1d565b82525050565b60006125e583836125ca565b60208301905092915050565b6000602082019050919050565b60006126098261259e565b61261381856125a9565b935061261e836125ba565b8060005b8381101561264f57815161263688826125d9565b9750612641836125f1565b925050600181019050612622565b5085935050505092915050565b600060a0820190506126716000830188611b81565b61267e602083018761258f565b818103604083015261269081866125fe565b905061269f6060830185611c35565b6126ac6080830184611b81565b9695505050505050565b600060c0820190506126cb6000830189611c35565b6126d86020830188611b81565b6126e5604083018761258f565b6126f2606083018661258f565b6126ff6080830185611c35565b61270c60a0830184611b81565b979650505050505050565b60008151905061272681611a65565b92915050565b600080600060608486031215612745576127446119f8565b5b600061275386828701612717565b935050602061276486828701612717565b925050604061277586828701612717565b915050925092509256fea2646970667358221220f07759149ff96d2754657047cf2f63996302d5cb788be900b99e1d59438e4a8964736f6c63430008110033

Deployed Bytecode Sourcemap

28228:6339:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17947:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20221:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28808:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19085:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21045:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18928:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22761:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28866:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28558:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34139:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18112:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15206:103;;;;;;;;;;;;;:::i;:::-;;34329:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28599:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14558:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17771:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21845:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19665:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28658:56;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19258:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15464:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28517:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17947:102;18003:13;18036:5;18029:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17947:102;:::o;20221:244::-;20342:4;20364:13;20380:12;:10;:12::i;:::-;20364:28;;20403:32;20412:5;20419:7;20428:6;20403:8;:32::i;:::-;20453:4;20446:11;;;20221:244;;;;:::o;28808:51::-;;;:::o;19085:110::-;19148:7;19175:12;;19168:19;;19085:110;:::o;21045:297::-;21178:4;21195:15;21213:12;:10;:12::i;:::-;21195:30;;21236:38;21252:4;21258:7;21267:6;21236:15;:38::i;:::-;21285:27;21295:4;21301:2;21305:6;21285:9;:27::i;:::-;21330:4;21323:11;;;21045:297;;;;;:::o;18928:92::-;18986:5;19011:1;19004:8;;18928:92;:::o;22761:272::-;22878:4;22900:13;22916:12;:10;:12::i;:::-;22900:28;;22939:64;22948:5;22955:7;22992:10;22964:25;22974:5;22981:7;22964:9;:25::i;:::-;:38;;;;:::i;:::-;22939:8;:64::i;:::-;23021:4;23014:11;;;22761:272;;;;:::o;28866:38::-;;;:::o;28558:34::-;;;;:::o;34139:182::-;34241:4;14444:13;:11;:13::i;:::-;34277:12:::1;34263:11;:26;;;;34309:4;34302:11;;34139:182:::0;;;:::o;18112:177::-;18231:7;18263:9;:18;18273:7;18263:18;;;;;;;;;;;;;;;;18256:25;;18112:177;;;:::o;15206:103::-;14444:13;:11;:13::i;:::-;15271:30:::1;15298:1;15271:18;:30::i;:::-;15206:103::o:0;34329:198::-;34439:4;14444:13;:11;:13::i;:::-;34479:16:::1;34461:15;:34;;;;34515:4;34508:11;;34329:198:::0;;;:::o;28599:52::-;;;;:::o;14558:87::-;14604:7;14631:6;;;;;;;;;;;14624:13;;14558:87;:::o;17771:106::-;17829:13;17862:7;17855:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17771:106;:::o;21845:507::-;21967:4;21989:13;22005:12;:10;:12::i;:::-;21989:28;;22028:24;22055:25;22065:5;22072:7;22055:9;:25::i;:::-;22028:52;;22133:15;22113:16;:35;;22091:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;22249:60;22258:5;22265:7;22293:15;22274:16;:34;22249:8;:60::i;:::-;22340:4;22333:11;;;;21845:507;;;;:::o;19665:236::-;19782:4;19804:13;19820:12;:10;:12::i;:::-;19804:28;;19843;19853:5;19860:2;19864:6;19843:9;:28::i;:::-;19889:4;19882:11;;;19665:236;;;;:::o;28658:56::-;;;;:::o;19258:201::-;19392:7;19424:11;:18;19436:5;19424:18;;;;;;;;;;;;;;;:27;19443:7;19424:27;;;;;;;;;;;;;;;;19417:34;;19258:201;;;;:::o;15464:238::-;14444:13;:11;:13::i;:::-;15587:1:::1;15567:22;;:8;:22;;::::0;15545:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15666:28;15685:8;15666:18;:28::i;:::-;15464:238:::0;:::o;28517:34::-;;;;:::o;13351:98::-;13404:7;13431:10;13424:17;;13351:98;:::o;25068:380::-;25221:1;25204:19;;:5;:19;;;25196:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25302:1;25283:21;;:7;:21;;;25275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25386:6;25356:11;:18;25368:5;25356:18;;;;;;;;;;;;;;;:27;25375:7;25356:27;;;;;;;;;;;;;;;:36;;;;25424:7;25408:32;;25417:5;25408:32;;;25433:6;25408:32;;;;;;:::i;:::-;;;;;;;;25068:380;;;:::o;25739:502::-;25874:24;25901:25;25911:5;25918:7;25901:9;:25::i;:::-;25874:52;;25961:17;25941:16;:37;25937:297;;26041:6;26021:16;:26;;25995:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;26156:51;26165:5;26172:7;26200:6;26181:16;:25;26156:8;:51::i;:::-;25937:297;25863:378;25739:502;;;:::o;30735:2004::-;30849:1;30833:18;;:4;:18;;;30825:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30926:1;30912:16;;:2;:16;;;30904:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31006:6;30987:15;30997:4;30987:9;:15::i;:::-;:25;;30979:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;31081:13;31073:21;;:4;:21;;;:44;;;;31104:13;31098:19;;:2;:19;;;31073:44;31072:67;;;;;31123:16;;;;;;;;;;;31122:17;31072:67;31068:1664;;;31168:13;31160:21;;:4;:21;;;31156:541;;31202:32;31264:18;;31237:24;31255:4;31237:9;:24::i;:::-;:45;;;;:::i;:::-;31202:80;;31333:30;;31305:24;:58;31301:154;;31388:47;31404:30;;31388:15;:47::i;:::-;31301:154;31501:24;;31478:18;;31477:48;31473:209;;31550:43;31568:24;;31550:17;:43::i;:::-;31638:24;;31616:18;;:46;;;;;;;:::i;:::-;;;;;;;;31473:209;31183:514;31156:541;31713:22;31754:18;:24;31773:4;31754:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;31782:18;:22;31801:2;31782:22;;;;;;;;;;;;;;;;;;;;;;;;;31754:50;31750:839;;;31842:6;31825:23;;31750:839;;;31921:11;;31911:6;:21;;31903:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;32024:13;32016:21;;:4;:21;;;32013:178;;32097:15;;32079:13;32089:2;32079:9;:13::i;:::-;32070:6;:22;;;;:::i;:::-;32069:43;;32061:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32013:178;32211:22;32266:3;32247:15;;32238:6;:24;;;;:::i;:::-;32237:32;;;;:::i;:::-;32211:59;;32289:22;32344:3;32325:15;;32316:6;:24;;;;:::i;:::-;32315:32;;;;:::i;:::-;32289:59;;32411:14;32394;:31;;;;:::i;:::-;32384:6;:42;;;;:::i;:::-;32367:59;;32467:14;32445:18;;:36;;;;;;;:::i;:::-;;;;;;;;32502:71;32518:4;32532;32557:14;32540;:31;;;;:::i;:::-;32502:15;:71::i;:::-;31884:705;;31750:839;32603:41;32619:4;32625:2;32629:14;32603:15;:41::i;:::-;31141:1515;31068:1664;;;32687:33;32703:4;32709:2;32713:6;32687:15;:33::i;:::-;31068:1664;30735:2004;;;:::o;14723:132::-;14798:12;:10;:12::i;:::-;14787:23;;:7;:5;:7::i;:::-;:23;;;14779:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14723:132::o;15862:191::-;15936:16;15955:6;;;;;;;;;;;15936:25;;15981:8;15972:6;;:17;;;;;;;;;;;;;;;;;;16036:8;16005:40;;16026:8;16005:40;;;;;;;;;;;;15925:128;15862:191;:::o;32747:474::-;29384:4;29365:16;;:23;;;;;;;;;;;;;;;;;;32833:12:::1;32872:1;32849:20;:24;;;;:::i;:::-;32833:41;;32885:17;32929:4;32906:20;:27;;;;:::i;:::-;32885:49;;32947:22;32972:21;32947:46;;33006:23;33024:4;33006:17;:23::i;:::-;33042:18;33088:14;33064:21;:38;;;;:::i;:::-;33042:61;;33116:36;33130:9;33141:10;33116:13;:36::i;:::-;33170:43;33185:4;33191:10;33203:9;33170:43;;;;;;;;:::i;:::-;;;;;;;;32822:399;;;;29430:5:::0;29411:16;;:24;;;;;;;;;;;;;;;;;;32747:474;:::o;33229:496::-;29384:4;29365:16;;:23;;;;;;;;;;;;;;;;;;33308:21:::1;33346:1;33332:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33308:40;;33377:4;33359;33364:1;33359:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;33403:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33393:4;33398:1;33393:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;33438:62;33455:4;33470:15;33488:11;33438:8;:62::i;:::-;33513:15;:66;;;33594:11;33620:1;33636:4;33663;33702:3;33684:15;:21;;;;:::i;:::-;33513:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;33297:428;29430:5:::0;29411:16;;:24;;;;;;;;;;;;;;;;;;33229:496;:::o;26249:776::-;26396:1;26380:18;;:4;:18;;;26372:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26473:1;26459:16;;:2;:16;;;26451:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;26528:19;26550:9;:15;26560:4;26550:15;;;;;;;;;;;;;;;;26528:37;;26613:6;26598:11;:21;;26576:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;26753:6;26739:11;:20;26721:9;:15;26731:4;26721:15;;;;;;;;;;;;;;;:38;;;;26956:6;26939:9;:13;26949:2;26939:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;27006:2;26991:26;;27000:4;26991:26;;;27010:6;26991:26;;;;;;:::i;:::-;;;;;;;;26361:664;26249:776;;;:::o;33733:398::-;29384:4;29365:16;;:23;;;;;;;;;;;;;;;;;;33850:62:::1;33867:4;33882:15;33900:11;33850:8;:62::i;:::-;33925:15;:31;;;33964:9;33997:4;34017:11;34043:1;34059::::0;34075:7:::1;:5;:7::i;:::-;34097:15;33925:198;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;29430:5:::0;29411:16;;:24;;;;;;;;;;;;;;;;;;33733: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:180::-;7376:77;7373:1;7366:88;7473:4;7470:1;7463:15;7497:4;7494:1;7487:15;7514:320;7558:6;7595:1;7589:4;7585:12;7575:22;;7642:1;7636:4;7632:12;7663:18;7653:81;;7719:4;7711:6;7707:17;7697:27;;7653:81;7781:2;7773:6;7770:14;7750:18;7747:38;7744:84;;7800:18;;:::i;:::-;7744:84;7565:269;7514:320;;;:::o;7840:180::-;7888:77;7885:1;7878:88;7985:4;7982:1;7975:15;8009:4;8006:1;7999:15;8026:191;8066:3;8085:20;8103:1;8085:20;:::i;:::-;8080:25;;8119:20;8137:1;8119:20;:::i;:::-;8114:25;;8162:1;8159;8155:9;8148:16;;8183:3;8180:1;8177:10;8174:36;;;8190:18;;:::i;:::-;8174:36;8026:191;;;;:::o;8223:224::-;8363:34;8359:1;8351:6;8347:14;8340:58;8432:7;8427:2;8419:6;8415:15;8408:32;8223:224;:::o;8453:366::-;8595:3;8616:67;8680:2;8675:3;8616:67;:::i;:::-;8609:74;;8692:93;8781:3;8692:93;:::i;:::-;8810:2;8805:3;8801:12;8794:19;;8453:366;;;:::o;8825:419::-;8991:4;9029:2;9018:9;9014:18;9006:26;;9078:9;9072:4;9068:20;9064:1;9053:9;9049:17;9042:47;9106:131;9232:4;9106:131;:::i;:::-;9098:139;;8825:419;;;:::o;9250:225::-;9390:34;9386:1;9378:6;9374:14;9367:58;9459:8;9454:2;9446:6;9442:15;9435:33;9250:225;:::o;9481:366::-;9623:3;9644:67;9708:2;9703:3;9644:67;:::i;:::-;9637:74;;9720:93;9809:3;9720:93;:::i;:::-;9838:2;9833:3;9829:12;9822:19;;9481:366;;;:::o;9853:419::-;10019:4;10057:2;10046:9;10042:18;10034:26;;10106:9;10100:4;10096:20;10092:1;10081:9;10077:17;10070:47;10134:131;10260:4;10134:131;:::i;:::-;10126:139;;9853:419;;;:::o;10278:223::-;10418:34;10414:1;10406:6;10402:14;10395:58;10487:6;10482:2;10474:6;10470:15;10463:31;10278:223;:::o;10507:366::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:419::-;11045:4;11083:2;11072:9;11068:18;11060:26;;11132:9;11126:4;11122:20;11118:1;11107:9;11103:17;11096:47;11160:131;11286:4;11160:131;:::i;:::-;11152:139;;10879:419;;;:::o;11304:221::-;11444:34;11440:1;11432:6;11428:14;11421:58;11513:4;11508:2;11500:6;11496:15;11489:29;11304:221;:::o;11531:366::-;11673:3;11694:67;11758:2;11753:3;11694:67;:::i;:::-;11687:74;;11770:93;11859:3;11770:93;:::i;:::-;11888:2;11883:3;11879:12;11872:19;;11531:366;;;:::o;11903:419::-;12069:4;12107:2;12096:9;12092:18;12084:26;;12156:9;12150:4;12146:20;12142:1;12131:9;12127:17;12120:47;12184:131;12310:4;12184:131;:::i;:::-;12176:139;;11903:419;;;:::o;12328:179::-;12468:31;12464:1;12456:6;12452:14;12445:55;12328:179;:::o;12513:366::-;12655:3;12676:67;12740:2;12735:3;12676:67;:::i;:::-;12669:74;;12752:93;12841:3;12752:93;:::i;:::-;12870:2;12865:3;12861:12;12854:19;;12513:366;;;:::o;12885:419::-;13051:4;13089:2;13078:9;13074:18;13066:26;;13138:9;13132:4;13128:20;13124:1;13113:9;13109:17;13102:47;13166:131;13292:4;13166:131;:::i;:::-;13158:139;;12885:419;;;:::o;13310:224::-;13450:34;13446:1;13438:6;13434:14;13427:58;13519:7;13514:2;13506:6;13502:15;13495:32;13310:224;:::o;13540:366::-;13682:3;13703:67;13767:2;13762:3;13703:67;:::i;:::-;13696:74;;13779:93;13868:3;13779:93;:::i;:::-;13897:2;13892:3;13888:12;13881:19;;13540:366;;;:::o;13912:419::-;14078:4;14116:2;14105:9;14101:18;14093:26;;14165:9;14159:4;14155:20;14151:1;14140:9;14136:17;14129:47;14193:131;14319:4;14193:131;:::i;:::-;14185:139;;13912:419;;;:::o;14337:222::-;14477:34;14473:1;14465:6;14461:14;14454:58;14546:5;14541:2;14533:6;14529:15;14522:30;14337:222;:::o;14565:366::-;14707:3;14728:67;14792:2;14787:3;14728:67;:::i;:::-;14721:74;;14804:93;14893:3;14804:93;:::i;:::-;14922:2;14917:3;14913:12;14906:19;;14565:366;;;:::o;14937:419::-;15103:4;15141:2;15130:9;15126:18;15118:26;;15190:9;15184:4;15180:20;15176:1;15165:9;15161:17;15154:47;15218:131;15344:4;15218:131;:::i;:::-;15210:139;;14937:419;;;:::o;15362:225::-;15502:34;15498:1;15490:6;15486:14;15479:58;15571:8;15566:2;15558:6;15554:15;15547:33;15362:225;:::o;15593:366::-;15735:3;15756:67;15820:2;15815:3;15756:67;:::i;:::-;15749:74;;15832:93;15921:3;15832:93;:::i;:::-;15950:2;15945:3;15941:12;15934:19;;15593:366;;;:::o;15965:419::-;16131:4;16169:2;16158:9;16154:18;16146:26;;16218:9;16212:4;16208:20;16204:1;16193:9;16189:17;16182:47;16246:131;16372:4;16246:131;:::i;:::-;16238:139;;15965:419;;;:::o;16390:194::-;16430:4;16450:20;16468:1;16450:20;:::i;:::-;16445:25;;16484:20;16502:1;16484:20;:::i;:::-;16479:25;;16528:1;16525;16521:9;16513:17;;16552:1;16546:4;16543:11;16540:37;;;16557:18;;:::i;:::-;16540:37;16390:194;;;;:::o;16590:244::-;16730:34;16726:1;16718:6;16714:14;16707:58;16799:27;16794:2;16786:6;16782:15;16775:52;16590:244;:::o;16840:366::-;16982:3;17003:67;17067:2;17062:3;17003:67;:::i;:::-;16996:74;;17079:93;17168:3;17079:93;:::i;:::-;17197:2;17192:3;17188:12;17181:19;;16840:366;;;:::o;17212:419::-;17378:4;17416:2;17405:9;17401:18;17393:26;;17465:9;17459:4;17455:20;17451:1;17440:9;17436:17;17429:47;17493:131;17619:4;17493:131;:::i;:::-;17485:139;;17212:419;;;:::o;17637:241::-;17777:34;17773:1;17765:6;17761:14;17754:58;17846:24;17841:2;17833:6;17829:15;17822:49;17637:241;:::o;17884:366::-;18026:3;18047:67;18111:2;18106:3;18047:67;:::i;:::-;18040:74;;18123:93;18212:3;18123:93;:::i;:::-;18241:2;18236:3;18232:12;18225:19;;17884:366;;;:::o;18256:419::-;18422:4;18460:2;18449:9;18445:18;18437:26;;18509:9;18503:4;18499:20;18495:1;18484:9;18480:17;18473:47;18537:131;18663:4;18537:131;:::i;:::-;18529:139;;18256:419;;;:::o;18681:410::-;18721:7;18744:20;18762:1;18744:20;:::i;:::-;18739:25;;18778:20;18796:1;18778:20;:::i;:::-;18773:25;;18833:1;18830;18826:9;18855:30;18873:11;18855:30;:::i;:::-;18844:41;;19034:1;19025:7;19021:15;19018:1;19015:22;18995:1;18988:9;18968:83;18945:139;;19064:18;;:::i;:::-;18945:139;18729:362;18681:410;;;;:::o;19097:180::-;19145:77;19142:1;19135:88;19242:4;19239:1;19232:15;19266:4;19263:1;19256:15;19283:185;19323:1;19340:20;19358:1;19340:20;:::i;:::-;19335:25;;19374:20;19392:1;19374:20;:::i;:::-;19369:25;;19413:1;19403:35;;19418:18;;:::i;:::-;19403:35;19460:1;19457;19453:9;19448:14;;19283:185;;;;:::o;19474:182::-;19614:34;19610:1;19602:6;19598:14;19591:58;19474:182;:::o;19662:366::-;19804:3;19825:67;19889:2;19884:3;19825:67;:::i;:::-;19818:74;;19901:93;19990:3;19901:93;:::i;:::-;20019:2;20014:3;20010:12;20003:19;;19662:366;;;:::o;20034:419::-;20200:4;20238:2;20227:9;20223:18;20215:26;;20287:9;20281:4;20277:20;20273:1;20262:9;20258:17;20251:47;20315:131;20441:4;20315:131;:::i;:::-;20307:139;;20034:419;;;:::o;20459:442::-;20608:4;20646:2;20635:9;20631:18;20623:26;;20659:71;20727:1;20716:9;20712:17;20703:6;20659:71;:::i;:::-;20740:72;20808:2;20797:9;20793:18;20784:6;20740:72;:::i;:::-;20822;20890:2;20879:9;20875:18;20866:6;20822:72;:::i;:::-;20459:442;;;;;;:::o;20907:180::-;20955:77;20952:1;20945:88;21052:4;21049:1;21042:15;21076:4;21073:1;21066:15;21093:180;21141:77;21138:1;21131:88;21238:4;21235:1;21228:15;21262:4;21259:1;21252:15;21279:143;21336:5;21367:6;21361:13;21352:22;;21383:33;21410:5;21383:33;:::i;:::-;21279:143;;;;:::o;21428:351::-;21498:6;21547:2;21535:9;21526:7;21522:23;21518:32;21515:119;;;21553:79;;:::i;:::-;21515:119;21673:1;21698:64;21754:7;21745:6;21734:9;21730:22;21698:64;:::i;:::-;21688:74;;21644:128;21428:351;;;;:::o;21785:85::-;21830:7;21859:5;21848:16;;21785:85;;;:::o;21876:158::-;21934:9;21967:61;21985:42;21994:32;22020:5;21994:32;:::i;:::-;21985:42;:::i;:::-;21967:61;:::i;:::-;21954:74;;21876:158;;;:::o;22040:147::-;22135:45;22174:5;22135:45;:::i;:::-;22130:3;22123:58;22040:147;;:::o;22193:114::-;22260:6;22294:5;22288:12;22278:22;;22193:114;;;:::o;22313:184::-;22412:11;22446:6;22441:3;22434:19;22486:4;22481:3;22477:14;22462:29;;22313:184;;;;:::o;22503:132::-;22570:4;22593:3;22585:11;;22623:4;22618:3;22614:14;22606:22;;22503:132;;;:::o;22641:108::-;22718:24;22736:5;22718:24;:::i;:::-;22713:3;22706:37;22641:108;;:::o;22755:179::-;22824:10;22845:46;22887:3;22879:6;22845:46;:::i;:::-;22923:4;22918:3;22914:14;22900:28;;22755:179;;;;:::o;22940:113::-;23010:4;23042;23037:3;23033:14;23025:22;;22940:113;;;:::o;23089:732::-;23208:3;23237:54;23285:5;23237:54;:::i;:::-;23307:86;23386:6;23381:3;23307:86;:::i;:::-;23300:93;;23417:56;23467:5;23417:56;:::i;:::-;23496:7;23527:1;23512:284;23537:6;23534:1;23531:13;23512:284;;;23613:6;23607:13;23640:63;23699:3;23684:13;23640:63;:::i;:::-;23633:70;;23726:60;23779:6;23726:60;:::i;:::-;23716:70;;23572:224;23559:1;23556;23552:9;23547:14;;23512:284;;;23516:14;23812:3;23805:10;;23213:608;;;23089:732;;;;:::o;23827:831::-;24090:4;24128:3;24117:9;24113:19;24105:27;;24142:71;24210:1;24199:9;24195:17;24186:6;24142:71;:::i;:::-;24223:80;24299:2;24288:9;24284:18;24275:6;24223:80;:::i;:::-;24350:9;24344:4;24340:20;24335:2;24324:9;24320:18;24313:48;24378:108;24481:4;24472:6;24378:108;:::i;:::-;24370:116;;24496:72;24564:2;24553:9;24549:18;24540:6;24496:72;:::i;:::-;24578:73;24646:3;24635:9;24631:19;24622:6;24578:73;:::i;:::-;23827:831;;;;;;;;:::o;24664:807::-;24913:4;24951:3;24940:9;24936:19;24928:27;;24965:71;25033:1;25022:9;25018:17;25009:6;24965:71;:::i;:::-;25046:72;25114:2;25103:9;25099:18;25090:6;25046:72;:::i;:::-;25128:80;25204:2;25193:9;25189:18;25180:6;25128:80;:::i;:::-;25218;25294:2;25283:9;25279:18;25270:6;25218:80;:::i;:::-;25308:73;25376:3;25365:9;25361:19;25352:6;25308:73;:::i;:::-;25391;25459:3;25448:9;25444:19;25435:6;25391:73;:::i;:::-;24664:807;;;;;;;;;:::o;25477:143::-;25534:5;25565:6;25559:13;25550:22;;25581:33;25608:5;25581:33;:::i;:::-;25477:143;;;;:::o;25626:663::-;25714:6;25722;25730;25779:2;25767:9;25758:7;25754:23;25750:32;25747:119;;;25785:79;;:::i;:::-;25747:119;25905:1;25930:64;25986:7;25977:6;25966:9;25962:22;25930:64;:::i;:::-;25920:74;;25876:128;26043:2;26069:64;26125:7;26116:6;26105:9;26101:22;26069:64;:::i;:::-;26059:74;;26014:129;26182:2;26208:64;26264:7;26255:6;26244:9;26240:22;26208:64;:::i;:::-;26198:74;;26153:129;25626:663;;;;;:::o

Swarm Source

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