ETH Price: $2,518.80 (+2.80%)

Token

CHAINSAW MAN (CHAINSAW)
 

Overview

Max Total Supply

10,000 CHAINSAW

Holders

53

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
99.06 CHAINSAW

Value
$0.00
0x9a6300293d2a562bc53c1894b66e88ac008ae49e
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:
ChainsawMan

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : ChainsawMan.sol
// SPDX-License-Identifier: MIT

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

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

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

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

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

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

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

        return true;
    }

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

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

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

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

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

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

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

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

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

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

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

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

contract ChainsawMan is ERC20, Ownable {
    address public immutable uniswapV2Pair;
    IUniswapV2Router02 public immutable uniswapV2Router;

    bool inSwapAndLiquify;
    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;

    // TOKENOMICS START
    string private _name = "CHAINSAW MAN";
    string private _symbol = "CHAINSAW";
    uint8 private _decimals = 18;
    uint256 private _supply = 10_000;
    uint256 public taxForLiquidity = 2;
    uint256 public taxForStakingAndMarketing = 4;
    uint256 public maxWalletAmount = ((_supply * 3) / 100) * 10**_decimals;
    uint256 public maxSellAmount = ((_supply * 1) / 100) * 10**_decimals;
    uint256 public maxBuyAmount = ((_supply * 3) / 100) * 10**_decimals;
    uint256 private _numTokensSellToAddToLiquidity = 5 * 10**_decimals;
    uint256 private _numTokensSellToAddToETH = 5 * 10**_decimals;
    address public stakingAndMarketingWallet =
        0x34CEA1B65027256e25c9e8984be369B1A77CC774;
    // TOKENOMICS END

    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[stakingAndMarketingWallet] = 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(stakingAndMarketingWallet).send(
                        address(this).balance
                    );
                    require(sent, "Failed to send ETH");
                }
            }

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } else {
                if (from == uniswapV2Pair || to == uniswapV2Pair) {
                    if (from == uniswapV2Pair) {
                        require(
                            amount <= maxBuyAmount,
                            "Buy amount exceeds max buy amount"
                        );
                    } else {
                        require(
                            amount <= maxSellAmount,
                            "Sell amount exceeds max sell amount"
                        );
                    }
                }
                if (from == uniswapV2Pair) {
                    require(
                        (amount + balanceOf(to)) <= maxWalletAmount,
                        "ERC20: balance amount exceeded max wallet amount limit"
                    );
                }

                uint256 marketingShare = ((amount * taxForStakingAndMarketing) /
                    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 clearStuckETH() external {
        payable(stakingAndMarketingWallet).transfer(address(this).balance);
    }

    function clearStuckToken() external {
        require(balanceOf(address(this)) > 0, "Insufficient Balance");
        super._transfer(
            address(this),
            stakingAndMarketingWallet,
            balanceOf(address(this))
        );
    }

    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,
            stakingAndMarketingWallet,
            block.timestamp
        );
    }

    function changeStakingAndMarketingWallet(address newWallet)
        public
        onlyOwner
        returns (bool)
    {
        stakingAndMarketingWallet = newWallet;
        return true;
    }

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

        return true;
    }

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

        return true;
    }

    function changeMaxSellAmount(uint256 _maxSellAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxSellAmount = _maxSellAmount * 10**_decimals;

        return true;
    }

    function changeMaxBuyAmount(uint256 _maxBuyAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxBuyAmount = _maxBuyAmount * 10**_decimals;

        return true;
    }

    receive() external payable {}
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

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":"_maxBuyAmount","type":"uint256"}],"name":"changeMaxBuyAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSellAmount","type":"uint256"}],"name":"changeMaxSellAmount","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":"address","name":"newWallet","type":"address"}],"name":"changeStakingAndMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForStakingAndMarketing","type":"uint256"}],"name":"changeTaxForLiquidityAndMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","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":"stakingAndMarketingWallet","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":"taxForStakingAndMarketing","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"}]

