ETH Price: $3,286.81 (+1.21%)
Gas: 1 Gwei

Token

DogeHalloween (DOGEH)
 

Overview

Max Total Supply

1,000,000,000 DOGEH

Holders

37

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000703259555 DOGEH

Value
$0.00
0xad3d38c12486e705a3a1e3c22c41835d4d02c3f1
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:
DogeHalloween

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-28
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.20;

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

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

/**
 * @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.
 *
 *
 * 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 with given initialOwner.
     */
    constructor(address initialOwner) {
        _setOwner(initialOwner);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

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

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

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

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

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        _approve(
            sender,
            _msgSender(),
            currentAllowance > amount ? currentAllowance - amount : 0
        );

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _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 Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of `from`'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of `from`'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding)
        internal
        pure
        returns (uint256)
    {
        unchecked {
            uint256 result = sqrt(a);
            return
                result +
                (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding)
        internal
        pure
        returns (uint256)
    {
        unchecked {
            uint256 result = log2(value);
            return
                result +
                (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding)
        internal
        pure
        returns (uint256)
    {
        unchecked {
            uint256 result = log10(value);
            return
                result +
                (unsignedRoundsUp(rounding) && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding)
        internal
        pure
        returns (uint256)
    {
        unchecked {
            uint256 result = log256(value);
            return
                result +
                (
                    unsignedRoundsUp(rounding) && 1 << (result << 3) < value
                        ? 1
                        : 0
                );
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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 swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

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

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

contract DogeHalloween is ERC20, Ownable {
    mapping(address => bool) _taxExcluded;
    address payable public _taxWallet;

    address public uniswapV2Pair;
    IUniswapV2Router02 private uniswapV2Router =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    uint256 public _initialBuyTax = 2;
    uint256 public _initialSellTax = 2;

    // NOTICE 1
    // swap to eth when balance contract is greater than this
    // pouplar setting is 2/1000 total token in pool
    uint256 public _swapThreshold = 1_000 * 10**decimals();

    bool _inSwap = false;

    // NOTICE 2
    // set true after adding pool
    bool public _swapTax = false;

    // NOTICE 3
    constructor() ERC20("DogeHalloween", "DOGEH") Ownable(msg.sender) {
        // NOTICE 4
        _mint(msg.sender, 1_000_000_000 * 10**decimals());

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );

        _approve(address(this), address(uniswapV2Router), type(uint256).max);
        _approve(msg.sender, address(uniswapV2Router), type(uint256).max);

        IERC20(uniswapV2Pair).approve(
            address(uniswapV2Router),
            type(uint256).max
        );

        _taxExcluded[msg.sender] = true;
        _taxExcluded[address(this)] = true;
        _taxWallet = payable(msg.sender);
    }

    function _shouldSwapBack() internal view returns (bool) {
        return
            msg.sender != uniswapV2Pair &&
            !_inSwap &&
            balanceOf(address(this)) >= _swapThreshold &&
            _swapTax;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        if (_taxExcluded[sender] || _taxExcluded[recipient]) {
            return super._transfer(sender, recipient, amount);
        }

        if (_shouldSwapBack()) {
            _swapBack();
        }
        if (_inSwap) {
            return super._transfer(sender, recipient, amount);
        }

        uint256 taxAmount = 0;
        if (recipient == uniswapV2Pair) {
            taxAmount = Math.mulDiv(amount, _initialSellTax, 100);
        } else if (sender == uniswapV2Pair) {
            taxAmount = Math.mulDiv(amount, _initialBuyTax, 100);
        }

        if (taxAmount > 0) {
            super._transfer(sender, address(this), taxAmount);
            super._transfer(sender, recipient, amount - taxAmount);
        } else {
            super._transfer(sender, recipient, amount);
        }
    }

    function setTaxExcluded(address _wallet, bool _ex) external onlyOwner {
        _taxExcluded[_wallet] = _ex;
    }

    function setBuyTax(uint256 _buyTax) external onlyOwner {
        _initialBuyTax = _buyTax;
    }

    function setSelllTax(uint256 _sellTax) external onlyOwner {
        _initialSellTax = _sellTax;
    }

    function setTaxWallet(address _wallet) external onlyOwner {
        _taxWallet = payable(_wallet);
    }

    modifier swapping() {
        _inSwap = true;
        _;
        _inSwap = false;
    }

    // event Log(string message);
    // event LogBytes(bytes data);

    function _swapBack() internal swapping {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        try
            uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
                balanceOf(address(this)),
                0,
                path,
                address(this),
                block.timestamp
            )
        {
            // you can use variable foo here
            // emit Log("Swap done");
        } catch Error(string memory) {}

        uint256 balance = address(this).balance;
        if (balance > 0) {
            _taxWallet.transfer(balance);
        }
    }

    function manualSwap() external {
        _swapBack();
    }

    function withdrawToken() external {
        super._transfer(
            address(this),
            address(_taxWallet),
            balanceOf(address(this))
        );
    }

    function setSwapTax(bool _st) external onlyOwner {
        _swapTax = _st;
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"MathOverflowedMulDiv","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_initialBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_initialSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTax","type":"uint256"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellTax","type":"uint256"}],"name":"setSelllTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_st","type":"bool"}],"name":"setSwapTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_ex","type":"bool"}],"name":"setTaxExcluded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"setTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052737a250d5630b4cf539739df2c5dacb4c659f2488d60095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506002600a556002600b55620000726200061160201b60201c565b600a62000080919062000b9b565b6103e86200008f919062000beb565b600c555f600d5f6101000a81548160ff0219169083151502179055505f600d60016101000a81548160ff021916908315150217905550348015620000d1575f80fd5b50336040518060400160405280600d81526020017f446f676548616c6c6f7765656e000000000000000000000000000000000000008152506040518060400160405280600581526020017f444f474548000000000000000000000000000000000000000000000000000000815250816003908162000150919062000e90565b50806004908162000162919062000e90565b50505062000176816200061960201b60201c565b50620001b7336200018c6200061160201b60201c565b600a6200019a919062000b9b565b633b9aca00620001ab919062000beb565b620006dc60201b60201c565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000222573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000248919062000fd9565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002cf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002f5919062000fd9565b6040518363ffffffff1660e01b8152600401620003149291906200101a565b6020604051808303815f875af115801562000331573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000357919062000fd9565b60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003ea3060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200083960201b60201c565b6200043e3360095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200083960201b60201c565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b360095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401620004dd92919062001056565b6020604051808303815f875af1158015620004fa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620005209190620010bb565b50600160065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055503360075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620012e6565b5f6012905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200074d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007449062001149565b60405180910390fd5b620007605f838362000a0460201b60201c565b8060025f82825462000773919062001169565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254620007c7919062001169565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200082d9190620011a3565b60405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620008aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008a19062001232565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200091b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200091290620012c6565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620009f79190620011a3565b60405180910390a3505050565b505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000a935780860481111562000a6b5762000a6a62000a09565b5b600185161562000a7b5780820291505b808102905062000a8b8562000a36565b945062000a4b565b94509492505050565b5f8262000aad576001905062000b7f565b8162000abc575f905062000b7f565b816001811462000ad5576002811462000ae05762000b16565b600191505062000b7f565b60ff84111562000af55762000af462000a09565b5b8360020a91508482111562000b0f5762000b0e62000a09565b5b5062000b7f565b5060208310610133831016604e8410600b841016171562000b505782820a90508381111562000b4a5762000b4962000a09565b5b62000b7f565b62000b5f848484600162000a42565b9250905081840481111562000b795762000b7862000a09565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f62000ba78262000b86565b915062000bb48362000b8f565b925062000be37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a9c565b905092915050565b5f62000bf78262000b86565b915062000c048362000b86565b925082820262000c148162000b86565b9150828204841483151762000c2e5762000c2d62000a09565b5b5092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000cb157607f821691505b60208210810362000cc75762000cc662000c6c565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000d2b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cee565b62000d37868362000cee565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000d7862000d7262000d6c8462000b86565b62000d4f565b62000b86565b9050919050565b5f819050919050565b62000d938362000d58565b62000dab62000da28262000d7f565b84845462000cfa565b825550505050565b5f90565b62000dc162000db3565b62000dce81848462000d88565b505050565b5b8181101562000df55762000de95f8262000db7565b60018101905062000dd4565b5050565b601f82111562000e445762000e0e8162000ccd565b62000e198462000cdf565b8101602085101562000e29578190505b62000e4162000e388562000cdf565b83018262000dd3565b50505b505050565b5f82821c905092915050565b5f62000e665f198460080262000e49565b1980831691505092915050565b5f62000e80838362000e55565b9150826002028217905092915050565b62000e9b8262000c35565b67ffffffffffffffff81111562000eb75762000eb662000c3f565b5b62000ec3825462000c99565b62000ed082828562000df9565b5f60209050601f83116001811462000f06575f841562000ef1578287015190505b62000efd858262000e73565b86555062000f6c565b601f19841662000f168662000ccd565b5f5b8281101562000f3f5784890151825560018201915060208501945060208101905062000f18565b8683101562000f5f578489015162000f5b601f89168262000e55565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000fa38262000f78565b9050919050565b62000fb58162000f97565b811462000fc0575f80fd5b50565b5f8151905062000fd38162000faa565b92915050565b5f6020828403121562000ff15762000ff062000f74565b5b5f620010008482850162000fc3565b91505092915050565b620010148162000f97565b82525050565b5f6040820190506200102f5f83018562001009565b6200103e602083018462001009565b9392505050565b620010508162000b86565b82525050565b5f6040820190506200106b5f83018562001009565b6200107a602083018462001045565b9392505050565b5f8115159050919050565b620010978162001081565b8114620010a2575f80fd5b50565b5f81519050620010b5816200108c565b92915050565b5f60208284031215620010d357620010d262000f74565b5b5f620010e284828501620010a5565b91505092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62001131601f83620010eb565b91506200113e82620010fb565b602082019050919050565b5f6020820190508181035f830152620011628162001123565b9050919050565b5f620011758262000b86565b9150620011828362000b86565b92508282019050808211156200119d576200119c62000a09565b5b92915050565b5f602082019050620011b85f83018462001045565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6200121a602483620010eb565b91506200122782620011be565b604082019050919050565b5f6020820190508181035f8301526200124b816200120c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f620012ae602283620010eb565b9150620012bb8262001252565b604082019050919050565b5f6020820190508181035f830152620012df81620012a0565b9050919050565b61292580620012f45f395ff3fe60806040526004361061019f575f3560e01c80636f268a99116100eb578063ca628c7811610089578063e1b1925811610063578063e1b19258146105ac578063ea414b28146105d6578063f2fde38b146105fe578063ff292f9a14610626576101a6565b8063ca628c7814610532578063dc1052e214610548578063dd62ed3e14610570576101a6565b80638da5cb5b116100c55780638da5cb5b1461046657806395d89b4114610490578063a457c2d7146104ba578063a9059cbb146104f6576101a6565b80636f268a99146103ea57806370a0823114610414578063715018a614610450576101a6565b806330da23e4116101585780633b7cdccd116101325780633b7cdccd1461035857806349bd5a5e1461038257806351bc3c85146103ac57806358a80fb6146103c2576101a6565b806330da23e4146102c8578063313ce567146102f2578063395093511461031c576101a6565b806306fdde03146101aa578063095ea7b3146101d45780630e5a92311461021057806318160ddd1461023a57806319c2c40d1461026457806323b872dd1461028c576101a6565b366101a657005b5f80fd5b3480156101b5575f80fd5b506101be61064e565b6040516101cb9190611cc6565b60405180910390f35b3480156101df575f80fd5b506101fa60048036038101906101f59190611d80565b6106de565b6040516102079190611dd8565b60405180910390f35b34801561021b575f80fd5b506102246106fb565b6040516102319190611e00565b60405180910390f35b348015610245575f80fd5b5061024e610701565b60405161025b9190611e00565b60405180910390f35b34801561026f575f80fd5b5061028a60048036038101906102859190611e43565b61070a565b005b348015610297575f80fd5b506102b260048036038101906102ad9190611e81565b6107de565b6040516102bf9190611dd8565b60405180910390f35b3480156102d3575f80fd5b506102dc6108e7565b6040516102e99190611dd8565b60405180910390f35b3480156102fd575f80fd5b506103066108fa565b6040516103139190611eec565b60405180910390f35b348015610327575f80fd5b50610342600480360381019061033d9190611d80565b610902565b60405161034f9190611dd8565b60405180910390f35b348015610363575f80fd5b5061036c6109a9565b6040516103799190611e00565b60405180910390f35b34801561038d575f80fd5b506103966109af565b6040516103a39190611f14565b60405180910390f35b3480156103b7575f80fd5b506103c06109d4565b005b3480156103cd575f80fd5b506103e860048036038101906103e39190611f2d565b6109de565b005b3480156103f5575f80fd5b506103fe610a64565b60405161040b9190611f78565b60405180910390f35b34801561041f575f80fd5b5061043a60048036038101906104359190611f91565b610a89565b6040516104479190611e00565b60405180910390f35b34801561045b575f80fd5b50610464610ace565b005b348015610471575f80fd5b5061047a610b55565b6040516104879190611f14565b60405180910390f35b34801561049b575f80fd5b506104a4610b7d565b6040516104b19190611cc6565b60405180910390f35b3480156104c5575f80fd5b506104e060048036038101906104db9190611d80565b610c0d565b6040516104ed9190611dd8565b60405180910390f35b348015610501575f80fd5b5061051c60048036038101906105179190611d80565b610cfc565b6040516105299190611dd8565b60405180910390f35b34801561053d575f80fd5b50610546610d19565b005b348015610553575f80fd5b5061056e60048036038101906105699190611f2d565b610d4f565b005b34801561057b575f80fd5b5061059660048036038101906105919190611fbc565b610dd5565b6040516105a39190611e00565b60405180910390f35b3480156105b7575f80fd5b506105c0610e57565b6040516105cd9190611e00565b60405180910390f35b3480156105e1575f80fd5b506105fc60048036038101906105f79190611f91565b610e5d565b005b348015610609575f80fd5b50610624600480360381019061061f9190611f91565b610f1c565b005b348015610631575f80fd5b5061064c60048036038101906106479190611ffa565b611012565b005b60606003805461065d90612052565b80601f016020809104026020016040519081016040528092919081815260200182805461068990612052565b80156106d45780601f106106ab576101008083540402835291602001916106d4565b820191905f5260205f20905b8154815290600101906020018083116106b757829003601f168201915b5050505050905090565b5f6106f16106ea6110ab565b84846110b2565b6001905092915050565b600c5481565b5f600254905090565b6107126110ab565b73ffffffffffffffffffffffffffffffffffffffff16610730610b55565b73ffffffffffffffffffffffffffffffffffffffff1614610786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077d906120cc565b60405180910390fd5b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f6107ea848484611275565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6108316110ab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a79061215a565b60405180910390fd5b6108db856108bc6110ab565b8584116108c9575f6108d6565b85846108d591906121a5565b5b6110b2565b60019150509392505050565b600d60019054906101000a900460ff1681565b5f6012905090565b5f61099f61090e6110ab565b848460015f61091b6110ab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461099a91906121d8565b6110b2565b6001905092915050565b600a5481565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109dc611470565b565b6109e66110ab565b73ffffffffffffffffffffffffffffffffffffffff16610a04610b55565b73ffffffffffffffffffffffffffffffffffffffff1614610a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a51906120cc565b60405180910390fd5b80600b8190555050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610ad66110ab565b73ffffffffffffffffffffffffffffffffffffffff16610af4610b55565b73ffffffffffffffffffffffffffffffffffffffff1614610b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b41906120cc565b60405180910390fd5b610b535f611763565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b8c90612052565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb890612052565b8015610c035780601f10610bda57610100808354040283529160200191610c03565b820191905f5260205f20905b815481529060010190602001808311610be657829003601f168201915b5050505050905090565b5f8060015f610c1a6110ab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb9061227b565b60405180910390fd5b610cf1610cdf6110ab565b858584610cec91906121a5565b6110b2565b600191505092915050565b5f610d0f610d086110ab565b8484611275565b6001905092915050565b610d4d3060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d4830610a89565b611826565b565b610d576110ab565b73ffffffffffffffffffffffffffffffffffffffff16610d75610b55565b73ffffffffffffffffffffffffffffffffffffffff1614610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc2906120cc565b60405180910390fd5b80600a8190555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600b5481565b610e656110ab565b73ffffffffffffffffffffffffffffffffffffffff16610e83610b55565b73ffffffffffffffffffffffffffffffffffffffff1614610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed0906120cc565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610f246110ab565b73ffffffffffffffffffffffffffffffffffffffff16610f42610b55565b73ffffffffffffffffffffffffffffffffffffffff1614610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906120cc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90612309565b60405180910390fd5b61100f81611763565b50565b61101a6110ab565b73ffffffffffffffffffffffffffffffffffffffff16611038610b55565b73ffffffffffffffffffffffffffffffffffffffff161461108e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611085906120cc565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790612397565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361118e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118590612425565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112689190611e00565b60405180910390a3505050565b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611310575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561132557611320838383611826565b61146b565b61132d611a99565b1561133b5761133a611470565b5b600d5f9054906101000a900460ff161561135f5761135a838383611826565b61146b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113c9576113c282600b546064611b36565b905061142f565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361142e5761142b82600a546064611b36565b90505b5b5f81111561145d57611442843083611826565b6114588484838561145391906121a5565b611826565b611469565b611468848484611826565b5b505b505050565b6001600d5f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff8111156114a6576114a5612443565b5b6040519080825280602002602001820160405280156114d45781602001602082028036833780820191505090505b50905030815f815181106114eb576114ea612470565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561158f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115b391906124b1565b816001815181106115c7576115c6612470565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94761164730610a89565b5f8430426040518663ffffffff1660e01b815260040161166b9594939291906125d5565b5f604051808303815f87803b158015611682575f80fd5b505af1925050508015611693575060015b6116d35761169f612639565b806308c379a0036116c457506116b3612689565b806116be57506116c6565b506116ce565b505b3d5f803e3d5ffd5b6116d4565b5b5f4790505f8111156117465760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015611744573d5f803e3d5ffd5b505b50505f600d5f6101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90612788565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f990612816565b60405180910390fd5b61190d838383611c37565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611987906128a4565b60405180910390fd5b818161199c91906121a5565b5f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611a2791906121d8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a8b9190611e00565b60405180910390a350505050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015611b035750600d5f9054906101000a900460ff16155b8015611b195750600c54611b1630610a89565b10155b8015611b315750600d60019054906101000a900460ff165b905090565b5f805f80198587098587029250828110838203039150505f8103611b6e57838281611b6457611b636128c2565b5b0492505050611c30565b808411611ba7576040517f227bc15300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8486880990508281118203915080830392505f60018619018616905080860495508084049350600181825f0304019050808302841793505f600287600302189050808702600203810290508087026002038102905080870260020381029050808702600203810290508087026002038102905080870260020381029050808502955050505050505b9392505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611c73578082015181840152602081019050611c58565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611c9882611c3c565b611ca28185611c46565b9350611cb2818560208601611c56565b611cbb81611c7e565b840191505092915050565b5f6020820190508181035f830152611cde8184611c8e565b905092915050565b5f604051905090565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611d1c82611cf3565b9050919050565b611d2c81611d12565b8114611d36575f80fd5b50565b5f81359050611d4781611d23565b92915050565b5f819050919050565b611d5f81611d4d565b8114611d69575f80fd5b50565b5f81359050611d7a81611d56565b92915050565b5f8060408385031215611d9657611d95611cef565b5b5f611da385828601611d39565b9250506020611db485828601611d6c565b9150509250929050565b5f8115159050919050565b611dd281611dbe565b82525050565b5f602082019050611deb5f830184611dc9565b92915050565b611dfa81611d4d565b82525050565b5f602082019050611e135f830184611df1565b92915050565b611e2281611dbe565b8114611e2c575f80fd5b50565b5f81359050611e3d81611e19565b92915050565b5f8060408385031215611e5957611e58611cef565b5b5f611e6685828601611d39565b9250506020611e7785828601611e2f565b9150509250929050565b5f805f60608486031215611e9857611e97611cef565b5b5f611ea586828701611d39565b9350506020611eb686828701611d39565b9250506040611ec786828701611d6c565b9150509250925092565b5f60ff82169050919050565b611ee681611ed1565b82525050565b5f602082019050611eff5f830184611edd565b92915050565b611f0e81611d12565b82525050565b5f602082019050611f275f830184611f05565b92915050565b5f60208284031215611f4257611f41611cef565b5b5f611f4f84828501611d6c565b91505092915050565b5f611f6282611cf3565b9050919050565b611f7281611f58565b82525050565b5f602082019050611f8b5f830184611f69565b92915050565b5f60208284031215611fa657611fa5611cef565b5b5f611fb384828501611d39565b91505092915050565b5f8060408385031215611fd257611fd1611cef565b5b5f611fdf85828601611d39565b9250506020611ff085828601611d39565b9150509250929050565b5f6020828403121561200f5761200e611cef565b5b5f61201c84828501611e2f565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061206957607f821691505b60208210810361207c5761207b612025565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6120b6602083611c46565b91506120c182612082565b602082019050919050565b5f6020820190508181035f8301526120e3816120aa565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f612144602883611c46565b915061214f826120ea565b604082019050919050565b5f6020820190508181035f83015261217181612138565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6121af82611d4d565b91506121ba83611d4d565b92508282039050818111156121d2576121d1612178565b5b92915050565b5f6121e282611d4d565b91506121ed83611d4d565b925082820190508082111561220557612204612178565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612265602583611c46565b91506122708261220b565b604082019050919050565b5f6020820190508181035f83015261229281612259565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6122f3602683611c46565b91506122fe82612299565b604082019050919050565b5f6020820190508181035f830152612320816122e7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612381602483611c46565b915061238c82612327565b604082019050919050565b5f6020820190508181035f8301526123ae81612375565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61240f602283611c46565b915061241a826123b5565b604082019050919050565b5f6020820190508181035f83015261243c81612403565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506124ab81611d23565b92915050565b5f602082840312156124c6576124c5611cef565b5b5f6124d38482850161249d565b91505092915050565b5f819050919050565b5f819050919050565b5f6125086125036124fe846124dc565b6124e5565b611d4d565b9050919050565b612518816124ee565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61255081611d12565b82525050565b5f6125618383612547565b60208301905092915050565b5f602082019050919050565b5f6125838261251e565b61258d8185612528565b935061259883612538565b805f5b838110156125c85781516125af8882612556565b97506125ba8361256d565b92505060018101905061259b565b5085935050505092915050565b5f60a0820190506125e85f830188611df1565b6125f5602083018761250f565b81810360408301526126078186612579565b90506126166060830185611f05565b6126236080830184611df1565b9695505050505050565b5f8160e01c9050919050565b5f60033d11156126555760045f803e6126525f5161262d565b90505b90565b61266182611c7e565b810181811067ffffffffffffffff821117156126805761267f612443565b5b80604052505050565b5f60443d106127155761269a611ce6565b60043d036004823e80513d602482011167ffffffffffffffff821117156126c2575050612715565b808201805167ffffffffffffffff8111156126e05750505050612715565b80602083010160043d0385018111156126fd575050505050612715565b61270c82602001850186612658565b82955050505050505b90565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612772602583611c46565b915061277d82612718565b604082019050919050565b5f6020820190508181035f83015261279f81612766565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612800602383611c46565b915061280b826127a6565b604082019050919050565b5f6020820190508181035f83015261282d816127f4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61288e602683611c46565b915061289982612834565b604082019050919050565b5f6020820190508181035f8301526128bb81612882565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea264697066735822122065ada96180b1cf47118e0dc5f68e6ca3184fdd5674479b059260e1f5af2c3ec064736f6c63430008140033

Deployed Bytecode

0x60806040526004361061019f575f3560e01c80636f268a99116100eb578063ca628c7811610089578063e1b1925811610063578063e1b19258146105ac578063ea414b28146105d6578063f2fde38b146105fe578063ff292f9a14610626576101a6565b8063ca628c7814610532578063dc1052e214610548578063dd62ed3e14610570576101a6565b80638da5cb5b116100c55780638da5cb5b1461046657806395d89b4114610490578063a457c2d7146104ba578063a9059cbb146104f6576101a6565b80636f268a99146103ea57806370a0823114610414578063715018a614610450576101a6565b806330da23e4116101585780633b7cdccd116101325780633b7cdccd1461035857806349bd5a5e1461038257806351bc3c85146103ac57806358a80fb6146103c2576101a6565b806330da23e4146102c8578063313ce567146102f2578063395093511461031c576101a6565b806306fdde03146101aa578063095ea7b3146101d45780630e5a92311461021057806318160ddd1461023a57806319c2c40d1461026457806323b872dd1461028c576101a6565b366101a657005b5f80fd5b3480156101b5575f80fd5b506101be61064e565b6040516101cb9190611cc6565b60405180910390f35b3480156101df575f80fd5b506101fa60048036038101906101f59190611d80565b6106de565b6040516102079190611dd8565b60405180910390f35b34801561021b575f80fd5b506102246106fb565b6040516102319190611e00565b60405180910390f35b348015610245575f80fd5b5061024e610701565b60405161025b9190611e00565b60405180910390f35b34801561026f575f80fd5b5061028a60048036038101906102859190611e43565b61070a565b005b348015610297575f80fd5b506102b260048036038101906102ad9190611e81565b6107de565b6040516102bf9190611dd8565b60405180910390f35b3480156102d3575f80fd5b506102dc6108e7565b6040516102e99190611dd8565b60405180910390f35b3480156102fd575f80fd5b506103066108fa565b6040516103139190611eec565b60405180910390f35b348015610327575f80fd5b50610342600480360381019061033d9190611d80565b610902565b60405161034f9190611dd8565b60405180910390f35b348015610363575f80fd5b5061036c6109a9565b6040516103799190611e00565b60405180910390f35b34801561038d575f80fd5b506103966109af565b6040516103a39190611f14565b60405180910390f35b3480156103b7575f80fd5b506103c06109d4565b005b3480156103cd575f80fd5b506103e860048036038101906103e39190611f2d565b6109de565b005b3480156103f5575f80fd5b506103fe610a64565b60405161040b9190611f78565b60405180910390f35b34801561041f575f80fd5b5061043a60048036038101906104359190611f91565b610a89565b6040516104479190611e00565b60405180910390f35b34801561045b575f80fd5b50610464610ace565b005b348015610471575f80fd5b5061047a610b55565b6040516104879190611f14565b60405180910390f35b34801561049b575f80fd5b506104a4610b7d565b6040516104b19190611cc6565b60405180910390f35b3480156104c5575f80fd5b506104e060048036038101906104db9190611d80565b610c0d565b6040516104ed9190611dd8565b60405180910390f35b348015610501575f80fd5b5061051c60048036038101906105179190611d80565b610cfc565b6040516105299190611dd8565b60405180910390f35b34801561053d575f80fd5b50610546610d19565b005b348015610553575f80fd5b5061056e60048036038101906105699190611f2d565b610d4f565b005b34801561057b575f80fd5b5061059660048036038101906105919190611fbc565b610dd5565b6040516105a39190611e00565b60405180910390f35b3480156105b7575f80fd5b506105c0610e57565b6040516105cd9190611e00565b60405180910390f35b3480156105e1575f80fd5b506105fc60048036038101906105f79190611f91565b610e5d565b005b348015610609575f80fd5b50610624600480360381019061061f9190611f91565b610f1c565b005b348015610631575f80fd5b5061064c60048036038101906106479190611ffa565b611012565b005b60606003805461065d90612052565b80601f016020809104026020016040519081016040528092919081815260200182805461068990612052565b80156106d45780601f106106ab576101008083540402835291602001916106d4565b820191905f5260205f20905b8154815290600101906020018083116106b757829003601f168201915b5050505050905090565b5f6106f16106ea6110ab565b84846110b2565b6001905092915050565b600c5481565b5f600254905090565b6107126110ab565b73ffffffffffffffffffffffffffffffffffffffff16610730610b55565b73ffffffffffffffffffffffffffffffffffffffff1614610786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077d906120cc565b60405180910390fd5b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f6107ea848484611275565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6108316110ab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a79061215a565b60405180910390fd5b6108db856108bc6110ab565b8584116108c9575f6108d6565b85846108d591906121a5565b5b6110b2565b60019150509392505050565b600d60019054906101000a900460ff1681565b5f6012905090565b5f61099f61090e6110ab565b848460015f61091b6110ab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461099a91906121d8565b6110b2565b6001905092915050565b600a5481565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109dc611470565b565b6109e66110ab565b73ffffffffffffffffffffffffffffffffffffffff16610a04610b55565b73ffffffffffffffffffffffffffffffffffffffff1614610a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a51906120cc565b60405180910390fd5b80600b8190555050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610ad66110ab565b73ffffffffffffffffffffffffffffffffffffffff16610af4610b55565b73ffffffffffffffffffffffffffffffffffffffff1614610b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b41906120cc565b60405180910390fd5b610b535f611763565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b8c90612052565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb890612052565b8015610c035780601f10610bda57610100808354040283529160200191610c03565b820191905f5260205f20905b815481529060010190602001808311610be657829003601f168201915b5050505050905090565b5f8060015f610c1a6110ab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb9061227b565b60405180910390fd5b610cf1610cdf6110ab565b858584610cec91906121a5565b6110b2565b600191505092915050565b5f610d0f610d086110ab565b8484611275565b6001905092915050565b610d4d3060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d4830610a89565b611826565b565b610d576110ab565b73ffffffffffffffffffffffffffffffffffffffff16610d75610b55565b73ffffffffffffffffffffffffffffffffffffffff1614610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc2906120cc565b60405180910390fd5b80600a8190555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600b5481565b610e656110ab565b73ffffffffffffffffffffffffffffffffffffffff16610e83610b55565b73ffffffffffffffffffffffffffffffffffffffff1614610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed0906120cc565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610f246110ab565b73ffffffffffffffffffffffffffffffffffffffff16610f42610b55565b73ffffffffffffffffffffffffffffffffffffffff1614610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906120cc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90612309565b60405180910390fd5b61100f81611763565b50565b61101a6110ab565b73ffffffffffffffffffffffffffffffffffffffff16611038610b55565b73ffffffffffffffffffffffffffffffffffffffff161461108e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611085906120cc565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790612397565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361118e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118590612425565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112689190611e00565b60405180910390a3505050565b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611310575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561132557611320838383611826565b61146b565b61132d611a99565b1561133b5761133a611470565b5b600d5f9054906101000a900460ff161561135f5761135a838383611826565b61146b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113c9576113c282600b546064611b36565b905061142f565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361142e5761142b82600a546064611b36565b90505b5b5f81111561145d57611442843083611826565b6114588484838561145391906121a5565b611826565b611469565b611468848484611826565b5b505b505050565b6001600d5f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff8111156114a6576114a5612443565b5b6040519080825280602002602001820160405280156114d45781602001602082028036833780820191505090505b50905030815f815181106114eb576114ea612470565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561158f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115b391906124b1565b816001815181106115c7576115c6612470565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94761164730610a89565b5f8430426040518663ffffffff1660e01b815260040161166b9594939291906125d5565b5f604051808303815f87803b158015611682575f80fd5b505af1925050508015611693575060015b6116d35761169f612639565b806308c379a0036116c457506116b3612689565b806116be57506116c6565b506116ce565b505b3d5f803e3d5ffd5b6116d4565b5b5f4790505f8111156117465760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015611744573d5f803e3d5ffd5b505b50505f600d5f6101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90612788565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f990612816565b60405180910390fd5b61190d838383611c37565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611987906128a4565b60405180910390fd5b818161199c91906121a5565b5f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611a2791906121d8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a8b9190611e00565b60405180910390a350505050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015611b035750600d5f9054906101000a900460ff16155b8015611b195750600c54611b1630610a89565b10155b8015611b315750600d60019054906101000a900460ff165b905090565b5f805f80198587098587029250828110838203039150505f8103611b6e57838281611b6457611b636128c2565b5b0492505050611c30565b808411611ba7576040517f227bc15300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8486880990508281118203915080830392505f60018619018616905080860495508084049350600181825f0304019050808302841793505f600287600302189050808702600203810290508087026002038102905080870260020381029050808702600203810290508087026002038102905080870260020381029050808502955050505050505b9392505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611c73578082015181840152602081019050611c58565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611c9882611c3c565b611ca28185611c46565b9350611cb2818560208601611c56565b611cbb81611c7e565b840191505092915050565b5f6020820190508181035f830152611cde8184611c8e565b905092915050565b5f604051905090565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611d1c82611cf3565b9050919050565b611d2c81611d12565b8114611d36575f80fd5b50565b5f81359050611d4781611d23565b92915050565b5f819050919050565b611d5f81611d4d565b8114611d69575f80fd5b50565b5f81359050611d7a81611d56565b92915050565b5f8060408385031215611d9657611d95611cef565b5b5f611da385828601611d39565b9250506020611db485828601611d6c565b9150509250929050565b5f8115159050919050565b611dd281611dbe565b82525050565b5f602082019050611deb5f830184611dc9565b92915050565b611dfa81611d4d565b82525050565b5f602082019050611e135f830184611df1565b92915050565b611e2281611dbe565b8114611e2c575f80fd5b50565b5f81359050611e3d81611e19565b92915050565b5f8060408385031215611e5957611e58611cef565b5b5f611e6685828601611d39565b9250506020611e7785828601611e2f565b9150509250929050565b5f805f60608486031215611e9857611e97611cef565b5b5f611ea586828701611d39565b9350506020611eb686828701611d39565b9250506040611ec786828701611d6c565b9150509250925092565b5f60ff82169050919050565b611ee681611ed1565b82525050565b5f602082019050611eff5f830184611edd565b92915050565b611f0e81611d12565b82525050565b5f602082019050611f275f830184611f05565b92915050565b5f60208284031215611f4257611f41611cef565b5b5f611f4f84828501611d6c565b91505092915050565b5f611f6282611cf3565b9050919050565b611f7281611f58565b82525050565b5f602082019050611f8b5f830184611f69565b92915050565b5f60208284031215611fa657611fa5611cef565b5b5f611fb384828501611d39565b91505092915050565b5f8060408385031215611fd257611fd1611cef565b5b5f611fdf85828601611d39565b9250506020611ff085828601611d39565b9150509250929050565b5f6020828403121561200f5761200e611cef565b5b5f61201c84828501611e2f565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061206957607f821691505b60208210810361207c5761207b612025565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6120b6602083611c46565b91506120c182612082565b602082019050919050565b5f6020820190508181035f8301526120e3816120aa565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f612144602883611c46565b915061214f826120ea565b604082019050919050565b5f6020820190508181035f83015261217181612138565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6121af82611d4d565b91506121ba83611d4d565b92508282039050818111156121d2576121d1612178565b5b92915050565b5f6121e282611d4d565b91506121ed83611d4d565b925082820190508082111561220557612204612178565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612265602583611c46565b91506122708261220b565b604082019050919050565b5f6020820190508181035f83015261229281612259565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6122f3602683611c46565b91506122fe82612299565b604082019050919050565b5f6020820190508181035f830152612320816122e7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612381602483611c46565b915061238c82612327565b604082019050919050565b5f6020820190508181035f8301526123ae81612375565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61240f602283611c46565b915061241a826123b5565b604082019050919050565b5f6020820190508181035f83015261243c81612403565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506124ab81611d23565b92915050565b5f602082840312156124c6576124c5611cef565b5b5f6124d38482850161249d565b91505092915050565b5f819050919050565b5f819050919050565b5f6125086125036124fe846124dc565b6124e5565b611d4d565b9050919050565b612518816124ee565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61255081611d12565b82525050565b5f6125618383612547565b60208301905092915050565b5f602082019050919050565b5f6125838261251e565b61258d8185612528565b935061259883612538565b805f5b838110156125c85781516125af8882612556565b97506125ba8361256d565b92505060018101905061259b565b5085935050505092915050565b5f60a0820190506125e85f830188611df1565b6125f5602083018761250f565b81810360408301526126078186612579565b90506126166060830185611f05565b6126236080830184611df1565b9695505050505050565b5f8160e01c9050919050565b5f60033d11156126555760045f803e6126525f5161262d565b90505b90565b61266182611c7e565b810181811067ffffffffffffffff821117156126805761267f612443565b5b80604052505050565b5f60443d106127155761269a611ce6565b60043d036004823e80513d602482011167ffffffffffffffff821117156126c2575050612715565b808201805167ffffffffffffffff8111156126e05750505050612715565b80602083010160043d0385018111156126fd575050505050612715565b61270c82602001850186612658565b82955050505050505b90565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612772602583611c46565b915061277d82612718565b604082019050919050565b5f6020820190508181035f83015261279f81612766565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612800602383611c46565b915061280b826127a6565b604082019050919050565b5f6020820190508181035f83015261282d816127f4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61288e602683611c46565b915061289982612834565b604082019050919050565b5f6020820190508181035f8301526128bb81612882565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea264697066735822122065ada96180b1cf47118e0dc5f68e6ca3184fdd5674479b059260e1f5af2c3ec064736f6c63430008140033

Deployed Bytecode Sourcemap

40557:4376:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8734:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11042:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41068:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9854:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43211:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11732:575;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41212:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9696:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12716:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40851:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40691:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44554:61;;;;;;;;;;;;;:::i;:::-;;43441:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40649:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10025:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5419:94;;;;;;;;;;;;;:::i;:::-;;4768:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8953:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13516:446;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10415:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44623:180;;;;;;;;;;;;;:::i;:::-;;43335:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10694:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40891:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43552:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5668:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44811:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8734:100;8788:13;8821:5;8814:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8734:100;:::o;11042:210::-;11161:4;11183:39;11192:12;:10;:12::i;:::-;11206:7;11215:6;11183:8;:39::i;:::-;11240:4;11233:11;;11042:210;;;;:::o;41068:54::-;;;;:::o;9854:108::-;9915:7;9942:12;;9935:19;;9854:108;:::o;43211:116::-;4999:12;:10;:12::i;:::-;4988:23;;:7;:5;:7::i;:::-;:23;;;4980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43316:3:::1;43292:12;:21;43305:7;43292:21;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;43211:116:::0;;:::o;11732:575::-;11872:4;11889:36;11899:6;11907:9;11918:6;11889:9;:36::i;:::-;11938:24;11965:11;:19;11977:6;11965:19;;;;;;;;;;;;;;;:33;11985:12;:10;:12::i;:::-;11965:33;;;;;;;;;;;;;;;;11938:60;;12051:6;12031:16;:26;;12009:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;12136:139;12159:6;12180:12;:10;:12::i;:::-;12226:6;12207:16;:25;:57;;12263:1;12207:57;;;12254:6;12235:16;:25;;;;:::i;:::-;12207:57;12136:8;:139::i;:::-;12295:4;12288:11;;;11732:575;;;;;:::o;41212:28::-;;;;;;;;;;;;;:::o;9696:93::-;9754:5;9779:2;9772:9;;9696:93;:::o;12716:297::-;12831:4;12853:130;12876:12;:10;:12::i;:::-;12903:7;12962:10;12925:11;:25;12937:12;:10;:12::i;:::-;12925:25;;;;;;;;;;;;;;;:34;12951:7;12925:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12853:8;:130::i;:::-;13001:4;12994:11;;12716:297;;;;:::o;40851:33::-;;;;:::o;40691:28::-;;;;;;;;;;;;;:::o;44554:61::-;44596:11;:9;:11::i;:::-;44554:61::o;43441:103::-;4999:12;:10;:12::i;:::-;4988:23;;:7;:5;:7::i;:::-;:23;;;4980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43528:8:::1;43510:15;:26;;;;43441:103:::0;:::o;40649:33::-;;;;;;;;;;;;;:::o;10025:177::-;10144:7;10176:9;:18;10186:7;10176:18;;;;;;;;;;;;;;;;10169:25;;10025:177;;;:::o;5419:94::-;4999:12;:10;:12::i;:::-;4988:23;;:7;:5;:7::i;:::-;:23;;;4980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5484:21:::1;5502:1;5484:9;:21::i;:::-;5419:94::o:0;4768:87::-;4814:7;4841:6;;;;;;;;;;;4834:13;;4768:87;:::o;8953:104::-;9009:13;9042:7;9035:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8953:104;:::o;13516:446::-;13636:4;13658:24;13685:11;:25;13697:12;:10;:12::i;:::-;13685:25;;;;;;;;;;;;;;;:34;13711:7;13685:34;;;;;;;;;;;;;;;;13658:61;;13772:15;13752:16;:35;;13730:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;13863:67;13872:12;:10;:12::i;:::-;13886:7;13914:15;13895:16;:34;;;;:::i;:::-;13863:8;:67::i;:::-;13950:4;13943:11;;;13516:446;;;;:::o;10415:216::-;10537:4;10559:42;10569:12;:10;:12::i;:::-;10583:9;10594:6;10559:9;:42::i;:::-;10619:4;10612:11;;10415:216;;;;:::o;44623:180::-;44668:127;44706:4;44734:10;;;;;;;;;;;44760:24;44778:4;44760:9;:24::i;:::-;44668:15;:127::i;:::-;44623:180::o;43335:98::-;4999:12;:10;:12::i;:::-;4988:23;;:7;:5;:7::i;:::-;:23;;;4980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43418:7:::1;43401:14;:24;;;;43335:98:::0;:::o;10694:201::-;10828:7;10860:11;:18;10872:5;10860:18;;;;;;;;;;;;;;;:27;10879:7;10860:27;;;;;;;;;;;;;;;;10853:34;;10694:201;;;;:::o;40891:34::-;;;;:::o;43552:106::-;4999:12;:10;:12::i;:::-;4988:23;;:7;:5;:7::i;:::-;:23;;;4980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43642:7:::1;43621:10;;:29;;;;;;;;;;;;;;;;;;43552:106:::0;:::o;5668:229::-;4999:12;:10;:12::i;:::-;4988:23;;:7;:5;:7::i;:::-;:23;;;4980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5791:1:::1;5771:22;;:8;:22;;::::0;5749:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5870:19;5880:8;5870:9;:19::i;:::-;5668:229:::0;:::o;44811:82::-;4999:12;:10;:12::i;:::-;4988:23;;:7;:5;:7::i;:::-;:23;;;4980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44882:3:::1;44871:8;;:14;;;;;;;;;;;;;;;;;;44811:82:::0;:::o;655:98::-;708:7;735:10;728:17;;655:98;:::o;17012:380::-;17165:1;17148:19;;:5;:19;;;17140:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17246:1;17227:21;;:7;:21;;;17219:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17330:6;17300:11;:18;17312:5;17300:18;;;;;;;;;;;;;;;:27;17319:7;17300:27;;;;;;;;;;;;;;;:36;;;;17368:7;17352:32;;17361:5;17352:32;;;17377:6;17352:32;;;;;;:::i;:::-;;;;;;;;17012:380;;;:::o;42241:962::-;42378:12;:20;42391:6;42378:20;;;;;;;;;;;;;;;;;;;;;;;;;:47;;;;42402:12;:23;42415:9;42402:23;;;;;;;;;;;;;;;;;;;;;;;;;42378:47;42374:129;;;42449:42;42465:6;42473:9;42484:6;42449:15;:42::i;:::-;42442:49;;42374:129;42519:17;:15;:17::i;:::-;42515:61;;;42553:11;:9;:11::i;:::-;42515:61;42590:7;;;;;;;;;;;42586:89;;;42621:42;42637:6;42645:9;42656:6;42621:15;:42::i;:::-;42614:49;;42586:89;42687:17;42736:13;;;;;;;;;;;42723:26;;:9;:26;;;42719:226;;42778:41;42790:6;42798:15;;42815:3;42778:11;:41::i;:::-;42766:53;;42719:226;;;42851:13;;;;;;;;;;;42841:23;;:6;:23;;;42837:108;;42893:40;42905:6;42913:14;;42929:3;42893:11;:40::i;:::-;42881:52;;42837:108;42719:226;42973:1;42961:9;:13;42957:239;;;42991:49;43007:6;43023:4;43030:9;42991:15;:49::i;:::-;43055:54;43071:6;43079:9;43099;43090:6;:18;;;;:::i;:::-;43055:15;:54::i;:::-;42957:239;;;43142:42;43158:6;43166:9;43177:6;43142:15;:42::i;:::-;42957:239;42363:840;42241:962;;;;:::o;43838:708::-;43707:4;43697:7;;:14;;;;;;;;;;;;;;;;;;43888:21:::1;43926:1;43912:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43888:40;;43957:4;43939;43944:1;43939:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;43983:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43973:4;43978:1;43973:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;44035:15;;;;;;;;;;;:66;;;44120:24;44138:4;44120:9;:24::i;:::-;44163:1;44183:4;44214;44238:15;44035:233;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;44018:387;;;;:::i;:::-;;;::::0;::::1;;;;;:::i;:::-;;;;;;;;44376:29;44018:387;;;;;;;::::0;::::1;;;;;;;;;44417:15;44435:21;44417:39;;44481:1;44471:7;:11;44467:72;;;44499:10;;;;;;;;;;;:19;;:28;44519:7;44499:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;44467:72;43877:669;;43744:5:::0;43734:7;;:15;;;;;;;;;;;;;;;;;;43838:708::o;5905:173::-;5961:16;5980:6;;;;;;;;;;;5961:25;;6006:8;5997:6;;:17;;;;;;;;;;;;;;;;;;6061:8;6030:40;;6051:8;6030:40;;;;;;;;;;;;5950:128;5905:173;:::o;14452:675::-;14610:1;14592:20;;:6;:20;;;14584:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14694:1;14673:23;;:9;:23;;;14665:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14749:47;14770:6;14778:9;14789:6;14749:20;:47::i;:::-;14809:21;14833:9;:17;14843:6;14833:17;;;;;;;;;;;;;;;;14809:41;;14900:6;14883:13;:23;;14861:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;15019:6;15003:13;:22;;;;:::i;:::-;14983:9;:17;14993:6;14983:17;;;;;;;;;;;;;;;:42;;;;15060:6;15036:9;:20;15046:9;15036:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15101:9;15084:35;;15093:6;15084:35;;;15112:6;15084:35;;;;;;:::i;:::-;;;;;;;;14573:554;14452:675;;;:::o;42002:231::-;42052:4;42103:13;;;;;;;;;;;42089:27;;:10;:27;;;;:52;;;;;42134:7;;;;;;;;;;;42133:8;42089:52;:111;;;;;42186:14;;42158:24;42176:4;42158:9;:24::i;:::-;:42;;42089:111;:136;;;;;42217:8;;;;;;;;;;;42089:136;42069:156;;42002:231;:::o;21988:4362::-;22104:14;22456:13;22529;22656:1;22652:6;22649:1;22646;22639:20;22693:1;22690;22686:9;22677:18;;22749:5;22745:2;22742:13;22734:5;22730:2;22726:14;22722:34;22713:43;;22610:161;22864:1;22855:5;:10;22851:373;;23197:11;23189:5;:19;;;;;:::i;:::-;;;23182:26;;;;;;22851:373;23348:5;23333:11;:20;23329:90;;23381:22;;;;;;;;;;;;;;23329:90;23681:17;23819:11;23816:1;23813;23806:25;23793:38;;23950:5;23939:9;23936:20;23929:5;23925:32;23916:41;;23995:9;23988:5;23984:21;23975:30;;24333:12;24378:1;24364:11;24363:12;:16;24348:11;:32;24333:47;;24503:4;24490:11;24486:22;24471:37;;24598:4;24591:5;24587:16;24578:25;;24758:1;24751:4;24744;24741:1;24737:12;24733:23;24729:31;24721:39;;24861:4;24853:5;:12;24844:21;;;;25188:15;25226:1;25211:11;25207:1;:15;25206:21;25188:39;;25477:7;25463:11;:21;25459:1;:25;25448:36;;;;25547:7;25533:11;:21;25529:1;:25;25518:36;;;;25618:7;25604:11;:21;25600:1;:25;25589:36;;;;25689:7;25675:11;:21;25671:1;:25;25660:36;;;;25760:7;25746:11;:21;25742:1;:25;25731:36;;;;25832:7;25818:11;:21;25814:1;:25;25803:36;;;;26296:7;26288:5;:15;26279:24;;26318:13;;;;;21988:4362;;;;;;:::o;17991:125::-;;;;:::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;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::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:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:116::-;3868:21;3883:5;3868:21;:::i;:::-;3861:5;3858:32;3848:60;;3904:1;3901;3894:12;3848:60;3798:116;:::o;3920:133::-;3963:5;4001:6;3988:20;3979:29;;4017:30;4041:5;4017:30;:::i;:::-;3920:133;;;;:::o;4059:468::-;4124:6;4132;4181:2;4169:9;4160:7;4156:23;4152:32;4149:119;;;4187:79;;:::i;:::-;4149:119;4307:1;4332:53;4377:7;4368:6;4357:9;4353:22;4332:53;:::i;:::-;4322:63;;4278:117;4434:2;4460:50;4502:7;4493:6;4482:9;4478:22;4460:50;:::i;:::-;4450:60;;4405:115;4059:468;;;;;:::o;4533:619::-;4610:6;4618;4626;4675:2;4663:9;4654:7;4650:23;4646:32;4643:119;;;4681:79;;:::i;:::-;4643:119;4801:1;4826:53;4871:7;4862:6;4851:9;4847:22;4826:53;:::i;:::-;4816:63;;4772:117;4928:2;4954:53;4999:7;4990:6;4979:9;4975:22;4954:53;:::i;:::-;4944:63;;4899:118;5056:2;5082:53;5127:7;5118:6;5107:9;5103:22;5082:53;:::i;:::-;5072:63;;5027:118;4533:619;;;;;:::o;5158:86::-;5193:7;5233:4;5226:5;5222:16;5211:27;;5158:86;;;:::o;5250:112::-;5333:22;5349:5;5333:22;:::i;:::-;5328:3;5321:35;5250:112;;:::o;5368:214::-;5457:4;5495:2;5484:9;5480:18;5472:26;;5508:67;5572:1;5561:9;5557:17;5548:6;5508:67;:::i;:::-;5368:214;;;;:::o;5588:118::-;5675:24;5693:5;5675:24;:::i;:::-;5670:3;5663:37;5588:118;;:::o;5712:222::-;5805:4;5843:2;5832:9;5828:18;5820:26;;5856:71;5924:1;5913:9;5909:17;5900:6;5856:71;:::i;:::-;5712:222;;;;:::o;5940:329::-;5999:6;6048:2;6036:9;6027:7;6023:23;6019:32;6016:119;;;6054:79;;:::i;:::-;6016:119;6174:1;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6145:117;5940:329;;;;:::o;6275:104::-;6320:7;6349:24;6367:5;6349:24;:::i;:::-;6338:35;;6275:104;;;:::o;6385:142::-;6488:32;6514:5;6488:32;:::i;:::-;6483:3;6476:45;6385:142;;:::o;6533:254::-;6642:4;6680:2;6669:9;6665:18;6657:26;;6693:87;6777:1;6766:9;6762:17;6753:6;6693:87;:::i;:::-;6533:254;;;;:::o;6793:329::-;6852:6;6901:2;6889:9;6880:7;6876:23;6872:32;6869:119;;;6907:79;;:::i;:::-;6869:119;7027:1;7052:53;7097:7;7088:6;7077:9;7073:22;7052:53;:::i;:::-;7042:63;;6998:117;6793:329;;;;:::o;7128:474::-;7196:6;7204;7253:2;7241:9;7232:7;7228:23;7224:32;7221:119;;;7259:79;;:::i;:::-;7221:119;7379:1;7404:53;7449:7;7440:6;7429:9;7425:22;7404:53;:::i;:::-;7394:63;;7350:117;7506:2;7532:53;7577:7;7568:6;7557:9;7553:22;7532:53;:::i;:::-;7522:63;;7477:118;7128:474;;;;;:::o;7608:323::-;7664:6;7713:2;7701:9;7692:7;7688:23;7684:32;7681:119;;;7719:79;;:::i;:::-;7681:119;7839:1;7864:50;7906:7;7897:6;7886:9;7882:22;7864:50;:::i;:::-;7854:60;;7810:114;7608:323;;;;:::o;7937:180::-;7985:77;7982:1;7975:88;8082:4;8079:1;8072:15;8106:4;8103:1;8096:15;8123:320;8167:6;8204:1;8198:4;8194:12;8184:22;;8251:1;8245:4;8241:12;8272:18;8262:81;;8328:4;8320:6;8316:17;8306:27;;8262:81;8390:2;8382:6;8379:14;8359:18;8356:38;8353:84;;8409:18;;:::i;:::-;8353:84;8174:269;8123:320;;;:::o;8449:182::-;8589:34;8585:1;8577:6;8573:14;8566:58;8449:182;:::o;8637:366::-;8779:3;8800:67;8864:2;8859:3;8800:67;:::i;:::-;8793:74;;8876:93;8965:3;8876:93;:::i;:::-;8994:2;8989:3;8985:12;8978:19;;8637:366;;;:::o;9009:419::-;9175:4;9213:2;9202:9;9198:18;9190:26;;9262:9;9256:4;9252:20;9248:1;9237:9;9233:17;9226:47;9290:131;9416:4;9290:131;:::i;:::-;9282:139;;9009:419;;;:::o;9434:227::-;9574:34;9570:1;9562:6;9558:14;9551:58;9643:10;9638:2;9630:6;9626:15;9619:35;9434:227;:::o;9667:366::-;9809:3;9830:67;9894:2;9889:3;9830:67;:::i;:::-;9823:74;;9906:93;9995:3;9906:93;:::i;:::-;10024:2;10019:3;10015:12;10008:19;;9667:366;;;:::o;10039:419::-;10205:4;10243:2;10232:9;10228:18;10220:26;;10292:9;10286:4;10282:20;10278:1;10267:9;10263:17;10256:47;10320:131;10446:4;10320:131;:::i;:::-;10312:139;;10039:419;;;:::o;10464:180::-;10512:77;10509:1;10502:88;10609:4;10606:1;10599:15;10633:4;10630:1;10623:15;10650:194;10690:4;10710:20;10728:1;10710:20;:::i;:::-;10705:25;;10744:20;10762:1;10744:20;:::i;:::-;10739:25;;10788:1;10785;10781:9;10773:17;;10812:1;10806:4;10803:11;10800:37;;;10817:18;;:::i;:::-;10800:37;10650:194;;;;:::o;10850:191::-;10890:3;10909:20;10927:1;10909:20;:::i;:::-;10904:25;;10943:20;10961:1;10943:20;:::i;:::-;10938:25;;10986:1;10983;10979:9;10972:16;;11007:3;11004:1;11001:10;10998:36;;;11014:18;;:::i;:::-;10998:36;10850:191;;;;:::o;11047:224::-;11187:34;11183:1;11175:6;11171:14;11164:58;11256:7;11251:2;11243:6;11239:15;11232:32;11047:224;:::o;11277:366::-;11419:3;11440:67;11504:2;11499:3;11440:67;:::i;:::-;11433:74;;11516:93;11605:3;11516:93;:::i;:::-;11634:2;11629:3;11625:12;11618:19;;11277:366;;;:::o;11649:419::-;11815:4;11853:2;11842:9;11838:18;11830:26;;11902:9;11896:4;11892:20;11888:1;11877:9;11873:17;11866:47;11930:131;12056:4;11930:131;:::i;:::-;11922:139;;11649:419;;;:::o;12074:225::-;12214:34;12210:1;12202:6;12198:14;12191:58;12283:8;12278:2;12270:6;12266:15;12259:33;12074:225;:::o;12305:366::-;12447:3;12468:67;12532:2;12527:3;12468:67;:::i;:::-;12461:74;;12544:93;12633:3;12544:93;:::i;:::-;12662:2;12657:3;12653:12;12646:19;;12305:366;;;:::o;12677:419::-;12843:4;12881:2;12870:9;12866:18;12858:26;;12930:9;12924:4;12920:20;12916:1;12905:9;12901:17;12894:47;12958:131;13084:4;12958:131;:::i;:::-;12950:139;;12677:419;;;:::o;13102:223::-;13242:34;13238:1;13230:6;13226:14;13219:58;13311:6;13306:2;13298:6;13294:15;13287:31;13102:223;:::o;13331:366::-;13473:3;13494:67;13558:2;13553:3;13494:67;:::i;:::-;13487:74;;13570:93;13659:3;13570:93;:::i;:::-;13688:2;13683:3;13679:12;13672:19;;13331:366;;;:::o;13703:419::-;13869:4;13907:2;13896:9;13892:18;13884:26;;13956:9;13950:4;13946:20;13942:1;13931:9;13927:17;13920:47;13984:131;14110:4;13984:131;:::i;:::-;13976:139;;13703:419;;;:::o;14128:221::-;14268:34;14264:1;14256:6;14252:14;14245:58;14337:4;14332:2;14324:6;14320:15;14313:29;14128:221;:::o;14355:366::-;14497:3;14518:67;14582:2;14577:3;14518:67;:::i;:::-;14511:74;;14594:93;14683:3;14594:93;:::i;:::-;14712:2;14707:3;14703:12;14696:19;;14355:366;;;:::o;14727:419::-;14893:4;14931:2;14920:9;14916:18;14908:26;;14980:9;14974:4;14970:20;14966:1;14955:9;14951:17;14944:47;15008:131;15134:4;15008:131;:::i;:::-;15000:139;;14727:419;;;:::o;15152:180::-;15200:77;15197:1;15190:88;15297:4;15294:1;15287:15;15321:4;15318:1;15311:15;15338:180;15386:77;15383:1;15376:88;15483:4;15480:1;15473:15;15507:4;15504:1;15497:15;15524:143;15581:5;15612:6;15606:13;15597:22;;15628:33;15655:5;15628:33;:::i;:::-;15524:143;;;;:::o;15673:351::-;15743:6;15792:2;15780:9;15771:7;15767:23;15763:32;15760:119;;;15798:79;;:::i;:::-;15760:119;15918:1;15943:64;15999:7;15990:6;15979:9;15975:22;15943:64;:::i;:::-;15933:74;;15889:128;15673:351;;;;:::o;16030:85::-;16075:7;16104:5;16093:16;;16030:85;;;:::o;16121:60::-;16149:3;16170:5;16163:12;;16121:60;;;:::o;16187:158::-;16245:9;16278:61;16296:42;16305:32;16331:5;16305:32;:::i;:::-;16296:42;:::i;:::-;16278:61;:::i;:::-;16265:74;;16187:158;;;:::o;16351:147::-;16446:45;16485:5;16446:45;:::i;:::-;16441:3;16434:58;16351:147;;:::o;16504:114::-;16571:6;16605:5;16599:12;16589:22;;16504:114;;;:::o;16624:184::-;16723:11;16757:6;16752:3;16745:19;16797:4;16792:3;16788:14;16773:29;;16624:184;;;;:::o;16814:132::-;16881:4;16904:3;16896:11;;16934:4;16929:3;16925:14;16917:22;;16814:132;;;:::o;16952:108::-;17029:24;17047:5;17029:24;:::i;:::-;17024:3;17017:37;16952:108;;:::o;17066:179::-;17135:10;17156:46;17198:3;17190:6;17156:46;:::i;:::-;17234:4;17229:3;17225:14;17211:28;;17066:179;;;;:::o;17251:113::-;17321:4;17353;17348:3;17344:14;17336:22;;17251:113;;;:::o;17400:732::-;17519:3;17548:54;17596:5;17548:54;:::i;:::-;17618:86;17697:6;17692:3;17618:86;:::i;:::-;17611:93;;17728:56;17778:5;17728:56;:::i;:::-;17807:7;17838:1;17823:284;17848:6;17845:1;17842:13;17823:284;;;17924:6;17918:13;17951:63;18010:3;17995:13;17951:63;:::i;:::-;17944:70;;18037:60;18090:6;18037:60;:::i;:::-;18027:70;;17883:224;17870:1;17867;17863:9;17858:14;;17823:284;;;17827:14;18123:3;18116:10;;17524:608;;;17400:732;;;;:::o;18138:831::-;18401:4;18439:3;18428:9;18424:19;18416:27;;18453:71;18521:1;18510:9;18506:17;18497:6;18453:71;:::i;:::-;18534:80;18610:2;18599:9;18595:18;18586:6;18534:80;:::i;:::-;18661:9;18655:4;18651:20;18646:2;18635:9;18631:18;18624:48;18689:108;18792:4;18783:6;18689:108;:::i;:::-;18681:116;;18807:72;18875:2;18864:9;18860:18;18851:6;18807:72;:::i;:::-;18889:73;18957:3;18946:9;18942:19;18933:6;18889:73;:::i;:::-;18138:831;;;;;;;;:::o;18975:106::-;19019:8;19068:5;19063:3;19059:15;19038:36;;18975:106;;;:::o;19087:183::-;19122:3;19160:1;19142:16;19139:23;19136:128;;;19198:1;19195;19192;19177:23;19220:34;19251:1;19245:8;19220:34;:::i;:::-;19213:41;;19136:128;19087:183;:::o;19276:281::-;19359:27;19381:4;19359:27;:::i;:::-;19351:6;19347:40;19489:6;19477:10;19474:22;19453:18;19441:10;19438:34;19435:62;19432:88;;;19500:18;;:::i;:::-;19432:88;19540:10;19536:2;19529:22;19319:238;19276:281;;:::o;19563:711::-;19602:3;19640:4;19622:16;19619:26;19648:5;19616:39;19677:20;;:::i;:::-;19752:1;19734:16;19730:24;19727:1;19721:4;19706:49;19785:4;19779:11;19884:16;19877:4;19869:6;19865:17;19862:39;19829:18;19821:6;19818:30;19802:113;19799:146;;;19930:5;;;;19799:146;19976:6;19970:4;19966:17;20012:3;20006:10;20039:18;20031:6;20028:30;20025:43;;;20061:5;;;;;;20025:43;20109:6;20102:4;20097:3;20093:14;20089:27;20168:1;20150:16;20146:24;20140:4;20136:35;20131:3;20128:44;20125:57;;;20175:5;;;;;;;20125:57;20192;20240:6;20234:4;20230:17;20222:6;20218:30;20212:4;20192:57;:::i;:::-;20265:3;20258:10;;19606:668;;;;;19563:711;;:::o;20280:224::-;20420:34;20416:1;20408:6;20404:14;20397:58;20489:7;20484:2;20476:6;20472:15;20465:32;20280:224;:::o;20510:366::-;20652:3;20673:67;20737:2;20732:3;20673:67;:::i;:::-;20666:74;;20749:93;20838:3;20749:93;:::i;:::-;20867:2;20862:3;20858:12;20851:19;;20510:366;;;:::o;20882:419::-;21048:4;21086:2;21075:9;21071:18;21063:26;;21135:9;21129:4;21125:20;21121:1;21110:9;21106:17;21099:47;21163:131;21289:4;21163:131;:::i;:::-;21155:139;;20882:419;;;:::o;21307:222::-;21447:34;21443:1;21435:6;21431:14;21424:58;21516:5;21511:2;21503:6;21499:15;21492:30;21307:222;:::o;21535:366::-;21677:3;21698:67;21762:2;21757:3;21698:67;:::i;:::-;21691:74;;21774:93;21863:3;21774:93;:::i;:::-;21892:2;21887:3;21883:12;21876:19;;21535:366;;;:::o;21907:419::-;22073:4;22111:2;22100:9;22096:18;22088:26;;22160:9;22154:4;22150:20;22146:1;22135:9;22131:17;22124:47;22188:131;22314:4;22188:131;:::i;:::-;22180:139;;21907:419;;;:::o;22332:225::-;22472:34;22468:1;22460:6;22456:14;22449:58;22541:8;22536:2;22528:6;22524:15;22517:33;22332:225;:::o;22563:366::-;22705:3;22726:67;22790:2;22785:3;22726:67;:::i;:::-;22719:74;;22802:93;22891:3;22802:93;:::i;:::-;22920:2;22915:3;22911:12;22904:19;;22563:366;;;:::o;22935:419::-;23101:4;23139:2;23128:9;23124:18;23116:26;;23188:9;23182:4;23178:20;23174:1;23163:9;23159:17;23152:47;23216:131;23342:4;23216:131;:::i;:::-;23208:139;;22935:419;;;:::o;23360:180::-;23408:77;23405:1;23398:88;23505:4;23502:1;23495:15;23529:4;23526:1;23519:15

Swarm Source

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