ETH Price: $2,526.12 (+0.04%)

Token

Baby Kitsune (BABYKITSUNE)
 

Overview

Max Total Supply

2,000,000,000 BABYKITSUNE

Holders

33

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
2,579,940.365242614 BABYKITSUNE

Value
$0.00
0x2485d2f724ee7ebbb15e8ddd5de79c0b20e85aa7
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:
BabyK

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-09
*/

// SPDX-License-Identifier: MIT

/*
BABY KITSUNE  ($BABYKITSUNE)
Twitter: https://twitter.com/babyKitsuneERC
Medium: https://medium.com/@BabyKitsune
*/

pragma solidity 0.8.16;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

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

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

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}


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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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



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

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

        return true;
    }

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

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

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

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

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

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

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual  {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }

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

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

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

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

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

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private _numTokensSellToAddToLiquidity = 900000 * 10**_decimals;
    uint256 private _numTokensSellToAddToETH = 400000 * 10**_decimals;
    bool inSwapAndLiquify;

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

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

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

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

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[marketingWallet] = true;
        _isExcludedFromFee[communityWallet] = true;
        _isExcludedFromFee[stakingWallet] = true;
    }

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

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

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } 
            else {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
                if(from == uniswapV2Pair){
                    require((amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit");
                }

                uint256 marketingShare = ((amount * taxForMarketing) / 100);
                uint256 liquidityShare = ((amount * taxForLiquidity) / 100);
                transferAmount = amount - (marketingShare + liquidityShare);
                _marketingReserves += marketingShare;

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

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

        uint256 initialBalance = address(this).balance;

        _swapTokensForEth(half);

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

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

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

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

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

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

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

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

        return true;
    }

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

        return true;
    }

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

        return true;
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"}],"name":"changeTaxForLiquidityAndMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"communityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526040518060400160405280600c81526020017f42616279204b697473756e650000000000000000000000000000000000000000815250600690816200004a919062000cdb565b506040518060400160405280600b81526020017f424142594b495453554e450000000000000000000000000000000000000000008152506007908162000091919062000cdb565b506009600860006101000a81548160ff021916908360ff16021790555063773594006009556001600a556006600b55600860009054906101000a900460ff16600a620000de919062000f52565b6302625a00620000ef919062000fa3565b600c55600860009054906101000a900460ff16600a62000110919062000f52565b6302625a0062000121919062000fa3565b600d55738943053abde70e88e4512108baed73864450bd15600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f97c0d0596f27209582a9eda12e5897ffe51694c600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507367a43a5367e65335bf9ae48156833e9a18330683601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601155600860009054906101000a900460ff16600a62000246919062000f52565b620dbba062000256919062000fa3565b601355600860009054906101000a900460ff16600a62000277919062000f52565b62061a8062000287919062000fa3565b6014553480156200029757600080fd5b5060068054620002a79062000aca565b80601f0160208091040260200160405190810160405280929190818152602001828054620002d59062000aca565b8015620003265780601f10620002fa5761010080835404028352916020019162000326565b820191906000526020600020905b8154815290600101906020018083116200030857829003601f168201915b5050505050600780546200033a9062000aca565b80601f0160208091040260200160405190810160405280929190818152602001828054620003689062000aca565b8015620003b95780601f106200038d57610100808354040283529160200191620003b9565b820191906000526020600020905b8154815290600101906020018083116200039b57829003601f168201915b50505050508160039081620003cf919062000cdb565b508060049081620003e1919062000cdb565b50505062000404620003f86200084e60201b60201c565b6200085660201b60201c565b6200044233600860009054906101000a900460ff16600a62000427919062000f52565b60095462000436919062000fa3565b6200091c60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620004a7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004cd91906200106e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000535573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200055b91906200106e565b6040518363ffffffff1660e01b81526004016200057a929190620010b1565b6020604051808303816000875af11580156200059a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005c091906200106e565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060016012600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050620011ca565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200098e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000985906200113f565b60405180910390fd5b8060026000828254620009a2919062001161565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a559190620011ad565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ae357607f821691505b60208210810362000af95762000af862000a9b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b637fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b24565b62000b6f868362000b24565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000bbc62000bb662000bb08462000b87565b62000b91565b62000b87565b9050919050565b6000819050919050565b62000bd88362000b9b565b62000bf062000be78262000bc3565b84845462000b31565b825550505050565b600090565b62000c0762000bf8565b62000c1481848462000bcd565b505050565b5b8181101562000c3c5762000c3060008262000bfd565b60018101905062000c1a565b5050565b601f82111562000c8b5762000c558162000aff565b62000c608462000b14565b8101602085101562000c70578190505b62000c8862000c7f8562000b14565b83018262000c19565b50505b505050565b600082821c905092915050565b600062000cb06000198460080262000c90565b1980831691505092915050565b600062000ccb838362000c9d565b9150826002028217905092915050565b62000ce68262000a61565b67ffffffffffffffff81111562000d025762000d0162000a6c565b5b62000d0e825462000aca565b62000d1b82828562000c40565b600060209050601f83116001811462000d53576000841562000d3e578287015190505b62000d4a858262000cbd565b86555062000dba565b601f19841662000d638662000aff565b60005b8281101562000d8d5784890151825560018201915060208501945060208101905062000d66565b8683101562000dad578489015162000da9601f89168262000c9d565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000e505780860481111562000e285762000e2762000dc2565b5b600185161562000e385780820291505b808102905062000e488562000df1565b945062000e08565b94509492505050565b60008262000e6b576001905062000f3e565b8162000e7b576000905062000f3e565b816001811462000e94576002811462000e9f5762000ed5565b600191505062000f3e565b60ff84111562000eb45762000eb362000dc2565b5b8360020a91508482111562000ece5762000ecd62000dc2565b5b5062000f3e565b5060208310610133831016604e8410600b841016171562000f0f5782820a90508381111562000f095762000f0862000dc2565b5b62000f3e565b62000f1e848484600162000dfe565b9250905081840481111562000f385762000f3762000dc2565b5b81810290505b9392505050565b600060ff82169050919050565b600062000f5f8262000b87565b915062000f6c8362000f45565b925062000f9b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000e59565b905092915050565b600062000fb08262000b87565b915062000fbd8362000b87565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ff95762000ff862000dc2565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620010368262001009565b9050919050565b620010488162001029565b81146200105457600080fd5b50565b60008151905062001068816200103d565b92915050565b60006020828403121562001087576200108662001004565b5b6000620010978482850162001057565b91505092915050565b620010ab8162001029565b82525050565b6000604082019050620010c86000830185620010a0565b620010d76020830184620010a0565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001127601f83620010de565b91506200113482620010ef565b602082019050919050565b600060208201905081810360008301526200115a8162001118565b9050919050565b60006200116e8262000b87565b91506200117b8362000b87565b925082820190508082111562001196576200119562000dc2565b5b92915050565b620011a78162000b87565b82525050565b6000602082019050620011c460008301846200119c565b92915050565b60805160a051612fc56200122f600039600081816108eb015281816110ce015281816111230152818161119101526113d801526000818161083a0152818161199f01528181611a8001528181611aa701528181611de60152611e0d0152612fc56000f3fe6080604052600436106101c65760003560e01c806375f0a874116100f7578063a9059cbb11610095578063c757483911610064578063c7574839146106a1578063dd62ed3e146106cc578063f2fde38b14610709578063f345bd8514610732576101cd565b8063a9059cbb146105bf578063aa4bde28146105fc578063af8af69014610627578063bb85c6d114610664576101cd565b80638c0b5e22116100d15780638c0b5e22146105015780638da5cb5b1461052c57806395d89b4114610557578063a457c2d714610582576101cd565b806375f0a8741461047057806379cc67901461049b57806381bfdcca146104c4576101cd565b80633950935111610164578063527ffabd1161013e578063527ffabd146103b4578063677daa57146103df57806370a082311461041c578063715018a614610459576101cd565b8063395093511461032357806342966c681461036057806349bd5a5e14610389576101cd565b80631694505e116101a05780631694505e1461026557806318160ddd1461029057806323b872dd146102bb578063313ce567146102f8576101cd565b806306ee6ad8146101d257806306fdde03146101fd578063095ea7b314610228576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e761075d565b6040516101f49190611f1d565b60405180910390f35b34801561020957600080fd5b50610212610783565b60405161021f9190611fc8565b60405180910390f35b34801561023457600080fd5b5061024f600480360381019061024a9190612051565b610815565b60405161025c91906120ac565b60405180910390f35b34801561027157600080fd5b5061027a610838565b6040516102879190612126565b60405180910390f35b34801561029c57600080fd5b506102a561085c565b6040516102b29190612150565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd919061216b565b610866565b6040516102ef91906120ac565b60405180910390f35b34801561030457600080fd5b5061030d610895565b60405161031a91906121da565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190612051565b61089e565b60405161035791906120ac565b60405180910390f35b34801561036c57600080fd5b50610387600480360381019061038291906121f5565b6108d5565b005b34801561039557600080fd5b5061039e6108e9565b6040516103ab9190611f1d565b60405180910390f35b3480156103c057600080fd5b506103c961090d565b6040516103d69190612150565b60405180910390f35b3480156103eb57600080fd5b50610406600480360381019061040191906121f5565b610913565b60405161041391906120ac565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190612222565b61092d565b6040516104509190612150565b60405180910390f35b34801561046557600080fd5b5061046e610975565b005b34801561047c57600080fd5b50610485610989565b6040516104929190611f1d565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190612051565b6109af565b005b3480156104d057600080fd5b506104eb60048036038101906104e691906121f5565b6109cf565b6040516104f891906120ac565b60405180910390f35b34801561050d57600080fd5b506105166109e9565b6040516105239190612150565b60405180910390f35b34801561053857600080fd5b506105416109ef565b60405161054e9190611f1d565b60405180910390f35b34801561056357600080fd5b5061056c610a19565b6040516105799190611fc8565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a49190612051565b610aab565b6040516105b691906120ac565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e19190612051565b610b22565b6040516105f391906120ac565b60405180910390f35b34801561060857600080fd5b50610611610b45565b60405161061e9190612150565b60405180910390f35b34801561063357600080fd5b5061064e6004803603810190610649919061224f565b610b4b565b60405161065b91906120ac565b60405180910390f35b34801561067057600080fd5b5061068b60048036038101906106869190612222565b610bbc565b60405161069891906120ac565b60405180910390f35b3480156106ad57600080fd5b506106b6610c10565b6040516106c39190611f1d565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee919061228f565b610c36565b6040516107009190612150565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190612222565b610cbd565b005b34801561073e57600080fd5b50610747610d40565b6040516107549190612150565b60405180910390f35b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610792906122fe565b80601f01602080910402602001604051908101604052809291908181526020018280546107be906122fe565b801561080b5780601f106107e05761010080835404028352916020019161080b565b820191906000526020600020905b8154815290600101906020018083116107ee57829003601f168201915b5050505050905090565b600080610820610d46565b905061082d818585610d4e565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600080610871610d46565b905061087e858285610f17565b610889858585610fa3565b60019150509392505050565b60006009905090565b6000806108a9610d46565b90506108ca8185856108bb8589610c36565b6108c5919061235e565b610d4e565b600191505092915050565b6108e66108e0610d46565b8261152b565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5481565b600061091d6116e0565b81600c8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61097d6116e0565b610987600061175e565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109c1826109bb610d46565b83610f17565b6109cb828261152b565b5050565b60006109d96116e0565b81600d8190555060019050919050565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a28906122fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610a54906122fe565b8015610aa15780601f10610a7657610100808354040283529160200191610aa1565b820191906000526020600020905b815481529060010190602001808311610a8457829003601f168201915b5050505050905090565b600080610ab6610d46565b90506000610ac48286610c36565b905083811015610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0090612404565b60405180910390fd5b610b168286868403610d4e565b60019250505092915050565b600080610b2d610d46565b9050610b3a818585610fa3565b600191505092915050565b600d5481565b6000610b556116e0565b60148284610b63919061235e565b1115610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b90612496565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b6000610bc66116e0565b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cc56116e0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b90612528565b60405180910390fd5b610d3d8161175e565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db4906125ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e239061264c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f0a9190612150565b60405180910390a3505050565b6000610f238484610c36565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f9d5781811015610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f86906126b8565b60405180910390fd5b610f9c8484848403610d4e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611012576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110099061274a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611081576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611078906127dc565b60405180910390fd5b8061108b8461092d565b10156110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c39061286e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061117157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561118a5750601560009054906101000a900460ff16155b1561151a577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146112e15760006011546111f03061092d565b6111fa919061288e565b9050601354811061121157611210601354611824565b5b601454601154106112df576112276014546118e5565b6014546011600082825461123b919061288e565b925050819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d49061290e565b60405180910390fd5b505b505b6000601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806113845750601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561139157819050611509565b600c548211156113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd906129a0565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361148257600d546114358461092d565b83611440919061235e565b1115611481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147890612a32565b60405180910390fd5b5b60006064600b54846114949190612a52565b61149e9190612adb565b905060006064600a54856114b29190612a52565b6114bc9190612adb565b905080826114ca919061235e565b846114d5919061288e565b925081601160008282546114e9919061235e565b9250508190555061150686308385611501919061235e565b611b65565b50505b611514848483611b65565b50611526565b611525838383611b65565b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159190612b7e565b60405180910390fd5b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161790612c10565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116d39190612150565b60405180910390a3505050565b6116e8610d46565b73ffffffffffffffffffffffffffffffffffffffff166117066109ef565b73ffffffffffffffffffffffffffffffffffffffff161461175c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175390612c7c565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601560006101000a81548160ff021916908315150217905550600060028261184e9190612adb565b90506000818361185e919061288e565b9050600047905061186e836118e5565b6000814761187c919061288e565b90506118888382611dc5565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618482856040516118bb93929190612c9c565b60405180910390a1505050506000601560006101000a81548160ff02191690831515021790555050565b6001601560006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561191d5761191c612cd3565b5b60405190808252806020026020018201604052801561194b5781602001602082028036833780820191505090505b509050308160008151811061196357611962612d02565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a2c9190612d46565b81600181518110611a4057611a3f612d02565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611aa5307f000000000000000000000000000000000000000000000000000000000000000084610d4e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c42611af4919061235e565b6040518663ffffffff1660e01b8152600401611b14959493929190612e6c565b600060405180830381600087803b158015611b2e57600080fd5b505af1158015611b42573d6000803e3d6000fd5b50505050506000601560006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcb9061274a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a906127dc565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc09061286e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611db79190612150565b60405180910390a350505050565b6001601560006101000a81548160ff021916908315150217905550611e0b307f000000000000000000000000000000000000000000000000000000000000000084610d4e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611e556109ef565b426040518863ffffffff1660e01b8152600401611e7796959493929190612ec6565b60606040518083038185885af1158015611e95573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611eba9190612f3c565b5050506000601560006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f0782611edc565b9050919050565b611f1781611efc565b82525050565b6000602082019050611f326000830184611f0e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f72578082015181840152602081019050611f57565b60008484015250505050565b6000601f19601f8301169050919050565b6000611f9a82611f38565b611fa48185611f43565b9350611fb4818560208601611f54565b611fbd81611f7e565b840191505092915050565b60006020820190508181036000830152611fe28184611f8f565b905092915050565b600080fd5b611ff881611efc565b811461200357600080fd5b50565b60008135905061201581611fef565b92915050565b6000819050919050565b61202e8161201b565b811461203957600080fd5b50565b60008135905061204b81612025565b92915050565b6000806040838503121561206857612067611fea565b5b600061207685828601612006565b92505060206120878582860161203c565b9150509250929050565b60008115159050919050565b6120a681612091565b82525050565b60006020820190506120c1600083018461209d565b92915050565b6000819050919050565b60006120ec6120e76120e284611edc565b6120c7565b611edc565b9050919050565b60006120fe826120d1565b9050919050565b6000612110826120f3565b9050919050565b61212081612105565b82525050565b600060208201905061213b6000830184612117565b92915050565b61214a8161201b565b82525050565b60006020820190506121656000830184612141565b92915050565b60008060006060848603121561218457612183611fea565b5b600061219286828701612006565b93505060206121a386828701612006565b92505060406121b48682870161203c565b9150509250925092565b600060ff82169050919050565b6121d4816121be565b82525050565b60006020820190506121ef60008301846121cb565b92915050565b60006020828403121561220b5761220a611fea565b5b60006122198482850161203c565b91505092915050565b60006020828403121561223857612237611fea565b5b600061224684828501612006565b91505092915050565b6000806040838503121561226657612265611fea565b5b60006122748582860161203c565b92505060206122858582860161203c565b9150509250929050565b600080604083850312156122a6576122a5611fea565b5b60006122b485828601612006565b92505060206122c585828601612006565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061231657607f821691505b602082108103612329576123286122cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123698261201b565b91506123748361201b565b925082820190508082111561238c5761238b61232f565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006123ee602583611f43565b91506123f982612392565b604082019050919050565b6000602082019050818103600083015261241d816123e1565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2032300000000000000000000000000000000000000000602082015250565b6000612480602c83611f43565b915061248b82612424565b604082019050919050565b600060208201905081810360008301526124af81612473565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612512602683611f43565b915061251d826124b6565b604082019050919050565b6000602082019050818103600083015261254181612505565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006125a4602483611f43565b91506125af82612548565b604082019050919050565b600060208201905081810360008301526125d381612597565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612636602283611f43565b9150612641826125da565b604082019050919050565b6000602082019050818103600083015261266581612629565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006126a2601d83611f43565b91506126ad8261266c565b602082019050919050565b600060208201905081810360008301526126d181612695565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612734602583611f43565b915061273f826126d8565b604082019050919050565b6000602082019050818103600083015261276381612727565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006127c6602383611f43565b91506127d18261276a565b604082019050919050565b600060208201905081810360008301526127f5816127b9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612858602683611f43565b9150612863826127fc565b604082019050919050565b600060208201905081810360008301526128878161284b565b9050919050565b60006128998261201b565b91506128a48361201b565b92508282039050818111156128bc576128bb61232f565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b60006128f8601283611f43565b9150612903826128c2565b602082019050919050565b60006020820190508181036000830152612927816128eb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b600061298a603983611f43565b91506129958261292e565b604082019050919050565b600060208201905081810360008301526129b98161297d565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612a1c603683611f43565b9150612a27826129c0565b604082019050919050565b60006020820190508181036000830152612a4b81612a0f565b9050919050565b6000612a5d8261201b565b9150612a688361201b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612aa157612aa061232f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ae68261201b565b9150612af18361201b565b925082612b0157612b00612aac565b5b828204905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b68602183611f43565b9150612b7382612b0c565b604082019050919050565b60006020820190508181036000830152612b9781612b5b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612bfa602283611f43565b9150612c0582612b9e565b604082019050919050565b60006020820190508181036000830152612c2981612bed565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c66602083611f43565b9150612c7182612c30565b602082019050919050565b60006020820190508181036000830152612c9581612c59565b9050919050565b6000606082019050612cb16000830186612141565b612cbe6020830185612141565b612ccb6040830184612141565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612d4081611fef565b92915050565b600060208284031215612d5c57612d5b611fea565b5b6000612d6a84828501612d31565b91505092915050565b6000819050919050565b6000612d98612d93612d8e84612d73565b6120c7565b61201b565b9050919050565b612da881612d7d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612de381611efc565b82525050565b6000612df58383612dda565b60208301905092915050565b6000602082019050919050565b6000612e1982612dae565b612e238185612db9565b9350612e2e83612dca565b8060005b83811015612e5f578151612e468882612de9565b9750612e5183612e01565b925050600181019050612e32565b5085935050505092915050565b600060a082019050612e816000830188612141565b612e8e6020830187612d9f565b8181036040830152612ea08186612e0e565b9050612eaf6060830185611f0e565b612ebc6080830184612141565b9695505050505050565b600060c082019050612edb6000830189611f0e565b612ee86020830188612141565b612ef56040830187612d9f565b612f026060830186612d9f565b612f0f6080830185611f0e565b612f1c60a0830184612141565b979650505050505050565b600081519050612f3681612025565b92915050565b600080600060608486031215612f5557612f54611fea565b5b6000612f6386828701612f27565b9350506020612f7486828701612f27565b9250506040612f8586828701612f27565b915050925092509256fea26469706673582212205a7e2d4e1fbe1eabd197f15f0ffb187911b6d788e29fcd83b5c9164d53c62f7c64736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c806375f0a874116100f7578063a9059cbb11610095578063c757483911610064578063c7574839146106a1578063dd62ed3e146106cc578063f2fde38b14610709578063f345bd8514610732576101cd565b8063a9059cbb146105bf578063aa4bde28146105fc578063af8af69014610627578063bb85c6d114610664576101cd565b80638c0b5e22116100d15780638c0b5e22146105015780638da5cb5b1461052c57806395d89b4114610557578063a457c2d714610582576101cd565b806375f0a8741461047057806379cc67901461049b57806381bfdcca146104c4576101cd565b80633950935111610164578063527ffabd1161013e578063527ffabd146103b4578063677daa57146103df57806370a082311461041c578063715018a614610459576101cd565b8063395093511461032357806342966c681461036057806349bd5a5e14610389576101cd565b80631694505e116101a05780631694505e1461026557806318160ddd1461029057806323b872dd146102bb578063313ce567146102f8576101cd565b806306ee6ad8146101d257806306fdde03146101fd578063095ea7b314610228576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e761075d565b6040516101f49190611f1d565b60405180910390f35b34801561020957600080fd5b50610212610783565b60405161021f9190611fc8565b60405180910390f35b34801561023457600080fd5b5061024f600480360381019061024a9190612051565b610815565b60405161025c91906120ac565b60405180910390f35b34801561027157600080fd5b5061027a610838565b6040516102879190612126565b60405180910390f35b34801561029c57600080fd5b506102a561085c565b6040516102b29190612150565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd919061216b565b610866565b6040516102ef91906120ac565b60405180910390f35b34801561030457600080fd5b5061030d610895565b60405161031a91906121da565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190612051565b61089e565b60405161035791906120ac565b60405180910390f35b34801561036c57600080fd5b50610387600480360381019061038291906121f5565b6108d5565b005b34801561039557600080fd5b5061039e6108e9565b6040516103ab9190611f1d565b60405180910390f35b3480156103c057600080fd5b506103c961090d565b6040516103d69190612150565b60405180910390f35b3480156103eb57600080fd5b50610406600480360381019061040191906121f5565b610913565b60405161041391906120ac565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190612222565b61092d565b6040516104509190612150565b60405180910390f35b34801561046557600080fd5b5061046e610975565b005b34801561047c57600080fd5b50610485610989565b6040516104929190611f1d565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190612051565b6109af565b005b3480156104d057600080fd5b506104eb60048036038101906104e691906121f5565b6109cf565b6040516104f891906120ac565b60405180910390f35b34801561050d57600080fd5b506105166109e9565b6040516105239190612150565b60405180910390f35b34801561053857600080fd5b506105416109ef565b60405161054e9190611f1d565b60405180910390f35b34801561056357600080fd5b5061056c610a19565b6040516105799190611fc8565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a49190612051565b610aab565b6040516105b691906120ac565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e19190612051565b610b22565b6040516105f391906120ac565b60405180910390f35b34801561060857600080fd5b50610611610b45565b60405161061e9190612150565b60405180910390f35b34801561063357600080fd5b5061064e6004803603810190610649919061224f565b610b4b565b60405161065b91906120ac565b60405180910390f35b34801561067057600080fd5b5061068b60048036038101906106869190612222565b610bbc565b60405161069891906120ac565b60405180910390f35b3480156106ad57600080fd5b506106b6610c10565b6040516106c39190611f1d565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee919061228f565b610c36565b6040516107009190612150565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190612222565b610cbd565b005b34801561073e57600080fd5b50610747610d40565b6040516107549190612150565b60405180910390f35b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610792906122fe565b80601f01602080910402602001604051908101604052809291908181526020018280546107be906122fe565b801561080b5780601f106107e05761010080835404028352916020019161080b565b820191906000526020600020905b8154815290600101906020018083116107ee57829003601f168201915b5050505050905090565b600080610820610d46565b905061082d818585610d4e565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600080610871610d46565b905061087e858285610f17565b610889858585610fa3565b60019150509392505050565b60006009905090565b6000806108a9610d46565b90506108ca8185856108bb8589610c36565b6108c5919061235e565b610d4e565b600191505092915050565b6108e66108e0610d46565b8261152b565b50565b7f0000000000000000000000006c09e7327b0ad86d04683fa14b2eae76c901525981565b600b5481565b600061091d6116e0565b81600c8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61097d6116e0565b610987600061175e565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109c1826109bb610d46565b83610f17565b6109cb828261152b565b5050565b60006109d96116e0565b81600d8190555060019050919050565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a28906122fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610a54906122fe565b8015610aa15780601f10610a7657610100808354040283529160200191610aa1565b820191906000526020600020905b815481529060010190602001808311610a8457829003601f168201915b5050505050905090565b600080610ab6610d46565b90506000610ac48286610c36565b905083811015610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0090612404565b60405180910390fd5b610b168286868403610d4e565b60019250505092915050565b600080610b2d610d46565b9050610b3a818585610fa3565b600191505092915050565b600d5481565b6000610b556116e0565b60148284610b63919061235e565b1115610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b90612496565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b6000610bc66116e0565b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cc56116e0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b90612528565b60405180910390fd5b610d3d8161175e565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db4906125ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e239061264c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f0a9190612150565b60405180910390a3505050565b6000610f238484610c36565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f9d5781811015610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f86906126b8565b60405180910390fd5b610f9c8484848403610d4e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611012576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110099061274a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611081576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611078906127dc565b60405180910390fd5b8061108b8461092d565b10156110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c39061286e565b60405180910390fd5b7f0000000000000000000000006c09e7327b0ad86d04683fa14b2eae76c901525973ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061117157507f0000000000000000000000006c09e7327b0ad86d04683fa14b2eae76c901525973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561118a5750601560009054906101000a900460ff16155b1561151a577f0000000000000000000000006c09e7327b0ad86d04683fa14b2eae76c901525973ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146112e15760006011546111f03061092d565b6111fa919061288e565b9050601354811061121157611210601354611824565b5b601454601154106112df576112276014546118e5565b6014546011600082825461123b919061288e565b925050819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d49061290e565b60405180910390fd5b505b505b6000601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806113845750601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561139157819050611509565b600c548211156113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd906129a0565b60405180910390fd5b7f0000000000000000000000006c09e7327b0ad86d04683fa14b2eae76c901525973ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361148257600d546114358461092d565b83611440919061235e565b1115611481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147890612a32565b60405180910390fd5b5b60006064600b54846114949190612a52565b61149e9190612adb565b905060006064600a54856114b29190612a52565b6114bc9190612adb565b905080826114ca919061235e565b846114d5919061288e565b925081601160008282546114e9919061235e565b9250508190555061150686308385611501919061235e565b611b65565b50505b611514848483611b65565b50611526565b611525838383611b65565b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159190612b7e565b60405180910390fd5b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161790612c10565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116d39190612150565b60405180910390a3505050565b6116e8610d46565b73ffffffffffffffffffffffffffffffffffffffff166117066109ef565b73ffffffffffffffffffffffffffffffffffffffff161461175c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175390612c7c565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601560006101000a81548160ff021916908315150217905550600060028261184e9190612adb565b90506000818361185e919061288e565b9050600047905061186e836118e5565b6000814761187c919061288e565b90506118888382611dc5565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618482856040516118bb93929190612c9c565b60405180910390a1505050506000601560006101000a81548160ff02191690831515021790555050565b6001601560006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561191d5761191c612cd3565b5b60405190808252806020026020018201604052801561194b5781602001602082028036833780820191505090505b509050308160008151811061196357611962612d02565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a2c9190612d46565b81600181518110611a4057611a3f612d02565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611aa5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610d4e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c42611af4919061235e565b6040518663ffffffff1660e01b8152600401611b14959493929190612e6c565b600060405180830381600087803b158015611b2e57600080fd5b505af1158015611b42573d6000803e3d6000fd5b50505050506000601560006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcb9061274a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a906127dc565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc09061286e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611db79190612150565b60405180910390a350505050565b6001601560006101000a81548160ff021916908315150217905550611e0b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610d4e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611e556109ef565b426040518863ffffffff1660e01b8152600401611e7796959493929190612ec6565b60606040518083038185885af1158015611e95573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611eba9190612f3c565b5050506000601560006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f0782611edc565b9050919050565b611f1781611efc565b82525050565b6000602082019050611f326000830184611f0e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f72578082015181840152602081019050611f57565b60008484015250505050565b6000601f19601f8301169050919050565b6000611f9a82611f38565b611fa48185611f43565b9350611fb4818560208601611f54565b611fbd81611f7e565b840191505092915050565b60006020820190508181036000830152611fe28184611f8f565b905092915050565b600080fd5b611ff881611efc565b811461200357600080fd5b50565b60008135905061201581611fef565b92915050565b6000819050919050565b61202e8161201b565b811461203957600080fd5b50565b60008135905061204b81612025565b92915050565b6000806040838503121561206857612067611fea565b5b600061207685828601612006565b92505060206120878582860161203c565b9150509250929050565b60008115159050919050565b6120a681612091565b82525050565b60006020820190506120c1600083018461209d565b92915050565b6000819050919050565b60006120ec6120e76120e284611edc565b6120c7565b611edc565b9050919050565b60006120fe826120d1565b9050919050565b6000612110826120f3565b9050919050565b61212081612105565b82525050565b600060208201905061213b6000830184612117565b92915050565b61214a8161201b565b82525050565b60006020820190506121656000830184612141565b92915050565b60008060006060848603121561218457612183611fea565b5b600061219286828701612006565b93505060206121a386828701612006565b92505060406121b48682870161203c565b9150509250925092565b600060ff82169050919050565b6121d4816121be565b82525050565b60006020820190506121ef60008301846121cb565b92915050565b60006020828403121561220b5761220a611fea565b5b60006122198482850161203c565b91505092915050565b60006020828403121561223857612237611fea565b5b600061224684828501612006565b91505092915050565b6000806040838503121561226657612265611fea565b5b60006122748582860161203c565b92505060206122858582860161203c565b9150509250929050565b600080604083850312156122a6576122a5611fea565b5b60006122b485828601612006565b92505060206122c585828601612006565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061231657607f821691505b602082108103612329576123286122cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123698261201b565b91506123748361201b565b925082820190508082111561238c5761238b61232f565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006123ee602583611f43565b91506123f982612392565b604082019050919050565b6000602082019050818103600083015261241d816123e1565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2032300000000000000000000000000000000000000000602082015250565b6000612480602c83611f43565b915061248b82612424565b604082019050919050565b600060208201905081810360008301526124af81612473565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612512602683611f43565b915061251d826124b6565b604082019050919050565b6000602082019050818103600083015261254181612505565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006125a4602483611f43565b91506125af82612548565b604082019050919050565b600060208201905081810360008301526125d381612597565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612636602283611f43565b9150612641826125da565b604082019050919050565b6000602082019050818103600083015261266581612629565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006126a2601d83611f43565b91506126ad8261266c565b602082019050919050565b600060208201905081810360008301526126d181612695565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612734602583611f43565b915061273f826126d8565b604082019050919050565b6000602082019050818103600083015261276381612727565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006127c6602383611f43565b91506127d18261276a565b604082019050919050565b600060208201905081810360008301526127f5816127b9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612858602683611f43565b9150612863826127fc565b604082019050919050565b600060208201905081810360008301526128878161284b565b9050919050565b60006128998261201b565b91506128a48361201b565b92508282039050818111156128bc576128bb61232f565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b60006128f8601283611f43565b9150612903826128c2565b602082019050919050565b60006020820190508181036000830152612927816128eb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b600061298a603983611f43565b91506129958261292e565b604082019050919050565b600060208201905081810360008301526129b98161297d565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612a1c603683611f43565b9150612a27826129c0565b604082019050919050565b60006020820190508181036000830152612a4b81612a0f565b9050919050565b6000612a5d8261201b565b9150612a688361201b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612aa157612aa061232f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ae68261201b565b9150612af18361201b565b925082612b0157612b00612aac565b5b828204905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b68602183611f43565b9150612b7382612b0c565b604082019050919050565b60006020820190508181036000830152612b9781612b5b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612bfa602283611f43565b9150612c0582612b9e565b604082019050919050565b60006020820190508181036000830152612c2981612bed565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c66602083611f43565b9150612c7182612c30565b602082019050919050565b60006020820190508181036000830152612c9581612c59565b9050919050565b6000606082019050612cb16000830186612141565b612cbe6020830185612141565b612ccb6040830184612141565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612d4081611fef565b92915050565b600060208284031215612d5c57612d5b611fea565b5b6000612d6a84828501612d31565b91505092915050565b6000819050919050565b6000612d98612d93612d8e84612d73565b6120c7565b61201b565b9050919050565b612da881612d7d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612de381611efc565b82525050565b6000612df58383612dda565b60208301905092915050565b6000602082019050919050565b6000612e1982612dae565b612e238185612db9565b9350612e2e83612dca565b8060005b83811015612e5f578151612e468882612de9565b9750612e5183612e01565b925050600181019050612e32565b5085935050505092915050565b600060a082019050612e816000830188612141565b612e8e6020830187612d9f565b8181036040830152612ea08186612e0e565b9050612eaf6060830185611f0e565b612ebc6080830184612141565b9695505050505050565b600060c082019050612edb6000830189611f0e565b612ee86020830188612141565b612ef56040830187612d9f565b612f026060830186612d9f565b612f0f6080830185611f0e565b612f1c60a0830184612141565b979650505050505050565b600081519050612f3681612025565b92915050565b600080600060608486031215612f5557612f54611fea565b5b6000612f6386828701612f27565b9350506020612f7486828701612f27565b9250506040612f8586828701612f27565b915050925092509256fea26469706673582212205a7e2d4e1fbe1eabd197f15f0ffb187911b6d788e29fcd83b5c9164d53c62f7c64736f6c63430008100033

Deployed Bytecode Sourcemap

28967:7321:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29551:73;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17991:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20265:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29639:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19129:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21093:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18972:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22809:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24794:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29697:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29220:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35860:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18156:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15250:103;;;;;;;;;;;;;:::i;:::-;;29385:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25205:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36050:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29261:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14602:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17815:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21893:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19709:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29321:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35462:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35272:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29469:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19302:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15508:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29179:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29551:73;;;;;;;;;;;;;:::o;17991:102::-;18047:13;18080:5;18073:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17991:102;:::o;20265:244::-;20386:4;20408:13;20424:12;:10;:12::i;:::-;20408:28;;20447:32;20456:5;20463:7;20472:6;20447:8;:32::i;:::-;20497:4;20490:11;;;20265:244;;;;:::o;29639:51::-;;;:::o;19129:110::-;19192:7;19219:12;;19212:19;;19129:110;:::o;21093:297::-;21226:4;21243:15;21261:12;:10;:12::i;:::-;21243:30;;21284:38;21300:4;21306:7;21315:6;21284:15;:38::i;:::-;21333:27;21343:4;21349:2;21353:6;21333:9;:27::i;:::-;21378:4;21371:11;;;21093:297;;;;;:::o;18972:92::-;19030:5;19055:1;19048:8;;18972:92;:::o;22809:272::-;22926:4;22948:13;22964:12;:10;:12::i;:::-;22948:28;;22987:64;22996:5;23003:7;23040:10;23012:25;23022:5;23029:7;23012:9;:25::i;:::-;:38;;;;:::i;:::-;22987:8;:64::i;:::-;23069:4;23062:11;;;22809:272;;;;:::o;24794:92::-;24851:27;24857:12;:10;:12::i;:::-;24871:6;24851:5;:27::i;:::-;24794:92;:::o;29697:38::-;;;:::o;29220:34::-;;;;:::o;35860:182::-;35962:4;14488:13;:11;:13::i;:::-;35998:12:::1;35984:11;:26;;;;36030:4;36023:11;;35860:182:::0;;;:::o;18156:177::-;18275:7;18307:9;:18;18317:7;18307:18;;;;;;;;;;;;;;;;18300:25;;18156:177;;;:::o;15250:103::-;14488:13;:11;:13::i;:::-;15315:30:::1;15342:1;15315:18;:30::i;:::-;15250:103::o:0;29385:75::-;;;;;;;;;;;;;:::o;25205:164::-;25282:46;25298:7;25307:12;:10;:12::i;:::-;25321:6;25282:15;:46::i;:::-;25339:22;25345:7;25354:6;25339:5;:22::i;:::-;25205:164;;:::o;36050:198::-;36160:4;14488:13;:11;:13::i;:::-;36200:16:::1;36182:15;:34;;;;36236:4;36229:11;;36050:198:::0;;;:::o;29261:53::-;;;;:::o;14602:87::-;14648:7;14675:6;;;;;;;;;;;14668:13;;14602:87;:::o;17815:106::-;17873:13;17906:7;17899:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17815:106;:::o;21893:507::-;22015:4;22037:13;22053:12;:10;:12::i;:::-;22037:28;;22076:24;22103:25;22113:5;22120:7;22103:9;:25::i;:::-;22076:52;;22181:15;22161:16;:35;;22139:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;22297:60;22306:5;22313:7;22341:15;22322:16;:34;22297:8;:60::i;:::-;22388:4;22381:11;;;;21893:507;;;;:::o;19709:236::-;19826:4;19848:13;19864:12;:10;:12::i;:::-;19848:28;;19887;19897:5;19904:2;19908:6;19887:9;:28::i;:::-;19933:4;19926:11;;;19709:236;;;;:::o;29321:57::-;;;;:::o;35462:390::-;35610:4;14488:13;:11;:13::i;:::-;35679:2:::1;35658:16;35641;:33;;;;:::i;:::-;35640:41;;35632:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;35759:16;35741:15;:34;;;;35804:16;35786:15;:34;;;;35840:4;35833:11;;35462:390:::0;;;;:::o;35272:182::-;35375:4;14488:13;:11;:13::i;:::-;35415:9:::1;35397:15;;:27;;;;;;;;;;;;;;;;;;35442:4;35435:11;;35272:182:::0;;;:::o;29469:75::-;;;;;;;;;;;;;:::o;19302:201::-;19436:7;19468:11;:18;19480:5;19468:18;;;;;;;;;;;;;;;:27;19487:7;19468:27;;;;;;;;;;;;;;;;19461:34;;19302:201;;;;:::o;15508:238::-;14488:13;:11;:13::i;:::-;15631:1:::1;15611:22;;:8;:22;;::::0;15589:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15710:28;15729:8;15710:18;:28::i;:::-;15508:238:::0;:::o;29179:34::-;;;;:::o;13395:98::-;13448:7;13475:10;13468:17;;13395:98;:::o;25807:380::-;25960:1;25943:19;;:5;:19;;;25935:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26041:1;26022:21;;:7;:21;;;26014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26125:6;26095:11;:18;26107:5;26095:18;;;;;;;;;;;;;;;:27;26114:7;26095:27;;;;;;;;;;;;;;;:36;;;;26163:7;26147:32;;26156:5;26147:32;;;26172:6;26147:32;;;;;;:::i;:::-;;;;;;;;25807:380;;;:::o;26478:502::-;26613:24;26640:25;26650:5;26657:7;26640:9;:25::i;:::-;26613:52;;26700:17;26680:16;:37;26676:297;;26780:6;26760:16;:26;;26734:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;26895:51;26904:5;26911:7;26939:6;26920:16;:25;26895:8;:51::i;:::-;26676:297;26602:378;26478:502;;;:::o;31723:2149::-;31837:1;31821:18;;:4;:18;;;31813:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31914:1;31900:16;;:2;:16;;;31892:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31994:6;31975:15;31985:4;31975:9;:15::i;:::-;:25;;31967:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;32069:13;32061:21;;:4;:21;;;:44;;;;32092:13;32086:19;;:2;:19;;;32061:44;32060:67;;;;;32111:16;;;;;;;;;;;32110:17;32060:67;32056:1809;;;32156:13;32148:21;;:4;:21;;;32144:686;;32190:32;32252:18;;32225:24;32243:4;32225:9;:24::i;:::-;:45;;;;:::i;:::-;32190:80;;32321:30;;32293:24;:58;32289:154;;32376:47;32392:30;;32376:15;:47::i;:::-;32289:154;32489:24;;32466:18;;32465:48;32461:354;;32538:43;32556:24;;32538:17;:43::i;:::-;32626:24;;32604:18;;:46;;;;;;;:::i;:::-;;;;;;;;32673:9;32693:15;;;;;;;;;;;32685:29;;:52;32715:21;32685:52;;;;;;;;;;;;;;;;;;;;;;;32673:64;;32768:4;32760:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;32515:300;32461:354;32171:659;32144:686;32846:22;32887:18;:24;32906:4;32887:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;32915:18;:22;32934:2;32915:22;;;;;;;;;;;;;;;;;;;;;;;;;32887:50;32883:839;;;32975:6;32958:23;;32883:839;;;33054:11;;33044:6;:21;;33036:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;33157:13;33149:21;;:4;:21;;;33146:178;;33230:15;;33212:13;33222:2;33212:9;:13::i;:::-;33203:6;:22;;;;:::i;:::-;33202:43;;33194:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;33146:178;33344:22;33399:3;33380:15;;33371:6;:24;;;;:::i;:::-;33370:32;;;;:::i;:::-;33344:59;;33422:22;33477:3;33458:15;;33449:6;:24;;;;:::i;:::-;33448:32;;;;:::i;:::-;33422:59;;33544:14;33527;:31;;;;:::i;:::-;33517:6;:42;;;;:::i;:::-;33500:59;;33600:14;33578:18;;:36;;;;;;;:::i;:::-;;;;;;;;33635:71;33651:4;33665;33690:14;33673;:31;;;;:::i;:::-;33635:15;:71::i;:::-;33017:705;;32883:839;33736:41;33752:4;33758:2;33762:14;33736:15;:41::i;:::-;32129:1660;32056:1809;;;33820:33;33836:4;33842:2;33846:6;33820:15;:33::i;:::-;32056:1809;31723:2149;;;:::o;24126:552::-;24229:1;24210:21;;:7;:21;;;24202:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;24282:22;24307:9;:18;24317:7;24307:18;;;;;;;;;;;;;;;;24282:43;;24362:6;24344:14;:24;;24336:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24481:6;24464:14;:23;24443:9;:18;24453:7;24443:18;;;;;;;;;;;;;;;:44;;;;24598:6;24582:12;;:22;;;;;;;;;;;24659:1;24633:37;;24642:7;24633:37;;;24663:6;24633:37;;;;;;:::i;:::-;;;;;;;;24191:487;24126:552;;:::o;14767:132::-;14842:12;:10;:12::i;:::-;14831:23;;:7;:5;:7::i;:::-;:23;;;14823:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14767:132::o;15906:191::-;15980:16;15999:6;;;;;;;;;;;15980:25;;16025:8;16016:6;;:17;;;;;;;;;;;;;;;;;;16080:8;16049:40;;16070:8;16049:40;;;;;;;;;;;;15969:128;15906:191;:::o;33880:474::-;30215:4;30196:16;;:23;;;;;;;;;;;;;;;;;;33966:12:::1;34005:1;33982:20;:24;;;;:::i;:::-;33966:41;;34018:17;34062:4;34039:20;:27;;;;:::i;:::-;34018:49;;34080:22;34105:21;34080:46;;34139:23;34157:4;34139:17;:23::i;:::-;34175:18;34221:14;34197:21;:38;;;;:::i;:::-;34175:61;;34249:36;34263:9;34274:10;34249:13;:36::i;:::-;34303:43;34318:4;34324:10;34336:9;34303:43;;;;;;;;:::i;:::-;;;;;;;;33955:399;;;;30261:5:::0;30242:16;;:24;;;;;;;;;;;;;;;;;;33880:474;:::o;34362:496::-;30215:4;30196:16;;:23;;;;;;;;;;;;;;;;;;34441:21:::1;34479:1;34465:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34441:40;;34510:4;34492;34497:1;34492:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;34536:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34526:4;34531:1;34526:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;34571:62;34588:4;34603:15;34621:11;34571:8;:62::i;:::-;34646:15;:66;;;34727:11;34753:1;34769:4;34796;34835:3;34817:15;:21;;;;:::i;:::-;34646:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;34430:428;30261:5:::0;30242:16;;:24;;;;;;;;;;;;;;;;;;34362:496;:::o;26988:776::-;27135:1;27119:18;;:4;:18;;;27111:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27212:1;27198:16;;:2;:16;;;27190:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;27267:19;27289:9;:15;27299:4;27289:15;;;;;;;;;;;;;;;;27267:37;;27352:6;27337:11;:21;;27315:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;27492:6;27478:11;:20;27460:9;:15;27470:4;27460:15;;;;;;;;;;;;;;;:38;;;;27695:6;27678:9;:13;27688:2;27678:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;27745:2;27730:26;;27739:4;27730:26;;;27749:6;27730:26;;;;;;:::i;:::-;;;;;;;;27100:664;26988:776;;;:::o;34866:398::-;30215:4;30196:16;;:23;;;;;;;;;;;;;;;;;;34983:62:::1;35000:4;35015:15;35033:11;34983:8;:62::i;:::-;35058:15;:31;;;35097:9;35130:4;35150:11;35176:1;35192::::0;35208:7:::1;:5;:7::i;:::-;35230:15;35058:198;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;30261:5:::0;30242:16;;:24;;;;;;;;;;;;;;;;;;34866:398;;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;593:99::-;645:6;679:5;673:12;663:22;;593:99;;;:::o;698:169::-;782:11;816:6;811:3;804:19;856:4;851:3;847:14;832:29;;698:169;;;;:::o;873:246::-;954:1;964:113;978:6;975:1;972:13;964:113;;;1063:1;1058:3;1054:11;1048:18;1044:1;1039:3;1035:11;1028:39;1000:2;997:1;993:10;988:15;;964:113;;;1111:1;1102:6;1097:3;1093:16;1086:27;935:184;873:246;;;:::o;1125:102::-;1166:6;1217:2;1213:7;1208:2;1201:5;1197:14;1193:28;1183:38;;1125:102;;;:::o;1233:377::-;1321:3;1349:39;1382:5;1349:39;:::i;:::-;1404:71;1468:6;1463:3;1404:71;:::i;:::-;1397:78;;1484:65;1542:6;1537:3;1530:4;1523:5;1519:16;1484:65;:::i;:::-;1574:29;1596:6;1574:29;:::i;:::-;1569:3;1565:39;1558:46;;1325:285;1233:377;;;;:::o;1616:313::-;1729:4;1767:2;1756:9;1752:18;1744:26;;1816:9;1810:4;1806:20;1802:1;1791:9;1787:17;1780:47;1844:78;1917:4;1908:6;1844:78;:::i;:::-;1836:86;;1616:313;;;;:::o;2016:117::-;2125:1;2122;2115:12;2262:122;2335:24;2353:5;2335:24;:::i;:::-;2328:5;2325:35;2315:63;;2374:1;2371;2364:12;2315:63;2262:122;:::o;2390:139::-;2436:5;2474:6;2461:20;2452:29;;2490:33;2517:5;2490:33;:::i;:::-;2390:139;;;;:::o;2535:77::-;2572:7;2601:5;2590:16;;2535:77;;;:::o;2618:122::-;2691:24;2709:5;2691:24;:::i;:::-;2684:5;2681:35;2671:63;;2730:1;2727;2720:12;2671:63;2618:122;:::o;2746:139::-;2792:5;2830:6;2817:20;2808:29;;2846:33;2873:5;2846:33;:::i;:::-;2746:139;;;;:::o;2891:474::-;2959:6;2967;3016:2;3004:9;2995:7;2991:23;2987:32;2984:119;;;3022:79;;:::i;:::-;2984:119;3142:1;3167:53;3212:7;3203:6;3192:9;3188:22;3167:53;:::i;:::-;3157:63;;3113:117;3269:2;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3240:118;2891:474;;;;;:::o;3371:90::-;3405:7;3448:5;3441:13;3434:21;3423:32;;3371:90;;;:::o;3467:109::-;3548:21;3563:5;3548:21;:::i;:::-;3543:3;3536:34;3467:109;;:::o;3582:210::-;3669:4;3707:2;3696:9;3692:18;3684:26;;3720:65;3782:1;3771:9;3767:17;3758:6;3720:65;:::i;:::-;3582:210;;;;:::o;3798:60::-;3826:3;3847:5;3840:12;;3798:60;;;:::o;3864:142::-;3914:9;3947:53;3965:34;3974:24;3992:5;3974:24;:::i;:::-;3965:34;:::i;:::-;3947:53;:::i;:::-;3934:66;;3864:142;;;:::o;4012:126::-;4062:9;4095:37;4126:5;4095:37;:::i;:::-;4082:50;;4012:126;;;:::o;4144:152::-;4220:9;4253:37;4284:5;4253:37;:::i;:::-;4240:50;;4144:152;;;:::o;4302:183::-;4415:63;4472:5;4415:63;:::i;:::-;4410:3;4403:76;4302:183;;:::o;4491:274::-;4610:4;4648:2;4637:9;4633:18;4625:26;;4661:97;4755:1;4744:9;4740:17;4731:6;4661:97;:::i;:::-;4491:274;;;;:::o;4771:118::-;4858:24;4876:5;4858:24;:::i;:::-;4853:3;4846:37;4771:118;;:::o;4895:222::-;4988:4;5026:2;5015:9;5011:18;5003:26;;5039:71;5107:1;5096:9;5092:17;5083:6;5039:71;:::i;:::-;4895:222;;;;:::o;5123:619::-;5200:6;5208;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5646:2;5672:53;5717:7;5708:6;5697:9;5693:22;5672:53;:::i;:::-;5662:63;;5617:118;5123:619;;;;;:::o;5748:86::-;5783:7;5823:4;5816:5;5812:16;5801:27;;5748:86;;;:::o;5840:112::-;5923:22;5939:5;5923:22;:::i;:::-;5918:3;5911:35;5840:112;;:::o;5958:214::-;6047:4;6085:2;6074:9;6070:18;6062:26;;6098:67;6162:1;6151:9;6147:17;6138:6;6098:67;:::i;:::-;5958:214;;;;:::o;6178:329::-;6237:6;6286:2;6274:9;6265:7;6261:23;6257:32;6254:119;;;6292:79;;:::i;:::-;6254:119;6412:1;6437:53;6482:7;6473:6;6462:9;6458:22;6437:53;:::i;:::-;6427:63;;6383:117;6178:329;;;;:::o;6513:::-;6572:6;6621:2;6609:9;6600:7;6596:23;6592:32;6589:119;;;6627:79;;:::i;:::-;6589:119;6747:1;6772:53;6817:7;6808:6;6797:9;6793:22;6772:53;:::i;:::-;6762:63;;6718:117;6513:329;;;;:::o;6848:474::-;6916:6;6924;6973:2;6961:9;6952:7;6948:23;6944:32;6941:119;;;6979:79;;:::i;:::-;6941:119;7099:1;7124:53;7169:7;7160:6;7149:9;7145:22;7124:53;:::i;:::-;7114:63;;7070:117;7226:2;7252:53;7297:7;7288:6;7277:9;7273:22;7252:53;:::i;:::-;7242:63;;7197:118;6848:474;;;;;:::o;7328:::-;7396:6;7404;7453:2;7441:9;7432:7;7428:23;7424:32;7421:119;;;7459:79;;:::i;:::-;7421:119;7579:1;7604:53;7649:7;7640:6;7629:9;7625:22;7604:53;:::i;:::-;7594:63;;7550:117;7706:2;7732:53;7777:7;7768:6;7757:9;7753:22;7732:53;:::i;:::-;7722:63;;7677:118;7328:474;;;;;:::o;7808:180::-;7856:77;7853:1;7846:88;7953:4;7950:1;7943:15;7977:4;7974:1;7967:15;7994:320;8038:6;8075:1;8069:4;8065:12;8055:22;;8122:1;8116:4;8112:12;8143:18;8133:81;;8199:4;8191:6;8187:17;8177:27;;8133:81;8261:2;8253:6;8250:14;8230:18;8227:38;8224:84;;8280:18;;:::i;:::-;8224:84;8045:269;7994:320;;;:::o;8320:180::-;8368:77;8365:1;8358:88;8465:4;8462:1;8455:15;8489:4;8486:1;8479:15;8506:191;8546:3;8565:20;8583:1;8565:20;:::i;:::-;8560:25;;8599:20;8617:1;8599:20;:::i;:::-;8594:25;;8642:1;8639;8635:9;8628:16;;8663:3;8660:1;8657:10;8654:36;;;8670:18;;:::i;:::-;8654:36;8506:191;;;;:::o;8703:224::-;8843:34;8839:1;8831:6;8827:14;8820:58;8912:7;8907:2;8899:6;8895:15;8888:32;8703:224;:::o;8933:366::-;9075:3;9096:67;9160:2;9155:3;9096:67;:::i;:::-;9089:74;;9172:93;9261:3;9172:93;:::i;:::-;9290:2;9285:3;9281:12;9274:19;;8933:366;;;:::o;9305:419::-;9471:4;9509:2;9498:9;9494:18;9486:26;;9558:9;9552:4;9548:20;9544:1;9533:9;9529:17;9522:47;9586:131;9712:4;9586:131;:::i;:::-;9578:139;;9305:419;;;:::o;9730:231::-;9870:34;9866:1;9858:6;9854:14;9847:58;9939:14;9934:2;9926:6;9922:15;9915:39;9730:231;:::o;9967:366::-;10109:3;10130:67;10194:2;10189:3;10130:67;:::i;:::-;10123:74;;10206:93;10295:3;10206:93;:::i;:::-;10324:2;10319:3;10315:12;10308:19;;9967:366;;;:::o;10339:419::-;10505:4;10543:2;10532:9;10528:18;10520:26;;10592:9;10586:4;10582:20;10578:1;10567:9;10563:17;10556:47;10620:131;10746:4;10620:131;:::i;:::-;10612:139;;10339:419;;;:::o;10764:225::-;10904:34;10900:1;10892:6;10888:14;10881:58;10973:8;10968:2;10960:6;10956:15;10949:33;10764:225;:::o;10995:366::-;11137:3;11158:67;11222:2;11217:3;11158:67;:::i;:::-;11151:74;;11234:93;11323:3;11234:93;:::i;:::-;11352:2;11347:3;11343:12;11336:19;;10995:366;;;:::o;11367:419::-;11533:4;11571:2;11560:9;11556:18;11548:26;;11620:9;11614:4;11610:20;11606:1;11595:9;11591:17;11584:47;11648:131;11774:4;11648:131;:::i;:::-;11640:139;;11367:419;;;:::o;11792:223::-;11932:34;11928:1;11920:6;11916:14;11909:58;12001:6;11996:2;11988:6;11984:15;11977:31;11792:223;:::o;12021:366::-;12163:3;12184:67;12248:2;12243:3;12184:67;:::i;:::-;12177:74;;12260:93;12349:3;12260:93;:::i;:::-;12378:2;12373:3;12369:12;12362:19;;12021:366;;;:::o;12393:419::-;12559:4;12597:2;12586:9;12582:18;12574:26;;12646:9;12640:4;12636:20;12632:1;12621:9;12617:17;12610:47;12674:131;12800:4;12674:131;:::i;:::-;12666:139;;12393:419;;;:::o;12818:221::-;12958:34;12954:1;12946:6;12942:14;12935:58;13027:4;13022:2;13014:6;13010:15;13003:29;12818:221;:::o;13045:366::-;13187:3;13208:67;13272:2;13267:3;13208:67;:::i;:::-;13201:74;;13284:93;13373:3;13284:93;:::i;:::-;13402:2;13397:3;13393:12;13386:19;;13045:366;;;:::o;13417:419::-;13583:4;13621:2;13610:9;13606:18;13598:26;;13670:9;13664:4;13660:20;13656:1;13645:9;13641:17;13634:47;13698:131;13824:4;13698:131;:::i;:::-;13690:139;;13417:419;;;:::o;13842:179::-;13982:31;13978:1;13970:6;13966:14;13959:55;13842:179;:::o;14027:366::-;14169:3;14190:67;14254:2;14249:3;14190:67;:::i;:::-;14183:74;;14266:93;14355:3;14266:93;:::i;:::-;14384:2;14379:3;14375:12;14368:19;;14027:366;;;:::o;14399:419::-;14565:4;14603:2;14592:9;14588:18;14580:26;;14652:9;14646:4;14642:20;14638:1;14627:9;14623:17;14616:47;14680:131;14806:4;14680:131;:::i;:::-;14672:139;;14399:419;;;:::o;14824:224::-;14964:34;14960:1;14952:6;14948:14;14941:58;15033:7;15028:2;15020:6;15016:15;15009:32;14824:224;:::o;15054:366::-;15196:3;15217:67;15281:2;15276:3;15217:67;:::i;:::-;15210:74;;15293:93;15382:3;15293:93;:::i;:::-;15411:2;15406:3;15402:12;15395:19;;15054:366;;;:::o;15426:419::-;15592:4;15630:2;15619:9;15615:18;15607:26;;15679:9;15673:4;15669:20;15665:1;15654:9;15650:17;15643:47;15707:131;15833:4;15707:131;:::i;:::-;15699:139;;15426:419;;;:::o;15851:222::-;15991:34;15987:1;15979:6;15975:14;15968:58;16060:5;16055:2;16047:6;16043:15;16036:30;15851:222;:::o;16079:366::-;16221:3;16242:67;16306:2;16301:3;16242:67;:::i;:::-;16235:74;;16318:93;16407:3;16318:93;:::i;:::-;16436:2;16431:3;16427:12;16420:19;;16079:366;;;:::o;16451:419::-;16617:4;16655:2;16644:9;16640:18;16632:26;;16704:9;16698:4;16694:20;16690:1;16679:9;16675:17;16668:47;16732:131;16858:4;16732:131;:::i;:::-;16724:139;;16451:419;;;:::o;16876:225::-;17016:34;17012:1;17004:6;17000:14;16993:58;17085:8;17080:2;17072:6;17068:15;17061:33;16876:225;:::o;17107:366::-;17249:3;17270:67;17334:2;17329:3;17270:67;:::i;:::-;17263:74;;17346:93;17435:3;17346:93;:::i;:::-;17464:2;17459:3;17455:12;17448:19;;17107:366;;;:::o;17479:419::-;17645:4;17683:2;17672:9;17668:18;17660:26;;17732:9;17726:4;17722:20;17718:1;17707:9;17703:17;17696:47;17760:131;17886:4;17760:131;:::i;:::-;17752:139;;17479:419;;;:::o;17904:194::-;17944:4;17964:20;17982:1;17964:20;:::i;:::-;17959:25;;17998:20;18016:1;17998:20;:::i;:::-;17993:25;;18042:1;18039;18035:9;18027:17;;18066:1;18060:4;18057:11;18054:37;;;18071:18;;:::i;:::-;18054:37;17904:194;;;;:::o;18104:168::-;18244:20;18240:1;18232:6;18228:14;18221:44;18104:168;:::o;18278:366::-;18420:3;18441:67;18505:2;18500:3;18441:67;:::i;:::-;18434:74;;18517:93;18606:3;18517:93;:::i;:::-;18635:2;18630:3;18626:12;18619:19;;18278:366;;;:::o;18650:419::-;18816:4;18854:2;18843:9;18839:18;18831:26;;18903:9;18897:4;18893:20;18889:1;18878:9;18874:17;18867:47;18931:131;19057:4;18931:131;:::i;:::-;18923:139;;18650:419;;;:::o;19075:244::-;19215:34;19211:1;19203:6;19199:14;19192:58;19284:27;19279:2;19271:6;19267:15;19260:52;19075:244;:::o;19325:366::-;19467:3;19488:67;19552:2;19547:3;19488:67;:::i;:::-;19481:74;;19564:93;19653:3;19564:93;:::i;:::-;19682:2;19677:3;19673:12;19666:19;;19325:366;;;:::o;19697:419::-;19863:4;19901:2;19890:9;19886:18;19878:26;;19950:9;19944:4;19940:20;19936:1;19925:9;19921:17;19914:47;19978:131;20104:4;19978:131;:::i;:::-;19970:139;;19697:419;;;:::o;20122:241::-;20262:34;20258:1;20250:6;20246:14;20239:58;20331:24;20326:2;20318:6;20314:15;20307:49;20122:241;:::o;20369:366::-;20511:3;20532:67;20596:2;20591:3;20532:67;:::i;:::-;20525:74;;20608:93;20697:3;20608:93;:::i;:::-;20726:2;20721:3;20717:12;20710:19;;20369:366;;;:::o;20741:419::-;20907:4;20945:2;20934:9;20930:18;20922:26;;20994:9;20988:4;20984:20;20980:1;20969:9;20965:17;20958:47;21022:131;21148:4;21022:131;:::i;:::-;21014:139;;20741:419;;;:::o;21166:348::-;21206:7;21229:20;21247:1;21229:20;:::i;:::-;21224:25;;21263:20;21281:1;21263:20;:::i;:::-;21258:25;;21451:1;21383:66;21379:74;21376:1;21373:81;21368:1;21361:9;21354:17;21350:105;21347:131;;;21458:18;;:::i;:::-;21347:131;21506:1;21503;21499:9;21488:20;;21166:348;;;;:::o;21520:180::-;21568:77;21565:1;21558:88;21665:4;21662:1;21655:15;21689:4;21686:1;21679:15;21706:185;21746:1;21763:20;21781:1;21763:20;:::i;:::-;21758:25;;21797:20;21815:1;21797:20;:::i;:::-;21792:25;;21836:1;21826:35;;21841:18;;:::i;:::-;21826:35;21883:1;21880;21876:9;21871:14;;21706:185;;;;:::o;21897:220::-;22037:34;22033:1;22025:6;22021:14;22014:58;22106:3;22101:2;22093:6;22089:15;22082:28;21897:220;:::o;22123:366::-;22265:3;22286:67;22350:2;22345:3;22286:67;:::i;:::-;22279:74;;22362:93;22451:3;22362:93;:::i;:::-;22480:2;22475:3;22471:12;22464:19;;22123:366;;;:::o;22495:419::-;22661:4;22699:2;22688:9;22684:18;22676:26;;22748:9;22742:4;22738:20;22734:1;22723:9;22719:17;22712:47;22776:131;22902:4;22776:131;:::i;:::-;22768:139;;22495:419;;;:::o;22920:221::-;23060:34;23056:1;23048:6;23044:14;23037:58;23129:4;23124:2;23116:6;23112:15;23105:29;22920:221;:::o;23147:366::-;23289:3;23310:67;23374:2;23369:3;23310:67;:::i;:::-;23303:74;;23386:93;23475:3;23386:93;:::i;:::-;23504:2;23499:3;23495:12;23488:19;;23147:366;;;:::o;23519:419::-;23685:4;23723:2;23712:9;23708:18;23700:26;;23772:9;23766:4;23762:20;23758:1;23747:9;23743:17;23736:47;23800:131;23926:4;23800:131;:::i;:::-;23792:139;;23519:419;;;:::o;23944:182::-;24084:34;24080:1;24072:6;24068:14;24061:58;23944:182;:::o;24132:366::-;24274:3;24295:67;24359:2;24354:3;24295:67;:::i;:::-;24288:74;;24371:93;24460:3;24371:93;:::i;:::-;24489:2;24484:3;24480:12;24473:19;;24132:366;;;:::o;24504:419::-;24670:4;24708:2;24697:9;24693:18;24685:26;;24757:9;24751:4;24747:20;24743:1;24732:9;24728:17;24721:47;24785:131;24911:4;24785:131;:::i;:::-;24777:139;;24504:419;;;:::o;24929:442::-;25078:4;25116:2;25105:9;25101:18;25093:26;;25129:71;25197:1;25186:9;25182:17;25173:6;25129:71;:::i;:::-;25210:72;25278:2;25267:9;25263:18;25254:6;25210:72;:::i;:::-;25292;25360:2;25349:9;25345:18;25336:6;25292:72;:::i;:::-;24929:442;;;;;;:::o;25377:180::-;25425:77;25422:1;25415:88;25522:4;25519:1;25512:15;25546:4;25543:1;25536:15;25563:180;25611:77;25608:1;25601:88;25708:4;25705:1;25698:15;25732:4;25729:1;25722:15;25749:143;25806:5;25837:6;25831:13;25822:22;;25853:33;25880:5;25853:33;:::i;:::-;25749:143;;;;:::o;25898:351::-;25968:6;26017:2;26005:9;25996:7;25992:23;25988:32;25985:119;;;26023:79;;:::i;:::-;25985:119;26143:1;26168:64;26224:7;26215:6;26204:9;26200:22;26168:64;:::i;:::-;26158:74;;26114:128;25898:351;;;;:::o;26255:85::-;26300:7;26329:5;26318:16;;26255:85;;;:::o;26346:158::-;26404:9;26437:61;26455:42;26464:32;26490:5;26464:32;:::i;:::-;26455:42;:::i;:::-;26437:61;:::i;:::-;26424:74;;26346:158;;;:::o;26510:147::-;26605:45;26644:5;26605:45;:::i;:::-;26600:3;26593:58;26510:147;;:::o;26663:114::-;26730:6;26764:5;26758:12;26748:22;;26663:114;;;:::o;26783:184::-;26882:11;26916:6;26911:3;26904:19;26956:4;26951:3;26947:14;26932:29;;26783:184;;;;:::o;26973:132::-;27040:4;27063:3;27055:11;;27093:4;27088:3;27084:14;27076:22;;26973:132;;;:::o;27111:108::-;27188:24;27206:5;27188:24;:::i;:::-;27183:3;27176:37;27111:108;;:::o;27225:179::-;27294:10;27315:46;27357:3;27349:6;27315:46;:::i;:::-;27393:4;27388:3;27384:14;27370:28;;27225:179;;;;:::o;27410:113::-;27480:4;27512;27507:3;27503:14;27495:22;;27410:113;;;:::o;27559:732::-;27678:3;27707:54;27755:5;27707:54;:::i;:::-;27777:86;27856:6;27851:3;27777:86;:::i;:::-;27770:93;;27887:56;27937:5;27887:56;:::i;:::-;27966:7;27997:1;27982:284;28007:6;28004:1;28001:13;27982:284;;;28083:6;28077:13;28110:63;28169:3;28154:13;28110:63;:::i;:::-;28103:70;;28196:60;28249:6;28196:60;:::i;:::-;28186:70;;28042:224;28029:1;28026;28022:9;28017:14;;27982:284;;;27986:14;28282:3;28275:10;;27683:608;;;27559:732;;;;:::o;28297:831::-;28560:4;28598:3;28587:9;28583:19;28575:27;;28612:71;28680:1;28669:9;28665:17;28656:6;28612:71;:::i;:::-;28693:80;28769:2;28758:9;28754:18;28745:6;28693:80;:::i;:::-;28820:9;28814:4;28810:20;28805:2;28794:9;28790:18;28783:48;28848:108;28951:4;28942:6;28848:108;:::i;:::-;28840:116;;28966:72;29034:2;29023:9;29019:18;29010:6;28966:72;:::i;:::-;29048:73;29116:3;29105:9;29101:19;29092:6;29048:73;:::i;:::-;28297:831;;;;;;;;:::o;29134:807::-;29383:4;29421:3;29410:9;29406:19;29398:27;;29435:71;29503:1;29492:9;29488:17;29479:6;29435:71;:::i;:::-;29516:72;29584:2;29573:9;29569:18;29560:6;29516:72;:::i;:::-;29598:80;29674:2;29663:9;29659:18;29650:6;29598:80;:::i;:::-;29688;29764:2;29753:9;29749:18;29740:6;29688:80;:::i;:::-;29778:73;29846:3;29835:9;29831:19;29822:6;29778:73;:::i;:::-;29861;29929:3;29918:9;29914:19;29905:6;29861:73;:::i;:::-;29134:807;;;;;;;;;:::o;29947:143::-;30004:5;30035:6;30029:13;30020:22;;30051:33;30078:5;30051:33;:::i;:::-;29947:143;;;;:::o;30096:663::-;30184:6;30192;30200;30249:2;30237:9;30228:7;30224:23;30220:32;30217:119;;;30255:79;;:::i;:::-;30217:119;30375:1;30400:64;30456:7;30447:6;30436:9;30432:22;30400:64;:::i;:::-;30390:74;;30346:128;30513:2;30539:64;30595:7;30586:6;30575:9;30571:22;30539:64;:::i;:::-;30529:74;;30484:129;30652:2;30678:64;30734:7;30725:6;30714:9;30710:22;30678:64;:::i;:::-;30668:74;;30623:129;30096:663;;;;;:::o

Swarm Source

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