60c060405260006006556040518060400160405280600c81526020017f434841494e534157204d414e0000000000000000000000000000000000000000815250600890816200004f919062000bb7565b506040518060400160405280600881526020017f434841494e5341570000000000000000000000000000000000000000000000008152506009908162000096919062000bb7565b506012600a60006101000a81548160ff021916908360ff160217905550612710600b556002600c556004600d55600a60009054906101000a900460ff16600a620000e1919062000e2e565b60646003600b54620000f4919062000e7f565b62000100919062000f0f565b6200010c919062000e7f565b600e55600a60009054906101000a900460ff16600a6200012d919062000e2e565b60646001600b5462000140919062000e7f565b6200014c919062000f0f565b62000158919062000e7f565b600f55600a60009054906101000a900460ff16600a62000179919062000e2e565b60646003600b546200018c919062000e7f565b62000198919062000f0f565b620001a4919062000e7f565b601055600a60009054906101000a900460ff16600a620001c5919062000e2e565b6005620001d3919062000e7f565b601155600a60009054906101000a900460ff16600a620001f4919062000e2e565b600562000202919062000e7f565b6012557334cea1b65027256e25c9e8984be369b1a77cc774601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200026757600080fd5b50600880546200027790620009a6565b80601f0160208091040260200160405190810160405280929190818152602001828054620002a590620009a6565b8015620002f65780601f10620002ca57610100808354040283529160200191620002f6565b820191906000526020600020905b815481529060010190602001808311620002d857829003601f168201915b5050505050600980546200030a90620009a6565b80601f01602080910402602001604051908101604052809291908181526020018280546200033890620009a6565b8015620003895780601f106200035d5761010080835404028352916020019162000389565b820191906000526020600020905b8154815290600101906020018083116200036b57829003601f168201915b505050505081600390816200039f919062000bb7565b508060049081620003b1919062000bb7565b505050620003d4620003c86200072a60201b60201c565b6200073260201b60201c565b6200041233600a60009054906101000a900460ff16600a620003f7919062000e2e565b600b5462000406919062000e7f565b620007f860201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000477573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200049d919062000fb1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000505573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200052b919062000fb1565b6040518363ffffffff1660e01b81526004016200054a92919062000ff4565b6020604051808303816000875af11580156200056a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000590919062000fb1565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060016007600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160076000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550506200110d565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200086a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008619062001082565b60405180910390fd5b80600260008282546200087e9190620010a4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009319190620010f0565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009bf57607f821691505b602082108103620009d557620009d462000977565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a3f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a00565b62000a4b868362000a00565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a9862000a9262000a8c8462000a63565b62000a6d565b62000a63565b9050919050565b6000819050919050565b62000ab48362000a77565b62000acc62000ac38262000a9f565b84845462000a0d565b825550505050565b600090565b62000ae362000ad4565b62000af081848462000aa9565b505050565b5b8181101562000b185762000b0c60008262000ad9565b60018101905062000af6565b5050565b601f82111562000b675762000b3181620009db565b62000b3c84620009f0565b8101602085101562000b4c578190505b62000b6462000b5b85620009f0565b83018262000af5565b50505b505050565b600082821c905092915050565b600062000b8c6000198460080262000b6c565b1980831691505092915050565b600062000ba7838362000b79565b9150826002028217905092915050565b62000bc2826200093d565b67ffffffffffffffff81111562000bde5762000bdd62000948565b5b62000bea8254620009a6565b62000bf782828562000b1c565b600060209050601f83116001811462000c2f576000841562000c1a578287015190505b62000c26858262000b99565b86555062000c96565b601f19841662000c3f86620009db565b60005b8281101562000c695784890151825560018201915060208501945060208101905062000c42565b8683101562000c89578489015162000c85601f89168262000b79565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d2c5780860481111562000d045762000d0362000c9e565b5b600185161562000d145780820291505b808102905062000d248562000ccd565b945062000ce4565b94509492505050565b60008262000d47576001905062000e1a565b8162000d57576000905062000e1a565b816001811462000d70576002811462000d7b5762000db1565b600191505062000e1a565b60ff84111562000d905762000d8f62000c9e565b5b8360020a91508482111562000daa5762000da962000c9e565b5b5062000e1a565b5060208310610133831016604e8410600b841016171562000deb5782820a90508381111562000de55762000de462000c9e565b5b62000e1a565b62000dfa848484600162000cda565b9250905081840481111562000e145762000e1362000c9e565b5b81810290505b9392505050565b600060ff82169050919050565b600062000e3b8262000a63565b915062000e488362000e21565b925062000e777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d35565b905092915050565b600062000e8c8262000a63565b915062000e998362000a63565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ed55762000ed462000c9e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f1c8262000a63565b915062000f298362000a63565b92508262000f3c5762000f3b62000ee0565b5b828204905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f798262000f4c565b9050919050565b62000f8b8162000f6c565b811462000f9757600080fd5b50565b60008151905062000fab8162000f80565b92915050565b60006020828403121562000fca5762000fc962000f47565b5b600062000fda8482850162000f9a565b91505092915050565b62000fee8162000f6c565b82525050565b60006040820190506200100b600083018562000fe3565b6200101a602083018462000fe3565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200106a601f8362001021565b9150620010778262001032565b602082019050919050565b600060208201905081810360008301526200109d816200105b565b9050919050565b6000620010b18262000a63565b9150620010be8362000a63565b9250828201905080821115620010d957620010d862000c9e565b5b92915050565b620010ea8162000a63565b82525050565b6000602082019050620011076000830184620010df565b92915050565b60805160a0516131b9620011876000396000818161080201528181611c8001528181611d6101528181611d8801528181611e670152611e8e0152600081816108df015281816112390152818161128e015281816112fc015281816114fe01528181611553015281816115a8015261168c01526131b96000f3fe6080604052600436106101c65760003560e01c806388e765ff116100f7578063af8af69011610095578063f2fde38b11610064578063f2fde38b146106b5578063f345bd85146106de578063f88de0c314610709578063ff56e7a514610720576101cd565b8063af8af690146105e7578063c6f8e73f14610624578063d85a282814610661578063dd62ed3e14610678576101cd565b8063a457c2d7116100d1578063a457c2d714610517578063a9059cbb14610554578063aa4bde2814610591578063acc5120b146105bc576101cd565b806388e765ff146104965780638da5cb5b146104c157806395d89b41146104ec576101cd565b8063395093511161016457806366d602ae1161013e57806366d602ae146103da57806370a0823114610405578063715018a61461044257806381bfdcca14610459576101cd565b8063395093511461033557806349bd5a5e146103725780635b3222051461039d576101cd565b806318160ddd116101a057806318160ddd146102655780631d5cd5451461029057806323b872dd146102cd578063313ce5671461030a576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e761074b565b6040516101f49190612008565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f91906120c3565b6107dd565b604051610231919061211e565b60405180910390f35b34801561024657600080fd5b5061024f610800565b60405161025c9190612198565b60405180910390f35b34801561027157600080fd5b5061027a610824565b60405161028791906121c2565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b291906121dd565b61082e565b6040516102c4919061211e565b60405180910390f35b3480156102d957600080fd5b506102f460048036038101906102ef919061220a565b61086e565b604051610301919061211e565b60405180910390f35b34801561031657600080fd5b5061031f61089d565b60405161032c9190612279565b60405180910390f35b34801561034157600080fd5b5061035c600480360381019061035791906120c3565b6108a6565b604051610369919061211e565b60405180910390f35b34801561037e57600080fd5b506103876108dd565b60405161039491906122a3565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf91906121dd565b610901565b6040516103d1919061211e565b60405180910390f35b3480156103e657600080fd5b506103ef610941565b6040516103fc91906121c2565b60405180910390f35b34801561041157600080fd5b5061042c600480360381019061042791906122be565b610947565b60405161043991906121c2565b60405180910390f35b34801561044e57600080fd5b5061045761098f565b005b34801561046557600080fd5b50610480600480360381019061047b91906121dd565b6109a3565b60405161048d919061211e565b60405180910390f35b3480156104a257600080fd5b506104ab6109e3565b6040516104b891906121c2565b60405180910390f35b3480156104cd57600080fd5b506104d66109e9565b6040516104e391906122a3565b60405180910390f35b3480156104f857600080fd5b50610501610a13565b60405161050e9190612008565b60405180910390f35b34801561052357600080fd5b5061053e600480360381019061053991906120c3565b610aa5565b60405161054b919061211e565b60405180910390f35b34801561056057600080fd5b5061057b600480360381019061057691906120c3565b610b1c565b604051610588919061211e565b60405180910390f35b34801561059d57600080fd5b506105a6610b3f565b6040516105b391906121c2565b60405180910390f35b3480156105c857600080fd5b506105d1610b45565b6040516105de91906121c2565b60405180910390f35b3480156105f357600080fd5b5061060e600480360381019061060991906122eb565b610b4b565b60405161061b919061211e565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906122be565b610bbc565b604051610658919061211e565b60405180910390f35b34801561066d57600080fd5b50610676610c10565b005b34801561068457600080fd5b5061069f600480360381019061069a919061232b565b610c92565b6040516106ac91906121c2565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d791906122be565b610d19565b005b3480156106ea57600080fd5b506106f3610d9c565b60405161070091906121c2565b60405180910390f35b34801561071557600080fd5b5061071e610da2565b005b34801561072c57600080fd5b50610735610e0d565b60405161074291906122a3565b60405180910390f35b60606003805461075a9061239a565b80601f01602080910402602001604051908101604052809291908181526020018280546107869061239a565b80156107d35780601f106107a8576101008083540402835291602001916107d3565b820191906000526020600020905b8154815290600101906020018083116107b657829003601f168201915b5050505050905090565b6000806107e8610e33565b90506107f5818585610e3b565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000610838611004565b600a60009054906101000a900460ff16600a610854919061252d565b8261085f9190612578565b60108190555060019050919050565b600080610879610e33565b9050610886858285611082565b61089185858561110e565b60019150509392505050565b60006012905090565b6000806108b1610e33565b90506108d28185856108c38589610c92565b6108cd91906125d2565b610e3b565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600061090b611004565b600a60009054906101000a900460ff16600a610927919061252d565b826109329190612578565b600f8190555060019050919050565b600f5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610997611004565b6109a160006117df565b565b60006109ad611004565b600a60009054906101000a900460ff16600a6109c9919061252d565b826109d49190612578565b600e8190555060019050919050565b60105481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a229061239a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4e9061239a565b8015610a9b5780601f10610a7057610100808354040283529160200191610a9b565b820191906000526020600020905b815481529060010190602001808311610a7e57829003601f168201915b5050505050905090565b600080610ab0610e33565b90506000610abe8286610c92565b905083811015610b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afa90612678565b60405180910390fd5b610b108286868403610e3b565b60019250505092915050565b600080610b27610e33565b9050610b3481858561110e565b600191505092915050565b600e5481565b600d5481565b6000610b55611004565b60648284610b6391906125d2565b1115610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b9061270a565b60405180910390fd5b82600c8190555081600d819055506001905092915050565b6000610bc6611004565b81601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000610c1b30610947565b11610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5290612776565b60405180910390fd5b610c9030601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610c8b30610947565b6118a5565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d21611004565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8790612808565b60405180910390fd5b610d99816117df565b50565b600c5481565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e0a573d6000803e3d6000fd5b50565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea19061289a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f109061292c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ff791906121c2565b60405180910390a3505050565b61100c610e33565b73ffffffffffffffffffffffffffffffffffffffff1661102a6109e9565b73ffffffffffffffffffffffffffffffffffffffff1614611080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107790612998565b60405180910390fd5b565b600061108e8484610c92565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461110857818110156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190612a04565b60405180910390fd5b6111078484848403610e3b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490612a96565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e390612b28565b60405180910390fd5b806111f684610947565b1015611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e90612bba565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806112dc57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156112f55750600560149054906101000a900460ff16155b156117ce577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461144c57600060065461135b30610947565b6113659190612bda565b9050601154811061137c5761137b601154611b05565b5b6012546006541061144a57611392601254611bc6565b601254600660008282546113a69190612bda565b925050819055506000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050905080611448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143f90612c5a565b60405180910390fd5b505b505b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114ef5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156114fc578190506117bd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115a157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561168a577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036116435760105482111561163e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163590612cec565b60405180910390fd5b611689565b600f54821115611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f90612d7e565b60405180910390fd5b5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361173657600e546116e984610947565b836116f491906125d2565b1115611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c90612e10565b60405180910390fd5b5b60006064600d54846117489190612578565b6117529190612e5f565b905060006064600c54856117669190612578565b6117709190612e5f565b9050808261177e91906125d2565b846117899190612bda565b9250816006600082825461179d91906125d2565b925050819055506117ba863083856117b591906125d2565b6118a5565b50505b6117c88484836118a5565b506117da565b6117d98383836118a5565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b90612a96565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197a90612b28565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0090612bba565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611af791906121c2565b60405180910390a350505050565b6001600560146101000a81548160ff0219169083151502179055506000600282611b2f9190612e5f565b905060008183611b3f9190612bda565b90506000479050611b4f83611bc6565b60008147611b5d9190612bda565b9050611b698382611e46565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611b9c93929190612e90565b60405180910390a1505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611bfe57611bfd612ec7565b5b604051908082528060200260200182016040528015611c2c5781602001602082028036833780820191505090505b5090503081600081518110611c4457611c43612ef6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ce9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d0d9190612f3a565b81600181518110611d2157611d20612ef6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611d86307f000000000000000000000000000000000000000000000000000000000000000084610e3b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c42611dd591906125d2565b6040518663ffffffff1660e01b8152600401611df5959493929190613060565b600060405180830381600087803b158015611e0f57600080fd5b505af1158015611e23573d6000803e3d6000fd5b50505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff021916908315150217905550611e8c307f000000000000000000000000000000000000000000000000000000000000000084610e3b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401611f13969594939291906130ba565b60606040518083038185885af1158015611f31573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611f569190613130565b5050506000600560146101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611fb2578082015181840152602081019050611f97565b60008484015250505050565b6000601f19601f8301169050919050565b6000611fda82611f78565b611fe48185611f83565b9350611ff4818560208601611f94565b611ffd81611fbe565b840191505092915050565b600060208201905081810360008301526120228184611fcf565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061205a8261202f565b9050919050565b61206a8161204f565b811461207557600080fd5b50565b60008135905061208781612061565b92915050565b6000819050919050565b6120a08161208d565b81146120ab57600080fd5b50565b6000813590506120bd81612097565b92915050565b600080604083850312156120da576120d961202a565b5b60006120e885828601612078565b92505060206120f9858286016120ae565b9150509250929050565b60008115159050919050565b61211881612103565b82525050565b6000602082019050612133600083018461210f565b92915050565b6000819050919050565b600061215e6121596121548461202f565b612139565b61202f565b9050919050565b600061217082612143565b9050919050565b600061218282612165565b9050919050565b61219281612177565b82525050565b60006020820190506121ad6000830184612189565b92915050565b6121bc8161208d565b82525050565b60006020820190506121d760008301846121b3565b92915050565b6000602082840312156121f3576121f261202a565b5b6000612201848285016120ae565b91505092915050565b6000806000606084860312156122235761222261202a565b5b600061223186828701612078565b935050602061224286828701612078565b9250506040612253868287016120ae565b9150509250925092565b600060ff82169050919050565b6122738161225d565b82525050565b600060208201905061228e600083018461226a565b92915050565b61229d8161204f565b82525050565b60006020820190506122b86000830184612294565b92915050565b6000602082840312156122d4576122d361202a565b5b60006122e284828501612078565b91505092915050565b600080604083850312156123025761230161202a565b5b6000612310858286016120ae565b9250506020612321858286016120ae565b9150509250929050565b600080604083850312156123425761234161202a565b5b600061235085828601612078565b925050602061236185828601612078565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806123b257607f821691505b6020821081036123c5576123c461236b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156124515780860481111561242d5761242c6123cb565b5b600185161561243c5780820291505b808102905061244a856123fa565b9450612411565b94509492505050565b60008261246a5760019050612526565b816124785760009050612526565b816001811461248e5760028114612498576124c7565b6001915050612526565b60ff8411156124aa576124a96123cb565b5b8360020a9150848211156124c1576124c06123cb565b5b50612526565b5060208310610133831016604e8410600b84101617156124fc5782820a9050838111156124f7576124f66123cb565b5b612526565b6125098484846001612407565b925090508184048111156125205761251f6123cb565b5b81810290505b9392505050565b60006125388261208d565b91506125438361225d565b92506125707fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461245a565b905092915050565b60006125838261208d565b915061258e8361208d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125c7576125c66123cb565b5b828202905092915050565b60006125dd8261208d565b91506125e88361208d565b9250828201905080821115612600576125ff6123cb565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612662602583611f83565b915061266d82612606565b604082019050919050565b6000602082019050818103600083015261269181612655565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b60006126f4602d83611f83565b91506126ff82612698565b604082019050919050565b60006020820190508181036000830152612723816126e7565b9050919050565b7f496e73756666696369656e742042616c616e6365000000000000000000000000600082015250565b6000612760601483611f83565b915061276b8261272a565b602082019050919050565b6000602082019050818103600083015261278f81612753565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006127f2602683611f83565b91506127fd82612796565b604082019050919050565b60006020820190508181036000830152612821816127e5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612884602483611f83565b915061288f82612828565b604082019050919050565b600060208201905081810360008301526128b381612877565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612916602283611f83565b9150612921826128ba565b604082019050919050565b6000602082019050818103600083015261294581612909565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612982602083611f83565b915061298d8261294c565b602082019050919050565b600060208201905081810360008301526129b181612975565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006129ee601d83611f83565b91506129f9826129b8565b602082019050919050565b60006020820190508181036000830152612a1d816129e1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612a80602583611f83565b9150612a8b82612a24565b604082019050919050565b60006020820190508181036000830152612aaf81612a73565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b12602383611f83565b9150612b1d82612ab6565b604082019050919050565b60006020820190508181036000830152612b4181612b05565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612ba4602683611f83565b9150612baf82612b48565b604082019050919050565b60006020820190508181036000830152612bd381612b97565b9050919050565b6000612be58261208d565b9150612bf08361208d565b9250828203905081811115612c0857612c076123cb565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b6000612c44601283611f83565b9150612c4f82612c0e565b602082019050919050565b60006020820190508181036000830152612c7381612c37565b9050919050565b7f42757920616d6f756e742065786365656473206d61782062757920616d6f756e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b6000612cd6602183611f83565b9150612ce182612c7a565b604082019050919050565b60006020820190508181036000830152612d0581612cc9565b9050919050565b7f53656c6c20616d6f756e742065786365656473206d61782073656c6c20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b6000612d68602383611f83565b9150612d7382612d0c565b604082019050919050565b60006020820190508181036000830152612d9781612d5b565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612dfa603683611f83565b9150612e0582612d9e565b604082019050919050565b60006020820190508181036000830152612e2981612ded565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612e6a8261208d565b9150612e758361208d565b925082612e8557612e84612e30565b5b828204905092915050565b6000606082019050612ea560008301866121b3565b612eb260208301856121b3565b612ebf60408301846121b3565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612f3481612061565b92915050565b600060208284031215612f5057612f4f61202a565b5b6000612f5e84828501612f25565b91505092915050565b6000819050919050565b6000612f8c612f87612f8284612f67565b612139565b61208d565b9050919050565b612f9c81612f71565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612fd78161204f565b82525050565b6000612fe98383612fce565b60208301905092915050565b6000602082019050919050565b600061300d82612fa2565b6130178185612fad565b935061302283612fbe565b8060005b8381101561305357815161303a8882612fdd565b975061304583612ff5565b925050600181019050613026565b5085935050505092915050565b600060a08201905061307560008301886121b3565b6130826020830187612f93565b81810360408301526130948186613002565b90506130a36060830185612294565b6130b060808301846121b3565b9695505050505050565b600060c0820190506130cf6000830189612294565b6130dc60208301886121b3565b6130e96040830187612f93565b6130f66060830186612f93565b6131036080830185612294565b61311060a08301846121b3565b979650505050505050565b60008151905061312a81612097565b92915050565b6000806000606084860312156131495761314861202a565b5b60006131578682870161311b565b93505060206131688682870161311b565b92505060406131798682870161311b565b915050925092509256fea2646970667358221220693b219667cff2f406125803f845bcd82271270e6adee461676b0b475f7ef98964736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c806388e765ff116100f7578063af8af69011610095578063f2fde38b11610064578063f2fde38b146106b5578063f345bd85146106de578063f88de0c314610709578063ff56e7a514610720576101cd565b8063af8af690146105e7578063c6f8e73f14610624578063d85a282814610661578063dd62ed3e14610678576101cd565b8063a457c2d7116100d1578063a457c2d714610517578063a9059cbb14610554578063aa4bde2814610591578063acc5120b146105bc576101cd565b806388e765ff146104965780638da5cb5b146104c157806395d89b41146104ec576101cd565b8063395093511161016457806366d602ae1161013e57806366d602ae146103da57806370a0823114610405578063715018a61461044257806381bfdcca14610459576101cd565b8063395093511461033557806349bd5a5e146103725780635b3222051461039d576101cd565b806318160ddd116101a057806318160ddd146102655780631d5cd5451461029057806323b872dd146102cd578063313ce5671461030a576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e761074b565b6040516101f49190612008565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f91906120c3565b6107dd565b604051610231919061211e565b60405180910390f35b34801561024657600080fd5b5061024f610800565b60405161025c9190612198565b60405180910390f35b34801561027157600080fd5b5061027a610824565b60405161028791906121c2565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b291906121dd565b61082e565b6040516102c4919061211e565b60405180910390f35b3480156102d957600080fd5b506102f460048036038101906102ef919061220a565b61086e565b604051610301919061211e565b60405180910390f35b34801561031657600080fd5b5061031f61089d565b60405161032c9190612279565b60405180910390f35b34801561034157600080fd5b5061035c600480360381019061035791906120c3565b6108a6565b604051610369919061211e565b60405180910390f35b34801561037e57600080fd5b506103876108dd565b60405161039491906122a3565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf91906121dd565b610901565b6040516103d1919061211e565b60405180910390f35b3480156103e657600080fd5b506103ef610941565b6040516103fc91906121c2565b60405180910390f35b34801561041157600080fd5b5061042c600480360381019061042791906122be565b610947565b60405161043991906121c2565b60405180910390f35b34801561044e57600080fd5b5061045761098f565b005b34801561046557600080fd5b50610480600480360381019061047b91906121dd565b6109a3565b60405161048d919061211e565b60405180910390f35b3480156104a257600080fd5b506104ab6109e3565b6040516104b891906121c2565b60405180910390f35b3480156104cd57600080fd5b506104d66109e9565b6040516104e391906122a3565b60405180910390f35b3480156104f857600080fd5b50610501610a13565b60405161050e9190612008565b60405180910390f35b34801561052357600080fd5b5061053e600480360381019061053991906120c3565b610aa5565b60405161054b919061211e565b60405180910390f35b34801561056057600080fd5b5061057b600480360381019061057691906120c3565b610b1c565b604051610588919061211e565b60405180910390f35b34801561059d57600080fd5b506105a6610b3f565b6040516105b391906121c2565b60405180910390f35b3480156105c857600080fd5b506105d1610b45565b6040516105de91906121c2565b60405180910390f35b3480156105f357600080fd5b5061060e600480360381019061060991906122eb565b610b4b565b60405161061b919061211e565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906122be565b610bbc565b604051610658919061211e565b60405180910390f35b34801561066d57600080fd5b50610676610c10565b005b34801561068457600080fd5b5061069f600480360381019061069a919061232b565b610c92565b6040516106ac91906121c2565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d791906122be565b610d19565b005b3480156106ea57600080fd5b506106f3610d9c565b60405161070091906121c2565b60405180910390f35b34801561071557600080fd5b5061071e610da2565b005b34801561072c57600080fd5b50610735610e0d565b60405161074291906122a3565b60405180910390f35b60606003805461075a9061239a565b80601f01602080910402602001604051908101604052809291908181526020018280546107869061239a565b80156107d35780601f106107a8576101008083540402835291602001916107d3565b820191906000526020600020905b8154815290600101906020018083116107b657829003601f168201915b5050505050905090565b6000806107e8610e33565b90506107f5818585610e3b565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6000610838611004565b600a60009054906101000a900460ff16600a610854919061252d565b8261085f9190612578565b60108190555060019050919050565b600080610879610e33565b9050610886858285611082565b61089185858561110e565b60019150509392505050565b60006012905090565b6000806108b1610e33565b90506108d28185856108c38589610c92565b6108cd91906125d2565b610e3b565b600191505092915050565b7f0000000000000000000000009454507b99434a5bc73482b3d72ddbdcf2218d2081565b600061090b611004565b600a60009054906101000a900460ff16600a610927919061252d565b826109329190612578565b600f8190555060019050919050565b600f5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610997611004565b6109a160006117df565b565b60006109ad611004565b600a60009054906101000a900460ff16600a6109c9919061252d565b826109d49190612578565b600e8190555060019050919050565b60105481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a229061239a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4e9061239a565b8015610a9b5780601f10610a7057610100808354040283529160200191610a9b565b820191906000526020600020905b815481529060010190602001808311610a7e57829003601f168201915b5050505050905090565b600080610ab0610e33565b90506000610abe8286610c92565b905083811015610b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afa90612678565b60405180910390fd5b610b108286868403610e3b565b60019250505092915050565b600080610b27610e33565b9050610b3481858561110e565b600191505092915050565b600e5481565b600d5481565b6000610b55611004565b60648284610b6391906125d2565b1115610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b9061270a565b60405180910390fd5b82600c8190555081600d819055506001905092915050565b6000610bc6611004565b81601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000610c1b30610947565b11610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5290612776565b60405180910390fd5b610c9030601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610c8b30610947565b6118a5565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d21611004565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8790612808565b60405180910390fd5b610d99816117df565b50565b600c5481565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e0a573d6000803e3d6000fd5b50565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea19061289a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f109061292c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ff791906121c2565b60405180910390a3505050565b61100c610e33565b73ffffffffffffffffffffffffffffffffffffffff1661102a6109e9565b73ffffffffffffffffffffffffffffffffffffffff1614611080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107790612998565b60405180910390fd5b565b600061108e8484610c92565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461110857818110156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190612a04565b60405180910390fd5b6111078484848403610e3b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490612a96565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e390612b28565b60405180910390fd5b806111f684610947565b1015611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e90612bba565b60405180910390fd5b7f0000000000000000000000009454507b99434a5bc73482b3d72ddbdcf2218d2073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806112dc57507f0000000000000000000000009454507b99434a5bc73482b3d72ddbdcf2218d2073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156112f55750600560149054906101000a900460ff16155b156117ce577f0000000000000000000000009454507b99434a5bc73482b3d72ddbdcf2218d2073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461144c57600060065461135b30610947565b6113659190612bda565b9050601154811061137c5761137b601154611b05565b5b6012546006541061144a57611392601254611bc6565b601254600660008282546113a69190612bda565b925050819055506000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050905080611448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143f90612c5a565b60405180910390fd5b505b505b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114ef5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156114fc578190506117bd565b7f0000000000000000000000009454507b99434a5bc73482b3d72ddbdcf2218d2073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115a157507f0000000000000000000000009454507b99434a5bc73482b3d72ddbdcf2218d2073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561168a577f0000000000000000000000009454507b99434a5bc73482b3d72ddbdcf2218d2073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036116435760105482111561163e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163590612cec565b60405180910390fd5b611689565b600f54821115611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f90612d7e565b60405180910390fd5b5b5b7f0000000000000000000000009454507b99434a5bc73482b3d72ddbdcf2218d2073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361173657600e546116e984610947565b836116f491906125d2565b1115611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c90612e10565b60405180910390fd5b5b60006064600d54846117489190612578565b6117529190612e5f565b905060006064600c54856117669190612578565b6117709190612e5f565b9050808261177e91906125d2565b846117899190612bda565b9250816006600082825461179d91906125d2565b925050819055506117ba863083856117b591906125d2565b6118a5565b50505b6117c88484836118a5565b506117da565b6117d98383836118a5565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b90612a96565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197a90612b28565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0090612bba565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611af791906121c2565b60405180910390a350505050565b6001600560146101000a81548160ff0219169083151502179055506000600282611b2f9190612e5f565b905060008183611b3f9190612bda565b90506000479050611b4f83611bc6565b60008147611b5d9190612bda565b9050611b698382611e46565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611b9c93929190612e90565b60405180910390a1505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611bfe57611bfd612ec7565b5b604051908082528060200260200182016040528015611c2c5781602001602082028036833780820191505090505b5090503081600081518110611c4457611c43612ef6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ce9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d0d9190612f3a565b81600181518110611d2157611d20612ef6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611d86307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e3b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c42611dd591906125d2565b6040518663ffffffff1660e01b8152600401611df5959493929190613060565b600060405180830381600087803b158015611e0f57600080fd5b505af1158015611e23573d6000803e3d6000fd5b50505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff021916908315150217905550611e8c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e3b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401611f13969594939291906130ba565b60606040518083038185885af1158015611f31573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611f569190613130565b5050506000600560146101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611fb2578082015181840152602081019050611f97565b60008484015250505050565b6000601f19601f8301169050919050565b6000611fda82611f78565b611fe48185611f83565b9350611ff4818560208601611f94565b611ffd81611fbe565b840191505092915050565b600060208201905081810360008301526120228184611fcf565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061205a8261202f565b9050919050565b61206a8161204f565b811461207557600080fd5b50565b60008135905061208781612061565b92915050565b6000819050919050565b6120a08161208d565b81146120ab57600080fd5b50565b6000813590506120bd81612097565b92915050565b600080604083850312156120da576120d961202a565b5b60006120e885828601612078565b92505060206120f9858286016120ae565b9150509250929050565b60008115159050919050565b61211881612103565b82525050565b6000602082019050612133600083018461210f565b92915050565b6000819050919050565b600061215e6121596121548461202f565b612139565b61202f565b9050919050565b600061217082612143565b9050919050565b600061218282612165565b9050919050565b61219281612177565b82525050565b60006020820190506121ad6000830184612189565b92915050565b6121bc8161208d565b82525050565b60006020820190506121d760008301846121b3565b92915050565b6000602082840312156121f3576121f261202a565b5b6000612201848285016120ae565b91505092915050565b6000806000606084860312156122235761222261202a565b5b600061223186828701612078565b935050602061224286828701612078565b9250506040612253868287016120ae565b9150509250925092565b600060ff82169050919050565b6122738161225d565b82525050565b600060208201905061228e600083018461226a565b92915050565b61229d8161204f565b82525050565b60006020820190506122b86000830184612294565b92915050565b6000602082840312156122d4576122d361202a565b5b60006122e284828501612078565b91505092915050565b600080604083850312156123025761230161202a565b5b6000612310858286016120ae565b9250506020612321858286016120ae565b9150509250929050565b600080604083850312156123425761234161202a565b5b600061235085828601612078565b925050602061236185828601612078565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806123b257607f821691505b6020821081036123c5576123c461236b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156124515780860481111561242d5761242c6123cb565b5b600185161561243c5780820291505b808102905061244a856123fa565b9450612411565b94509492505050565b60008261246a5760019050612526565b816124785760009050612526565b816001811461248e5760028114612498576124c7565b6001915050612526565b60ff8411156124aa576124a96123cb565b5b8360020a9150848211156124c1576124c06123cb565b5b50612526565b5060208310610133831016604e8410600b84101617156124fc5782820a9050838111156124f7576124f66123cb565b5b612526565b6125098484846001612407565b925090508184048111156125205761251f6123cb565b5b81810290505b9392505050565b60006125388261208d565b91506125438361225d565b92506125707fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461245a565b905092915050565b60006125838261208d565b915061258e8361208d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125c7576125c66123cb565b5b828202905092915050565b60006125dd8261208d565b91506125e88361208d565b9250828201905080821115612600576125ff6123cb565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612662602583611f83565b915061266d82612606565b604082019050919050565b6000602082019050818103600083015261269181612655565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b60006126f4602d83611f83565b91506126ff82612698565b604082019050919050565b60006020820190508181036000830152612723816126e7565b9050919050565b7f496e73756666696369656e742042616c616e6365000000000000000000000000600082015250565b6000612760601483611f83565b915061276b8261272a565b602082019050919050565b6000602082019050818103600083015261278f81612753565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006127f2602683611f83565b91506127fd82612796565b604082019050919050565b60006020820190508181036000830152612821816127e5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612884602483611f83565b915061288f82612828565b604082019050919050565b600060208201905081810360008301526128b381612877565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612916602283611f83565b9150612921826128ba565b604082019050919050565b6000602082019050818103600083015261294581612909565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612982602083611f83565b915061298d8261294c565b602082019050919050565b600060208201905081810360008301526129b181612975565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006129ee601d83611f83565b91506129f9826129b8565b602082019050919050565b60006020820190508181036000830152612a1d816129e1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612a80602583611f83565b9150612a8b82612a24565b604082019050919050565b60006020820190508181036000830152612aaf81612a73565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b12602383611f83565b9150612b1d82612ab6565b604082019050919050565b60006020820190508181036000830152612b4181612b05565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612ba4602683611f83565b9150612baf82612b48565b604082019050919050565b60006020820190508181036000830152612bd381612b97565b9050919050565b6000612be58261208d565b9150612bf08361208d565b9250828203905081811115612c0857612c076123cb565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b6000612c44601283611f83565b9150612c4f82612c0e565b602082019050919050565b60006020820190508181036000830152612c7381612c37565b9050919050565b7f42757920616d6f756e742065786365656473206d61782062757920616d6f756e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b6000612cd6602183611f83565b9150612ce182612c7a565b604082019050919050565b60006020820190508181036000830152612d0581612cc9565b9050919050565b7f53656c6c20616d6f756e742065786365656473206d61782073656c6c20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b6000612d68602383611f83565b9150612d7382612d0c565b604082019050919050565b60006020820190508181036000830152612d9781612d5b565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612dfa603683611f83565b9150612e0582612d9e565b604082019050919050565b60006020820190508181036000830152612e2981612ded565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612e6a8261208d565b9150612e758361208d565b925082612e8557612e84612e30565b5b828204905092915050565b6000606082019050612ea560008301866121b3565b612eb260208301856121b3565b612ebf60408301846121b3565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612f3481612061565b92915050565b600060208284031215612f5057612f4f61202a565b5b6000612f5e84828501612f25565b91505092915050565b6000819050919050565b6000612f8c612f87612f8284612f67565b612139565b61208d565b9050919050565b612f9c81612f71565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612fd78161204f565b82525050565b6000612fe98383612fce565b60208301905092915050565b6000602082019050919050565b600061300d82612fa2565b6130178185612fad565b935061302283612fbe565b8060005b8381101561305357815161303a8882612fdd565b975061304583612ff5565b925050600181019050613026565b5085935050505092915050565b600060a08201905061307560008301886121b3565b6130826020830187612f93565b81810360408301526130948186613002565b90506130a36060830185612294565b6130b060808301846121b3565b9695505050505050565b600060c0820190506130cf6000830189612294565b6130dc60208301886121b3565b6130e96040830187612f93565b6130f66060830186612f93565b6131036080830185612294565b61311060a08301846121b3565b979650505050505050565b60008151905061312a81612097565b92915050565b6000806000606084860312156131495761314861202a565b5b60006131578682870161311b565b93505060206131688682870161311b565b92505060406131798682870161311b565b915050925092509256fea2646970667358221220693b219667cff2f406125803f845bcd82271270e6adee461676b0b475f7ef98964736f6c63430008100033

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.