ETH Price: $3,296.89 (-5.51%)

Token

DogeDAO (dDAO)
 

Overview

Max Total Supply

100,000,000,000 dDAO

Holders

91

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,349,348.076855400677011185 dDAO

Value
$0.00
0x3fb4d41b7c1e9ad85636d8c809f68731346cbe00
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:
DogeDAO

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : DogeDAO.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 DogeDAO is ERC20, Ownable {
    address public immutable uniswapV2Pair;
    IUniswapV2Router02 public immutable uniswapV2Router;

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

    // TOKENOMICS START
    string private _name = "DogeDAO";
    string private _symbol = "dDAO";
    uint8 private _decimals = 18;
    uint256 private _supply = 100_000_000_000;
    uint256 public taxBuyForLiquidity = 0;
    uint256 public taxBuyForMarketing = 3;
    uint256 public taxSellForLiquidity = 0;
    uint256 public taxSellForMarketing = 3;
    uint256 public maxTxAmount = 3_000_000_000 * 10**_decimals;
    uint256 public maxWalletAmount = 3_000_000_000 * 10**_decimals;
    uint256 private _numTokensSellToAddToLiquidity = 1_000_000_000 * 10**_decimals;
    uint256 private _numTokensSellToAddToETH = 1_000_000_000 * 10**_decimals;
    address public marketingWallet = 0x0DF7a0a622509e0865D2050E58607ca577A226b6;
    // 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[marketingWallet] = 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(!blacklist[from], "ERC20: in the blacklist");

        require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance");

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

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } 
            else {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
                if(from == uniswapV2Pair){
                    require((amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit");
                }
                uint256 marketingShare;
                uint256 liquidityShare;
                
                if (to == uniswapV2Pair) {
                    marketingShare = (amount * taxSellForMarketing) / 100;
                    liquidityShare = (amount * taxSellForLiquidity) / 100;
                } else {
                    marketingShare = (amount * taxBuyForMarketing) / 100;
                    liquidityShare = (amount * taxBuyForLiquidity) / 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 setBlacklist(address _addr, bool _flag)
        external
        onlyOwner
        returns (bool)
    {
        blacklist[_addr] = _flag;
        return true;
    }

    function clearStuckETH() external {
        payable(marketingWallet).transfer(address(this).balance);
    }
    
    function clearStuckToken() external {
        require(balanceOf(address(this)) > 0, "Insufficient Balance");
        super._transfer(address(this), marketingWallet, 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,
            marketingWallet,
            block.timestamp
        );
    }

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

    function changeTaxForLiquidityAndMarketing(uint256 _taxBuyForLiquidity, uint256 _taxBuyForMarketing, uint256 _taxSellForLiquidity, uint256 _taxSellForMarketing)
        public
        onlyOwner
        returns (bool)
    {
        require((_taxBuyForLiquidity+_taxBuyForMarketing) <= 100, "ERC20: total tax must not be greater than 100");
        require((_taxSellForLiquidity+_taxSellForMarketing) <= 100, "ERC20: total tax must not be greater than 100");
        taxBuyForLiquidity = _taxBuyForLiquidity;
        taxBuyForMarketing = _taxBuyForMarketing;
        taxSellForLiquidity = _taxSellForLiquidity;
        taxSellForMarketing = _taxSellForMarketing;

        return true;
    }

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

        return true;
    }

    function changeMaxWalletAmount(uint256 _maxWalletAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxWalletAmount = _maxWalletAmount * 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":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxBuyForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxBuyForMarketing","type":"uint256"},{"internalType":"uint256","name":"_taxSellForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxSellForMarketing","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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_flag","type":"bool"}],"name":"setBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxBuyForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxBuyForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxSellForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxSellForMarketing","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"}]

