ETH Price: $3,421.50 (-2.25%)
Gas: 8 Gwei

Token

Bad Luck Brian (BRIAN)
 

Overview

Max Total Supply

420,000,069,000 BRIAN

Holders

112

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
2,162,428,385.632347025 BRIAN

Value
$0.00
0xc8793356b213b7a024502a2419459f1e03422fbd
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:
Brian

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Brian.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 9;
    }

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

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

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

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

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

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

        return true;
    }

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
 contract Brian is ERC20, Ownable {
    string private _name = "Bad Luck Brian";
    string private _symbol = "BRIAN";
    uint8 private _decimals = 9;
    uint256 private _supply = 420000069000;
    uint256 public taxForLiquidity = 4700; // 47% - sniper protection, to be lowered to 0.5% after launch
    uint256 public taxForMarketing = 4700; // 47% - sniper protection, to be lowered to 0.5% after launch
    uint256 public maxTxAmount = (3 * _supply * 10**_decimals) / 100;
    uint256 public maxWalletAmount = (3 * _supply * 10**_decimals) / 100;
    address public marketingWallet = msg.sender;
    address public DEAD = 0x000000000000000000000000000000000000dEaD;
    uint256 public _marketingReserves = 0;
    mapping(address => bool) public _isExcludedFromFee;
    uint256 public numTokensSellToAddToLiquidity = (2 * _supply * 10**_decimals) / 10000; // 0.02%
    uint256 public numTokensSellToAddToETH = (1 * _supply * 10**_decimals) / 10000; // 0.01%

    function postLaunch() external onlyOwner {
        taxForLiquidity = 50; // 0.5%
        taxForMarketing = 0; // 0.0%
    }

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    bool inSwapAndLiquify;

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

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

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

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

        uniswapV2Router = _uniswapV2Router;

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

    function updatePair(address _pair) external onlyOwner {
        require(_pair != DEAD, "LP Pair cannot be the Dead wallet, or 0!");
        require(_pair != address(0), "LP Pair cannot be the Dead wallet, or 0!");
        uniswapV2Pair = _pair;
    }

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

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

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

                uint256 marketingShare = ((amount * taxForMarketing) / 10000);
                uint256 liquidityShare = ((amount * taxForLiquidity) / 10000);
                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 excludeFromFee(address _address, bool _status) external onlyOwner {
        _isExcludedFromFee[_address] = _status;
    }

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

    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)
    {
        require(newWallet != DEAD, "LP Pair cannot be the Dead wallet, or 0!");
        require(newWallet != address(0), "LP Pair cannot be the Dead wallet, or 0!");
        marketingWallet = newWallet;
        return true;
    }

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

        return true;
    }

    function changeSwapThresholds(uint256 _numTokensSellToAddToLiquidity, uint256 _numTokensSellToAddToETH)
        public
        onlyOwner
        returns (bool)
    {
        require(_numTokensSellToAddToLiquidity < _supply / 98, "Cannot liquidate more than 2% of the supply at once!");
        require(_numTokensSellToAddToETH < _supply / 98, "Cannot liquidate more than 2% of the supply at once!");
        numTokensSellToAddToLiquidity = _numTokensSellToAddToLiquidity * 10**_decimals;
        numTokensSellToAddToETH = _numTokensSellToAddToETH * 10**_decimals;

        return true;
    }

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

        return true;
    }

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

        return true;
    }

    receive() external payable {}
}

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":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"_numTokensSellToAddToLiquidity","type":"uint256"},{"internalType":"uint256","name":"_numTokensSellToAddToETH","type":"uint256"}],"name":"changeSwapThresholds","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"}],"name":"changeTaxForLiquidityAndMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"excludeFromFee","outputs":[],"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":"numTokensSellToAddToETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"postLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"updatePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526040518060400160405280600e81526020017f426164204c75636b20427269616e000000000000000000000000000000000000815250600690816200004a919062000be8565b506040518060400160405280600581526020017f425249414e0000000000000000000000000000000000000000000000000000008152506007908162000091919062000be8565b506009600860006101000a81548160ff021916908360ff1602179055506461c9f4758860095561125c600a5561125c600b556064600860009054906101000a900460ff16600a620000e3919062000e5f565b6009546003620000f4919062000eb0565b62000100919062000eb0565b6200010c919062000f40565b600c556064600860009054906101000a900460ff16600a6200012f919062000e5f565b600954600362000140919062000eb0565b6200014c919062000eb0565b62000158919062000f40565b600d5533600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601055612710600860009054906101000a900460ff16600a62000205919062000e5f565b600954600262000216919062000eb0565b62000222919062000eb0565b6200022e919062000f40565b601255612710600860009054906101000a900460ff16600a62000252919062000e5f565b600954600162000263919062000eb0565b6200026f919062000eb0565b6200027b919062000f40565b6013553480156200028b57600080fd5b50600680546200029b90620009d7565b80601f0160208091040260200160405190810160405280929190818152602001828054620002c990620009d7565b80156200031a5780601f10620002ee576101008083540402835291602001916200031a565b820191906000526020600020905b815481529060010190602001808311620002fc57829003601f168201915b5050505050600780546200032e90620009d7565b80601f01602080910402602001604051908101604052809291908181526020018280546200035c90620009d7565b8015620003ad5780601f106200038157610100808354040283529160200191620003ad565b820191906000526020600020905b8154815290600101906020018083116200038f57829003601f168201915b50505050508160039081620003c3919062000be8565b508060049081620003d5919062000be8565b505050620003f8620003ec6200075b60201b60201c565b6200076360201b60201c565b6200043633600860009054906101000a900460ff16600a6200041b919062000e5f565b6009546200042a919062000eb0565b6200082960201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200049b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004c1919062000fe2565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000529573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200054f919062000fe2565b6040518363ffffffff1660e01b81526004016200056e92919062001025565b6020604051808303816000875af11580156200058e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005b4919062000fe2565b601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060016011600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160116000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550506200113e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200089b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200089290620010b3565b60405180910390fd5b8060026000828254620008af9190620010d5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000962919062001121565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009f057607f821691505b60208210810362000a065762000a05620009a8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a707fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a31565b62000a7c868362000a31565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000ac962000ac362000abd8462000a94565b62000a9e565b62000a94565b9050919050565b6000819050919050565b62000ae58362000aa8565b62000afd62000af48262000ad0565b84845462000a3e565b825550505050565b600090565b62000b1462000b05565b62000b2181848462000ada565b505050565b5b8181101562000b495762000b3d60008262000b0a565b60018101905062000b27565b5050565b601f82111562000b985762000b628162000a0c565b62000b6d8462000a21565b8101602085101562000b7d578190505b62000b9562000b8c8562000a21565b83018262000b26565b50505b505050565b600082821c905092915050565b600062000bbd6000198460080262000b9d565b1980831691505092915050565b600062000bd8838362000baa565b9150826002028217905092915050565b62000bf3826200096e565b67ffffffffffffffff81111562000c0f5762000c0e62000979565b5b62000c1b8254620009d7565b62000c2882828562000b4d565b600060209050601f83116001811462000c60576000841562000c4b578287015190505b62000c57858262000bca565b86555062000cc7565b601f19841662000c708662000a0c565b60005b8281101562000c9a5784890151825560018201915060208501945060208101905062000c73565b8683101562000cba578489015162000cb6601f89168262000baa565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d5d5780860481111562000d355762000d3462000ccf565b5b600185161562000d455780820291505b808102905062000d558562000cfe565b945062000d15565b94509492505050565b60008262000d78576001905062000e4b565b8162000d88576000905062000e4b565b816001811462000da1576002811462000dac5762000de2565b600191505062000e4b565b60ff84111562000dc15762000dc062000ccf565b5b8360020a91508482111562000ddb5762000dda62000ccf565b5b5062000e4b565b5060208310610133831016604e8410600b841016171562000e1c5782820a90508381111562000e165762000e1562000ccf565b5b62000e4b565b62000e2b848484600162000d0b565b9250905081840481111562000e455762000e4462000ccf565b5b81810290505b9392505050565b600060ff82169050919050565b600062000e6c8262000a94565b915062000e798362000e52565b925062000ea87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d66565b905092915050565b600062000ebd8262000a94565b915062000eca8362000a94565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000f065762000f0562000ccf565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f4d8262000a94565b915062000f5a8362000a94565b92508262000f6d5762000f6c62000f11565b5b828204905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000faa8262000f7d565b9050919050565b62000fbc8162000f9d565b811462000fc857600080fd5b50565b60008151905062000fdc8162000fb1565b92915050565b60006020828403121562000ffb5762000ffa62000f78565b5b60006200100b8482850162000fcb565b91505092915050565b6200101f8162000f9d565b82525050565b60006040820190506200103c600083018562001014565b6200104b602083018462001014565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200109b601f8362001052565b9150620010a88262001063565b602082019050919050565b60006020820190508181036000830152620010ce816200108c565b9050919050565b6000620010e28262000a94565b9150620010ef8362000a94565b92508282019050808211156200110a576200110962000ccf565b5b92915050565b6200111b8162000a94565b82525050565b600060208201905062001138600083018462001110565b92915050565b6080516134d86200117d6000396000818161095801528181611cbd01528181611d9e01528181611dc5015281816120f5015261211c01526134d86000f3fe6080604052600436106101fd5760003560e01c806381bfdcca1161010d578063ad16a0cf116100a0578063d12a76881161006f578063d12a768814610796578063dd62ed3e146107c1578063df8408fe146107fe578063f2fde38b14610827578063f345bd851461085057610204565b8063ad16a0cf146106c6578063af8af690146106f1578063bb85c6d11461072e578063c0fdea571461076b57610204565b8063a3996f7b116100dc578063a3996f7b1461060a578063a457c2d714610621578063a9059cbb1461065e578063aa4bde281461069b57610204565b806381bfdcca1461054c5780638c0b5e22146105895780638da5cb5b146105b457806395d89b41146105df57610204565b8063313ce56711610190578063677daa571161015f578063677daa571461045357806370a0823114610490578063715018a6146104cd57806375f0a874146104e4578063768dc7101461050f57610204565b8063313ce5671461039557806339509351146103c057806349bd5a5e146103fd578063527ffabd1461042857610204565b806318160ddd116101cc57806318160ddd146102c75780631b56bbf9146102f257806323b872dd1461031b57806330b63d801461035857610204565b806303fd2a451461020957806306fdde0314610234578063095ea7b31461025f5780631694505e1461029c57610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e61087b565b60405161022b9190612246565b60405180910390f35b34801561024057600080fd5b506102496108a1565b60405161025691906122f1565b60405180910390f35b34801561026b57600080fd5b506102866004803603810190610281919061237a565b610933565b60405161029391906123d5565b60405180910390f35b3480156102a857600080fd5b506102b1610956565b6040516102be919061244f565b60405180910390f35b3480156102d357600080fd5b506102dc61097a565b6040516102e99190612479565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190612494565b610984565b005b34801561032757600080fd5b50610342600480360381019061033d91906124c1565b610acf565b60405161034f91906123d5565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190612514565b610afe565b60405161038c91906123d5565b60405180910390f35b3480156103a157600080fd5b506103aa610c0c565b6040516103b79190612570565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e2919061237a565b610c15565b6040516103f491906123d5565b60405180910390f35b34801561040957600080fd5b50610412610c4c565b60405161041f9190612246565b60405180910390f35b34801561043457600080fd5b5061043d610c72565b60405161044a9190612479565b60405180910390f35b34801561045f57600080fd5b5061047a6004803603810190610475919061258b565b610c78565b60405161048791906123d5565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b29190612494565b610c92565b6040516104c49190612479565b60405180910390f35b3480156104d957600080fd5b506104e2610cda565b005b3480156104f057600080fd5b506104f9610cee565b6040516105069190612246565b60405180910390f35b34801561051b57600080fd5b5061053660048036038101906105319190612494565b610d14565b60405161054391906123d5565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e919061258b565b610d34565b60405161058091906123d5565b60405180910390f35b34801561059557600080fd5b5061059e610d4e565b6040516105ab9190612479565b60405180910390f35b3480156105c057600080fd5b506105c9610d54565b6040516105d69190612246565b60405180910390f35b3480156105eb57600080fd5b506105f4610d7e565b60405161060191906122f1565b60405180910390f35b34801561061657600080fd5b5061061f610e10565b005b34801561062d57600080fd5b506106486004803603810190610643919061237a565b610e2a565b60405161065591906123d5565b60405180910390f35b34801561066a57600080fd5b506106856004803603810190610680919061237a565b610ea1565b60405161069291906123d5565b60405180910390f35b3480156106a757600080fd5b506106b0610ec4565b6040516106bd9190612479565b60405180910390f35b3480156106d257600080fd5b506106db610eca565b6040516106e89190612479565b60405180910390f35b3480156106fd57600080fd5b5061071860048036038101906107139190612514565b610ed0565b60405161072591906123d5565b60405180910390f35b34801561073a57600080fd5b5061075560048036038101906107509190612494565b610f42565b60405161076291906123d5565b60405180910390f35b34801561077757600080fd5b50610780611095565b60405161078d9190612479565b60405180910390f35b3480156107a257600080fd5b506107ab61109b565b6040516107b89190612479565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e391906125b8565b6110a1565b6040516107f59190612479565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190612624565b611128565b005b34801561083357600080fd5b5061084e60048036038101906108499190612494565b61118b565b005b34801561085c57600080fd5b5061086561120e565b6040516108729190612479565b60405180910390f35b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600380546108b090612693565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc90612693565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b60008061093e611214565b905061094b81858561121c565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b61098c6113e5565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1390612736565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290612736565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610ada611214565b9050610ae7858285611463565b610af28585856114ef565b60019150509392505050565b6000610b086113e5565b6062600954610b1791906127b4565b8310610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f90612857565b60405180910390fd5b6062600954610b6791906127b4565b8210610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f90612857565b60405180910390fd5b600860009054906101000a900460ff16600a610bc491906129aa565b83610bcf91906129f5565b601281905550600860009054906101000a900460ff16600a610bf191906129aa565b82610bfc91906129f5565b6013819055506001905092915050565b60006009905090565b600080610c20611214565b9050610c41818585610c3285896110a1565b610c3c9190612a4f565b61121c565b600191505092915050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b6000610c826113e5565b81600c8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ce26113e5565b610cec6000611a7f565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60116020528060005260406000206000915054906101000a900460ff1681565b6000610d3e6113e5565b81600d8190555060019050919050565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d8d90612693565b80601f0160208091040260200160405190810160405280929190818152602001828054610db990612693565b8015610e065780601f10610ddb57610100808354040283529160200191610e06565b820191906000526020600020905b815481529060010190602001808311610de957829003601f168201915b5050505050905090565b610e186113e5565b6032600a819055506000600b81905550565b600080610e35611214565b90506000610e4382866110a1565b905083811015610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f90612af5565b60405180910390fd5b610e95828686840361121c565b60019250505092915050565b600080610eac611214565b9050610eb98185856114ef565b600191505092915050565b600d5481565b60135481565b6000610eda6113e5565b6103e88284610ee99190612a4f565b1115610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190612b87565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b6000610f4c6113e5565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390612736565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104290612736565b60405180910390fd5b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b60105481565b60125481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6111306113e5565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6111936113e5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990612c19565b60405180910390fd5b61120b81611a7f565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361128b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128290612cab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f190612d3d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113d89190612479565b60405180910390a3505050565b6113ed611214565b73ffffffffffffffffffffffffffffffffffffffff1661140b610d54565b73ffffffffffffffffffffffffffffffffffffffff1614611461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145890612da9565b60405180910390fd5b565b600061146f84846110a1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114e957818110156114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d290612e15565b60405180910390fd5b6114e8848484840361121c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361155e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155590612ea7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c490612f39565b60405180910390fd5b806115d784610c92565b1015611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f90612fcb565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806116c15750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156116d8575060148054906101000a900460ff16155b15611a6e57601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461183157600060105461174030610c92565b61174a9190612feb565b9050601254811061176157611760601254611b45565b5b6013546010541061182f57611777601354611c04565b6013546010600082825461178b9190612feb565b925050819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505090508061182d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118249061306b565b60405180910390fd5b505b505b6000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806118d45750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156118e157819050611a5d565b600c54821115611926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191d906130fd565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119d457600d5461198784610c92565b836119929190612a4f565b11156119d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ca9061318f565b60405180910390fd5b5b6000612710600b54846119e791906129f5565b6119f191906127b4565b90506000612710600a5485611a0691906129f5565b611a1091906127b4565b90508082611a1e9190612a4f565b84611a299190612feb565b92508160106000828254611a3d9190612a4f565b92505081905550611a5a86308385611a559190612a4f565b611e75565b50505b611a68848483611e75565b50611a7a565b611a79838383611e75565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60016014806101000a81548160ff0219169083151502179055506000600282611b6e91906127b4565b905060008183611b7e9190612feb565b90506000479050611b8e83611c04565b60008147611b9c9190612feb565b9050611ba883826120d5565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611bdb939291906131af565b60405180910390a15050505060006014806101000a81548160ff02191690831515021790555050565b60016014806101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611c3b57611c3a6131e6565b5b604051908082528060200260200182016040528015611c695781602001602082028036833780820191505090505b5090503081600081518110611c8157611c80613215565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d4a9190613259565b81600181518110611d5e57611d5d613215565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611dc3307f00000000000000000000000000000000000000000000000000000000000000008461121c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611e2595949392919061337f565b600060405180830381600087803b158015611e3f57600080fd5b505af1158015611e53573d6000803e3d6000fd5b505050505060006014806101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb90612ea7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4a90612f39565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090612fcb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120c79190612479565b60405180910390a350505050565b60016014806101000a81548160ff02191690831515021790555061211a307f00000000000000000000000000000000000000000000000000000000000000008461121c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016121a1969594939291906133d9565b60606040518083038185885af11580156121bf573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121e4919061344f565b50505060006014806101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061223082612205565b9050919050565b61224081612225565b82525050565b600060208201905061225b6000830184612237565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561229b578082015181840152602081019050612280565b60008484015250505050565b6000601f19601f8301169050919050565b60006122c382612261565b6122cd818561226c565b93506122dd81856020860161227d565b6122e6816122a7565b840191505092915050565b6000602082019050818103600083015261230b81846122b8565b905092915050565b600080fd5b61232181612225565b811461232c57600080fd5b50565b60008135905061233e81612318565b92915050565b6000819050919050565b61235781612344565b811461236257600080fd5b50565b6000813590506123748161234e565b92915050565b6000806040838503121561239157612390612313565b5b600061239f8582860161232f565b92505060206123b085828601612365565b9150509250929050565b60008115159050919050565b6123cf816123ba565b82525050565b60006020820190506123ea60008301846123c6565b92915050565b6000819050919050565b600061241561241061240b84612205565b6123f0565b612205565b9050919050565b6000612427826123fa565b9050919050565b60006124398261241c565b9050919050565b6124498161242e565b82525050565b60006020820190506124646000830184612440565b92915050565b61247381612344565b82525050565b600060208201905061248e600083018461246a565b92915050565b6000602082840312156124aa576124a9612313565b5b60006124b88482850161232f565b91505092915050565b6000806000606084860312156124da576124d9612313565b5b60006124e88682870161232f565b93505060206124f98682870161232f565b925050604061250a86828701612365565b9150509250925092565b6000806040838503121561252b5761252a612313565b5b600061253985828601612365565b925050602061254a85828601612365565b9150509250929050565b600060ff82169050919050565b61256a81612554565b82525050565b60006020820190506125856000830184612561565b92915050565b6000602082840312156125a1576125a0612313565b5b60006125af84828501612365565b91505092915050565b600080604083850312156125cf576125ce612313565b5b60006125dd8582860161232f565b92505060206125ee8582860161232f565b9150509250929050565b612601816123ba565b811461260c57600080fd5b50565b60008135905061261e816125f8565b92915050565b6000806040838503121561263b5761263a612313565b5b60006126498582860161232f565b925050602061265a8582860161260f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126ab57607f821691505b6020821081036126be576126bd612664565b5b50919050565b7f4c5020506169722063616e6e6f742062652074686520446561642077616c6c6560008201527f742c206f72203021000000000000000000000000000000000000000000000000602082015250565b600061272060288361226c565b915061272b826126c4565b604082019050919050565b6000602082019050818103600083015261274f81612713565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127bf82612344565b91506127ca83612344565b9250826127da576127d9612756565b5b828204905092915050565b7f43616e6e6f74206c6971756964617465206d6f7265207468616e203225206f6660008201527f2074686520737570706c79206174206f6e636521000000000000000000000000602082015250565b600061284160348361226c565b915061284c826127e5565b604082019050919050565b6000602082019050818103600083015261287081612834565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156128ce578086048111156128aa576128a9612785565b5b60018516156128b95780820291505b80810290506128c785612877565b945061288e565b94509492505050565b6000826128e757600190506129a3565b816128f557600090506129a3565b816001811461290b576002811461291557612944565b60019150506129a3565b60ff84111561292757612926612785565b5b8360020a91508482111561293e5761293d612785565b5b506129a3565b5060208310610133831016604e8410600b84101617156129795782820a90508381111561297457612973612785565b5b6129a3565b6129868484846001612884565b9250905081840481111561299d5761299c612785565b5b81810290505b9392505050565b60006129b582612344565b91506129c083612554565b92506129ed7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846128d7565b905092915050565b6000612a0082612344565b9150612a0b83612344565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a4457612a43612785565b5b828202905092915050565b6000612a5a82612344565b9150612a6583612344565b9250828201905080821115612a7d57612a7c612785565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612adf60258361226c565b9150612aea82612a83565b604082019050919050565b60006020820190508181036000830152612b0e81612ad2565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031302500000000000000000000000000000000000000602082015250565b6000612b71602d8361226c565b9150612b7c82612b15565b604082019050919050565b60006020820190508181036000830152612ba081612b64565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612c0360268361226c565b9150612c0e82612ba7565b604082019050919050565b60006020820190508181036000830152612c3281612bf6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612c9560248361226c565b9150612ca082612c39565b604082019050919050565b60006020820190508181036000830152612cc481612c88565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d2760228361226c565b9150612d3282612ccb565b604082019050919050565b60006020820190508181036000830152612d5681612d1a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d9360208361226c565b9150612d9e82612d5d565b602082019050919050565b60006020820190508181036000830152612dc281612d86565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612dff601d8361226c565b9150612e0a82612dc9565b602082019050919050565b60006020820190508181036000830152612e2e81612df2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612e9160258361226c565b9150612e9c82612e35565b604082019050919050565b60006020820190508181036000830152612ec081612e84565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612f2360238361226c565b9150612f2e82612ec7565b604082019050919050565b60006020820190508181036000830152612f5281612f16565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612fb560268361226c565b9150612fc082612f59565b604082019050919050565b60006020820190508181036000830152612fe481612fa8565b9050919050565b6000612ff682612344565b915061300183612344565b925082820390508181111561301957613018612785565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b600061305560128361226c565b91506130608261301f565b602082019050919050565b6000602082019050818103600083015261308481613048565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006130e760398361226c565b91506130f28261308b565b604082019050919050565b60006020820190508181036000830152613116816130da565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b600061317960368361226c565b91506131848261311d565b604082019050919050565b600060208201905081810360008301526131a88161316c565b9050919050565b60006060820190506131c4600083018661246a565b6131d1602083018561246a565b6131de604083018461246a565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061325381612318565b92915050565b60006020828403121561326f5761326e612313565b5b600061327d84828501613244565b91505092915050565b6000819050919050565b60006132ab6132a66132a184613286565b6123f0565b612344565b9050919050565b6132bb81613290565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6132f681612225565b82525050565b600061330883836132ed565b60208301905092915050565b6000602082019050919050565b600061332c826132c1565b61333681856132cc565b9350613341836132dd565b8060005b8381101561337257815161335988826132fc565b975061336483613314565b925050600181019050613345565b5085935050505092915050565b600060a082019050613394600083018861246a565b6133a160208301876132b2565b81810360408301526133b38186613321565b90506133c26060830185612237565b6133cf608083018461246a565b9695505050505050565b600060c0820190506133ee6000830189612237565b6133fb602083018861246a565b61340860408301876132b2565b61341560608301866132b2565b6134226080830185612237565b61342f60a083018461246a565b979650505050505050565b6000815190506134498161234e565b92915050565b60008060006060848603121561346857613467612313565b5b60006134768682870161343a565b93505060206134878682870161343a565b92505060406134988682870161343a565b915050925092509256fea2646970667358221220d4f9d781314a9c5e0949933a9a2b729eddc8b74ef2a361e896cfefccc45bc1fe64736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c806381bfdcca1161010d578063ad16a0cf116100a0578063d12a76881161006f578063d12a768814610796578063dd62ed3e146107c1578063df8408fe146107fe578063f2fde38b14610827578063f345bd851461085057610204565b8063ad16a0cf146106c6578063af8af690146106f1578063bb85c6d11461072e578063c0fdea571461076b57610204565b8063a3996f7b116100dc578063a3996f7b1461060a578063a457c2d714610621578063a9059cbb1461065e578063aa4bde281461069b57610204565b806381bfdcca1461054c5780638c0b5e22146105895780638da5cb5b146105b457806395d89b41146105df57610204565b8063313ce56711610190578063677daa571161015f578063677daa571461045357806370a0823114610490578063715018a6146104cd57806375f0a874146104e4578063768dc7101461050f57610204565b8063313ce5671461039557806339509351146103c057806349bd5a5e146103fd578063527ffabd1461042857610204565b806318160ddd116101cc57806318160ddd146102c75780631b56bbf9146102f257806323b872dd1461031b57806330b63d801461035857610204565b806303fd2a451461020957806306fdde0314610234578063095ea7b31461025f5780631694505e1461029c57610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e61087b565b60405161022b9190612246565b60405180910390f35b34801561024057600080fd5b506102496108a1565b60405161025691906122f1565b60405180910390f35b34801561026b57600080fd5b506102866004803603810190610281919061237a565b610933565b60405161029391906123d5565b60405180910390f35b3480156102a857600080fd5b506102b1610956565b6040516102be919061244f565b60405180910390f35b3480156102d357600080fd5b506102dc61097a565b6040516102e99190612479565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190612494565b610984565b005b34801561032757600080fd5b50610342600480360381019061033d91906124c1565b610acf565b60405161034f91906123d5565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190612514565b610afe565b60405161038c91906123d5565b60405180910390f35b3480156103a157600080fd5b506103aa610c0c565b6040516103b79190612570565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e2919061237a565b610c15565b6040516103f491906123d5565b60405180910390f35b34801561040957600080fd5b50610412610c4c565b60405161041f9190612246565b60405180910390f35b34801561043457600080fd5b5061043d610c72565b60405161044a9190612479565b60405180910390f35b34801561045f57600080fd5b5061047a6004803603810190610475919061258b565b610c78565b60405161048791906123d5565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b29190612494565b610c92565b6040516104c49190612479565b60405180910390f35b3480156104d957600080fd5b506104e2610cda565b005b3480156104f057600080fd5b506104f9610cee565b6040516105069190612246565b60405180910390f35b34801561051b57600080fd5b5061053660048036038101906105319190612494565b610d14565b60405161054391906123d5565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e919061258b565b610d34565b60405161058091906123d5565b60405180910390f35b34801561059557600080fd5b5061059e610d4e565b6040516105ab9190612479565b60405180910390f35b3480156105c057600080fd5b506105c9610d54565b6040516105d69190612246565b60405180910390f35b3480156105eb57600080fd5b506105f4610d7e565b60405161060191906122f1565b60405180910390f35b34801561061657600080fd5b5061061f610e10565b005b34801561062d57600080fd5b506106486004803603810190610643919061237a565b610e2a565b60405161065591906123d5565b60405180910390f35b34801561066a57600080fd5b506106856004803603810190610680919061237a565b610ea1565b60405161069291906123d5565b60405180910390f35b3480156106a757600080fd5b506106b0610ec4565b6040516106bd9190612479565b60405180910390f35b3480156106d257600080fd5b506106db610eca565b6040516106e89190612479565b60405180910390f35b3480156106fd57600080fd5b5061071860048036038101906107139190612514565b610ed0565b60405161072591906123d5565b60405180910390f35b34801561073a57600080fd5b5061075560048036038101906107509190612494565b610f42565b60405161076291906123d5565b60405180910390f35b34801561077757600080fd5b50610780611095565b60405161078d9190612479565b60405180910390f35b3480156107a257600080fd5b506107ab61109b565b6040516107b89190612479565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e391906125b8565b6110a1565b6040516107f59190612479565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190612624565b611128565b005b34801561083357600080fd5b5061084e60048036038101906108499190612494565b61118b565b005b34801561085c57600080fd5b5061086561120e565b6040516108729190612479565b60405180910390f35b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600380546108b090612693565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc90612693565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b60008061093e611214565b905061094b81858561121c565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b61098c6113e5565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1390612736565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290612736565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610ada611214565b9050610ae7858285611463565b610af28585856114ef565b60019150509392505050565b6000610b086113e5565b6062600954610b1791906127b4565b8310610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f90612857565b60405180910390fd5b6062600954610b6791906127b4565b8210610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f90612857565b60405180910390fd5b600860009054906101000a900460ff16600a610bc491906129aa565b83610bcf91906129f5565b601281905550600860009054906101000a900460ff16600a610bf191906129aa565b82610bfc91906129f5565b6013819055506001905092915050565b60006009905090565b600080610c20611214565b9050610c41818585610c3285896110a1565b610c3c9190612a4f565b61121c565b600191505092915050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b6000610c826113e5565b81600c8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ce26113e5565b610cec6000611a7f565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60116020528060005260406000206000915054906101000a900460ff1681565b6000610d3e6113e5565b81600d8190555060019050919050565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d8d90612693565b80601f0160208091040260200160405190810160405280929190818152602001828054610db990612693565b8015610e065780601f10610ddb57610100808354040283529160200191610e06565b820191906000526020600020905b815481529060010190602001808311610de957829003601f168201915b5050505050905090565b610e186113e5565b6032600a819055506000600b81905550565b600080610e35611214565b90506000610e4382866110a1565b905083811015610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f90612af5565b60405180910390fd5b610e95828686840361121c565b60019250505092915050565b600080610eac611214565b9050610eb98185856114ef565b600191505092915050565b600d5481565b60135481565b6000610eda6113e5565b6103e88284610ee99190612a4f565b1115610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190612b87565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b6000610f4c6113e5565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390612736565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104290612736565b60405180910390fd5b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b60105481565b60125481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6111306113e5565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6111936113e5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990612c19565b60405180910390fd5b61120b81611a7f565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361128b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128290612cab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f190612d3d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113d89190612479565b60405180910390a3505050565b6113ed611214565b73ffffffffffffffffffffffffffffffffffffffff1661140b610d54565b73ffffffffffffffffffffffffffffffffffffffff1614611461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145890612da9565b60405180910390fd5b565b600061146f84846110a1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114e957818110156114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d290612e15565b60405180910390fd5b6114e8848484840361121c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361155e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155590612ea7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c490612f39565b60405180910390fd5b806115d784610c92565b1015611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f90612fcb565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806116c15750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156116d8575060148054906101000a900460ff16155b15611a6e57601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461183157600060105461174030610c92565b61174a9190612feb565b9050601254811061176157611760601254611b45565b5b6013546010541061182f57611777601354611c04565b6013546010600082825461178b9190612feb565b925050819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505090508061182d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118249061306b565b60405180910390fd5b505b505b6000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806118d45750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156118e157819050611a5d565b600c54821115611926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191d906130fd565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119d457600d5461198784610c92565b836119929190612a4f565b11156119d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ca9061318f565b60405180910390fd5b5b6000612710600b54846119e791906129f5565b6119f191906127b4565b90506000612710600a5485611a0691906129f5565b611a1091906127b4565b90508082611a1e9190612a4f565b84611a299190612feb565b92508160106000828254611a3d9190612a4f565b92505081905550611a5a86308385611a559190612a4f565b611e75565b50505b611a68848483611e75565b50611a7a565b611a79838383611e75565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60016014806101000a81548160ff0219169083151502179055506000600282611b6e91906127b4565b905060008183611b7e9190612feb565b90506000479050611b8e83611c04565b60008147611b9c9190612feb565b9050611ba883826120d5565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611bdb939291906131af565b60405180910390a15050505060006014806101000a81548160ff02191690831515021790555050565b60016014806101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611c3b57611c3a6131e6565b5b604051908082528060200260200182016040528015611c695781602001602082028036833780820191505090505b5090503081600081518110611c8157611c80613215565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d4a9190613259565b81600181518110611d5e57611d5d613215565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611dc3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461121c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611e2595949392919061337f565b600060405180830381600087803b158015611e3f57600080fd5b505af1158015611e53573d6000803e3d6000fd5b505050505060006014806101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb90612ea7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4a90612f39565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090612fcb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120c79190612479565b60405180910390a350505050565b60016014806101000a81548160ff02191690831515021790555061211a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461121c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016121a1969594939291906133d9565b60606040518083038185885af11580156121bf573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121e4919061344f565b50505060006014806101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061223082612205565b9050919050565b61224081612225565b82525050565b600060208201905061225b6000830184612237565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561229b578082015181840152602081019050612280565b60008484015250505050565b6000601f19601f8301169050919050565b60006122c382612261565b6122cd818561226c565b93506122dd81856020860161227d565b6122e6816122a7565b840191505092915050565b6000602082019050818103600083015261230b81846122b8565b905092915050565b600080fd5b61232181612225565b811461232c57600080fd5b50565b60008135905061233e81612318565b92915050565b6000819050919050565b61235781612344565b811461236257600080fd5b50565b6000813590506123748161234e565b92915050565b6000806040838503121561239157612390612313565b5b600061239f8582860161232f565b92505060206123b085828601612365565b9150509250929050565b60008115159050919050565b6123cf816123ba565b82525050565b60006020820190506123ea60008301846123c6565b92915050565b6000819050919050565b600061241561241061240b84612205565b6123f0565b612205565b9050919050565b6000612427826123fa565b9050919050565b60006124398261241c565b9050919050565b6124498161242e565b82525050565b60006020820190506124646000830184612440565b92915050565b61247381612344565b82525050565b600060208201905061248e600083018461246a565b92915050565b6000602082840312156124aa576124a9612313565b5b60006124b88482850161232f565b91505092915050565b6000806000606084860312156124da576124d9612313565b5b60006124e88682870161232f565b93505060206124f98682870161232f565b925050604061250a86828701612365565b9150509250925092565b6000806040838503121561252b5761252a612313565b5b600061253985828601612365565b925050602061254a85828601612365565b9150509250929050565b600060ff82169050919050565b61256a81612554565b82525050565b60006020820190506125856000830184612561565b92915050565b6000602082840312156125a1576125a0612313565b5b60006125af84828501612365565b91505092915050565b600080604083850312156125cf576125ce612313565b5b60006125dd8582860161232f565b92505060206125ee8582860161232f565b9150509250929050565b612601816123ba565b811461260c57600080fd5b50565b60008135905061261e816125f8565b92915050565b6000806040838503121561263b5761263a612313565b5b60006126498582860161232f565b925050602061265a8582860161260f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126ab57607f821691505b6020821081036126be576126bd612664565b5b50919050565b7f4c5020506169722063616e6e6f742062652074686520446561642077616c6c6560008201527f742c206f72203021000000000000000000000000000000000000000000000000602082015250565b600061272060288361226c565b915061272b826126c4565b604082019050919050565b6000602082019050818103600083015261274f81612713565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127bf82612344565b91506127ca83612344565b9250826127da576127d9612756565b5b828204905092915050565b7f43616e6e6f74206c6971756964617465206d6f7265207468616e203225206f6660008201527f2074686520737570706c79206174206f6e636521000000000000000000000000602082015250565b600061284160348361226c565b915061284c826127e5565b604082019050919050565b6000602082019050818103600083015261287081612834565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156128ce578086048111156128aa576128a9612785565b5b60018516156128b95780820291505b80810290506128c785612877565b945061288e565b94509492505050565b6000826128e757600190506129a3565b816128f557600090506129a3565b816001811461290b576002811461291557612944565b60019150506129a3565b60ff84111561292757612926612785565b5b8360020a91508482111561293e5761293d612785565b5b506129a3565b5060208310610133831016604e8410600b84101617156129795782820a90508381111561297457612973612785565b5b6129a3565b6129868484846001612884565b9250905081840481111561299d5761299c612785565b5b81810290505b9392505050565b60006129b582612344565b91506129c083612554565b92506129ed7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846128d7565b905092915050565b6000612a0082612344565b9150612a0b83612344565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a4457612a43612785565b5b828202905092915050565b6000612a5a82612344565b9150612a6583612344565b9250828201905080821115612a7d57612a7c612785565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612adf60258361226c565b9150612aea82612a83565b604082019050919050565b60006020820190508181036000830152612b0e81612ad2565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031302500000000000000000000000000000000000000602082015250565b6000612b71602d8361226c565b9150612b7c82612b15565b604082019050919050565b60006020820190508181036000830152612ba081612b64565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612c0360268361226c565b9150612c0e82612ba7565b604082019050919050565b60006020820190508181036000830152612c3281612bf6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612c9560248361226c565b9150612ca082612c39565b604082019050919050565b60006020820190508181036000830152612cc481612c88565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d2760228361226c565b9150612d3282612ccb565b604082019050919050565b60006020820190508181036000830152612d5681612d1a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d9360208361226c565b9150612d9e82612d5d565b602082019050919050565b60006020820190508181036000830152612dc281612d86565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612dff601d8361226c565b9150612e0a82612dc9565b602082019050919050565b60006020820190508181036000830152612e2e81612df2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612e9160258361226c565b9150612e9c82612e35565b604082019050919050565b60006020820190508181036000830152612ec081612e84565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612f2360238361226c565b9150612f2e82612ec7565b604082019050919050565b60006020820190508181036000830152612f5281612f16565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612fb560268361226c565b9150612fc082612f59565b604082019050919050565b60006020820190508181036000830152612fe481612fa8565b9050919050565b6000612ff682612344565b915061300183612344565b925082820390508181111561301957613018612785565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b600061305560128361226c565b91506130608261301f565b602082019050919050565b6000602082019050818103600083015261308481613048565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006130e760398361226c565b91506130f28261308b565b604082019050919050565b60006020820190508181036000830152613116816130da565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b600061317960368361226c565b91506131848261311d565b604082019050919050565b600060208201905081810360008301526131a88161316c565b9050919050565b60006060820190506131c4600083018661246a565b6131d1602083018561246a565b6131de604083018461246a565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061325381612318565b92915050565b60006020828403121561326f5761326e612313565b5b600061327d84828501613244565b91505092915050565b6000819050919050565b60006132ab6132a66132a184613286565b6123f0565b612344565b9050919050565b6132bb81613290565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6132f681612225565b82525050565b600061330883836132ed565b60208301905092915050565b6000602082019050919050565b600061332c826132c1565b61333681856132cc565b9350613341836132dd565b8060005b8381101561337257815161335988826132fc565b975061336483613314565b925050600181019050613345565b5085935050505092915050565b600060a082019050613394600083018861246a565b6133a160208301876132b2565b81810360408301526133b38186613321565b90506133c26060830185612237565b6133cf608083018461246a565b9695505050505050565b600060c0820190506133ee6000830189612237565b6133fb602083018861246a565b61340860408301876132b2565b61341560608301866132b2565b6134226080830185612237565b61342f60a083018461246a565b979650505050505050565b6000815190506134498161234e565b92915050565b60008060006060848603121561346857613467612313565b5b60006134768682870161343a565b93505060206134878682870161343a565b92505060406134988682870161343a565b915050925092509256fea2646970667358221220d4f9d781314a9c5e0949933a9a2b729eddc8b74ef2a361e896cfefccc45bc1fe64736f6c63430008100033

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.