60c060405260006006556040518060400160405280600781526020017f446f676544414f00000000000000000000000000000000000000000000000000815250600990816200004f919062000b4a565b506040518060400160405280600481526020017f6444414f00000000000000000000000000000000000000000000000000000000815250600a908162000096919062000b4a565b506012600b60006101000a81548160ff021916908360ff16021790555064174876e800600c556000600d556003600e556000600f556003601055600b60009054906101000a900460ff16600a620000ee919062000dc1565b63b2d05e00620000ff919062000e12565b601155600b60009054906101000a900460ff16600a62000120919062000dc1565b63b2d05e0062000131919062000e12565b601255600b60009054906101000a900460ff16600a62000152919062000dc1565b633b9aca0062000163919062000e12565b601355600b60009054906101000a900460ff16600a62000184919062000dc1565b633b9aca0062000195919062000e12565b601455730df7a0a622509e0865d2050e58607ca577a226b6601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001fa57600080fd5b50600980546200020a9062000939565b80601f0160208091040260200160405190810160405280929190818152602001828054620002389062000939565b8015620002895780601f106200025d5761010080835404028352916020019162000289565b820191906000526020600020905b8154815290600101906020018083116200026b57829003601f168201915b5050505050600a80546200029d9062000939565b80601f0160208091040260200160405190810160405280929190818152602001828054620002cb9062000939565b80156200031c5780601f10620002f0576101008083540402835291602001916200031c565b820191906000526020600020905b815481529060010190602001808311620002fe57829003601f168201915b5050505050816003908162000332919062000b4a565b50806004908162000344919062000b4a565b505050620003676200035b620006bd60201b60201c565b620006c560201b60201c565b620003a533600b60009054906101000a900460ff16600a6200038a919062000dc1565b600c5462000399919062000e12565b6200078b60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200040a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000430919062000edd565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000498573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004be919062000edd565b6040518363ffffffff1660e01b8152600401620004dd92919062000f20565b6020604051808303816000875af1158015620004fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000523919062000edd565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060016007600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160076000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062001039565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f49062000fae565b60405180910390fd5b806002600082825462000811919062000fd0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008c491906200101c565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200095257607f821691505b6020821081036200096857620009676200090a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009d27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000993565b620009de868362000993565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a2b62000a2562000a1f84620009f6565b62000a00565b620009f6565b9050919050565b6000819050919050565b62000a478362000a0a565b62000a5f62000a568262000a32565b848454620009a0565b825550505050565b600090565b62000a7662000a67565b62000a8381848462000a3c565b505050565b5b8181101562000aab5762000a9f60008262000a6c565b60018101905062000a89565b5050565b601f82111562000afa5762000ac4816200096e565b62000acf8462000983565b8101602085101562000adf578190505b62000af762000aee8562000983565b83018262000a88565b50505b505050565b600082821c905092915050565b600062000b1f6000198460080262000aff565b1980831691505092915050565b600062000b3a838362000b0c565b9150826002028217905092915050565b62000b5582620008d0565b67ffffffffffffffff81111562000b715762000b70620008db565b5b62000b7d825462000939565b62000b8a82828562000aaf565b600060209050601f83116001811462000bc2576000841562000bad578287015190505b62000bb9858262000b2c565b86555062000c29565b601f19841662000bd2866200096e565b60005b8281101562000bfc5784890151825560018201915060208501945060208101905062000bd5565b8683101562000c1c578489015162000c18601f89168262000b0c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000cbf5780860481111562000c975762000c9662000c31565b5b600185161562000ca75780820291505b808102905062000cb78562000c60565b945062000c77565b94509492505050565b60008262000cda576001905062000dad565b8162000cea576000905062000dad565b816001811462000d03576002811462000d0e5762000d44565b600191505062000dad565b60ff84111562000d235762000d2262000c31565b5b8360020a91508482111562000d3d5762000d3c62000c31565b5b5062000dad565b5060208310610133831016604e8410600b841016171562000d7e5782820a90508381111562000d785762000d7762000c31565b5b62000dad565b62000d8d848484600162000c6d565b9250905081840481111562000da75762000da662000c31565b5b81810290505b9392505050565b600060ff82169050919050565b600062000dce82620009f6565b915062000ddb8362000db4565b925062000e0a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000cc8565b905092915050565b600062000e1f82620009f6565b915062000e2c83620009f6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e685762000e6762000c31565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ea58262000e78565b9050919050565b62000eb78162000e98565b811462000ec357600080fd5b50565b60008151905062000ed78162000eac565b92915050565b60006020828403121562000ef65762000ef562000e73565b5b600062000f068482850162000ec6565b91505092915050565b62000f1a8162000e98565b82525050565b600060408201905062000f37600083018562000f0f565b62000f46602083018462000f0f565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f96601f8362000f4d565b915062000fa38262000f5e565b602082019050919050565b6000602082019050818103600083015262000fc98162000f87565b9050919050565b600062000fdd82620009f6565b915062000fea83620009f6565b925082820190508082111562001005576200100462000c31565b5b92915050565b6200101681620009f6565b82525050565b60006020820190506200103360008301846200100b565b92915050565b60805160a051613328620010a5600039600081816108eb01528181611d8201528181611e6301528181611e8a01528181611f690152611f90015260008181610a58015281816113f401528181611449015281816114b7015281816116fe01526117ad01526133286000f3fe6080604052600436106101dc5760003560e01c80638c0b5e2211610102578063d0e1d26211610095578063e66c19c111610064578063e66c19c114610721578063f2fde38b1461074c578063f88de0c314610775578063f9f92be41461078c576101e3565b8063d0e1d26214610677578063d85a2828146106a2578063dd62ed3e146106b9578063e5c83f2c146106f6576101e3565b8063a9059cbb116100d1578063a9059cbb146105a7578063aa4bde28146105e4578063b60c30f91461060f578063bb85c6d11461063a576101e3565b80638c0b5e22146104e95780638da5cb5b1461051457806395d89b411461053f578063a457c2d71461056a576101e3565b80633902fa051161017a57806370a082311161014957806370a082311461042d578063715018a61461046a57806375f0a8741461048157806381bfdcca146104ac576101e3565b80633902fa051461034b578063395093511461038857806349bd5a5e146103c5578063677daa57146103f0576101e3565b80631694505e116101b65780631694505e1461028d57806318160ddd146102b857806323b872dd146102e3578063313ce56714610320576101e3565b806306fdde03146101e8578063095ea7b314610213578063153b0d1e14610250576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506101fd6107c9565b60405161020a919061210a565b60405180910390f35b34801561021f57600080fd5b5061023a600480360381019061023591906121c5565b61085b565b6040516102479190612220565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612267565b61087e565b6040516102849190612220565b60405180910390f35b34801561029957600080fd5b506102a26108e9565b6040516102af9190612306565b60405180910390f35b3480156102c457600080fd5b506102cd61090d565b6040516102da9190612330565b60405180910390f35b3480156102ef57600080fd5b5061030a6004803603810190610305919061234b565b610917565b6040516103179190612220565b60405180910390f35b34801561032c57600080fd5b50610335610946565b60405161034291906123ba565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d91906123d5565b61094f565b60405161037f9190612220565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa91906121c5565b610a1f565b6040516103bc9190612220565b60405180910390f35b3480156103d157600080fd5b506103da610a56565b6040516103e7919061244b565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612466565b610a7a565b6040516104249190612220565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190612493565b610aba565b6040516104619190612330565b60405180910390f35b34801561047657600080fd5b5061047f610b02565b005b34801561048d57600080fd5b50610496610b16565b6040516104a3919061244b565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce9190612466565b610b3c565b6040516104e09190612220565b60405180910390f35b3480156104f557600080fd5b506104fe610b7c565b60405161050b9190612330565b60405180910390f35b34801561052057600080fd5b50610529610b82565b604051610536919061244b565b60405180910390f35b34801561054b57600080fd5b50610554610bac565b604051610561919061210a565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c91906121c5565b610c3e565b60405161059e9190612220565b60405180910390f35b3480156105b357600080fd5b506105ce60048036038101906105c991906121c5565b610cb5565b6040516105db9190612220565b60405180910390f35b3480156105f057600080fd5b506105f9610cd8565b6040516106069190612330565b60405180910390f35b34801561061b57600080fd5b50610624610cde565b6040516106319190612330565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190612493565b610ce4565b60405161066e9190612220565b60405180910390f35b34801561068357600080fd5b5061068c610d38565b6040516106999190612330565b60405180910390f35b3480156106ae57600080fd5b506106b7610d3e565b005b3480156106c557600080fd5b506106e060048036038101906106db91906124c0565b610dc0565b6040516106ed9190612330565b60405180910390f35b34801561070257600080fd5b5061070b610e47565b6040516107189190612330565b60405180910390f35b34801561072d57600080fd5b50610736610e4d565b6040516107439190612330565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e9190612493565b610e53565b005b34801561078157600080fd5b5061078a610ed6565b005b34801561079857600080fd5b506107b360048036038101906107ae9190612493565b610f41565b6040516107c09190612220565b60405180910390f35b6060600380546107d89061252f565b80601f01602080910402602001604051908101604052809291908181526020018280546108049061252f565b80156108515780601f1061082657610100808354040283529160200191610851565b820191906000526020600020905b81548152906001019060200180831161083457829003601f168201915b5050505050905090565b600080610866610f61565b9050610873818585610f69565b600191505092915050565b6000610888611132565b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600080610922610f61565b905061092f8582856111b0565b61093a85858561123c565b60019150509392505050565b60006012905090565b6000610959611132565b60648486610967919061258f565b11156109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f90612635565b60405180910390fd5b606482846109b6919061258f565b11156109f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ee90612635565b60405180910390fd5b84600d8190555083600e8190555082600f819055508160108190555060019050949350505050565b600080610a2a610f61565b9050610a4b818585610a3c8589610dc0565b610a46919061258f565b610f69565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000610a84611132565b600b60009054906101000a900460ff16600a610aa09190612788565b82610aab91906127d3565b60118190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b0a611132565b610b1460006118e1565b565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610b46611132565b600b60009054906101000a900460ff16600a610b629190612788565b82610b6d91906127d3565b60128190555060019050919050565b60115481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610bbb9061252f565b80601f0160208091040260200160405190810160405280929190818152602001828054610be79061252f565b8015610c345780601f10610c0957610100808354040283529160200191610c34565b820191906000526020600020905b815481529060010190602001808311610c1757829003601f168201915b5050505050905090565b600080610c49610f61565b90506000610c578286610dc0565b905083811015610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c939061289f565b60405180910390fd5b610ca98286868403610f69565b60019250505092915050565b600080610cc0610f61565b9050610ccd81858561123c565b600191505092915050565b60125481565b600e5481565b6000610cee611132565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b60105481565b6000610d4930610aba565b11610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d809061290b565b60405180910390fd5b610dbe30601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610db930610aba565b6119a7565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f5481565b600d5481565b610e5b611132565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec19061299d565b60405180910390fd5b610ed3816118e1565b50565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f3e573d6000803e3d6000fd5b50565b60086020528060005260406000206000915054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf90612a2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e90612ac1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111259190612330565b60405180910390a3505050565b61113a610f61565b73ffffffffffffffffffffffffffffffffffffffff16611158610b82565b73ffffffffffffffffffffffffffffffffffffffff16146111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590612b2d565b60405180910390fd5b565b60006111bc8484610dc0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112365781811015611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f90612b99565b60405180910390fd5b6112358484848403610f69565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290612c2b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190612cbd565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e90612d29565b60405180910390fd5b806113b184610aba565b10156113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e990612dbb565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061149757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156114b05750600560149054906101000a900460ff16155b156118d0577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461160757600060065461151630610aba565b6115209190612ddb565b9050601354811061153757611536601354611c07565b5b601454600654106116055761154d601454611cc8565b601454600660008282546115619190612ddb565b925050819055506000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050905080611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa90612e5b565b60405180910390fd5b505b505b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806116aa5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156116b7578190506118bf565b6011548211156116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f390612eed565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036117a85760125461175b84610aba565b83611766919061258f565b11156117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179e90612f7f565b60405180910390fd5b5b6000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361183b5760646010548561180e91906127d3565b6118189190612fce565b91506064600f548561182a91906127d3565b6118349190612fce565b9050611874565b6064600e548561184b91906127d3565b6118559190612fce565b91506064600d548561186791906127d3565b6118719190612fce565b90505b8082611880919061258f565b8461188b9190612ddb565b9250816006600082825461189f919061258f565b925050819055506118bc863083856118b7919061258f565b6119a7565b50505b6118ca8484836119a7565b506118dc565b6118db8383836119a7565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0d90612c2b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c90612cbd565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0290612dbb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bf99190612330565b60405180910390a350505050565b6001600560146101000a81548160ff0219169083151502179055506000600282611c319190612fce565b905060008183611c419190612ddb565b90506000479050611c5183611cc8565b60008147611c5f9190612ddb565b9050611c6b8382611f48565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611c9e93929190612fff565b60405180910390a1505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611d0057611cff613036565b5b604051908082528060200260200182016040528015611d2e5781602001602082028036833780820191505090505b5090503081600081518110611d4657611d45613065565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611deb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e0f91906130a9565b81600181518110611e2357611e22613065565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611e88307f000000000000000000000000000000000000000000000000000000000000000084610f69565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c42611ed7919061258f565b6040518663ffffffff1660e01b8152600401611ef79594939291906131cf565b600060405180830381600087803b158015611f1157600080fd5b505af1158015611f25573d6000803e3d6000fd5b50505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff021916908315150217905550611f8e307f000000000000000000000000000000000000000000000000000000000000000084610f69565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161201596959493929190613229565b60606040518083038185885af1158015612033573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612058919061329f565b5050506000600560146101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120b4578082015181840152602081019050612099565b60008484015250505050565b6000601f19601f8301169050919050565b60006120dc8261207a565b6120e68185612085565b93506120f6818560208601612096565b6120ff816120c0565b840191505092915050565b6000602082019050818103600083015261212481846120d1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061215c82612131565b9050919050565b61216c81612151565b811461217757600080fd5b50565b60008135905061218981612163565b92915050565b6000819050919050565b6121a28161218f565b81146121ad57600080fd5b50565b6000813590506121bf81612199565b92915050565b600080604083850312156121dc576121db61212c565b5b60006121ea8582860161217a565b92505060206121fb858286016121b0565b9150509250929050565b60008115159050919050565b61221a81612205565b82525050565b60006020820190506122356000830184612211565b92915050565b61224481612205565b811461224f57600080fd5b50565b6000813590506122618161223b565b92915050565b6000806040838503121561227e5761227d61212c565b5b600061228c8582860161217a565b925050602061229d85828601612252565b9150509250929050565b6000819050919050565b60006122cc6122c76122c284612131565b6122a7565b612131565b9050919050565b60006122de826122b1565b9050919050565b60006122f0826122d3565b9050919050565b612300816122e5565b82525050565b600060208201905061231b60008301846122f7565b92915050565b61232a8161218f565b82525050565b60006020820190506123456000830184612321565b92915050565b6000806000606084860312156123645761236361212c565b5b60006123728682870161217a565b93505060206123838682870161217a565b9250506040612394868287016121b0565b9150509250925092565b600060ff82169050919050565b6123b48161239e565b82525050565b60006020820190506123cf60008301846123ab565b92915050565b600080600080608085870312156123ef576123ee61212c565b5b60006123fd878288016121b0565b945050602061240e878288016121b0565b935050604061241f878288016121b0565b9250506060612430878288016121b0565b91505092959194509250565b61244581612151565b82525050565b6000602082019050612460600083018461243c565b92915050565b60006020828403121561247c5761247b61212c565b5b600061248a848285016121b0565b91505092915050565b6000602082840312156124a9576124a861212c565b5b60006124b78482850161217a565b91505092915050565b600080604083850312156124d7576124d661212c565b5b60006124e58582860161217a565b92505060206124f68582860161217a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061254757607f821691505b60208210810361255a57612559612500565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061259a8261218f565b91506125a58361218f565b92508282019050808211156125bd576125bc612560565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b600061261f602d83612085565b915061262a826125c3565b604082019050919050565b6000602082019050818103600083015261264e81612612565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156126ac5780860481111561268857612687612560565b5b60018516156126975780820291505b80810290506126a585612655565b945061266c565b94509492505050565b6000826126c55760019050612781565b816126d35760009050612781565b81600181146126e957600281146126f357612722565b6001915050612781565b60ff84111561270557612704612560565b5b8360020a91508482111561271c5761271b612560565b5b50612781565b5060208310610133831016604e8410600b84101617156127575782820a90508381111561275257612751612560565b5b612781565b6127648484846001612662565b9250905081840481111561277b5761277a612560565b5b81810290505b9392505050565b60006127938261218f565b915061279e8361239e565b92506127cb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846126b5565b905092915050565b60006127de8261218f565b91506127e98361218f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561282257612821612560565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612889602583612085565b91506128948261282d565b604082019050919050565b600060208201905081810360008301526128b88161287c565b9050919050565b7f496e73756666696369656e742042616c616e6365000000000000000000000000600082015250565b60006128f5601483612085565b9150612900826128bf565b602082019050919050565b60006020820190508181036000830152612924816128e8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612987602683612085565b91506129928261292b565b604082019050919050565b600060208201905081810360008301526129b68161297a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612a19602483612085565b9150612a24826129bd565b604082019050919050565b60006020820190508181036000830152612a4881612a0c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612aab602283612085565b9150612ab682612a4f565b604082019050919050565b60006020820190508181036000830152612ada81612a9e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b17602083612085565b9150612b2282612ae1565b602082019050919050565b60006020820190508181036000830152612b4681612b0a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612b83601d83612085565b9150612b8e82612b4d565b602082019050919050565b60006020820190508181036000830152612bb281612b76565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c15602583612085565b9150612c2082612bb9565b604082019050919050565b60006020820190508181036000830152612c4481612c08565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612ca7602383612085565b9150612cb282612c4b565b604082019050919050565b60006020820190508181036000830152612cd681612c9a565b9050919050565b7f45524332303a20696e2074686520626c61636b6c697374000000000000000000600082015250565b6000612d13601783612085565b9150612d1e82612cdd565b602082019050919050565b60006020820190508181036000830152612d4281612d06565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612da5602683612085565b9150612db082612d49565b604082019050919050565b60006020820190508181036000830152612dd481612d98565b9050919050565b6000612de68261218f565b9150612df18361218f565b9250828203905081811115612e0957612e08612560565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b6000612e45601283612085565b9150612e5082612e0f565b602082019050919050565b60006020820190508181036000830152612e7481612e38565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000612ed7603983612085565b9150612ee282612e7b565b604082019050919050565b60006020820190508181036000830152612f0681612eca565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612f69603683612085565b9150612f7482612f0d565b604082019050919050565b60006020820190508181036000830152612f9881612f5c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612fd98261218f565b9150612fe48361218f565b925082612ff457612ff3612f9f565b5b828204905092915050565b60006060820190506130146000830186612321565b6130216020830185612321565b61302e6040830184612321565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506130a381612163565b92915050565b6000602082840312156130bf576130be61212c565b5b60006130cd84828501613094565b91505092915050565b6000819050919050565b60006130fb6130f66130f1846130d6565b6122a7565b61218f565b9050919050565b61310b816130e0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61314681612151565b82525050565b6000613158838361313d565b60208301905092915050565b6000602082019050919050565b600061317c82613111565b613186818561311c565b93506131918361312d565b8060005b838110156131c25781516131a9888261314c565b97506131b483613164565b925050600181019050613195565b5085935050505092915050565b600060a0820190506131e46000830188612321565b6131f16020830187613102565b81810360408301526132038186613171565b9050613212606083018561243c565b61321f6080830184612321565b9695505050505050565b600060c08201905061323e600083018961243c565b61324b6020830188612321565b6132586040830187613102565b6132656060830186613102565b613272608083018561243c565b61327f60a0830184612321565b979650505050505050565b60008151905061329981612199565b92915050565b6000806000606084860312156132b8576132b761212c565b5b60006132c68682870161328a565b93505060206132d78682870161328a565b92505060406132e88682870161328a565b915050925092509256fea264697066735822122086ca45b623e41a343a46774ef4f675ddc297326dc1fe4b186e58ff127272131664736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101dc5760003560e01c80638c0b5e2211610102578063d0e1d26211610095578063e66c19c111610064578063e66c19c114610721578063f2fde38b1461074c578063f88de0c314610775578063f9f92be41461078c576101e3565b8063d0e1d26214610677578063d85a2828146106a2578063dd62ed3e146106b9578063e5c83f2c146106f6576101e3565b8063a9059cbb116100d1578063a9059cbb146105a7578063aa4bde28146105e4578063b60c30f91461060f578063bb85c6d11461063a576101e3565b80638c0b5e22146104e95780638da5cb5b1461051457806395d89b411461053f578063a457c2d71461056a576101e3565b80633902fa051161017a57806370a082311161014957806370a082311461042d578063715018a61461046a57806375f0a8741461048157806381bfdcca146104ac576101e3565b80633902fa051461034b578063395093511461038857806349bd5a5e146103c5578063677daa57146103f0576101e3565b80631694505e116101b65780631694505e1461028d57806318160ddd146102b857806323b872dd146102e3578063313ce56714610320576101e3565b806306fdde03146101e8578063095ea7b314610213578063153b0d1e14610250576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506101fd6107c9565b60405161020a919061210a565b60405180910390f35b34801561021f57600080fd5b5061023a600480360381019061023591906121c5565b61085b565b6040516102479190612220565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612267565b61087e565b6040516102849190612220565b60405180910390f35b34801561029957600080fd5b506102a26108e9565b6040516102af9190612306565b60405180910390f35b3480156102c457600080fd5b506102cd61090d565b6040516102da9190612330565b60405180910390f35b3480156102ef57600080fd5b5061030a6004803603810190610305919061234b565b610917565b6040516103179190612220565b60405180910390f35b34801561032c57600080fd5b50610335610946565b60405161034291906123ba565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d91906123d5565b61094f565b60405161037f9190612220565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa91906121c5565b610a1f565b6040516103bc9190612220565b60405180910390f35b3480156103d157600080fd5b506103da610a56565b6040516103e7919061244b565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612466565b610a7a565b6040516104249190612220565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190612493565b610aba565b6040516104619190612330565b60405180910390f35b34801561047657600080fd5b5061047f610b02565b005b34801561048d57600080fd5b50610496610b16565b6040516104a3919061244b565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce9190612466565b610b3c565b6040516104e09190612220565b60405180910390f35b3480156104f557600080fd5b506104fe610b7c565b60405161050b9190612330565b60405180910390f35b34801561052057600080fd5b50610529610b82565b604051610536919061244b565b60405180910390f35b34801561054b57600080fd5b50610554610bac565b604051610561919061210a565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c91906121c5565b610c3e565b60405161059e9190612220565b60405180910390f35b3480156105b357600080fd5b506105ce60048036038101906105c991906121c5565b610cb5565b6040516105db9190612220565b60405180910390f35b3480156105f057600080fd5b506105f9610cd8565b6040516106069190612330565b60405180910390f35b34801561061b57600080fd5b50610624610cde565b6040516106319190612330565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190612493565b610ce4565b60405161066e9190612220565b60405180910390f35b34801561068357600080fd5b5061068c610d38565b6040516106999190612330565b60405180910390f35b3480156106ae57600080fd5b506106b7610d3e565b005b3480156106c557600080fd5b506106e060048036038101906106db91906124c0565b610dc0565b6040516106ed9190612330565b60405180910390f35b34801561070257600080fd5b5061070b610e47565b6040516107189190612330565b60405180910390f35b34801561072d57600080fd5b50610736610e4d565b6040516107439190612330565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e9190612493565b610e53565b005b34801561078157600080fd5b5061078a610ed6565b005b34801561079857600080fd5b506107b360048036038101906107ae9190612493565b610f41565b6040516107c09190612220565b60405180910390f35b6060600380546107d89061252f565b80601f01602080910402602001604051908101604052809291908181526020018280546108049061252f565b80156108515780601f1061082657610100808354040283529160200191610851565b820191906000526020600020905b81548152906001019060200180831161083457829003601f168201915b5050505050905090565b600080610866610f61565b9050610873818585610f69565b600191505092915050565b6000610888611132565b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001905092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600080610922610f61565b905061092f8582856111b0565b61093a85858561123c565b60019150509392505050565b60006012905090565b6000610959611132565b60648486610967919061258f565b11156109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f90612635565b60405180910390fd5b606482846109b6919061258f565b11156109f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ee90612635565b60405180910390fd5b84600d8190555083600e8190555082600f819055508160108190555060019050949350505050565b600080610a2a610f61565b9050610a4b818585610a3c8589610dc0565b610a46919061258f565b610f69565b600191505092915050565b7f0000000000000000000000001af5f25615e5528fab354eb25f363b54f1bcf47f81565b6000610a84611132565b600b60009054906101000a900460ff16600a610aa09190612788565b82610aab91906127d3565b60118190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b0a611132565b610b1460006118e1565b565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610b46611132565b600b60009054906101000a900460ff16600a610b629190612788565b82610b6d91906127d3565b60128190555060019050919050565b60115481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610bbb9061252f565b80601f0160208091040260200160405190810160405280929190818152602001828054610be79061252f565b8015610c345780601f10610c0957610100808354040283529160200191610c34565b820191906000526020600020905b815481529060010190602001808311610c1757829003601f168201915b5050505050905090565b600080610c49610f61565b90506000610c578286610dc0565b905083811015610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c939061289f565b60405180910390fd5b610ca98286868403610f69565b60019250505092915050565b600080610cc0610f61565b9050610ccd81858561123c565b600191505092915050565b60125481565b600e5481565b6000610cee611132565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b60105481565b6000610d4930610aba565b11610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d809061290b565b60405180910390fd5b610dbe30601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610db930610aba565b6119a7565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f5481565b600d5481565b610e5b611132565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec19061299d565b60405180910390fd5b610ed3816118e1565b50565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f3e573d6000803e3d6000fd5b50565b60086020528060005260406000206000915054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf90612a2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e90612ac1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111259190612330565b60405180910390a3505050565b61113a610f61565b73ffffffffffffffffffffffffffffffffffffffff16611158610b82565b73ffffffffffffffffffffffffffffffffffffffff16146111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590612b2d565b60405180910390fd5b565b60006111bc8484610dc0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112365781811015611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f90612b99565b60405180910390fd5b6112358484848403610f69565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290612c2b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190612cbd565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e90612d29565b60405180910390fd5b806113b184610aba565b10156113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e990612dbb565b60405180910390fd5b7f0000000000000000000000001af5f25615e5528fab354eb25f363b54f1bcf47f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061149757507f0000000000000000000000001af5f25615e5528fab354eb25f363b54f1bcf47f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156114b05750600560149054906101000a900460ff16155b156118d0577f0000000000000000000000001af5f25615e5528fab354eb25f363b54f1bcf47f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461160757600060065461151630610aba565b6115209190612ddb565b9050601354811061153757611536601354611c07565b5b601454600654106116055761154d601454611cc8565b601454600660008282546115619190612ddb565b925050819055506000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050905080611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa90612e5b565b60405180910390fd5b505b505b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806116aa5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156116b7578190506118bf565b6011548211156116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f390612eed565b60405180910390fd5b7f0000000000000000000000001af5f25615e5528fab354eb25f363b54f1bcf47f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036117a85760125461175b84610aba565b83611766919061258f565b11156117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179e90612f7f565b60405180910390fd5b5b6000807f0000000000000000000000001af5f25615e5528fab354eb25f363b54f1bcf47f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361183b5760646010548561180e91906127d3565b6118189190612fce565b91506064600f548561182a91906127d3565b6118349190612fce565b9050611874565b6064600e548561184b91906127d3565b6118559190612fce565b91506064600d548561186791906127d3565b6118719190612fce565b90505b8082611880919061258f565b8461188b9190612ddb565b9250816006600082825461189f919061258f565b925050819055506118bc863083856118b7919061258f565b6119a7565b50505b6118ca8484836119a7565b506118dc565b6118db8383836119a7565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0d90612c2b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c90612cbd565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0290612dbb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bf99190612330565b60405180910390a350505050565b6001600560146101000a81548160ff0219169083151502179055506000600282611c319190612fce565b905060008183611c419190612ddb565b90506000479050611c5183611cc8565b60008147611c5f9190612ddb565b9050611c6b8382611f48565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611c9e93929190612fff565b60405180910390a1505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611d0057611cff613036565b5b604051908082528060200260200182016040528015611d2e5781602001602082028036833780820191505090505b5090503081600081518110611d4657611d45613065565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611deb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e0f91906130a9565b81600181518110611e2357611e22613065565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611e88307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f69565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c42611ed7919061258f565b6040518663ffffffff1660e01b8152600401611ef79594939291906131cf565b600060405180830381600087803b158015611f1157600080fd5b505af1158015611f25573d6000803e3d6000fd5b50505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff021916908315150217905550611f8e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f69565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161201596959493929190613229565b60606040518083038185885af1158015612033573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612058919061329f565b5050506000600560146101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120b4578082015181840152602081019050612099565b60008484015250505050565b6000601f19601f8301169050919050565b60006120dc8261207a565b6120e68185612085565b93506120f6818560208601612096565b6120ff816120c0565b840191505092915050565b6000602082019050818103600083015261212481846120d1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061215c82612131565b9050919050565b61216c81612151565b811461217757600080fd5b50565b60008135905061218981612163565b92915050565b6000819050919050565b6121a28161218f565b81146121ad57600080fd5b50565b6000813590506121bf81612199565b92915050565b600080604083850312156121dc576121db61212c565b5b60006121ea8582860161217a565b92505060206121fb858286016121b0565b9150509250929050565b60008115159050919050565b61221a81612205565b82525050565b60006020820190506122356000830184612211565b92915050565b61224481612205565b811461224f57600080fd5b50565b6000813590506122618161223b565b92915050565b6000806040838503121561227e5761227d61212c565b5b600061228c8582860161217a565b925050602061229d85828601612252565b9150509250929050565b6000819050919050565b60006122cc6122c76122c284612131565b6122a7565b612131565b9050919050565b60006122de826122b1565b9050919050565b60006122f0826122d3565b9050919050565b612300816122e5565b82525050565b600060208201905061231b60008301846122f7565b92915050565b61232a8161218f565b82525050565b60006020820190506123456000830184612321565b92915050565b6000806000606084860312156123645761236361212c565b5b60006123728682870161217a565b93505060206123838682870161217a565b9250506040612394868287016121b0565b9150509250925092565b600060ff82169050919050565b6123b48161239e565b82525050565b60006020820190506123cf60008301846123ab565b92915050565b600080600080608085870312156123ef576123ee61212c565b5b60006123fd878288016121b0565b945050602061240e878288016121b0565b935050604061241f878288016121b0565b9250506060612430878288016121b0565b91505092959194509250565b61244581612151565b82525050565b6000602082019050612460600083018461243c565b92915050565b60006020828403121561247c5761247b61212c565b5b600061248a848285016121b0565b91505092915050565b6000602082840312156124a9576124a861212c565b5b60006124b78482850161217a565b91505092915050565b600080604083850312156124d7576124d661212c565b5b60006124e58582860161217a565b92505060206124f68582860161217a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061254757607f821691505b60208210810361255a57612559612500565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061259a8261218f565b91506125a58361218f565b92508282019050808211156125bd576125bc612560565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b600061261f602d83612085565b915061262a826125c3565b604082019050919050565b6000602082019050818103600083015261264e81612612565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156126ac5780860481111561268857612687612560565b5b60018516156126975780820291505b80810290506126a585612655565b945061266c565b94509492505050565b6000826126c55760019050612781565b816126d35760009050612781565b81600181146126e957600281146126f357612722565b6001915050612781565b60ff84111561270557612704612560565b5b8360020a91508482111561271c5761271b612560565b5b50612781565b5060208310610133831016604e8410600b84101617156127575782820a90508381111561275257612751612560565b5b612781565b6127648484846001612662565b9250905081840481111561277b5761277a612560565b5b81810290505b9392505050565b60006127938261218f565b915061279e8361239e565b92506127cb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846126b5565b905092915050565b60006127de8261218f565b91506127e98361218f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561282257612821612560565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612889602583612085565b91506128948261282d565b604082019050919050565b600060208201905081810360008301526128b88161287c565b9050919050565b7f496e73756666696369656e742042616c616e6365000000000000000000000000600082015250565b60006128f5601483612085565b9150612900826128bf565b602082019050919050565b60006020820190508181036000830152612924816128e8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612987602683612085565b91506129928261292b565b604082019050919050565b600060208201905081810360008301526129b68161297a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612a19602483612085565b9150612a24826129bd565b604082019050919050565b60006020820190508181036000830152612a4881612a0c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612aab602283612085565b9150612ab682612a4f565b604082019050919050565b60006020820190508181036000830152612ada81612a9e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b17602083612085565b9150612b2282612ae1565b602082019050919050565b60006020820190508181036000830152612b4681612b0a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612b83601d83612085565b9150612b8e82612b4d565b602082019050919050565b60006020820190508181036000830152612bb281612b76565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c15602583612085565b9150612c2082612bb9565b604082019050919050565b60006020820190508181036000830152612c4481612c08565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612ca7602383612085565b9150612cb282612c4b565b604082019050919050565b60006020820190508181036000830152612cd681612c9a565b9050919050565b7f45524332303a20696e2074686520626c61636b6c697374000000000000000000600082015250565b6000612d13601783612085565b9150612d1e82612cdd565b602082019050919050565b60006020820190508181036000830152612d4281612d06565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612da5602683612085565b9150612db082612d49565b604082019050919050565b60006020820190508181036000830152612dd481612d98565b9050919050565b6000612de68261218f565b9150612df18361218f565b9250828203905081811115612e0957612e08612560565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b6000612e45601283612085565b9150612e5082612e0f565b602082019050919050565b60006020820190508181036000830152612e7481612e38565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000612ed7603983612085565b9150612ee282612e7b565b604082019050919050565b60006020820190508181036000830152612f0681612eca565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612f69603683612085565b9150612f7482612f0d565b604082019050919050565b60006020820190508181036000830152612f9881612f5c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612fd98261218f565b9150612fe48361218f565b925082612ff457612ff3612f9f565b5b828204905092915050565b60006060820190506130146000830186612321565b6130216020830185612321565b61302e6040830184612321565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506130a381612163565b92915050565b6000602082840312156130bf576130be61212c565b5b60006130cd84828501613094565b91505092915050565b6000819050919050565b60006130fb6130f66130f1846130d6565b6122a7565b61218f565b9050919050565b61310b816130e0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61314681612151565b82525050565b6000613158838361313d565b60208301905092915050565b6000602082019050919050565b600061317c82613111565b613186818561311c565b93506131918361312d565b8060005b838110156131c25781516131a9888261314c565b97506131b483613164565b925050600181019050613195565b5085935050505092915050565b600060a0820190506131e46000830188612321565b6131f16020830187613102565b81810360408301526132038186613171565b9050613212606083018561243c565b61321f6080830184612321565b9695505050505050565b600060c08201905061323e600083018961243c565b61324b6020830188612321565b6132586040830187613102565b6132656060830186613102565b613272608083018561243c565b61327f60a0830184612321565b979650505050505050565b60008151905061329981612199565b92915050565b6000806000606084860312156132b8576132b761212c565b5b60006132c68682870161328a565b93505060206132d78682870161328a565b92505060406132e88682870161328a565b915050925092509256fea264697066735822122086ca45b623e41a343a46774ef4f675ddc297326dc1fe4b186e58ff127272131664736f6c63430008100033

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.